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
|
=== /a.js ===
export class C {
>C : C
/**
* @template T
* @this {T}
* @return {T}
*/
static a() {
>a : <T>(this: T) => T
return this;
>this : T
}
/**
* @template T
* @this {T}
* @return {T}
*/
b() {
>b : <T>(this: T) => T
return this;
>this : T
}
}
const a = C.a();
>a : typeof C
>C.a() : typeof C
>C.a : <T>(this: T) => T
>C : typeof C
>a : <T>(this: T) => T
a; // typeof C
>a : typeof C
const c = new C();
>c : C
>new C() : C
>C : typeof C
const b = c.b();
>b : C
>c.b() : C
>c.b : <T>(this: T) => T
>c : C
>b : <T>(this: T) => T
b; // C
>b : C
|