TypeScript/tests/baselines/reference/thisKeyword.js
2014-07-12 17:30:19 -07:00

11 lines
154 B
TypeScript

//// [thisKeyword.ts]
module foo {
this.bar = 4;
}
//// [thisKeyword.js]
var foo;
(function (foo) {
this.bar = 4;
})(foo || (foo = {}));