File: assignmentLHSIsValue.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 (245 lines) | stat: -rw-r--r-- 3,646 bytes parent folder | download
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
=== tests/cases/conformance/expressions/assignmentOperator/assignmentLHSIsValue.ts ===
// expected error for all the LHS of assignments
var value: any;
>value : any

// this
class C {
>C : C

    constructor() { this = value; }
>this = value : any
>this : this
>value : any

    foo() { this = value; }
>foo : () => void
>this = value : any
>this : this
>value : any

    static sfoo() { this = value; }
>sfoo : () => void
>this = value : any
>this : typeof C
>value : any
}

function foo() { this = value; }
>foo : () => void
>this = value : any
>this : any
>value : any

this = value;
>this = value : any
>this : any
>value : any

// identifiers: module, class, enum, function
module M { export var a; }
>M : typeof M
>a : any

M = value;
>M = value : any
>M : any
>value : any

C = value;
>C = value : any
>C : any
>value : any

enum E { }
>E : E

E = value;
>E = value : any
>E : any
>value : any

foo = value;
>foo = value : any
>foo : any
>value : any

// literals
null = value;
>null = value : any
>null : null
>value : any

true = value;
>true = value : any
>true : true
>value : any

false = value;
>false = value : any
>false : false
>value : any

0 = value;
>0 = value : any
>0 : 0
>value : any

'' = value;
>'' = value : any
>'' : ""
>value : any

/d+/ = value;
>/d+/ = value : any
>/d+/ : RegExp
>value : any

// object literals
{ a: 0} = value;
>a : any
>0 : 0
>value : any

// array literals
['', ''] = value;
>['', ''] = value : any
>['', ''] : [string, string]
>'' : ""
>'' : ""
>value : any

// super
class Derived extends C {
>Derived : Derived
>C : C

    constructor() { super(); super = value; }
>super() : void
>super : typeof C
>super = value : any
>super : any
>super : C
> : any
>value : any

    foo() { super = value }
>foo : () => void
>super = value : any
>super : any
>super : C
> : any
>value : any

    static sfoo() { super = value; }
>sfoo : () => void
>super = value : any
>super : any
>super : typeof C
> : any
>value : any
}

// function expression
function bar() { } = value;
>bar : () => void
>value : any

() => { } = value;
>() => { } : () => void
>value : any

// function calls
foo() = value;
>foo() = value : any
>foo() : void
>foo : () => void
>value : any

// parentheses, the containted expression is value
(this) = value;
>(this) = value : any
>(this) : any
>this : any
>value : any

(M) = value;
>(M) = value : any
>(M) : any
>M : any
>value : any

(C) = value;
>(C) = value : any
>(C) : any
>C : any
>value : any

(E) = value;
>(E) = value : any
>(E) : any
>E : any
>value : any

(foo) = value;
>(foo) = value : any
>(foo) : any
>foo : any
>value : any

(null) = value;
>(null) = value : any
>(null) : null
>null : null
>value : any

(true) = value;
>(true) = value : any
>(true) : true
>true : true
>value : any

(0) = value;
>(0) = value : any
>(0) : 0
>0 : 0
>value : any

('') = value;
>('') = value : any
>('') : ""
>'' : ""
>value : any

(/d+/) = value;
>(/d+/) = value : any
>(/d+/) : RegExp
>/d+/ : RegExp
>value : any

({}) = value;
>({}) = value : any
>({}) : {}
>{} : {}
>value : any

([]) = value;
>([]) = value : any
>([]) : undefined[]
>[] : undefined[]
>value : any

(function baz() { }) = value;
>(function baz() { }) = value : any
>(function baz() { }) : () => void
>function baz() { } : () => void
>baz : () => void
>value : any

(foo()) = value;
>(foo()) = value : any
>(foo()) : void
>foo() : void
>foo : () => void
>value : any