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

13 lines
185 B
TypeScript

//// [thisInModule.ts]
module myMod {
var x;
this.x = 5;
}
//// [thisInModule.js]
var myMod;
(function (myMod) {
var x;
this.x = 5;
})(myMod || (myMod = {}));