File: stringLiteralsWithSwitchStatements03.symbols

package info (click to toggle)
node-typescript 5.0.4%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 459,140 kB
  • sloc: javascript: 1,972,754; makefile: 6; sh: 1
file content (53 lines) | stat: -rw-r--r-- 1,636 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
=== tests/cases/conformance/types/literal/stringLiteralsWithSwitchStatements03.ts ===
let x: "foo";
>x : Symbol(x, Decl(stringLiteralsWithSwitchStatements03.ts, 0, 3))

let y: "foo" | "bar"; 
>y : Symbol(y, Decl(stringLiteralsWithSwitchStatements03.ts, 1, 3))

let z: "bar";
>z : Symbol(z, Decl(stringLiteralsWithSwitchStatements03.ts, 2, 3))

declare function randBool(): boolean;
>randBool : Symbol(randBool, Decl(stringLiteralsWithSwitchStatements03.ts, 2, 13))

switch (x) {
>x : Symbol(x, Decl(stringLiteralsWithSwitchStatements03.ts, 0, 3))

    case randBool() ? "foo" : "baz":
>randBool : Symbol(randBool, Decl(stringLiteralsWithSwitchStatements03.ts, 2, 13))

        break;
    case (randBool() ? ("bar") : "baz" ? "bar" : "baz"):
>randBool : Symbol(randBool, Decl(stringLiteralsWithSwitchStatements03.ts, 2, 13))

        break;
    case (("bar")):
        break;
    case (x, y, ("baz")):
>x : Symbol(x, Decl(stringLiteralsWithSwitchStatements03.ts, 0, 3))
>y : Symbol(y, Decl(stringLiteralsWithSwitchStatements03.ts, 1, 3))

        x;
>x : Symbol(x, Decl(stringLiteralsWithSwitchStatements03.ts, 0, 3))

        y;
>y : Symbol(y, Decl(stringLiteralsWithSwitchStatements03.ts, 1, 3))

        break;
    case (("foo" || ("bar"))):
        break;
    case (("bar" || ("baz"))):
        break;
    case z || "baz":
>z : Symbol(z, Decl(stringLiteralsWithSwitchStatements03.ts, 2, 3))

    case "baz" || z:
>z : Symbol(z, Decl(stringLiteralsWithSwitchStatements03.ts, 2, 3))

        z;
>z : Symbol(z, Decl(stringLiteralsWithSwitchStatements03.ts, 2, 3))

        break;
}