File: es6ModuleInternalNamedImports.symbols

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (76 lines) | stat: -rw-r--r-- 2,612 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
=== tests/cases/compiler/es6ModuleInternalNamedImports.ts ===
export module M {
>M : Symbol(M, Decl(es6ModuleInternalNamedImports.ts, 0, 0))

    // variable
    export var M_V = 0;
>M_V : Symbol(M_V, Decl(es6ModuleInternalNamedImports.ts, 2, 14))

    // interface
    export interface M_I { }
>M_I : Symbol(M_I, Decl(es6ModuleInternalNamedImports.ts, 2, 23))

    //calss
    export class M_C { }
>M_C : Symbol(M_C, Decl(es6ModuleInternalNamedImports.ts, 4, 28))

    // instantiated module
    export module M_M { var x; }
>M_M : Symbol(M_M, Decl(es6ModuleInternalNamedImports.ts, 6, 24))
>x : Symbol(x, Decl(es6ModuleInternalNamedImports.ts, 8, 27))

    // uninstantiated module
    export module M_MU { }
>M_MU : Symbol(M_MU, Decl(es6ModuleInternalNamedImports.ts, 8, 32))

    // function
    export function M_F() { }
>M_F : Symbol(M_F, Decl(es6ModuleInternalNamedImports.ts, 10, 26))

    // enum
    export enum M_E { }
>M_E : Symbol(M_E, Decl(es6ModuleInternalNamedImports.ts, 12, 29))

    // type
    export type M_T = number;
>M_T : Symbol(M_T, Decl(es6ModuleInternalNamedImports.ts, 14, 23))

    // alias
    export import M_A = M_M;
>M_A : Symbol(M_A, Decl(es6ModuleInternalNamedImports.ts, 16, 29))
>M_M : Symbol(M_M, Decl(es6ModuleInternalNamedImports.ts, 6, 24))

    // Reexports
    export {M_V as v};
>M_V : Symbol(M_V, Decl(es6ModuleInternalNamedImports.ts, 2, 14))
>v : Symbol(v, Decl(es6ModuleInternalNamedImports.ts, 21, 12))

    export {M_I as i};
>M_I : Symbol(M_I, Decl(es6ModuleInternalNamedImports.ts, 2, 23))
>i : Symbol(i, Decl(es6ModuleInternalNamedImports.ts, 22, 12))

    export {M_C as c};
>M_C : Symbol(M_C, Decl(es6ModuleInternalNamedImports.ts, 4, 28))
>c : Symbol(c, Decl(es6ModuleInternalNamedImports.ts, 23, 12))

    export {M_M as m};
>M_M : Symbol(M_M, Decl(es6ModuleInternalNamedImports.ts, 6, 24))
>m : Symbol(m, Decl(es6ModuleInternalNamedImports.ts, 24, 12))

    export {M_MU as mu};
>M_MU : Symbol(M_MU, Decl(es6ModuleInternalNamedImports.ts, 8, 32))
>mu : Symbol(mu, Decl(es6ModuleInternalNamedImports.ts, 25, 12))

    export {M_F as f};
>M_F : Symbol(M_F, Decl(es6ModuleInternalNamedImports.ts, 10, 26))
>f : Symbol(f, Decl(es6ModuleInternalNamedImports.ts, 26, 12))

    export {M_E as e};
>M_E : Symbol(M_E, Decl(es6ModuleInternalNamedImports.ts, 12, 29))
>e : Symbol(e, Decl(es6ModuleInternalNamedImports.ts, 27, 12))

    export {M_A as a};
>M_A : Symbol(M_A, Decl(es6ModuleInternalNamedImports.ts, 16, 29))
>a : Symbol(a, Decl(es6ModuleInternalNamedImports.ts, 28, 12))
}