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

20 lines
560 B
Plaintext

=== tests/cases/conformance/types/specifyingTypes/typeQueries/typeofModuleWithoutExports.ts ===
module M {
>M : Symbol(M, Decl(typeofModuleWithoutExports.ts, 0, 0))
var x = 1;
>x : Symbol(x, Decl(typeofModuleWithoutExports.ts, 1, 7))
class C {
>C : Symbol(C, Decl(typeofModuleWithoutExports.ts, 1, 14))
foo: number;
>foo : Symbol(foo, Decl(typeofModuleWithoutExports.ts, 2, 13))
}
}
var r: typeof M;
>r : Symbol(r, Decl(typeofModuleWithoutExports.ts, 7, 3))
>M : Symbol(M, Decl(typeofModuleWithoutExports.ts, 0, 0))