File: es6ExportAll.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 (23 lines) | stat: -rw-r--r-- 555 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
=== tests/cases/compiler/server.ts ===
export class c {
>c : Symbol(c, Decl(server.ts, 0, 0))
}
export interface i {
>i : Symbol(i, Decl(server.ts, 1, 1))
}
export module m {
>m : Symbol(m, Decl(server.ts, 3, 1))

    export var x = 10;
>x : Symbol(x, Decl(server.ts, 5, 14))
}
export var x = 10;
>x : Symbol(x, Decl(server.ts, 7, 10))

export module uninstantiated {
>uninstantiated : Symbol(uninstantiated, Decl(server.ts, 7, 18))
}

=== tests/cases/compiler/client.ts ===
export * from "server";
No type information for this code.