TypeScript/tests/baselines/reference/topLevelLambda3.js

9 lines
151 B
JavaScript
Raw Normal View History

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