TypeScript/tests/baselines/reference/topLevelLambda2.js
2015-02-06 18:45:09 -08:00

10 lines
187 B
JavaScript

//// [topLevelLambda2.ts]
function foo(x:any) {}
foo(()=>this.window);
//// [topLevelLambda2.js]
var _this = this;
function foo(x) { }
foo(function () { return _this.window; });