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

19 lines
423 B
JavaScript

//// [thisExpressionInCallExpressionWithTypeArguments.ts]
class C {
public foo() { [1,2,3].map<any,any>((x) => { return this; })}
}
//// [thisExpressionInCallExpressionWithTypeArguments.js]
var C = (function () {
function C() {
}
C.prototype.foo = function () {
var _this = this;
[1, 2, 3].map(function (x) {
return _this;
});
};
return C;
})();