TypeScript/tests/baselines/reference/topLevelLambda.js

13 lines
211 B
TypeScript

//// [topLevelLambda.ts]
module M {
var f = () => {this.window;}
}
//// [topLevelLambda.js]
var M;
(function (M) {
var _this = this;
var f = function () { _this.window; };
})(M || (M = {}));