TypeScript/tests/baselines/reference/es5ModuleWithModuleGenCommonjs.types

16 lines
213 B
Plaintext
Raw Normal View History

2015-03-12 06:53:36 +01:00
=== tests/cases/compiler/es5ModuleWithModuleGenCommonjs.ts ===
export class A
>A : A
2014-10-11 21:52:42 +02:00
{
constructor ()
{
}
public B()
>B : () => number
2014-10-11 21:52:42 +02:00
{
return 42;
2015-04-13 21:36:11 +02:00
>42 : number
2014-10-11 21:52:42 +02:00
}
}