@flock/wirespec 0.9.2 → 0.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/clikt-clikt.js +1126 -1126
- package/colormath-root-colormath.js +335 -335
- package/kotlin-kotlin-stdlib.js +8 -8
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlin-rgxgen.js +1760 -1760
- package/markdown.js +1792 -1792
- package/mordant-mordant.js +1498 -1498
- package/package.json +1 -1
- package/wirespec-src-compiler-core.js +1125 -1107
- package/wirespec-src-compiler-core.js.map +1 -1
- package/wirespec-src-compiler-lib.js +231 -231
- package/wirespec-src-converter-openapi.js +223 -231
- package/wirespec-src-converter-openapi.js.map +1 -1
- package/wirespec-src-generator.js +18 -18
- package/wirespec-src-plugin-arguments.js +72 -72
- package/wirespec-src-plugin-cli.js +105 -105
- package/wirespec-src-plugin-npm.js +1 -1
|
@@ -133,34 +133,34 @@
|
|
|
133
133
|
function WsNode() {
|
|
134
134
|
}
|
|
135
135
|
function WsType(name, shape) {
|
|
136
|
-
this.
|
|
136
|
+
this.u23_1 = name;
|
|
137
137
|
this.shape = shape;
|
|
138
138
|
}
|
|
139
139
|
protoOf(WsType).va = function () {
|
|
140
|
-
return this.
|
|
140
|
+
return this.u23_1;
|
|
141
141
|
};
|
|
142
|
-
protoOf(WsType).
|
|
142
|
+
protoOf(WsType).v23 = function () {
|
|
143
143
|
return this.shape;
|
|
144
144
|
};
|
|
145
145
|
protoOf(WsType).fd = function () {
|
|
146
|
-
return this.
|
|
146
|
+
return this.u23_1;
|
|
147
147
|
};
|
|
148
148
|
protoOf(WsType).gd = function () {
|
|
149
149
|
return this.shape;
|
|
150
150
|
};
|
|
151
|
-
protoOf(WsType).
|
|
151
|
+
protoOf(WsType).w23 = function (name, shape) {
|
|
152
152
|
return new WsType(name, shape);
|
|
153
153
|
};
|
|
154
154
|
protoOf(WsType).copy = function (name, shape, $super) {
|
|
155
|
-
name = name === VOID ? this.
|
|
155
|
+
name = name === VOID ? this.u23_1 : name;
|
|
156
156
|
shape = shape === VOID ? this.shape : shape;
|
|
157
|
-
return this.
|
|
157
|
+
return this.w23(name, shape);
|
|
158
158
|
};
|
|
159
159
|
protoOf(WsType).toString = function () {
|
|
160
|
-
return 'WsType(name=' + this.
|
|
160
|
+
return 'WsType(name=' + this.u23_1 + ', shape=' + this.shape + ')';
|
|
161
161
|
};
|
|
162
162
|
protoOf(WsType).hashCode = function () {
|
|
163
|
-
var result = getStringHashCode(this.
|
|
163
|
+
var result = getStringHashCode(this.u23_1);
|
|
164
164
|
result = imul(result, 31) + this.shape.hashCode() | 0;
|
|
165
165
|
return result;
|
|
166
166
|
};
|
|
@@ -170,7 +170,7 @@
|
|
|
170
170
|
if (!(other instanceof WsType))
|
|
171
171
|
return false;
|
|
172
172
|
var tmp0_other_with_cast = other instanceof WsType ? other : THROW_CCE();
|
|
173
|
-
if (!(this.
|
|
173
|
+
if (!(this.u23_1 === tmp0_other_with_cast.u23_1))
|
|
174
174
|
return false;
|
|
175
175
|
if (!this.shape.equals(tmp0_other_with_cast.shape))
|
|
176
176
|
return false;
|
|
@@ -185,12 +185,12 @@
|
|
|
185
185
|
protoOf(WsShape).fd = function () {
|
|
186
186
|
return this.value;
|
|
187
187
|
};
|
|
188
|
-
protoOf(WsShape).
|
|
188
|
+
protoOf(WsShape).x23 = function (value) {
|
|
189
189
|
return new WsShape(value);
|
|
190
190
|
};
|
|
191
191
|
protoOf(WsShape).copy = function (value, $super) {
|
|
192
192
|
value = value === VOID ? this.value : value;
|
|
193
|
-
return this.
|
|
193
|
+
return this.x23(value);
|
|
194
194
|
};
|
|
195
195
|
protoOf(WsShape).toString = function () {
|
|
196
196
|
return 'WsShape(value=' + toString(this.value) + ')';
|
|
@@ -209,7 +209,7 @@
|
|
|
209
209
|
return true;
|
|
210
210
|
};
|
|
211
211
|
function WsEndpoint(name, method, path, query, headers, cookies, requests, responses) {
|
|
212
|
-
this.
|
|
212
|
+
this.y23_1 = name;
|
|
213
213
|
this.method = method;
|
|
214
214
|
this.path = path;
|
|
215
215
|
this.query = query;
|
|
@@ -219,31 +219,31 @@
|
|
|
219
219
|
this.responses = responses;
|
|
220
220
|
}
|
|
221
221
|
protoOf(WsEndpoint).va = function () {
|
|
222
|
-
return this.
|
|
222
|
+
return this.y23_1;
|
|
223
223
|
};
|
|
224
|
-
protoOf(WsEndpoint).
|
|
224
|
+
protoOf(WsEndpoint).z23 = function () {
|
|
225
225
|
return this.method;
|
|
226
226
|
};
|
|
227
|
-
protoOf(WsEndpoint).
|
|
227
|
+
protoOf(WsEndpoint).a24 = function () {
|
|
228
228
|
return this.path;
|
|
229
229
|
};
|
|
230
|
-
protoOf(WsEndpoint).
|
|
230
|
+
protoOf(WsEndpoint).b24 = function () {
|
|
231
231
|
return this.query;
|
|
232
232
|
};
|
|
233
|
-
protoOf(WsEndpoint).
|
|
233
|
+
protoOf(WsEndpoint).c24 = function () {
|
|
234
234
|
return this.headers;
|
|
235
235
|
};
|
|
236
|
-
protoOf(WsEndpoint).
|
|
236
|
+
protoOf(WsEndpoint).d24 = function () {
|
|
237
237
|
return this.cookies;
|
|
238
238
|
};
|
|
239
|
-
protoOf(WsEndpoint).
|
|
239
|
+
protoOf(WsEndpoint).e24 = function () {
|
|
240
240
|
return this.requests;
|
|
241
241
|
};
|
|
242
|
-
protoOf(WsEndpoint).
|
|
242
|
+
protoOf(WsEndpoint).f24 = function () {
|
|
243
243
|
return this.responses;
|
|
244
244
|
};
|
|
245
245
|
protoOf(WsEndpoint).fd = function () {
|
|
246
|
-
return this.
|
|
246
|
+
return this.y23_1;
|
|
247
247
|
};
|
|
248
248
|
protoOf(WsEndpoint).gd = function () {
|
|
249
249
|
return this.method;
|
|
@@ -251,26 +251,26 @@
|
|
|
251
251
|
protoOf(WsEndpoint).zg = function () {
|
|
252
252
|
return this.path;
|
|
253
253
|
};
|
|
254
|
-
protoOf(WsEndpoint).
|
|
254
|
+
protoOf(WsEndpoint).g24 = function () {
|
|
255
255
|
return this.query;
|
|
256
256
|
};
|
|
257
|
-
protoOf(WsEndpoint).
|
|
257
|
+
protoOf(WsEndpoint).h24 = function () {
|
|
258
258
|
return this.headers;
|
|
259
259
|
};
|
|
260
|
-
protoOf(WsEndpoint).
|
|
260
|
+
protoOf(WsEndpoint).i24 = function () {
|
|
261
261
|
return this.cookies;
|
|
262
262
|
};
|
|
263
|
-
protoOf(WsEndpoint).
|
|
263
|
+
protoOf(WsEndpoint).j24 = function () {
|
|
264
264
|
return this.requests;
|
|
265
265
|
};
|
|
266
|
-
protoOf(WsEndpoint).
|
|
266
|
+
protoOf(WsEndpoint).k24 = function () {
|
|
267
267
|
return this.responses;
|
|
268
268
|
};
|
|
269
|
-
protoOf(WsEndpoint).
|
|
269
|
+
protoOf(WsEndpoint).l24 = function (name, method, path, query, headers, cookies, requests, responses) {
|
|
270
270
|
return new WsEndpoint(name, method, path, query, headers, cookies, requests, responses);
|
|
271
271
|
};
|
|
272
272
|
protoOf(WsEndpoint).copy = function (name, method, path, query, headers, cookies, requests, responses, $super) {
|
|
273
|
-
name = name === VOID ? this.
|
|
273
|
+
name = name === VOID ? this.y23_1 : name;
|
|
274
274
|
method = method === VOID ? this.method : method;
|
|
275
275
|
path = path === VOID ? this.path : path;
|
|
276
276
|
query = query === VOID ? this.query : query;
|
|
@@ -278,13 +278,13 @@
|
|
|
278
278
|
cookies = cookies === VOID ? this.cookies : cookies;
|
|
279
279
|
requests = requests === VOID ? this.requests : requests;
|
|
280
280
|
responses = responses === VOID ? this.responses : responses;
|
|
281
|
-
return this.
|
|
281
|
+
return this.l24(name, method, path, query, headers, cookies, requests, responses);
|
|
282
282
|
};
|
|
283
283
|
protoOf(WsEndpoint).toString = function () {
|
|
284
|
-
return 'WsEndpoint(name=' + this.
|
|
284
|
+
return 'WsEndpoint(name=' + this.y23_1 + ', method=' + this.method + ', path=' + toString(this.path) + ', query=' + toString(this.query) + ', headers=' + toString(this.headers) + ', cookies=' + toString(this.cookies) + ', requests=' + toString(this.requests) + ', responses=' + toString(this.responses) + ')';
|
|
285
285
|
};
|
|
286
286
|
protoOf(WsEndpoint).hashCode = function () {
|
|
287
|
-
var result = getStringHashCode(this.
|
|
287
|
+
var result = getStringHashCode(this.y23_1);
|
|
288
288
|
result = imul(result, 31) + this.method.hashCode() | 0;
|
|
289
289
|
result = imul(result, 31) + hashCode(this.path) | 0;
|
|
290
290
|
result = imul(result, 31) + hashCode(this.query) | 0;
|
|
@@ -300,7 +300,7 @@
|
|
|
300
300
|
if (!(other instanceof WsEndpoint))
|
|
301
301
|
return false;
|
|
302
302
|
var tmp0_other_with_cast = other instanceof WsEndpoint ? other : THROW_CCE();
|
|
303
|
-
if (!(this.
|
|
303
|
+
if (!(this.y23_1 === tmp0_other_with_cast.y23_1))
|
|
304
304
|
return false;
|
|
305
305
|
if (!this.method.equals(tmp0_other_with_cast.method))
|
|
306
306
|
return false;
|
|
@@ -319,34 +319,34 @@
|
|
|
319
319
|
return true;
|
|
320
320
|
};
|
|
321
321
|
function WsEnum(name, entries) {
|
|
322
|
-
this.
|
|
322
|
+
this.m24_1 = name;
|
|
323
323
|
this.entries = entries;
|
|
324
324
|
}
|
|
325
325
|
protoOf(WsEnum).va = function () {
|
|
326
|
-
return this.
|
|
326
|
+
return this.m24_1;
|
|
327
327
|
};
|
|
328
328
|
protoOf(WsEnum).n2 = function () {
|
|
329
329
|
return this.entries;
|
|
330
330
|
};
|
|
331
331
|
protoOf(WsEnum).fd = function () {
|
|
332
|
-
return this.
|
|
332
|
+
return this.m24_1;
|
|
333
333
|
};
|
|
334
334
|
protoOf(WsEnum).gd = function () {
|
|
335
335
|
return this.entries;
|
|
336
336
|
};
|
|
337
|
-
protoOf(WsEnum).
|
|
337
|
+
protoOf(WsEnum).n24 = function (name, entries) {
|
|
338
338
|
return new WsEnum(name, entries);
|
|
339
339
|
};
|
|
340
340
|
protoOf(WsEnum).copy = function (name, entries, $super) {
|
|
341
|
-
name = name === VOID ? this.
|
|
341
|
+
name = name === VOID ? this.m24_1 : name;
|
|
342
342
|
entries = entries === VOID ? this.entries : entries;
|
|
343
|
-
return this.
|
|
343
|
+
return this.n24(name, entries);
|
|
344
344
|
};
|
|
345
345
|
protoOf(WsEnum).toString = function () {
|
|
346
|
-
return 'WsEnum(name=' + this.
|
|
346
|
+
return 'WsEnum(name=' + this.m24_1 + ', entries=' + toString(this.entries) + ')';
|
|
347
347
|
};
|
|
348
348
|
protoOf(WsEnum).hashCode = function () {
|
|
349
|
-
var result = getStringHashCode(this.
|
|
349
|
+
var result = getStringHashCode(this.m24_1);
|
|
350
350
|
result = imul(result, 31) + hashCode(this.entries) | 0;
|
|
351
351
|
return result;
|
|
352
352
|
};
|
|
@@ -356,41 +356,41 @@
|
|
|
356
356
|
if (!(other instanceof WsEnum))
|
|
357
357
|
return false;
|
|
358
358
|
var tmp0_other_with_cast = other instanceof WsEnum ? other : THROW_CCE();
|
|
359
|
-
if (!(this.
|
|
359
|
+
if (!(this.m24_1 === tmp0_other_with_cast.m24_1))
|
|
360
360
|
return false;
|
|
361
361
|
if (!equals(this.entries, tmp0_other_with_cast.entries))
|
|
362
362
|
return false;
|
|
363
363
|
return true;
|
|
364
364
|
};
|
|
365
365
|
function WsUnion(name, entries) {
|
|
366
|
-
this.
|
|
366
|
+
this.o24_1 = name;
|
|
367
367
|
this.entries = entries;
|
|
368
368
|
}
|
|
369
369
|
protoOf(WsUnion).va = function () {
|
|
370
|
-
return this.
|
|
370
|
+
return this.o24_1;
|
|
371
371
|
};
|
|
372
372
|
protoOf(WsUnion).n2 = function () {
|
|
373
373
|
return this.entries;
|
|
374
374
|
};
|
|
375
375
|
protoOf(WsUnion).fd = function () {
|
|
376
|
-
return this.
|
|
376
|
+
return this.o24_1;
|
|
377
377
|
};
|
|
378
378
|
protoOf(WsUnion).gd = function () {
|
|
379
379
|
return this.entries;
|
|
380
380
|
};
|
|
381
|
-
protoOf(WsUnion).
|
|
381
|
+
protoOf(WsUnion).p24 = function (name, entries) {
|
|
382
382
|
return new WsUnion(name, entries);
|
|
383
383
|
};
|
|
384
384
|
protoOf(WsUnion).copy = function (name, entries, $super) {
|
|
385
|
-
name = name === VOID ? this.
|
|
385
|
+
name = name === VOID ? this.o24_1 : name;
|
|
386
386
|
entries = entries === VOID ? this.entries : entries;
|
|
387
|
-
return this.
|
|
387
|
+
return this.p24(name, entries);
|
|
388
388
|
};
|
|
389
389
|
protoOf(WsUnion).toString = function () {
|
|
390
|
-
return 'WsUnion(name=' + this.
|
|
390
|
+
return 'WsUnion(name=' + this.o24_1 + ', entries=' + toString(this.entries) + ')';
|
|
391
391
|
};
|
|
392
392
|
protoOf(WsUnion).hashCode = function () {
|
|
393
|
-
var result = getStringHashCode(this.
|
|
393
|
+
var result = getStringHashCode(this.o24_1);
|
|
394
394
|
result = imul(result, 31) + hashCode(this.entries) | 0;
|
|
395
395
|
return result;
|
|
396
396
|
};
|
|
@@ -400,41 +400,41 @@
|
|
|
400
400
|
if (!(other instanceof WsUnion))
|
|
401
401
|
return false;
|
|
402
402
|
var tmp0_other_with_cast = other instanceof WsUnion ? other : THROW_CCE();
|
|
403
|
-
if (!(this.
|
|
403
|
+
if (!(this.o24_1 === tmp0_other_with_cast.o24_1))
|
|
404
404
|
return false;
|
|
405
405
|
if (!equals(this.entries, tmp0_other_with_cast.entries))
|
|
406
406
|
return false;
|
|
407
407
|
return true;
|
|
408
408
|
};
|
|
409
409
|
function WsRefined(name, validator) {
|
|
410
|
-
this.
|
|
410
|
+
this.q24_1 = name;
|
|
411
411
|
this.validator = validator;
|
|
412
412
|
}
|
|
413
413
|
protoOf(WsRefined).va = function () {
|
|
414
|
-
return this.
|
|
414
|
+
return this.q24_1;
|
|
415
415
|
};
|
|
416
|
-
protoOf(WsRefined).
|
|
416
|
+
protoOf(WsRefined).r24 = function () {
|
|
417
417
|
return this.validator;
|
|
418
418
|
};
|
|
419
419
|
protoOf(WsRefined).fd = function () {
|
|
420
|
-
return this.
|
|
420
|
+
return this.q24_1;
|
|
421
421
|
};
|
|
422
422
|
protoOf(WsRefined).gd = function () {
|
|
423
423
|
return this.validator;
|
|
424
424
|
};
|
|
425
|
-
protoOf(WsRefined).
|
|
425
|
+
protoOf(WsRefined).s24 = function (name, validator) {
|
|
426
426
|
return new WsRefined(name, validator);
|
|
427
427
|
};
|
|
428
428
|
protoOf(WsRefined).copy = function (name, validator, $super) {
|
|
429
|
-
name = name === VOID ? this.
|
|
429
|
+
name = name === VOID ? this.q24_1 : name;
|
|
430
430
|
validator = validator === VOID ? this.validator : validator;
|
|
431
|
-
return this.
|
|
431
|
+
return this.s24(name, validator);
|
|
432
432
|
};
|
|
433
433
|
protoOf(WsRefined).toString = function () {
|
|
434
|
-
return 'WsRefined(name=' + this.
|
|
434
|
+
return 'WsRefined(name=' + this.q24_1 + ', validator=' + this.validator + ')';
|
|
435
435
|
};
|
|
436
436
|
protoOf(WsRefined).hashCode = function () {
|
|
437
|
-
var result = getStringHashCode(this.
|
|
437
|
+
var result = getStringHashCode(this.q24_1);
|
|
438
438
|
result = imul(result, 31) + getStringHashCode(this.validator) | 0;
|
|
439
439
|
return result;
|
|
440
440
|
};
|
|
@@ -444,7 +444,7 @@
|
|
|
444
444
|
if (!(other instanceof WsRefined))
|
|
445
445
|
return false;
|
|
446
446
|
var tmp0_other_with_cast = other instanceof WsRefined ? other : THROW_CCE();
|
|
447
|
-
if (!(this.
|
|
447
|
+
if (!(this.q24_1 === tmp0_other_with_cast.q24_1))
|
|
448
448
|
return false;
|
|
449
449
|
if (!(this.validator === tmp0_other_with_cast.validator))
|
|
450
450
|
return false;
|
|
@@ -513,12 +513,12 @@
|
|
|
513
513
|
protoOf(WsLiteral).fd = function () {
|
|
514
514
|
return this.value;
|
|
515
515
|
};
|
|
516
|
-
protoOf(WsLiteral).
|
|
516
|
+
protoOf(WsLiteral).v24 = function (value) {
|
|
517
517
|
return new WsLiteral(value);
|
|
518
518
|
};
|
|
519
519
|
protoOf(WsLiteral).copy = function (value, $super) {
|
|
520
520
|
value = value === VOID ? this.value : value;
|
|
521
|
-
return this.
|
|
521
|
+
return this.v24(value);
|
|
522
522
|
};
|
|
523
523
|
protoOf(WsLiteral).toString = function () {
|
|
524
524
|
return 'WsLiteral(value=' + this.value + ')';
|
|
@@ -540,10 +540,10 @@
|
|
|
540
540
|
this.identifier = identifier;
|
|
541
541
|
this.reference = reference;
|
|
542
542
|
}
|
|
543
|
-
protoOf(WsParam).
|
|
543
|
+
protoOf(WsParam).w24 = function () {
|
|
544
544
|
return this.identifier;
|
|
545
545
|
};
|
|
546
|
-
protoOf(WsParam).
|
|
546
|
+
protoOf(WsParam).x24 = function () {
|
|
547
547
|
return this.reference;
|
|
548
548
|
};
|
|
549
549
|
protoOf(WsParam).fd = function () {
|
|
@@ -552,13 +552,13 @@
|
|
|
552
552
|
protoOf(WsParam).gd = function () {
|
|
553
553
|
return this.reference;
|
|
554
554
|
};
|
|
555
|
-
protoOf(WsParam).
|
|
555
|
+
protoOf(WsParam).y24 = function (identifier, reference) {
|
|
556
556
|
return new WsParam(identifier, reference);
|
|
557
557
|
};
|
|
558
558
|
protoOf(WsParam).copy = function (identifier, reference, $super) {
|
|
559
559
|
identifier = identifier === VOID ? this.identifier : identifier;
|
|
560
560
|
reference = reference === VOID ? this.reference : reference;
|
|
561
|
-
return this.
|
|
561
|
+
return this.y24(identifier, reference);
|
|
562
562
|
};
|
|
563
563
|
protoOf(WsParam).toString = function () {
|
|
564
564
|
return 'WsParam(identifier=' + this.identifier + ', reference=' + this.reference + ')';
|
|
@@ -589,12 +589,12 @@
|
|
|
589
589
|
protoOf(Shape).fd = function () {
|
|
590
590
|
return this.value;
|
|
591
591
|
};
|
|
592
|
-
protoOf(Shape).
|
|
592
|
+
protoOf(Shape).x23 = function (value) {
|
|
593
593
|
return new Shape(value);
|
|
594
594
|
};
|
|
595
595
|
protoOf(Shape).copy = function (value, $super) {
|
|
596
596
|
value = value === VOID ? this.value : value;
|
|
597
|
-
return this.
|
|
597
|
+
return this.x23(value);
|
|
598
598
|
};
|
|
599
599
|
protoOf(Shape).toString = function () {
|
|
600
600
|
return 'Shape(value=' + toString(this.value) + ')';
|
|
@@ -617,10 +617,10 @@
|
|
|
617
617
|
this.reference = reference;
|
|
618
618
|
this.isNullable = isNullable;
|
|
619
619
|
}
|
|
620
|
-
protoOf(WsField).
|
|
620
|
+
protoOf(WsField).w24 = function () {
|
|
621
621
|
return this.identifier;
|
|
622
622
|
};
|
|
623
|
-
protoOf(WsField).
|
|
623
|
+
protoOf(WsField).x24 = function () {
|
|
624
624
|
return this.reference;
|
|
625
625
|
};
|
|
626
626
|
protoOf(WsField).tj = function () {
|
|
@@ -635,14 +635,14 @@
|
|
|
635
635
|
protoOf(WsField).zg = function () {
|
|
636
636
|
return this.isNullable;
|
|
637
637
|
};
|
|
638
|
-
protoOf(WsField).
|
|
638
|
+
protoOf(WsField).z24 = function (identifier, reference, isNullable) {
|
|
639
639
|
return new WsField(identifier, reference, isNullable);
|
|
640
640
|
};
|
|
641
641
|
protoOf(WsField).copy = function (identifier, reference, isNullable, $super) {
|
|
642
642
|
identifier = identifier === VOID ? this.identifier : identifier;
|
|
643
643
|
reference = reference === VOID ? this.reference : reference;
|
|
644
644
|
isNullable = isNullable === VOID ? this.isNullable : isNullable;
|
|
645
|
-
return this.
|
|
645
|
+
return this.z24(identifier, reference, isNullable);
|
|
646
646
|
};
|
|
647
647
|
protoOf(WsField).toString = function () {
|
|
648
648
|
return 'WsField(identifier=' + this.identifier + ', reference=' + this.reference + ', isNullable=' + this.isNullable + ')';
|
|
@@ -676,12 +676,12 @@
|
|
|
676
676
|
protoOf(WsIdentifier).fd = function () {
|
|
677
677
|
return this.value;
|
|
678
678
|
};
|
|
679
|
-
protoOf(WsIdentifier).
|
|
679
|
+
protoOf(WsIdentifier).v24 = function (value) {
|
|
680
680
|
return new WsIdentifier(value);
|
|
681
681
|
};
|
|
682
682
|
protoOf(WsIdentifier).copy = function (value, $super) {
|
|
683
683
|
value = value === VOID ? this.value : value;
|
|
684
|
-
return this.
|
|
684
|
+
return this.v24(value);
|
|
685
685
|
};
|
|
686
686
|
protoOf(WsIdentifier).toString = function () {
|
|
687
687
|
return 'WsIdentifier(value=' + this.value + ')';
|
|
@@ -703,35 +703,35 @@
|
|
|
703
703
|
}
|
|
704
704
|
function WsAny(isIterable, isMap) {
|
|
705
705
|
isMap = isMap === VOID ? false : isMap;
|
|
706
|
-
this.
|
|
707
|
-
this.
|
|
706
|
+
this.a25_1 = isIterable;
|
|
707
|
+
this.b25_1 = isMap;
|
|
708
708
|
}
|
|
709
709
|
protoOf(WsAny).g1s = function () {
|
|
710
|
-
return this.z24_1;
|
|
711
|
-
};
|
|
712
|
-
protoOf(WsAny).p1z = function () {
|
|
713
710
|
return this.a25_1;
|
|
714
711
|
};
|
|
712
|
+
protoOf(WsAny).q1z = function () {
|
|
713
|
+
return this.b25_1;
|
|
714
|
+
};
|
|
715
715
|
protoOf(WsAny).fd = function () {
|
|
716
|
-
return this.
|
|
716
|
+
return this.a25_1;
|
|
717
717
|
};
|
|
718
718
|
protoOf(WsAny).gd = function () {
|
|
719
|
-
return this.
|
|
719
|
+
return this.b25_1;
|
|
720
720
|
};
|
|
721
|
-
protoOf(WsAny).
|
|
721
|
+
protoOf(WsAny).z20 = function (isIterable, isMap) {
|
|
722
722
|
return new WsAny(isIterable, isMap);
|
|
723
723
|
};
|
|
724
724
|
protoOf(WsAny).copy = function (isIterable, isMap, $super) {
|
|
725
|
-
isIterable = isIterable === VOID ? this.
|
|
726
|
-
isMap = isMap === VOID ? this.
|
|
727
|
-
return this.
|
|
725
|
+
isIterable = isIterable === VOID ? this.a25_1 : isIterable;
|
|
726
|
+
isMap = isMap === VOID ? this.b25_1 : isMap;
|
|
727
|
+
return this.z20(isIterable, isMap);
|
|
728
728
|
};
|
|
729
729
|
protoOf(WsAny).toString = function () {
|
|
730
|
-
return 'WsAny(isIterable=' + this.
|
|
730
|
+
return 'WsAny(isIterable=' + this.a25_1 + ', isMap=' + this.b25_1 + ')';
|
|
731
731
|
};
|
|
732
732
|
protoOf(WsAny).hashCode = function () {
|
|
733
|
-
var result = this.
|
|
734
|
-
result = imul(result, 31) + (this.
|
|
733
|
+
var result = this.a25_1 | 0;
|
|
734
|
+
result = imul(result, 31) + (this.b25_1 | 0) | 0;
|
|
735
735
|
return result;
|
|
736
736
|
};
|
|
737
737
|
protoOf(WsAny).equals = function (other) {
|
|
@@ -740,43 +740,43 @@
|
|
|
740
740
|
if (!(other instanceof WsAny))
|
|
741
741
|
return false;
|
|
742
742
|
var tmp0_other_with_cast = other instanceof WsAny ? other : THROW_CCE();
|
|
743
|
-
if (!(this.z24_1 === tmp0_other_with_cast.z24_1))
|
|
744
|
-
return false;
|
|
745
743
|
if (!(this.a25_1 === tmp0_other_with_cast.a25_1))
|
|
746
744
|
return false;
|
|
745
|
+
if (!(this.b25_1 === tmp0_other_with_cast.b25_1))
|
|
746
|
+
return false;
|
|
747
747
|
return true;
|
|
748
748
|
};
|
|
749
749
|
function WsUnit(isIterable, isMap) {
|
|
750
750
|
isMap = isMap === VOID ? false : isMap;
|
|
751
|
-
this.
|
|
752
|
-
this.
|
|
751
|
+
this.c25_1 = isIterable;
|
|
752
|
+
this.d25_1 = isMap;
|
|
753
753
|
}
|
|
754
754
|
protoOf(WsUnit).g1s = function () {
|
|
755
|
-
return this.b25_1;
|
|
756
|
-
};
|
|
757
|
-
protoOf(WsUnit).p1z = function () {
|
|
758
755
|
return this.c25_1;
|
|
759
756
|
};
|
|
757
|
+
protoOf(WsUnit).q1z = function () {
|
|
758
|
+
return this.d25_1;
|
|
759
|
+
};
|
|
760
760
|
protoOf(WsUnit).fd = function () {
|
|
761
|
-
return this.
|
|
761
|
+
return this.c25_1;
|
|
762
762
|
};
|
|
763
763
|
protoOf(WsUnit).gd = function () {
|
|
764
|
-
return this.
|
|
764
|
+
return this.d25_1;
|
|
765
765
|
};
|
|
766
|
-
protoOf(WsUnit).
|
|
766
|
+
protoOf(WsUnit).z20 = function (isIterable, isMap) {
|
|
767
767
|
return new WsUnit(isIterable, isMap);
|
|
768
768
|
};
|
|
769
769
|
protoOf(WsUnit).copy = function (isIterable, isMap, $super) {
|
|
770
|
-
isIterable = isIterable === VOID ? this.
|
|
771
|
-
isMap = isMap === VOID ? this.
|
|
772
|
-
return this.
|
|
770
|
+
isIterable = isIterable === VOID ? this.c25_1 : isIterable;
|
|
771
|
+
isMap = isMap === VOID ? this.d25_1 : isMap;
|
|
772
|
+
return this.z20(isIterable, isMap);
|
|
773
773
|
};
|
|
774
774
|
protoOf(WsUnit).toString = function () {
|
|
775
|
-
return 'WsUnit(isIterable=' + this.
|
|
775
|
+
return 'WsUnit(isIterable=' + this.c25_1 + ', isMap=' + this.d25_1 + ')';
|
|
776
776
|
};
|
|
777
777
|
protoOf(WsUnit).hashCode = function () {
|
|
778
|
-
var result = this.
|
|
779
|
-
result = imul(result, 31) + (this.
|
|
778
|
+
var result = this.c25_1 | 0;
|
|
779
|
+
result = imul(result, 31) + (this.d25_1 | 0) | 0;
|
|
780
780
|
return result;
|
|
781
781
|
};
|
|
782
782
|
protoOf(WsUnit).equals = function (other) {
|
|
@@ -785,52 +785,52 @@
|
|
|
785
785
|
if (!(other instanceof WsUnit))
|
|
786
786
|
return false;
|
|
787
787
|
var tmp0_other_with_cast = other instanceof WsUnit ? other : THROW_CCE();
|
|
788
|
-
if (!(this.b25_1 === tmp0_other_with_cast.b25_1))
|
|
789
|
-
return false;
|
|
790
788
|
if (!(this.c25_1 === tmp0_other_with_cast.c25_1))
|
|
791
789
|
return false;
|
|
790
|
+
if (!(this.d25_1 === tmp0_other_with_cast.d25_1))
|
|
791
|
+
return false;
|
|
792
792
|
return true;
|
|
793
793
|
};
|
|
794
794
|
function WsCustom(value, isIterable, isMap) {
|
|
795
795
|
isMap = isMap === VOID ? false : isMap;
|
|
796
796
|
this.value = value;
|
|
797
|
-
this.
|
|
798
|
-
this.
|
|
797
|
+
this.e25_1 = isIterable;
|
|
798
|
+
this.f25_1 = isMap;
|
|
799
799
|
}
|
|
800
800
|
protoOf(WsCustom).p2 = function () {
|
|
801
801
|
return this.value;
|
|
802
802
|
};
|
|
803
803
|
protoOf(WsCustom).g1s = function () {
|
|
804
|
-
return this.d25_1;
|
|
805
|
-
};
|
|
806
|
-
protoOf(WsCustom).p1z = function () {
|
|
807
804
|
return this.e25_1;
|
|
808
805
|
};
|
|
806
|
+
protoOf(WsCustom).q1z = function () {
|
|
807
|
+
return this.f25_1;
|
|
808
|
+
};
|
|
809
809
|
protoOf(WsCustom).fd = function () {
|
|
810
810
|
return this.value;
|
|
811
811
|
};
|
|
812
812
|
protoOf(WsCustom).gd = function () {
|
|
813
|
-
return this.
|
|
813
|
+
return this.e25_1;
|
|
814
814
|
};
|
|
815
815
|
protoOf(WsCustom).zg = function () {
|
|
816
|
-
return this.
|
|
816
|
+
return this.f25_1;
|
|
817
817
|
};
|
|
818
|
-
protoOf(WsCustom).
|
|
818
|
+
protoOf(WsCustom).h21 = function (value, isIterable, isMap) {
|
|
819
819
|
return new WsCustom(value, isIterable, isMap);
|
|
820
820
|
};
|
|
821
821
|
protoOf(WsCustom).copy = function (value, isIterable, isMap, $super) {
|
|
822
822
|
value = value === VOID ? this.value : value;
|
|
823
|
-
isIterable = isIterable === VOID ? this.
|
|
824
|
-
isMap = isMap === VOID ? this.
|
|
825
|
-
return this.
|
|
823
|
+
isIterable = isIterable === VOID ? this.e25_1 : isIterable;
|
|
824
|
+
isMap = isMap === VOID ? this.f25_1 : isMap;
|
|
825
|
+
return this.h21(value, isIterable, isMap);
|
|
826
826
|
};
|
|
827
827
|
protoOf(WsCustom).toString = function () {
|
|
828
|
-
return 'WsCustom(value=' + this.value + ', isIterable=' + this.
|
|
828
|
+
return 'WsCustom(value=' + this.value + ', isIterable=' + this.e25_1 + ', isMap=' + this.f25_1 + ')';
|
|
829
829
|
};
|
|
830
830
|
protoOf(WsCustom).hashCode = function () {
|
|
831
831
|
var result = getStringHashCode(this.value);
|
|
832
|
-
result = imul(result, 31) + (this.d25_1 | 0) | 0;
|
|
833
832
|
result = imul(result, 31) + (this.e25_1 | 0) | 0;
|
|
833
|
+
result = imul(result, 31) + (this.f25_1 | 0) | 0;
|
|
834
834
|
return result;
|
|
835
835
|
};
|
|
836
836
|
protoOf(WsCustom).equals = function (other) {
|
|
@@ -841,52 +841,52 @@
|
|
|
841
841
|
var tmp0_other_with_cast = other instanceof WsCustom ? other : THROW_CCE();
|
|
842
842
|
if (!(this.value === tmp0_other_with_cast.value))
|
|
843
843
|
return false;
|
|
844
|
-
if (!(this.d25_1 === tmp0_other_with_cast.d25_1))
|
|
845
|
-
return false;
|
|
846
844
|
if (!(this.e25_1 === tmp0_other_with_cast.e25_1))
|
|
847
845
|
return false;
|
|
846
|
+
if (!(this.f25_1 === tmp0_other_with_cast.f25_1))
|
|
847
|
+
return false;
|
|
848
848
|
return true;
|
|
849
849
|
};
|
|
850
850
|
function WsPrimitive(type, isIterable, isMap) {
|
|
851
851
|
isMap = isMap === VOID ? false : isMap;
|
|
852
852
|
this.type = type;
|
|
853
|
-
this.
|
|
854
|
-
this.
|
|
853
|
+
this.g25_1 = isIterable;
|
|
854
|
+
this.h25_1 = isMap;
|
|
855
855
|
}
|
|
856
|
-
protoOf(WsPrimitive).
|
|
856
|
+
protoOf(WsPrimitive).i25 = function () {
|
|
857
857
|
return this.type;
|
|
858
858
|
};
|
|
859
859
|
protoOf(WsPrimitive).g1s = function () {
|
|
860
|
-
return this.f25_1;
|
|
861
|
-
};
|
|
862
|
-
protoOf(WsPrimitive).p1z = function () {
|
|
863
860
|
return this.g25_1;
|
|
864
861
|
};
|
|
862
|
+
protoOf(WsPrimitive).q1z = function () {
|
|
863
|
+
return this.h25_1;
|
|
864
|
+
};
|
|
865
865
|
protoOf(WsPrimitive).fd = function () {
|
|
866
866
|
return this.type;
|
|
867
867
|
};
|
|
868
868
|
protoOf(WsPrimitive).gd = function () {
|
|
869
|
-
return this.
|
|
869
|
+
return this.g25_1;
|
|
870
870
|
};
|
|
871
871
|
protoOf(WsPrimitive).zg = function () {
|
|
872
|
-
return this.
|
|
872
|
+
return this.h25_1;
|
|
873
873
|
};
|
|
874
|
-
protoOf(WsPrimitive).
|
|
874
|
+
protoOf(WsPrimitive).j25 = function (type, isIterable, isMap) {
|
|
875
875
|
return new WsPrimitive(type, isIterable, isMap);
|
|
876
876
|
};
|
|
877
877
|
protoOf(WsPrimitive).copy = function (type, isIterable, isMap, $super) {
|
|
878
878
|
type = type === VOID ? this.type : type;
|
|
879
|
-
isIterable = isIterable === VOID ? this.
|
|
880
|
-
isMap = isMap === VOID ? this.
|
|
881
|
-
return this.
|
|
879
|
+
isIterable = isIterable === VOID ? this.g25_1 : isIterable;
|
|
880
|
+
isMap = isMap === VOID ? this.h25_1 : isMap;
|
|
881
|
+
return this.j25(type, isIterable, isMap);
|
|
882
882
|
};
|
|
883
883
|
protoOf(WsPrimitive).toString = function () {
|
|
884
|
-
return 'WsPrimitive(type=' + this.type + ', isIterable=' + this.
|
|
884
|
+
return 'WsPrimitive(type=' + this.type + ', isIterable=' + this.g25_1 + ', isMap=' + this.h25_1 + ')';
|
|
885
885
|
};
|
|
886
886
|
protoOf(WsPrimitive).hashCode = function () {
|
|
887
887
|
var result = this.type.hashCode();
|
|
888
|
-
result = imul(result, 31) + (this.f25_1 | 0) | 0;
|
|
889
888
|
result = imul(result, 31) + (this.g25_1 | 0) | 0;
|
|
889
|
+
result = imul(result, 31) + (this.h25_1 | 0) | 0;
|
|
890
890
|
return result;
|
|
891
891
|
};
|
|
892
892
|
protoOf(WsPrimitive).equals = function (other) {
|
|
@@ -897,10 +897,10 @@
|
|
|
897
897
|
var tmp0_other_with_cast = other instanceof WsPrimitive ? other : THROW_CCE();
|
|
898
898
|
if (!this.type.equals(tmp0_other_with_cast.type))
|
|
899
899
|
return false;
|
|
900
|
-
if (!(this.f25_1 === tmp0_other_with_cast.f25_1))
|
|
901
|
-
return false;
|
|
902
900
|
if (!(this.g25_1 === tmp0_other_with_cast.g25_1))
|
|
903
901
|
return false;
|
|
902
|
+
if (!(this.h25_1 === tmp0_other_with_cast.h25_1))
|
|
903
|
+
return false;
|
|
904
904
|
return true;
|
|
905
905
|
};
|
|
906
906
|
var WsPrimitiveType_String_instance;
|
|
@@ -948,12 +948,12 @@
|
|
|
948
948
|
protoOf(WsRequest).fd = function () {
|
|
949
949
|
return this.content;
|
|
950
950
|
};
|
|
951
|
-
protoOf(WsRequest).
|
|
951
|
+
protoOf(WsRequest).m25 = function (content) {
|
|
952
952
|
return new WsRequest(content);
|
|
953
953
|
};
|
|
954
954
|
protoOf(WsRequest).copy = function (content, $super) {
|
|
955
955
|
content = content === VOID ? this.content : content;
|
|
956
|
-
return this.
|
|
956
|
+
return this.m25(content);
|
|
957
957
|
};
|
|
958
958
|
protoOf(WsRequest).toString = function () {
|
|
959
959
|
return 'WsRequest(content=' + this.content + ')';
|
|
@@ -975,7 +975,7 @@
|
|
|
975
975
|
this.status = status;
|
|
976
976
|
this.content = content;
|
|
977
977
|
}
|
|
978
|
-
protoOf(WsResponse).
|
|
978
|
+
protoOf(WsResponse).n25 = function () {
|
|
979
979
|
return this.status;
|
|
980
980
|
};
|
|
981
981
|
protoOf(WsResponse).n10 = function () {
|
|
@@ -987,13 +987,13 @@
|
|
|
987
987
|
protoOf(WsResponse).gd = function () {
|
|
988
988
|
return this.content;
|
|
989
989
|
};
|
|
990
|
-
protoOf(WsResponse).
|
|
990
|
+
protoOf(WsResponse).o25 = function (status, content) {
|
|
991
991
|
return new WsResponse(status, content);
|
|
992
992
|
};
|
|
993
993
|
protoOf(WsResponse).copy = function (status, content, $super) {
|
|
994
994
|
status = status === VOID ? this.status : status;
|
|
995
995
|
content = content === VOID ? this.content : content;
|
|
996
|
-
return this.
|
|
996
|
+
return this.o25(status, content);
|
|
997
997
|
};
|
|
998
998
|
protoOf(WsResponse).toString = function () {
|
|
999
999
|
return 'WsResponse(status=' + this.status + ', content=' + this.content + ')';
|
|
@@ -1021,10 +1021,10 @@
|
|
|
1021
1021
|
this.reference = reference;
|
|
1022
1022
|
this.isNullable = isNullable;
|
|
1023
1023
|
}
|
|
1024
|
-
protoOf(WsContent).
|
|
1024
|
+
protoOf(WsContent).i25 = function () {
|
|
1025
1025
|
return this.type;
|
|
1026
1026
|
};
|
|
1027
|
-
protoOf(WsContent).
|
|
1027
|
+
protoOf(WsContent).x24 = function () {
|
|
1028
1028
|
return this.reference;
|
|
1029
1029
|
};
|
|
1030
1030
|
protoOf(WsContent).tj = function () {
|
|
@@ -1039,14 +1039,14 @@
|
|
|
1039
1039
|
protoOf(WsContent).zg = function () {
|
|
1040
1040
|
return this.isNullable;
|
|
1041
1041
|
};
|
|
1042
|
-
protoOf(WsContent).
|
|
1042
|
+
protoOf(WsContent).p25 = function (type, reference, isNullable) {
|
|
1043
1043
|
return new WsContent(type, reference, isNullable);
|
|
1044
1044
|
};
|
|
1045
1045
|
protoOf(WsContent).copy = function (type, reference, isNullable, $super) {
|
|
1046
1046
|
type = type === VOID ? this.type : type;
|
|
1047
1047
|
reference = reference === VOID ? this.reference : reference;
|
|
1048
1048
|
isNullable = isNullable === VOID ? this.isNullable : isNullable;
|
|
1049
|
-
return this.
|
|
1049
|
+
return this.p25(type, reference, isNullable);
|
|
1050
1050
|
};
|
|
1051
1051
|
protoOf(WsContent).toString = function () {
|
|
1052
1052
|
return 'WsContent(type=' + this.type + ', reference=' + this.reference + ', isNullable=' + this.isNullable + ')';
|
|
@@ -1089,26 +1089,26 @@
|
|
|
1089
1089
|
function produce_0(_this__u8e3s4) {
|
|
1090
1090
|
var tmp;
|
|
1091
1091
|
if (_this__u8e3s4 instanceof Type) {
|
|
1092
|
-
tmp = new WsType(_this__u8e3s4.
|
|
1092
|
+
tmp = new WsType(_this__u8e3s4.b1y_1, produce_1(_this__u8e3s4.c1y_1));
|
|
1093
1093
|
} else {
|
|
1094
1094
|
if (_this__u8e3s4 instanceof Endpoint) {
|
|
1095
|
-
tmp = new WsEndpoint(_this__u8e3s4.
|
|
1095
|
+
tmp = new WsEndpoint(_this__u8e3s4.d1z_1, produce_2(_this__u8e3s4.e1z_1), produce_3(_this__u8e3s4.f1z_1), produce_4(_this__u8e3s4.g1z_1), produce_4(_this__u8e3s4.h1z_1), produce_4(_this__u8e3s4.i1z_1), produce_5(_this__u8e3s4.j1z_1), produce_6(_this__u8e3s4.k1z_1));
|
|
1096
1096
|
} else {
|
|
1097
1097
|
if (_this__u8e3s4 instanceof Enum_0) {
|
|
1098
1098
|
var tmp$ret$0;
|
|
1099
1099
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1100
|
-
var tmp0_toTypedArray = _this__u8e3s4.
|
|
1100
|
+
var tmp0_toTypedArray = _this__u8e3s4.a1y_1;
|
|
1101
1101
|
tmp$ret$0 = copyToArray(tmp0_toTypedArray);
|
|
1102
|
-
tmp = new WsEnum(_this__u8e3s4.
|
|
1102
|
+
tmp = new WsEnum(_this__u8e3s4.z1x_1, tmp$ret$0);
|
|
1103
1103
|
} else {
|
|
1104
1104
|
if (_this__u8e3s4 instanceof Refined) {
|
|
1105
|
-
tmp = new WsRefined(_this__u8e3s4.
|
|
1105
|
+
tmp = new WsRefined(_this__u8e3s4.o1y_1, _this__u8e3s4.p1y_1.r1y_1);
|
|
1106
1106
|
} else {
|
|
1107
1107
|
if (_this__u8e3s4 instanceof Union) {
|
|
1108
1108
|
var tmp$ret$4;
|
|
1109
1109
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1110
1110
|
// Inline function 'kotlin.collections.map' call
|
|
1111
|
-
var tmp1_map = _this__u8e3s4.
|
|
1111
|
+
var tmp1_map = _this__u8e3s4.s1z_1;
|
|
1112
1112
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1113
1113
|
var tmp0_mapTo = ArrayList_init_$Create$(collectionSizeOrDefault(tmp1_map, 10));
|
|
1114
1114
|
var tmp0_iterator = tmp1_map.v();
|
|
@@ -1120,7 +1120,7 @@
|
|
|
1120
1120
|
tmp0_mapTo.s(tmp$ret$1);
|
|
1121
1121
|
}
|
|
1122
1122
|
tmp$ret$4 = copyToArray(tmp0_mapTo);
|
|
1123
|
-
tmp = new WsUnion(_this__u8e3s4.
|
|
1123
|
+
tmp = new WsUnion(_this__u8e3s4.r1z_1, tmp$ret$4);
|
|
1124
1124
|
} else {
|
|
1125
1125
|
noWhenBranchMatchedException();
|
|
1126
1126
|
}
|
|
@@ -1134,7 +1134,7 @@
|
|
|
1134
1134
|
var tmp$ret$3;
|
|
1135
1135
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1136
1136
|
// Inline function 'kotlin.collections.map' call
|
|
1137
|
-
var tmp0_map = _this__u8e3s4.
|
|
1137
|
+
var tmp0_map = _this__u8e3s4.e1y_1;
|
|
1138
1138
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1139
1139
|
var tmp0_mapTo = ArrayList_init_$Create$(collectionSizeOrDefault(tmp0_map, 10));
|
|
1140
1140
|
var tmp0_iterator = tmp0_map.v();
|
|
@@ -1193,10 +1193,10 @@
|
|
|
1193
1193
|
// Inline function 'community.flock.wirespec.compiler.lib.produce.<anonymous>' call
|
|
1194
1194
|
var tmp;
|
|
1195
1195
|
if (item instanceof Literal) {
|
|
1196
|
-
tmp = new WsLiteral(item.
|
|
1196
|
+
tmp = new WsLiteral(item.x1y_1);
|
|
1197
1197
|
} else {
|
|
1198
1198
|
if (item instanceof Param) {
|
|
1199
|
-
tmp = new WsParam(produce_9(item.
|
|
1199
|
+
tmp = new WsParam(produce_9(item.s1y_1), produce_7(item.t1y_1));
|
|
1200
1200
|
} else {
|
|
1201
1201
|
noWhenBranchMatchedException();
|
|
1202
1202
|
}
|
|
@@ -1254,16 +1254,16 @@
|
|
|
1254
1254
|
function produce_7(_this__u8e3s4) {
|
|
1255
1255
|
var tmp;
|
|
1256
1256
|
if (_this__u8e3s4 instanceof Any) {
|
|
1257
|
-
tmp = new WsAny(_this__u8e3s4.g1s(), _this__u8e3s4.
|
|
1257
|
+
tmp = new WsAny(_this__u8e3s4.g1s(), _this__u8e3s4.q1z());
|
|
1258
1258
|
} else {
|
|
1259
1259
|
if (_this__u8e3s4 instanceof Unit) {
|
|
1260
|
-
tmp = new WsUnit(_this__u8e3s4.g1s(), _this__u8e3s4.
|
|
1260
|
+
tmp = new WsUnit(_this__u8e3s4.g1s(), _this__u8e3s4.q1z());
|
|
1261
1261
|
} else {
|
|
1262
1262
|
if (_this__u8e3s4 instanceof Custom) {
|
|
1263
|
-
tmp = new WsCustom(_this__u8e3s4.p2(), _this__u8e3s4.g1s(), _this__u8e3s4.
|
|
1263
|
+
tmp = new WsCustom(_this__u8e3s4.p2(), _this__u8e3s4.g1s(), _this__u8e3s4.q1z());
|
|
1264
1264
|
} else {
|
|
1265
1265
|
if (_this__u8e3s4 instanceof Primitive) {
|
|
1266
|
-
tmp = new WsPrimitive(produce_12(_this__u8e3s4.
|
|
1266
|
+
tmp = new WsPrimitive(produce_12(_this__u8e3s4.l1y_1), _this__u8e3s4.g1s(), _this__u8e3s4.q1z());
|
|
1267
1267
|
} else {
|
|
1268
1268
|
noWhenBranchMatchedException();
|
|
1269
1269
|
}
|
|
@@ -1273,18 +1273,18 @@
|
|
|
1273
1273
|
return tmp;
|
|
1274
1274
|
}
|
|
1275
1275
|
function produce_8(_this__u8e3s4) {
|
|
1276
|
-
return new WsField(produce_9(_this__u8e3s4.
|
|
1276
|
+
return new WsField(produce_9(_this__u8e3s4.f1y_1), produce_7(_this__u8e3s4.g1y_1), _this__u8e3s4.h1y_1);
|
|
1277
1277
|
}
|
|
1278
1278
|
function produce_9(_this__u8e3s4) {
|
|
1279
|
-
return new WsIdentifier(_this__u8e3s4.
|
|
1279
|
+
return new WsIdentifier(_this__u8e3s4.k1y_1);
|
|
1280
1280
|
}
|
|
1281
1281
|
function produce_10(_this__u8e3s4) {
|
|
1282
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1282
|
+
var tmp0_safe_receiver = _this__u8e3s4.y1y_1;
|
|
1283
1283
|
return new WsRequest(tmp0_safe_receiver == null ? null : produce_13(tmp0_safe_receiver));
|
|
1284
1284
|
}
|
|
1285
1285
|
function produce_11(_this__u8e3s4) {
|
|
1286
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1287
|
-
return new WsResponse(_this__u8e3s4.
|
|
1286
|
+
var tmp0_safe_receiver = _this__u8e3s4.c1z_1;
|
|
1287
|
+
return new WsResponse(_this__u8e3s4.a1z_1, tmp0_safe_receiver == null ? null : produce_13(tmp0_safe_receiver));
|
|
1288
1288
|
}
|
|
1289
1289
|
function produce_12(_this__u8e3s4) {
|
|
1290
1290
|
var tmp;
|
|
@@ -1308,7 +1308,7 @@
|
|
|
1308
1308
|
return tmp;
|
|
1309
1309
|
}
|
|
1310
1310
|
function produce_13(_this__u8e3s4) {
|
|
1311
|
-
return new WsContent(_this__u8e3s4.
|
|
1311
|
+
return new WsContent(_this__u8e3s4.l1z_1, produce_7(_this__u8e3s4.m1z_1), _this__u8e3s4.n1z_1);
|
|
1312
1312
|
}
|
|
1313
1313
|
function WsMethod_GET_getInstance() {
|
|
1314
1314
|
WsMethod_initEntries();
|
|
@@ -1366,7 +1366,7 @@
|
|
|
1366
1366
|
var tmp = this;
|
|
1367
1367
|
tmp.logger = new Compiler$Companion$logger$1();
|
|
1368
1368
|
}
|
|
1369
|
-
protoOf(Companion).
|
|
1369
|
+
protoOf(Companion).q25 = function () {
|
|
1370
1370
|
return this.logger;
|
|
1371
1371
|
};
|
|
1372
1372
|
var Companion_instance;
|
|
@@ -1393,7 +1393,7 @@
|
|
|
1393
1393
|
};
|
|
1394
1394
|
function Companion_0() {
|
|
1395
1395
|
Companion_instance_0 = this;
|
|
1396
|
-
this.
|
|
1396
|
+
this.r25_1 = new KotlinEmitter(VOID, Companion_getInstance_1().logger);
|
|
1397
1397
|
}
|
|
1398
1398
|
var Companion_instance_0;
|
|
1399
1399
|
function Companion_getInstance_2() {
|
|
@@ -1406,11 +1406,11 @@
|
|
|
1406
1406
|
Compiler.call(this);
|
|
1407
1407
|
}
|
|
1408
1408
|
protoOf(WsToKotlin).compile = function (source) {
|
|
1409
|
-
return produce_15(this.preCompile(source)(Companion_getInstance_2().
|
|
1409
|
+
return produce_15(this.preCompile(source)(Companion_getInstance_2().r25_1));
|
|
1410
1410
|
};
|
|
1411
1411
|
function Companion_1() {
|
|
1412
1412
|
Companion_instance_1 = this;
|
|
1413
|
-
this.
|
|
1413
|
+
this.s25_1 = new TypeScriptEmitter(Companion_getInstance_1().logger);
|
|
1414
1414
|
}
|
|
1415
1415
|
var Companion_instance_1;
|
|
1416
1416
|
function Companion_getInstance_3() {
|
|
@@ -1423,11 +1423,11 @@
|
|
|
1423
1423
|
Compiler.call(this);
|
|
1424
1424
|
}
|
|
1425
1425
|
protoOf(WsToTypeScript).compile = function (source) {
|
|
1426
|
-
return produce_15(this.preCompile(source)(Companion_getInstance_3().
|
|
1426
|
+
return produce_15(this.preCompile(source)(Companion_getInstance_3().s25_1));
|
|
1427
1427
|
};
|
|
1428
1428
|
function Companion_2() {
|
|
1429
1429
|
Companion_instance_2 = this;
|
|
1430
|
-
this.
|
|
1430
|
+
this.t25_1 = new ScalaEmitter(VOID, Companion_getInstance_1().logger);
|
|
1431
1431
|
}
|
|
1432
1432
|
var Companion_instance_2;
|
|
1433
1433
|
function Companion_getInstance_4() {
|
|
@@ -1440,11 +1440,11 @@
|
|
|
1440
1440
|
Compiler.call(this);
|
|
1441
1441
|
}
|
|
1442
1442
|
protoOf(WsToScala).compile = function (source) {
|
|
1443
|
-
return produce_15(this.preCompile(source)(Companion_getInstance_4().
|
|
1443
|
+
return produce_15(this.preCompile(source)(Companion_getInstance_4().t25_1));
|
|
1444
1444
|
};
|
|
1445
1445
|
function Companion_3() {
|
|
1446
1446
|
Companion_instance_3 = this;
|
|
1447
|
-
this.
|
|
1447
|
+
this.u25_1 = new JavaEmitter(VOID, Companion_getInstance_1().logger);
|
|
1448
1448
|
}
|
|
1449
1449
|
var Companion_instance_3;
|
|
1450
1450
|
function Companion_getInstance_5() {
|
|
@@ -1457,11 +1457,11 @@
|
|
|
1457
1457
|
Compiler.call(this);
|
|
1458
1458
|
}
|
|
1459
1459
|
protoOf(WsToJava).compile = function (source) {
|
|
1460
|
-
return produce_15(this.preCompile(source)(Companion_getInstance_5().
|
|
1460
|
+
return produce_15(this.preCompile(source)(Companion_getInstance_5().u25_1));
|
|
1461
1461
|
};
|
|
1462
1462
|
function Companion_4() {
|
|
1463
1463
|
Companion_instance_4 = this;
|
|
1464
|
-
this.
|
|
1464
|
+
this.v25_1 = new WirespecEmitter(Companion_getInstance_1().logger);
|
|
1465
1465
|
}
|
|
1466
1466
|
var Companion_instance_4;
|
|
1467
1467
|
function Companion_getInstance_6() {
|
|
@@ -1474,13 +1474,13 @@
|
|
|
1474
1474
|
Compiler.call(this);
|
|
1475
1475
|
}
|
|
1476
1476
|
protoOf(WsToWirespec).compile = function (source) {
|
|
1477
|
-
return produce_15(this.preCompile(source)(Companion_getInstance_6().
|
|
1477
|
+
return produce_15(this.preCompile(source)(Companion_getInstance_6().v25_1));
|
|
1478
1478
|
};
|
|
1479
1479
|
function OpenApiV2Parser() {
|
|
1480
1480
|
OpenApiV2Parser_instance = this;
|
|
1481
1481
|
}
|
|
1482
1482
|
protoOf(OpenApiV2Parser).parse = function (source) {
|
|
1483
|
-
return produce(Companion_getInstance().
|
|
1483
|
+
return produce(Companion_getInstance().v22(source));
|
|
1484
1484
|
};
|
|
1485
1485
|
var OpenApiV2Parser_instance;
|
|
1486
1486
|
function OpenApiV2Parser_getInstance() {
|
|
@@ -1495,16 +1495,16 @@
|
|
|
1495
1495
|
OpenApiV2ToTypescript_instance = this;
|
|
1496
1496
|
var tmp = this;
|
|
1497
1497
|
tmp.logger = new OpenApiV2ToTypescript$logger$1();
|
|
1498
|
-
this.
|
|
1498
|
+
this.w25_1 = new TypeScriptEmitter(this.logger);
|
|
1499
1499
|
}
|
|
1500
|
-
protoOf(OpenApiV2ToTypescript).
|
|
1500
|
+
protoOf(OpenApiV2ToTypescript).q25 = function () {
|
|
1501
1501
|
return this.logger;
|
|
1502
1502
|
};
|
|
1503
1503
|
protoOf(OpenApiV2ToTypescript).compile = function (source) {
|
|
1504
|
-
var ast = Companion_getInstance().
|
|
1504
|
+
var ast = Companion_getInstance().v22(source);
|
|
1505
1505
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1506
1506
|
// Inline function 'kotlin.collections.map' call
|
|
1507
|
-
var tmp0_map = this.
|
|
1507
|
+
var tmp0_map = this.w25_1.q1r(ast);
|
|
1508
1508
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1509
1509
|
var tmp0_mapTo = ArrayList_init_$Create$(collectionSizeOrDefault(tmp0_map, 10));
|
|
1510
1510
|
var tmp0_iterator = tmp0_map.v();
|
|
@@ -1532,16 +1532,16 @@
|
|
|
1532
1532
|
OpenApiV2ToWirespec_instance = this;
|
|
1533
1533
|
var tmp = this;
|
|
1534
1534
|
tmp.logger = new OpenApiV2ToWirespec$logger$1();
|
|
1535
|
-
this.
|
|
1535
|
+
this.x25_1 = new WirespecEmitter(this.logger);
|
|
1536
1536
|
}
|
|
1537
|
-
protoOf(OpenApiV2ToWirespec).
|
|
1537
|
+
protoOf(OpenApiV2ToWirespec).q25 = function () {
|
|
1538
1538
|
return this.logger;
|
|
1539
1539
|
};
|
|
1540
1540
|
protoOf(OpenApiV2ToWirespec).compile = function (source) {
|
|
1541
|
-
var ast = Companion_getInstance().
|
|
1541
|
+
var ast = Companion_getInstance().v22(source);
|
|
1542
1542
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1543
1543
|
// Inline function 'kotlin.collections.map' call
|
|
1544
|
-
var tmp0_map = this.
|
|
1544
|
+
var tmp0_map = this.x25_1.q1r(ast);
|
|
1545
1545
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1546
1546
|
var tmp0_mapTo = ArrayList_init_$Create$(collectionSizeOrDefault(tmp0_map, 10));
|
|
1547
1547
|
var tmp0_iterator = tmp0_map.v();
|
|
@@ -1566,7 +1566,7 @@
|
|
|
1566
1566
|
OpenApiV3Parser_instance = this;
|
|
1567
1567
|
}
|
|
1568
1568
|
protoOf(OpenApiV3Parser).parse = function (source) {
|
|
1569
|
-
return produce(Companion_getInstance_0().
|
|
1569
|
+
return produce(Companion_getInstance_0().i23(source));
|
|
1570
1570
|
};
|
|
1571
1571
|
var OpenApiV3Parser_instance;
|
|
1572
1572
|
function OpenApiV3Parser_getInstance() {
|
|
@@ -1581,16 +1581,16 @@
|
|
|
1581
1581
|
OpenApiV3ToTypescript_instance = this;
|
|
1582
1582
|
var tmp = this;
|
|
1583
1583
|
tmp.logger = new OpenApiV3ToTypescript$logger$1();
|
|
1584
|
-
this.
|
|
1584
|
+
this.y25_1 = new TypeScriptEmitter(this.logger);
|
|
1585
1585
|
}
|
|
1586
|
-
protoOf(OpenApiV3ToTypescript).
|
|
1586
|
+
protoOf(OpenApiV3ToTypescript).q25 = function () {
|
|
1587
1587
|
return this.logger;
|
|
1588
1588
|
};
|
|
1589
1589
|
protoOf(OpenApiV3ToTypescript).compile = function (source) {
|
|
1590
|
-
var ast = Companion_getInstance_0().
|
|
1590
|
+
var ast = Companion_getInstance_0().i23(source);
|
|
1591
1591
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1592
1592
|
// Inline function 'kotlin.collections.map' call
|
|
1593
|
-
var tmp0_map = this.
|
|
1593
|
+
var tmp0_map = this.y25_1.q1r(ast);
|
|
1594
1594
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1595
1595
|
var tmp0_mapTo = ArrayList_init_$Create$(collectionSizeOrDefault(tmp0_map, 10));
|
|
1596
1596
|
var tmp0_iterator = tmp0_map.v();
|
|
@@ -1618,16 +1618,16 @@
|
|
|
1618
1618
|
OpenApiV3ToWirespec_instance = this;
|
|
1619
1619
|
var tmp = this;
|
|
1620
1620
|
tmp.logger = new OpenApiV3ToWirespec$logger$1();
|
|
1621
|
-
this.
|
|
1621
|
+
this.z25_1 = new WirespecEmitter(this.logger);
|
|
1622
1622
|
}
|
|
1623
|
-
protoOf(OpenApiV3ToWirespec).
|
|
1623
|
+
protoOf(OpenApiV3ToWirespec).q25 = function () {
|
|
1624
1624
|
return this.logger;
|
|
1625
1625
|
};
|
|
1626
1626
|
protoOf(OpenApiV3ToWirespec).compile = function (source) {
|
|
1627
|
-
var ast = Companion_getInstance_0().
|
|
1627
|
+
var ast = Companion_getInstance_0().i23(source);
|
|
1628
1628
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1629
1629
|
// Inline function 'kotlin.collections.map' call
|
|
1630
|
-
var tmp0_map = this.
|
|
1630
|
+
var tmp0_map = this.z25_1.q1r(ast);
|
|
1631
1631
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1632
1632
|
var tmp0_mapTo = ArrayList_init_$Create$(collectionSizeOrDefault(tmp0_map, 10));
|
|
1633
1633
|
var tmp0_iterator = tmp0_map.v();
|
|
@@ -1661,10 +1661,10 @@
|
|
|
1661
1661
|
this.result = result;
|
|
1662
1662
|
this.errors = errors;
|
|
1663
1663
|
}
|
|
1664
|
-
protoOf(WsCompilationResult).
|
|
1664
|
+
protoOf(WsCompilationResult).a26 = function () {
|
|
1665
1665
|
return this.result;
|
|
1666
1666
|
};
|
|
1667
|
-
protoOf(WsCompilationResult).
|
|
1667
|
+
protoOf(WsCompilationResult).b26 = function () {
|
|
1668
1668
|
return this.errors;
|
|
1669
1669
|
};
|
|
1670
1670
|
function WsCompiled(value) {
|
|
@@ -1689,10 +1689,10 @@
|
|
|
1689
1689
|
this.result = result;
|
|
1690
1690
|
this.errors = errors;
|
|
1691
1691
|
}
|
|
1692
|
-
protoOf(WsParseResult).
|
|
1692
|
+
protoOf(WsParseResult).a26 = function () {
|
|
1693
1693
|
return this.result;
|
|
1694
1694
|
};
|
|
1695
|
-
protoOf(WsParseResult).
|
|
1695
|
+
protoOf(WsParseResult).b26 = function () {
|
|
1696
1696
|
return this.errors;
|
|
1697
1697
|
};
|
|
1698
1698
|
function WsStringResult(result, errors) {
|
|
@@ -1701,10 +1701,10 @@
|
|
|
1701
1701
|
this.result = result;
|
|
1702
1702
|
this.errors = errors;
|
|
1703
1703
|
}
|
|
1704
|
-
protoOf(WsStringResult).
|
|
1704
|
+
protoOf(WsStringResult).a26 = function () {
|
|
1705
1705
|
return this.result;
|
|
1706
1706
|
};
|
|
1707
|
-
protoOf(WsStringResult).
|
|
1707
|
+
protoOf(WsStringResult).b26 = function () {
|
|
1708
1708
|
return this.errors;
|
|
1709
1709
|
};
|
|
1710
1710
|
function produce_14(_this__u8e3s4) {
|
|
@@ -1830,10 +1830,10 @@
|
|
|
1830
1830
|
this.tokens = tokens;
|
|
1831
1831
|
this.error = error;
|
|
1832
1832
|
}
|
|
1833
|
-
protoOf(WsTokenResult).
|
|
1833
|
+
protoOf(WsTokenResult).c26 = function () {
|
|
1834
1834
|
return this.tokens;
|
|
1835
1835
|
};
|
|
1836
|
-
protoOf(WsTokenResult).
|
|
1836
|
+
protoOf(WsTokenResult).d26 = function () {
|
|
1837
1837
|
return this.error;
|
|
1838
1838
|
};
|
|
1839
1839
|
protoOf(WsTokenResult).fd = function () {
|
|
@@ -1842,13 +1842,13 @@
|
|
|
1842
1842
|
protoOf(WsTokenResult).gd = function () {
|
|
1843
1843
|
return this.error;
|
|
1844
1844
|
};
|
|
1845
|
-
protoOf(WsTokenResult).
|
|
1845
|
+
protoOf(WsTokenResult).e26 = function (tokens, error) {
|
|
1846
1846
|
return new WsTokenResult(tokens, error);
|
|
1847
1847
|
};
|
|
1848
1848
|
protoOf(WsTokenResult).copy = function (tokens, error, $super) {
|
|
1849
1849
|
tokens = tokens === VOID ? this.tokens : tokens;
|
|
1850
1850
|
error = error === VOID ? this.error : error;
|
|
1851
|
-
return this.
|
|
1851
|
+
return this.e26(tokens, error);
|
|
1852
1852
|
};
|
|
1853
1853
|
protoOf(WsTokenResult).toString = function () {
|
|
1854
1854
|
return 'WsTokenResult(tokens=' + this.tokens + ', error=' + this.error + ')';
|
|
@@ -1893,12 +1893,12 @@
|
|
|
1893
1893
|
protoOf(WsTokens).fd = function () {
|
|
1894
1894
|
return this.value;
|
|
1895
1895
|
};
|
|
1896
|
-
protoOf(WsTokens).
|
|
1896
|
+
protoOf(WsTokens).f26 = function (value) {
|
|
1897
1897
|
return new WsTokens(value);
|
|
1898
1898
|
};
|
|
1899
1899
|
protoOf(WsTokens).copy = function (value, $super) {
|
|
1900
1900
|
value = value === VOID ? this.value : value;
|
|
1901
|
-
return this.
|
|
1901
|
+
return this.f26(value);
|
|
1902
1902
|
};
|
|
1903
1903
|
protoOf(WsTokens).toString = function () {
|
|
1904
1904
|
return 'WsTokens(value=' + toString(this.value) + ')';
|
|
@@ -1909,13 +1909,13 @@
|
|
|
1909
1909
|
this.value = value;
|
|
1910
1910
|
this.coordinates = coordinates;
|
|
1911
1911
|
}
|
|
1912
|
-
protoOf(WsToken).
|
|
1912
|
+
protoOf(WsToken).i25 = function () {
|
|
1913
1913
|
return this.type;
|
|
1914
1914
|
};
|
|
1915
1915
|
protoOf(WsToken).p2 = function () {
|
|
1916
1916
|
return this.value;
|
|
1917
1917
|
};
|
|
1918
|
-
protoOf(WsToken).
|
|
1918
|
+
protoOf(WsToken).g26 = function () {
|
|
1919
1919
|
return this.coordinates;
|
|
1920
1920
|
};
|
|
1921
1921
|
protoOf(WsToken).fd = function () {
|
|
@@ -1927,14 +1927,14 @@
|
|
|
1927
1927
|
protoOf(WsToken).zg = function () {
|
|
1928
1928
|
return this.coordinates;
|
|
1929
1929
|
};
|
|
1930
|
-
protoOf(WsToken).
|
|
1930
|
+
protoOf(WsToken).h26 = function (type, value, coordinates) {
|
|
1931
1931
|
return new WsToken(type, value, coordinates);
|
|
1932
1932
|
};
|
|
1933
1933
|
protoOf(WsToken).copy = function (type, value, coordinates, $super) {
|
|
1934
1934
|
type = type === VOID ? this.type : type;
|
|
1935
1935
|
value = value === VOID ? this.value : value;
|
|
1936
1936
|
coordinates = coordinates === VOID ? this.coordinates : coordinates;
|
|
1937
|
-
return this.
|
|
1937
|
+
return this.h26(type, value, coordinates);
|
|
1938
1938
|
};
|
|
1939
1939
|
protoOf(WsToken).toString = function () {
|
|
1940
1940
|
return 'WsToken(type=' + this.type + ', value=' + this.value + ', coordinates=' + this.coordinates + ')';
|
|
@@ -1967,13 +1967,13 @@
|
|
|
1967
1967
|
this.position = position;
|
|
1968
1968
|
this.idxAndLength = idxAndLength;
|
|
1969
1969
|
}
|
|
1970
|
-
protoOf(WsCoordinates).
|
|
1970
|
+
protoOf(WsCoordinates).i26 = function () {
|
|
1971
1971
|
return this.line;
|
|
1972
1972
|
};
|
|
1973
1973
|
protoOf(WsCoordinates).op = function () {
|
|
1974
1974
|
return this.position;
|
|
1975
1975
|
};
|
|
1976
|
-
protoOf(WsCoordinates).
|
|
1976
|
+
protoOf(WsCoordinates).j26 = function () {
|
|
1977
1977
|
return this.idxAndLength;
|
|
1978
1978
|
};
|
|
1979
1979
|
protoOf(WsCoordinates).fd = function () {
|
|
@@ -1985,14 +1985,14 @@
|
|
|
1985
1985
|
protoOf(WsCoordinates).zg = function () {
|
|
1986
1986
|
return this.idxAndLength;
|
|
1987
1987
|
};
|
|
1988
|
-
protoOf(WsCoordinates).
|
|
1988
|
+
protoOf(WsCoordinates).k26 = function (line, position, idxAndLength) {
|
|
1989
1989
|
return new WsCoordinates(line, position, idxAndLength);
|
|
1990
1990
|
};
|
|
1991
1991
|
protoOf(WsCoordinates).copy = function (line, position, idxAndLength, $super) {
|
|
1992
1992
|
line = line === VOID ? this.line : line;
|
|
1993
1993
|
position = position === VOID ? this.position : position;
|
|
1994
1994
|
idxAndLength = idxAndLength === VOID ? this.idxAndLength : idxAndLength;
|
|
1995
|
-
return this.
|
|
1995
|
+
return this.k26(line, position, idxAndLength);
|
|
1996
1996
|
};
|
|
1997
1997
|
protoOf(WsCoordinates).toString = function () {
|
|
1998
1998
|
return 'WsCoordinates(line=' + this.line + ', position=' + this.position + ', idxAndLength=' + this.idxAndLength + ')';
|
|
@@ -2023,7 +2023,7 @@
|
|
|
2023
2023
|
this.idx = idx;
|
|
2024
2024
|
this.length = length;
|
|
2025
2025
|
}
|
|
2026
|
-
protoOf(WsIndex).
|
|
2026
|
+
protoOf(WsIndex).l26 = function () {
|
|
2027
2027
|
return this.idx;
|
|
2028
2028
|
};
|
|
2029
2029
|
protoOf(WsIndex).a = function () {
|
|
@@ -2035,13 +2035,13 @@
|
|
|
2035
2035
|
protoOf(WsIndex).gd = function () {
|
|
2036
2036
|
return this.length;
|
|
2037
2037
|
};
|
|
2038
|
-
protoOf(WsIndex).
|
|
2038
|
+
protoOf(WsIndex).m26 = function (idx, length) {
|
|
2039
2039
|
return new WsIndex(idx, length);
|
|
2040
2040
|
};
|
|
2041
2041
|
protoOf(WsIndex).copy = function (idx, length, $super) {
|
|
2042
2042
|
idx = idx === VOID ? this.idx : idx;
|
|
2043
2043
|
length = length === VOID ? this.length : length;
|
|
2044
|
-
return this.
|
|
2044
|
+
return this.m26(idx, length);
|
|
2045
2045
|
};
|
|
2046
2046
|
protoOf(WsIndex).toString = function () {
|
|
2047
2047
|
return 'WsIndex(idx=' + this.idx + ', length=' + this.length + ')';
|
|
@@ -2081,20 +2081,20 @@
|
|
|
2081
2081
|
return new WsTokenResult(new WsTokens(tmp$ret$3));
|
|
2082
2082
|
}
|
|
2083
2083
|
function produce_18(_this__u8e3s4) {
|
|
2084
|
-
return new WsToken(_this__u8e3s4.
|
|
2084
|
+
return new WsToken(_this__u8e3s4.z1z_1.b20(), _this__u8e3s4.y1z_1, produce_19(_this__u8e3s4.a20_1));
|
|
2085
2085
|
}
|
|
2086
2086
|
function produce_19(_this__u8e3s4) {
|
|
2087
|
-
return new WsCoordinates(_this__u8e3s4.
|
|
2087
|
+
return new WsCoordinates(_this__u8e3s4.c20_1, _this__u8e3s4.d20_1, produce_20(_this__u8e3s4.e20_1));
|
|
2088
2088
|
}
|
|
2089
2089
|
function produce_20(_this__u8e3s4) {
|
|
2090
|
-
return new WsIndex(_this__u8e3s4.
|
|
2090
|
+
return new WsIndex(_this__u8e3s4.n21_1, _this__u8e3s4.o21_1);
|
|
2091
2091
|
}
|
|
2092
2092
|
function WsError(index, length, value) {
|
|
2093
2093
|
this.index = index;
|
|
2094
2094
|
this.length = length;
|
|
2095
2095
|
this.value = value;
|
|
2096
2096
|
}
|
|
2097
|
-
protoOf(WsError).
|
|
2097
|
+
protoOf(WsError).n26 = function () {
|
|
2098
2098
|
return this.index;
|
|
2099
2099
|
};
|
|
2100
2100
|
protoOf(WsError).a = function () {
|
|
@@ -2112,14 +2112,14 @@
|
|
|
2112
2112
|
protoOf(WsError).zg = function () {
|
|
2113
2113
|
return this.value;
|
|
2114
2114
|
};
|
|
2115
|
-
protoOf(WsError).
|
|
2115
|
+
protoOf(WsError).o26 = function (index, length, value) {
|
|
2116
2116
|
return new WsError(index, length, value);
|
|
2117
2117
|
};
|
|
2118
2118
|
protoOf(WsError).copy = function (index, length, value, $super) {
|
|
2119
2119
|
index = index === VOID ? this.index : index;
|
|
2120
2120
|
length = length === VOID ? this.length : length;
|
|
2121
2121
|
value = value === VOID ? this.value : value;
|
|
2122
|
-
return this.
|
|
2122
|
+
return this.o26(index, length, value);
|
|
2123
2123
|
};
|
|
2124
2124
|
protoOf(WsError).toString = function () {
|
|
2125
2125
|
return 'WsError(index=' + this.index + ', length=' + this.length + ', value=' + this.value + ')';
|
|
@@ -2145,9 +2145,9 @@
|
|
|
2145
2145
|
return true;
|
|
2146
2146
|
};
|
|
2147
2147
|
function produce_21(_this__u8e3s4) {
|
|
2148
|
-
var tmp = _this__u8e3s4.e20_1.
|
|
2148
|
+
var tmp = _this__u8e3s4.f20_1.e20_1.n21_1 - _this__u8e3s4.f20_1.e20_1.o21_1 | 0;
|
|
2149
2149
|
var tmp0_elvis_lhs = _this__u8e3s4.message;
|
|
2150
|
-
return new WsError(tmp, _this__u8e3s4.e20_1.
|
|
2150
|
+
return new WsError(tmp, _this__u8e3s4.f20_1.e20_1.o21_1, tmp0_elvis_lhs == null ? 'No message' : tmp0_elvis_lhs);
|
|
2151
2151
|
}
|
|
2152
2152
|
//region block: post-declaration
|
|
2153
2153
|
defineProp(protoOf(WsType), 'name', function () {
|
|
@@ -2171,25 +2171,25 @@
|
|
|
2171
2171
|
return this.g1s();
|
|
2172
2172
|
}, VOID);
|
|
2173
2173
|
defineProp(protoOf(WsAny), 'isMap', function () {
|
|
2174
|
-
return this.
|
|
2174
|
+
return this.q1z();
|
|
2175
2175
|
}, VOID);
|
|
2176
2176
|
defineProp(protoOf(WsUnit), 'isIterable', function () {
|
|
2177
2177
|
return this.g1s();
|
|
2178
2178
|
}, VOID);
|
|
2179
2179
|
defineProp(protoOf(WsUnit), 'isMap', function () {
|
|
2180
|
-
return this.
|
|
2180
|
+
return this.q1z();
|
|
2181
2181
|
}, VOID);
|
|
2182
2182
|
defineProp(protoOf(WsCustom), 'isIterable', function () {
|
|
2183
2183
|
return this.g1s();
|
|
2184
2184
|
}, VOID);
|
|
2185
2185
|
defineProp(protoOf(WsCustom), 'isMap', function () {
|
|
2186
|
-
return this.
|
|
2186
|
+
return this.q1z();
|
|
2187
2187
|
}, VOID);
|
|
2188
2188
|
defineProp(protoOf(WsPrimitive), 'isIterable', function () {
|
|
2189
2189
|
return this.g1s();
|
|
2190
2190
|
}, VOID);
|
|
2191
2191
|
defineProp(protoOf(WsPrimitive), 'isMap', function () {
|
|
2192
|
-
return this.
|
|
2192
|
+
return this.q1z();
|
|
2193
2193
|
}, VOID);
|
|
2194
2194
|
defineProp(protoOf(WsPrimitiveType), 'name', protoOf(WsPrimitiveType).va, VOID);
|
|
2195
2195
|
defineProp(protoOf(WsPrimitiveType), 'ordinal', protoOf(WsPrimitiveType).wa, VOID);
|