File: internalAliasWithDottedNameEmit.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 (20 lines) | stat: -rw-r--r-- 894 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
=== tests/cases/compiler/internalAliasWithDottedNameEmit.ts ===
module a.b.c {
>a : Symbol(a, Decl(internalAliasWithDottedNameEmit.ts, 0, 0), Decl(internalAliasWithDottedNameEmit.ts, 2, 1))
>b : Symbol(b, Decl(internalAliasWithDottedNameEmit.ts, 0, 9))
>c : Symbol(c, Decl(internalAliasWithDottedNameEmit.ts, 0, 11))

      export var d;
>d : Symbol(d, Decl(internalAliasWithDottedNameEmit.ts, 1, 16))
}
module a.e.f {
>a : Symbol(a, Decl(internalAliasWithDottedNameEmit.ts, 0, 0), Decl(internalAliasWithDottedNameEmit.ts, 2, 1))
>e : Symbol(e, Decl(internalAliasWithDottedNameEmit.ts, 3, 9))
>f : Symbol(f, Decl(internalAliasWithDottedNameEmit.ts, 3, 11))

      import g = b.c;
>g : Symbol(g, Decl(internalAliasWithDottedNameEmit.ts, 3, 14))
>b : Symbol(b, Decl(internalAliasWithDottedNameEmit.ts, 0, 9))
>c : Symbol(g, Decl(internalAliasWithDottedNameEmit.ts, 0, 11))
}