Fix bug: do unescaping in the right place, so that it only affects escaped javascript identifiers

This commit is contained in:
Andy Hanson
2016-06-14 09:39:48 -07:00
parent 1b4b01eed5
commit 6b05ecab5b
2 changed files with 4 additions and 3 deletions

View File

@@ -2,7 +2,8 @@
// @Filename: a.js
// @allowJs: true
////__foo;/**/
////___foo; __foo;/**/
goTo.marker();
verify.completionListContains("__foo", undefined, undefined, "warning");
verify.completionListContains("___foo", undefined, undefined, "warning");