-
-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathaccessors.spec.ts
More file actions
403 lines (368 loc) · 9.99 KB
/
accessors.spec.ts
File metadata and controls
403 lines (368 loc) · 9.99 KB
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
import * as util from "../../util";
test("get accessor", () => {
util.testFunction`
class Foo {
_foo = "foo";
get foo() { return this._foo; }
}
const f = new Foo();
return f.foo;
`.expectToMatchJsResult();
});
test("multiple get accessors", () => {
util.testFunction`
class Foo {
_foo = "foo";
get foo() { return this._foo; }
_bar = "bar";
get bar() { return this._bar; }
}
const f = new Foo();
return f.foo + f.bar;
`.expectToMatchJsResult();
});
test("get accessor in base class", () => {
util.testFunction`
class Foo {
_foo = "foo";
get foo() { return this._foo; }
}
class Bar extends Foo {}
const b = new Bar();
return b.foo;
`.expectToMatchJsResult();
});
test("get accessor override accessor", () => {
util.testFunction`
class Foo {
_foo = "foo";
get foo() { return this._foo; }
}
class Bar extends Foo {
_bar = "bar";
get foo() { return this._bar; }
}
const b = new Bar();
return b.foo;
`.expectToMatchJsResult();
});
test("get accessor override accessor (multiple)", () => {
util.testFunction`
class Foo {
_foo = "foo";
get foo() { return this._foo; }
}
class Bar extends Foo {
_bar = "bar";
get foo() { return this._bar; }
}
class Baz extends Foo {
_baz = "baz";
get foo() { return this._baz; }
}
const bar = new Bar();
const baz = new Baz();
return bar.foo + baz.foo;
`.expectToMatchJsResult();
});
test("get accessor from interface", () => {
util.testFunction`
class Foo {
_foo = "foo";
get foo() { return this._foo; }
}
interface Bar {
readonly foo: string;
}
const b: Bar = new Foo();
return b.foo;
`.expectToMatchJsResult();
});
test("set accessor", () => {
util.testFunction`
class Foo {
_foo = "foo";
set foo(val: string) { this._foo = val; }
}
const f = new Foo();
f.foo = "bar"
return f._foo;
`.expectToMatchJsResult();
});
test("set accessor in base class", () => {
util.testFunction`
class Foo {
_foo = "foo";
set foo(val: string) { this._foo = val; }
}
class Bar extends Foo {}
const b = new Bar();
b.foo = "bar"
return b._foo;
`.expectToMatchJsResult();
});
test("set accessor override accessor", () => {
util.testFunction`
class Foo {
_foo = "foo";
set foo(val: string) { this._foo = "foo"; }
}
class Bar extends Foo {
set foo(val: string) { this._foo = val; }
}
const b = new Bar();
b.foo = "bar"
return b._foo;
`.expectToMatchJsResult();
});
test("set accessor from interface", () => {
util.testFunction`
class Foo {
_foo = "foo";
set foo(val: string) { this._foo = val; }
}
interface Bar {
_foo: string;
foo: string;
}
const b: Bar = new Foo();
b.foo = "bar"
return b._foo;
`.expectToMatchJsResult();
});
test("get/set accessors", () => {
util.testFunction`
class Foo {
_foo = "foo";
get foo() { return this._foo; }
set foo(val: string) { this._foo = val; }
}
const f = new Foo();
const fooOriginal = f.foo;
f.foo = "bar";
return fooOriginal + f.foo;
`.expectToMatchJsResult();
});
test("multiple get/set accessors", () => {
util.testFunction`
class Foo {
_foo = "foo";
get foo() { return this._foo; }
set foo(val: string) { this._foo = val; }
_bar = "bar";
get bar() { return this._bar; }
set bar(val: string) { this._bar = val; }
}
const f = new Foo();
const fooOriginal = f.foo;
f.foo = "fizz";
const barOriginal = f.bar;
f.bar = "buzz";
return [fooOriginal, f.foo, barOriginal, f.bar];
`.expectToMatchJsResult();
});
test("get/set accessors in base class", () => {
util.testFunction`
class Foo {
_foo = "foo";
get foo() { return this._foo; }
set foo(val: string) { this._foo = val; }
}
class Bar extends Foo {}
const b = new Bar();
const fooOriginal = b.foo;
b.foo = "bar"
return fooOriginal + b.foo;
`.expectToMatchJsResult();
});
test("static get accessor", () => {
util.testFunction`
class Foo {
static _foo = "foo";
static get foo() { return this._foo; }
}
return Foo.foo;
`.expectToMatchJsResult();
});
test("static get accessor in base class", () => {
util.testFunction`
class Foo {
static _foo = "foo";
static get foo() { return this._foo; }
}
class Bar extends Foo {}
return Bar.foo;
`.expectToMatchJsResult();
});
test("static get accessor override", () => {
util.testFunction`
class Foo {
static _foo = "foo";
static foo = "foo";
}
class Bar extends Foo {
static get foo() { return this._foo + "bar"; }
}
return Bar.foo;
`.expectToMatchJsResult();
});
test("static get accessor override accessor", () => {
util.testFunction`
class Foo {
static _foo = "foo";
static get foo() { return this._foo; }
}
class Bar extends Foo {
static _bar = "bar";
static get foo() { return this._bar; }
}
return Bar.foo;
`.expectToMatchJsResult();
});
test("static get accessor from interface", () => {
util.testFunction`
class Foo {
static _foo = "foo";
static get foo() { return this._foo; }
}
interface Bar {
readonly foo: string;
}
const b: Bar = Foo;
return b.foo;
`.expectToMatchJsResult();
});
test("static set accessor", () => {
util.testFunction`
class Foo {
static _foo = "foo";
static set foo(val: string) { this._foo = val; }
}
Foo.foo = "bar"
return Foo._foo;
`.expectToMatchJsResult();
});
test("static set accessor in base class", () => {
util.testFunction`
class Foo {
static _foo = "foo";
static set foo(val: string) { this._foo = val; }
}
class Bar extends Foo {}
Bar.foo = "bar"
return Bar._foo;
`.expectToMatchJsResult();
});
test("static set accessor override", () => {
util.testFunction`
class Foo {
static _foo = "foo";
static foo = "foo";
}
class Bar extends Foo {
static set foo(val: string) { this._foo = val; }
}
Bar.foo = "bar"
return Bar._foo;
`.expectToMatchJsResult();
});
test("static set accessor overridden", () => {
util.testFunction`
class Foo {
static _foo = "baz";
static set foo(val: string) { this._foo = val; }
}
class Bar extends Foo {
static foo = "foo"; // triggers base class setter
}
const fooOriginal = Bar._foo;
Bar.foo = "bar"
return fooOriginal + Bar._foo;
`.expectToMatchJsResult();
});
test("static set accessor override accessor", () => {
util.testFunction`
class Foo {
static _foo = "foo";
static set foo(val: string) { this._foo = "foo"; }
}
class Bar extends Foo {
static set foo(val: string) { this._foo = val; }
}
Bar.foo = "bar"
return Bar._foo;
`.expectToMatchJsResult();
});
test("static set accessor from interface", () => {
util.testFunction`
class Foo {
static _foo = "foo";
static set foo(val: string) { this._foo = val; }
}
interface Bar {
_foo: string;
foo: string;
}
const b: Bar = Foo;
b.foo = "bar"
return b._foo;
`.expectToMatchJsResult();
});
test("static get/set accessors", () => {
util.testFunction`
class Foo {
static _foo = "foo";
static get foo() { return this._foo; }
static set foo(val: string) { this._foo = val; }
}
const fooOriginal = Foo.foo;
Foo.foo = "bar";
return fooOriginal + Foo.foo;
`.expectToMatchJsResult();
});
test("static get/set accessors in base class", () => {
util.testFunction`
class Foo {
static _foo = "foo";
static get foo() { return this._foo; }
static set foo(val: string) { this._foo = val; }
}
class Bar extends Foo {}
const fooOriginal = Bar.foo;
Bar.foo = "bar"
return fooOriginal + Bar.foo;
`.expectToMatchJsResult();
});
// https://github.com/TypeScriptToLua/TypeScriptToLua/issues/1437
test("super class get accessor (#1437)", () => {
util.testFunction`
class A {
get foo() {
return "A";
}
}
class B extends A {
override get foo() {
return super.foo + "B";
}
}
return new B().foo;
`.expectToMatchJsResult();
});
test("super class set accessor", () => {
util.testFunction`
let result = "unset";
class A {
set result(value: string) {
result = "foo" + value;
}
}
class B extends A {
override set result(value: string) {
super.result = "bar" + value;
}
}
new B().result = "baz";
return result;
`.expectToMatchJsResult();
});