TypeScript/tests/baselines/reference/topLevelLambda4.js

9 lines
236 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [topLevelLambda4.ts]
export var x = () => this.window;
//// [topLevelLambda4.js]
define(["require", "exports"], function (require, exports) {
var _this = this;
exports.x = function () { return _this.window; };
});