TypeScript/tests/baselines/reference/topLevelLambda4.js
2015-11-23 14:57:47 -08:00

10 lines
255 B
TypeScript

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