TypeScript/tests/baselines/reference/staticAndMemberFunctions.symbols
2015-04-15 16:44:20 -07:00

11 lines
290 B
Plaintext

=== tests/cases/compiler/staticAndMemberFunctions.ts ===
class T {
>T : Symbol(T, Decl(staticAndMemberFunctions.ts, 0, 0))
static x() { }
>x : Symbol(T.x, Decl(staticAndMemberFunctions.ts, 0, 9))
public y() { }
>y : Symbol(y, Decl(staticAndMemberFunctions.ts, 1, 18))
}