TypeScript/tests/baselines/reference/sourceMapValidationImport.types
2014-08-15 14:37:48 -07:00

29 lines
356 B
Plaintext

=== tests/cases/compiler/sourceMapValidationImport.ts ===
export module m {
>m : typeof m
export class c {
>c : c
}
}
import a = m.c;
>a : typeof c
>m : c
>c : c
export import b = m.c;
>b : typeof c
>m : c
>c : c
var x = new a();
>x : c
>new a() : c
>a : typeof c
var y = new b();
>y : c
>new b() : c
>b : typeof c