TypeScript/tests/baselines/reference/thisKeyword.js

11 lines
154 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [thisKeyword.ts]
module foo {
this.bar = 4;
}
//// [thisKeyword.js]
var foo;
(function (foo) {
this.bar = 4;
})(foo || (foo = {}));