TypeScript/tests/baselines/reference/es2015modulekind.types
Nathan Shively-Sanders 53188d9cb8 Add ES2015 as a synonym to ES6
In ModuleKind, ScriptTarget and associated command line arguments.
2015-10-15 11:35:52 -07:00

18 lines
211 B
Plaintext

=== tests/cases/compiler/es2015modulekind.ts ===
export default class A
>A : A
{
constructor ()
{
}
public B()
>B : () => number
{
return 42;
>42 : number
}
}