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

9 lines
236 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; };
});