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
|
=== tests/cases/conformance/types/thisType/thisTypeErrors2.ts ===
class Base {
>Base : Symbol(Base, Decl(thisTypeErrors2.ts, 0, 0))
constructor(a: this) {
>a : Symbol(a, Decl(thisTypeErrors2.ts, 1, 16))
}
}
class Generic<T> {
>Generic : Symbol(Generic, Decl(thisTypeErrors2.ts, 3, 1))
>T : Symbol(T, Decl(thisTypeErrors2.ts, 4, 14))
}
class Derived {
>Derived : Symbol(Derived, Decl(thisTypeErrors2.ts, 5, 1))
n: number;
>n : Symbol(Derived.n, Decl(thisTypeErrors2.ts, 6, 15))
constructor(public host: Generic<this>) {
>host : Symbol(Derived.host, Decl(thisTypeErrors2.ts, 8, 16))
>Generic : Symbol(Generic, Decl(thisTypeErrors2.ts, 3, 1))
let self: this = this;
>self : Symbol(self, Decl(thisTypeErrors2.ts, 9, 11))
>this : Symbol(Derived, Decl(thisTypeErrors2.ts, 5, 1))
this.n = 12;
>this.n : Symbol(Derived.n, Decl(thisTypeErrors2.ts, 6, 15))
>this : Symbol(Derived, Decl(thisTypeErrors2.ts, 5, 1))
>n : Symbol(Derived.n, Decl(thisTypeErrors2.ts, 6, 15))
}
}
|