TypeScript/tests/baselines/reference/es6modulekind.symbols
Wesley Wigham eb80799ef0 Care about esnext where we look for es2015 (#18331)
* Care about esnext where we look for es2015

* Update diagnostic message to be more agnostic
2017-09-09 16:30:06 -07:00

16 lines
282 B
Plaintext

=== tests/cases/conformance/externalModules/es6/es6modulekind.ts ===
export default class A
>A : Symbol(A, Decl(es6modulekind.ts, 0, 0))
{
constructor ()
{
}
public B()
>B : Symbol(A.B, Decl(es6modulekind.ts, 5, 5))
{
return 42;
}
}