File: typeofEnum.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-- 478 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/typeofEnum.ts ===
enum E {
>E : Symbol(E, Decl(typeofEnum.ts, 0, 0))

    e1,
>e1 : Symbol(E.e1, Decl(typeofEnum.ts, 0, 8))

    e2
>e2 : Symbol(E.e2, Decl(typeofEnum.ts, 1, 7))
}

var e1: typeof E;
>e1 : Symbol(e1, Decl(typeofEnum.ts, 5, 3))
>E : Symbol(E, Decl(typeofEnum.ts, 0, 0))

e1.e1;
>e1.e1 : Symbol(E.e1, Decl(typeofEnum.ts, 0, 8))
>e1 : Symbol(e1, Decl(typeofEnum.ts, 5, 3))
>e1 : Symbol(E.e1, Decl(typeofEnum.ts, 0, 8))