TypeScript/tests/baselines/reference/topLevelLambda2.js

10 lines
187 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [topLevelLambda2.ts]
function foo(x:any) {}
foo(()=>this.window);
//// [topLevelLambda2.js]
var _this = this;
function foo(x) { }
foo(function () { return _this.window; });