TypeScript/tests/baselines/reference/amdModuleName1.types
2015-09-21 14:30:23 -07:00

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