1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
//// [typeOfThisInInstanceMember2.ts]
class C<T> {
x = this;
foo() {
return this;
}
constructor(x: T) {
var t = this;
t.x;
t.y;
t.z;
var r = t.foo();
}
get y() {
return this;
}
z: T;
}
var c: C<string>;
// all ok
var r = c.x;
var ra = c.x.x.x;
var r2 = c.y;
var r3 = c.foo();
var r4 = c.z;
var rs = [r, r2, r3];
rs.forEach(x => {
x.foo;
x.x;
x.y;
x.z;
});
//// [typeOfThisInInstanceMember2.js]
var C = /** @class */ (function () {
function C(x) {
this.x = this;
var t = this;
t.x;
t.y;
t.z;
var r = t.foo();
}
C.prototype.foo = function () {
return this;
};
Object.defineProperty(C.prototype, "y", {
get: function () {
return this;
},
enumerable: true,
configurable: true
});
return C;
}());
var c;
// all ok
var r = c.x;
var ra = c.x.x.x;
var r2 = c.y;
var r3 = c.foo();
var r4 = c.z;
var rs = [r, r2, r3];
rs.forEach(function (x) {
x.foo;
x.x;
x.y;
x.z;
});
|