Parameter destructuring + tests

This commit is contained in:
Paul van Brenk
2015-02-03 18:03:40 -08:00
parent d9f678fd6d
commit e233da0fd6
3 changed files with 15 additions and 5 deletions

View File

@@ -8,6 +8,14 @@
//// var [x, ...z/*variable4*/
//// var {x/*variable5*/
//// var {x, y/*variable6*/
//// function func1({ a/*parameter1*/
//// function func2({ a, b/*parameter2*/
test.markers().forEach((m) => {
goTo.position(m.position, m.fileName);
verify.completionListIsEmpty();

View File

@@ -19,4 +19,4 @@ test.markers().forEach((m) => {
goTo.position(m.position, m.fileName);
verify.not.completionListIsEmpty();
verify.completionListAllowsNewIdentifier();
});
});