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

28 lines
370 B
Text

=== 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