TypeScript/tests/baselines/reference/declFilePrivateStatic.types
2016-09-01 14:25:44 -07:00

36 lines
481 B
Plaintext

=== tests/cases/compiler/declFilePrivateStatic.ts ===
class C {
>C : C
private static x = 1;
>x : number
>1 : 1
static y = 1;
>y : number
>1 : 1
private static a() { }
>a : () => void
static b() { }
>b : () => void
private static get c() { return 1; }
>c : number
>1 : 1
static get d() { return 1; }
>d : number
>1 : 1
private static set e(v) { }
>e : any
>v : any
static set f(v) { }
>f : any
>v : any
}