TypeScript/tests/baselines/reference/topLevelLambda4.js
2017-02-10 12:48:14 -08:00

11 lines
287 B
TypeScript

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