TypeScript/tests/baselines/reference/amdModuleName1.types
2015-04-15 16:44:20 -07:00

21 lines
303 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
>5 : number
}
}
export = Foo;
>Foo : Foo