TypeScript/tests/baselines/reference/thisInModule.js

13 lines
185 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [thisInModule.ts]
module myMod {
var x;
this.x = 5;
}
//// [thisInModule.js]
var myMod;
(function (myMod) {
var x;
this.x = 5;
})(myMod || (myMod = {}));