TypeScript/tests/baselines/reference/processInvalidSyntax1.baseline
Andrew Branch 8523ca4fa3
Don’t create missing nodes for identifiers that would be valid in a newer script target (#42520)
* Add test

* Don’t create missing nodes for identifiers that would be valid in a newer script target

* Add to test

* Remove unnecessary assignment
2021-01-29 14:10:29 -08:00

22 lines
349 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*====== /tests/cases/fourslash/decl.js ======*/
var RENAME = {};
/*====== /tests/cases/fourslash/unicode1.js ======*/
RENAME.𝒜 ;
/*====== /tests/cases/fourslash/unicode2.js ======*/
RENAME.¬ ;
/*====== /tests/cases/fourslash/unicode3.js ======*/
RENAME¬
/*====== /tests/cases/fourslash/forof.js ======*/
for (RENAME.prop of arr) {
}