TypeScript/tests/baselines/reference/declFilePrivateStatic.symbols
2015-10-28 13:07:08 -07:00

32 lines
937 B
Plaintext

=== tests/cases/compiler/declFilePrivateStatic.ts ===
class C {
>C : Symbol(C, Decl(declFilePrivateStatic.ts, 0, 0))
private static x = 1;
>x : Symbol(C.x, Decl(declFilePrivateStatic.ts, 1, 9))
static y = 1;
>y : Symbol(C.y, Decl(declFilePrivateStatic.ts, 2, 25))
private static a() { }
>a : Symbol(C.a, Decl(declFilePrivateStatic.ts, 3, 17))
static b() { }
>b : Symbol(C.b, Decl(declFilePrivateStatic.ts, 5, 26))
private static get c() { return 1; }
>c : Symbol(C.c, Decl(declFilePrivateStatic.ts, 6, 18))
static get d() { return 1; }
>d : Symbol(C.d, Decl(declFilePrivateStatic.ts, 8, 40))
private static set e(v) { }
>e : Symbol(C.e, Decl(declFilePrivateStatic.ts, 9, 32))
>v : Symbol(v, Decl(declFilePrivateStatic.ts, 11, 25))
static set f(v) { }
>f : Symbol(C.f, Decl(declFilePrivateStatic.ts, 11, 31))
>v : Symbol(v, Decl(declFilePrivateStatic.ts, 12, 17))
}