File: letDeclarations.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 (32 lines) | stat: -rw-r--r-- 1,033 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
=== tests/cases/compiler/letDeclarations.ts ===
let l1;
>l1 : Symbol(l1, Decl(letDeclarations.ts, 0, 3))

let l2: number;
>l2 : Symbol(l2, Decl(letDeclarations.ts, 1, 3))

let l3, l4, l5 :string, l6;
>l3 : Symbol(l3, Decl(letDeclarations.ts, 2, 3))
>l4 : Symbol(l4, Decl(letDeclarations.ts, 2, 7))
>l5 : Symbol(l5, Decl(letDeclarations.ts, 2, 11))
>l6 : Symbol(l6, Decl(letDeclarations.ts, 2, 23))

let l7 = false;
>l7 : Symbol(l7, Decl(letDeclarations.ts, 4, 3))

let l8: number = 23;
>l8 : Symbol(l8, Decl(letDeclarations.ts, 5, 3))

let l9 = 0, l10 :string = "", l11 = null;
>l9 : Symbol(l9, Decl(letDeclarations.ts, 6, 3))
>l10 : Symbol(l10, Decl(letDeclarations.ts, 6, 11))
>l11 : Symbol(l11, Decl(letDeclarations.ts, 6, 29))

for(let l11 in {}) { }
>l11 : Symbol(l11, Decl(letDeclarations.ts, 8, 7))

for(let l12 = 0; l12 < 9; l12++) { }
>l12 : Symbol(l12, Decl(letDeclarations.ts, 10, 7))
>l12 : Symbol(l12, Decl(letDeclarations.ts, 10, 7))
>l12 : Symbol(l12, Decl(letDeclarations.ts, 10, 7))