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

9 lines
151 B
JavaScript

//// [topLevelLambda3.ts]
var f = () => {this.window;}
//// [topLevelLambda3.js]
var _this = this;
var f = function () {
_this.window;
};