TypeScript/tests/baselines/reference/amdModuleName1.types
2014-11-13 11:00:06 -08:00

20 lines
290 B
Plaintext

=== tests/cases/compiler/amdModuleName1.ts ===
///<amd-module name='NamedModule'/>
class Foo {
>Foo : Foo
x: number;
>x : number
constructor() {
this.x = 5;
>this.x = 5 : number
>this.x : number
>this : Foo
>x : number
}
}
export = Foo;
>Foo : Foo