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

14 lines
285 B
JavaScript

//// [collisionThisExpressionAndClassInGlobal.ts]
class _this {
}
var f = () => this;
//// [collisionThisExpressionAndClassInGlobal.js]
var _this = this;
var _this = (function () {
function _this() {
}
return _this;
})();
var f = function () { return _this; };