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

17 lines
258 B
Plaintext

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