TypeScript/tests/baselines/reference/es5-system.symbols
2016-03-16 13:45:55 -07:00

18 lines
254 B
Plaintext

=== tests/cases/compiler/es5-system.ts ===
export default class A
>A : Symbol(A, Decl(es5-system.ts, 0, 0))
{
constructor ()
{
}
public B()
>B : Symbol(A.B, Decl(es5-system.ts, 6, 5))
{
return 42;
}
}