TypeScript/tests/baselines/reference/sourceMapValidationImport.types
2014-08-28 12:40:58 -07:00

29 lines
370 B
Plaintext

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