File: labeledStatementWithLabel_strict.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 (38 lines) | stat: -rw-r--r-- 1,206 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
=== tests/cases/conformance/statements/labeledStatements/labeledStatementWithLabel_strict.ts ===
"use strict"
label: function fn() { }
>fn : Symbol(fn, Decl(labeledStatementWithLabel_strict.ts, 1, 6))

label: function* gen() { }
>gen : Symbol(gen, Decl(labeledStatementWithLabel_strict.ts, 2, 6))

label: async function gen1() { }
>gen1 : Symbol(gen1, Decl(labeledStatementWithLabel_strict.ts, 3, 6))

label: enum E {}
>E : Symbol(E, Decl(labeledStatementWithLabel_strict.ts, 4, 6))

label: interface I {}
>I : Symbol(I, Decl(labeledStatementWithLabel_strict.ts, 5, 6))

label: class C { }
>C : Symbol(C, Decl(labeledStatementWithLabel_strict.ts, 6, 6))

label: var a = 1;
>a : Symbol(a, Decl(labeledStatementWithLabel_strict.ts, 7, 10))

label: let b = 1;
>b : Symbol(b, Decl(labeledStatementWithLabel_strict.ts, 8, 10))

label: const c = 1;
>c : Symbol(c, Decl(labeledStatementWithLabel_strict.ts, 9, 12))

label: module M { }
>M : Symbol(M, Decl(labeledStatementWithLabel_strict.ts, 11, 6))

label: namespace N {}
>N : Symbol(N, Decl(labeledStatementWithLabel_strict.ts, 12, 6))

label: type T = {}
>T : Symbol(T, Decl(labeledStatementWithLabel_strict.ts, 13, 6))