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

11 lines
188 B
JavaScript

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