TypeScript/tests/baselines/reference/topLevelLambda.js

15 lines
225 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [topLevelLambda.ts]
module M {
var f = () => {this.window;}
}
//// [topLevelLambda.js]
var M;
(function (M) {
var _this = this;
var f = function () {
_this.window;
};
})(M || (M = {}));