TypeScript/tests/baselines/reference/topLevelLambda3.js

7 lines
145 B
TypeScript

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