TypeScript/tests/baselines/reference/autoAsiForStaticsInClassDeclaration.types

11 lines
338 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/autoAsiForStaticsInClassDeclaration.ts ===
class C {
2015-04-13 23:01:57 +02:00
>C : C, Symbol(C, Decl(autoAsiForStaticsInClassDeclaration.ts, 0, 0))
2014-08-15 23:33:16 +02:00
static x
2015-04-13 23:01:57 +02:00
>x : any, Symbol(C.x, Decl(autoAsiForStaticsInClassDeclaration.ts, 0, 9))
2014-08-15 23:33:16 +02:00
static y
2015-04-13 23:01:57 +02:00
>y : any, Symbol(C.y, Decl(autoAsiForStaticsInClassDeclaration.ts, 1, 12))
2014-08-15 23:33:16 +02:00
}