Apply suggested fixes to arguments PR

This commit is contained in:
Schmavery
2015-08-17 18:33:48 -07:00
parent 2b3da9a49e
commit 6f42e4164b
3 changed files with 31 additions and 4 deletions
@@ -5,10 +5,18 @@
////function testNestedArguments() {
//// function nestedfunction(){/*3*/}
////}
////function f() {
//// let g = () => /*4*/
////}
////let g = () => /*5*/
goTo.marker('1');
verify.completionListContains("arguments");
goTo.marker('2');
verify.not.completionListContains("arguments");
goTo.marker('3');
verify.completionListContains("arguments");
verify.completionListContains("arguments");
goTo.marker('4');
verify.completionListContains("arguments");
goTo.marker('5');
verify.not.completionListContains("arguments");