TypeScript/tests/baselines/reference/es5-system.symbols

18 lines
254 B
Text
Raw Normal View History

=== tests/cases/compiler/es5-system.ts ===
export default class A
>A : Symbol(A, Decl(es5-system.ts, 0, 0))
{
constructor ()
{
}
public B()
2016-03-16 21:45:55 +01:00
>B : Symbol(A.B, Decl(es5-system.ts, 6, 5))
{
return 42;
}
}