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
|
=== tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers3.ts ===
class C {
>C : C
static a = 1;
>a : number
>1 : 1
static b = this.a + 1;
>b : number
>this.a + 1 : number
>this.a : number
>this : typeof C
>a : number
>1 : 1
}
class D extends C {
>D : D
>C : C
static c = 2;
>c : number
>2 : 2
static d = this.c + 1;
>d : number
>this.c + 1 : number
>this.c : number
>this : typeof D
>c : number
>1 : 1
static e = super.a + this.c + 1;
>e : number
>super.a + this.c + 1 : number
>super.a + this.c : number
>super.a : number
>super : typeof C
>a : number
>this.c : number
>this : typeof D
>c : number
>1 : 1
}
|