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
|
=== tests/cases/compiler/getAndSetAsMemberNames.ts ===
class C1 {
>C1 : C1
set: boolean;
>set : boolean
get = 1;
>get : number
>1 : 1
}
class C2 {
>C2 : C2
set;
>set : any
}
class C3 {
>C3 : C3
set (x) {
>set : (x: any) => any
>x : any
return x + 1;
>x + 1 : any
>x : any
>1 : 1
}
}
class C4 {
>C4 : C4
get: boolean = true;
>get : boolean
>true : true
}
class C5 {
>C5 : C5
public set: () => boolean = function () { return true; };
>set : () => boolean
>function () { return true; } : () => true
>true : true
get (): boolean { return true; }
>get : () => boolean
>true : true
set t(x) { }
>t : any
>x : any
}
|