TypeScript/tests/baselines/reference/topLevelLambda4.js

10 lines
250 B
JavaScript

//// [topLevelLambda4.ts]
export var x = () => this.window;
//// [topLevelLambda4.js]
define(["require", "exports"], function (require, exports) {
var _this = this;
exports.x = function () {
return _this.window;
};
});