TypeScript/tests/cases/conformance/salsa/topLevelThisAssignment.ts
Nathan Shively-Sanders 61aad4c7b8
Handle toplevel this-assignment (#22913)
Do nothing now. Someday we might handle it correctly.
2018-03-27 12:24:37 -07:00

11 lines
111 B
TypeScript

// @out: output.js
// @allowJs: true
// @Filename: a.js
this.a = 10;
this.a;
a;
// @Filename: b.js
this.a;
a;