File: for-inStatementsArray.types

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 (137 lines) | stat: -rw-r--r-- 1,767 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
=== tests/cases/conformance/statements/for-inStatements/for-inStatementsArray.ts ===
let a: Date[];
>a : Date[]

let b: boolean[];
>b : boolean[]

for (let x in a) {
>x : string
>a : Date[]

    let a1 = a[x];
>a1 : Date
>a[x] : Date
>a : Date[]
>x : string

    let a2 = a[(x)];
>a2 : Date
>a[(x)] : Date
>a : Date[]
>(x) : string
>x : string

    let a3 = a[+x];
>a3 : Date
>a[+x] : Date
>a : Date[]
>+x : number
>x : string

    let b1 = b[x];
>b1 : boolean
>b[x] : boolean
>b : boolean[]
>x : string

    let b2 = b[(x)];
>b2 : boolean
>b[(x)] : boolean
>b : boolean[]
>(x) : string
>x : string

    let b3 = b[+x];
>b3 : boolean
>b[+x] : boolean
>b : boolean[]
>+x : number
>x : string
}

for (let x in a) {
>x : string
>a : Date[]

    for (let y in a) {
>y : string
>a : Date[]

        for (let z in a) {
>z : string
>a : Date[]

            let a1 = a[x];
>a1 : Date
>a[x] : Date
>a : Date[]
>x : string

            let a2 = a[y];
>a2 : Date
>a[y] : Date
>a : Date[]
>y : string

            let a3 = a[z];
>a3 : Date
>a[z] : Date
>a : Date[]
>z : string
        }
    }
}

let i: string;
>i : string

let j: string;
>j : string

for (i in a) {
>i : string
>a : Date[]

    for (j in b) {
>j : string
>b : boolean[]

        let a1 = a[i];
>a1 : Date
>a[i] : Date
>a : Date[]
>i : string

        let a2 = a[j];
>a2 : Date
>a[j] : Date
>a : Date[]
>j : string
    }
}

var s: string;
>s : string

for (var s in a) {
>s : string
>a : Date[]

    let a1 = a[s];
>a1 : Date
>a[s] : Date
>a : Date[]
>s : string
}
for (s in a) {
>s : string
>a : Date[]

    let a1 = a[s];
>a1 : Date
>a[s] : Date
>a : Date[]
>s : string
}