@flock/wirespec 0.11.8 → 0.11.9
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 +1162 -1162
- package/colormath-root-colormath.js +425 -425
- package/kotlin-kotlin-stdlib.js +8 -8
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlin-rgxgen.js +1767 -1767
- package/kotlinx-io-kotlinx-io-core.js +380 -380
- package/markdown.js +1862 -1862
- package/mordant-mordant.js +1642 -1642
- package/package.json +1 -1
- package/wirespec-src-compiler-lib.js +204 -204
- package/wirespec-src-converter-avro.js +503 -222
- package/wirespec-src-converter-avro.js.map +1 -1
- package/wirespec-src-plugin-cli.js +100 -100
- package/wirespec-src-plugin-npm.js +4 -4
- package/wirespec-src-tools-generator.js +2 -2
|
@@ -134,21 +134,21 @@
|
|
|
134
134
|
function WsNode() {
|
|
135
135
|
}
|
|
136
136
|
function WsType(identifier, comment, shape) {
|
|
137
|
-
this.
|
|
137
|
+
this.m2e_1 = identifier;
|
|
138
138
|
this.comment = comment;
|
|
139
139
|
this.shape = shape;
|
|
140
140
|
}
|
|
141
141
|
protoOf(WsType).v28 = function () {
|
|
142
|
-
return this.
|
|
142
|
+
return this.m2e_1;
|
|
143
143
|
};
|
|
144
|
-
protoOf(WsType).
|
|
144
|
+
protoOf(WsType).n2e = function () {
|
|
145
145
|
return this.comment;
|
|
146
146
|
};
|
|
147
|
-
protoOf(WsType).
|
|
147
|
+
protoOf(WsType).o2e = function () {
|
|
148
148
|
return this.shape;
|
|
149
149
|
};
|
|
150
150
|
protoOf(WsType).qd = function () {
|
|
151
|
-
return this.
|
|
151
|
+
return this.m2e_1;
|
|
152
152
|
};
|
|
153
153
|
protoOf(WsType).rd = function () {
|
|
154
154
|
return this.comment;
|
|
@@ -156,20 +156,20 @@
|
|
|
156
156
|
protoOf(WsType).ph = function () {
|
|
157
157
|
return this.shape;
|
|
158
158
|
};
|
|
159
|
-
protoOf(WsType).
|
|
159
|
+
protoOf(WsType).p2e = function (identifier, comment, shape) {
|
|
160
160
|
return new WsType(identifier, comment, shape);
|
|
161
161
|
};
|
|
162
162
|
protoOf(WsType).copy = function (identifier, comment, shape, $super) {
|
|
163
|
-
identifier = identifier === VOID ? this.
|
|
163
|
+
identifier = identifier === VOID ? this.m2e_1 : identifier;
|
|
164
164
|
comment = comment === VOID ? this.comment : comment;
|
|
165
165
|
shape = shape === VOID ? this.shape : shape;
|
|
166
|
-
return this.
|
|
166
|
+
return this.p2e(identifier, comment, shape);
|
|
167
167
|
};
|
|
168
168
|
protoOf(WsType).toString = function () {
|
|
169
|
-
return 'WsType(identifier=' + this.
|
|
169
|
+
return 'WsType(identifier=' + this.m2e_1 + ', comment=' + this.comment + ', shape=' + this.shape.toString() + ')';
|
|
170
170
|
};
|
|
171
171
|
protoOf(WsType).hashCode = function () {
|
|
172
|
-
var result = getStringHashCode(this.
|
|
172
|
+
var result = getStringHashCode(this.m2e_1);
|
|
173
173
|
result = imul(result, 31) + (this.comment == null ? 0 : getStringHashCode(this.comment)) | 0;
|
|
174
174
|
result = imul(result, 31) + this.shape.hashCode() | 0;
|
|
175
175
|
return result;
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
if (!(other instanceof WsType))
|
|
181
181
|
return false;
|
|
182
182
|
var tmp0_other_with_cast = other instanceof WsType ? other : THROW_CCE();
|
|
183
|
-
if (!(this.
|
|
183
|
+
if (!(this.m2e_1 === tmp0_other_with_cast.m2e_1))
|
|
184
184
|
return false;
|
|
185
185
|
if (!(this.comment == tmp0_other_with_cast.comment))
|
|
186
186
|
return false;
|
|
@@ -197,12 +197,12 @@
|
|
|
197
197
|
protoOf(WsShape).qd = function () {
|
|
198
198
|
return this.value;
|
|
199
199
|
};
|
|
200
|
-
protoOf(WsShape).
|
|
200
|
+
protoOf(WsShape).q2e = function (value) {
|
|
201
201
|
return new WsShape(value);
|
|
202
202
|
};
|
|
203
203
|
protoOf(WsShape).copy = function (value, $super) {
|
|
204
204
|
value = value === VOID ? this.value : value;
|
|
205
|
-
return this.
|
|
205
|
+
return this.q2e(value);
|
|
206
206
|
};
|
|
207
207
|
protoOf(WsShape).toString = function () {
|
|
208
208
|
return 'WsShape(value=' + toString(this.value) + ')';
|
|
@@ -221,7 +221,7 @@
|
|
|
221
221
|
return true;
|
|
222
222
|
};
|
|
223
223
|
function WsEndpoint(identifier, comment, method, path, query, headers, cookies, requests, responses) {
|
|
224
|
-
this.
|
|
224
|
+
this.r2e_1 = identifier;
|
|
225
225
|
this.comment = comment;
|
|
226
226
|
this.method = method;
|
|
227
227
|
this.path = path;
|
|
@@ -232,34 +232,34 @@
|
|
|
232
232
|
this.responses = responses;
|
|
233
233
|
}
|
|
234
234
|
protoOf(WsEndpoint).v28 = function () {
|
|
235
|
-
return this.
|
|
235
|
+
return this.r2e_1;
|
|
236
236
|
};
|
|
237
|
-
protoOf(WsEndpoint).
|
|
237
|
+
protoOf(WsEndpoint).n2e = function () {
|
|
238
238
|
return this.comment;
|
|
239
239
|
};
|
|
240
|
-
protoOf(WsEndpoint).
|
|
240
|
+
protoOf(WsEndpoint).s2e = function () {
|
|
241
241
|
return this.method;
|
|
242
242
|
};
|
|
243
|
-
protoOf(WsEndpoint).
|
|
243
|
+
protoOf(WsEndpoint).t2e = function () {
|
|
244
244
|
return this.path;
|
|
245
245
|
};
|
|
246
|
-
protoOf(WsEndpoint).
|
|
246
|
+
protoOf(WsEndpoint).u2e = function () {
|
|
247
247
|
return this.query;
|
|
248
248
|
};
|
|
249
|
-
protoOf(WsEndpoint).
|
|
249
|
+
protoOf(WsEndpoint).v2e = function () {
|
|
250
250
|
return this.headers;
|
|
251
251
|
};
|
|
252
|
-
protoOf(WsEndpoint).
|
|
252
|
+
protoOf(WsEndpoint).w2e = function () {
|
|
253
253
|
return this.cookies;
|
|
254
254
|
};
|
|
255
|
-
protoOf(WsEndpoint).
|
|
255
|
+
protoOf(WsEndpoint).x2e = function () {
|
|
256
256
|
return this.requests;
|
|
257
257
|
};
|
|
258
|
-
protoOf(WsEndpoint).
|
|
258
|
+
protoOf(WsEndpoint).y2e = function () {
|
|
259
259
|
return this.responses;
|
|
260
260
|
};
|
|
261
261
|
protoOf(WsEndpoint).qd = function () {
|
|
262
|
-
return this.
|
|
262
|
+
return this.r2e_1;
|
|
263
263
|
};
|
|
264
264
|
protoOf(WsEndpoint).rd = function () {
|
|
265
265
|
return this.comment;
|
|
@@ -267,29 +267,29 @@
|
|
|
267
267
|
protoOf(WsEndpoint).ph = function () {
|
|
268
268
|
return this.method;
|
|
269
269
|
};
|
|
270
|
-
protoOf(WsEndpoint).
|
|
270
|
+
protoOf(WsEndpoint).z2e = function () {
|
|
271
271
|
return this.path;
|
|
272
272
|
};
|
|
273
|
-
protoOf(WsEndpoint).
|
|
273
|
+
protoOf(WsEndpoint).a2f = function () {
|
|
274
274
|
return this.query;
|
|
275
275
|
};
|
|
276
|
-
protoOf(WsEndpoint).
|
|
276
|
+
protoOf(WsEndpoint).b2f = function () {
|
|
277
277
|
return this.headers;
|
|
278
278
|
};
|
|
279
|
-
protoOf(WsEndpoint).
|
|
279
|
+
protoOf(WsEndpoint).c2f = function () {
|
|
280
280
|
return this.cookies;
|
|
281
281
|
};
|
|
282
|
-
protoOf(WsEndpoint).
|
|
282
|
+
protoOf(WsEndpoint).d2f = function () {
|
|
283
283
|
return this.requests;
|
|
284
284
|
};
|
|
285
|
-
protoOf(WsEndpoint).
|
|
285
|
+
protoOf(WsEndpoint).e2f = function () {
|
|
286
286
|
return this.responses;
|
|
287
287
|
};
|
|
288
|
-
protoOf(WsEndpoint).
|
|
288
|
+
protoOf(WsEndpoint).f2f = function (identifier, comment, method, path, query, headers, cookies, requests, responses) {
|
|
289
289
|
return new WsEndpoint(identifier, comment, method, path, query, headers, cookies, requests, responses);
|
|
290
290
|
};
|
|
291
291
|
protoOf(WsEndpoint).copy = function (identifier, comment, method, path, query, headers, cookies, requests, responses, $super) {
|
|
292
|
-
identifier = identifier === VOID ? this.
|
|
292
|
+
identifier = identifier === VOID ? this.r2e_1 : identifier;
|
|
293
293
|
comment = comment === VOID ? this.comment : comment;
|
|
294
294
|
method = method === VOID ? this.method : method;
|
|
295
295
|
path = path === VOID ? this.path : path;
|
|
@@ -298,13 +298,13 @@
|
|
|
298
298
|
cookies = cookies === VOID ? this.cookies : cookies;
|
|
299
299
|
requests = requests === VOID ? this.requests : requests;
|
|
300
300
|
responses = responses === VOID ? this.responses : responses;
|
|
301
|
-
return this.
|
|
301
|
+
return this.f2f(identifier, comment, method, path, query, headers, cookies, requests, responses);
|
|
302
302
|
};
|
|
303
303
|
protoOf(WsEndpoint).toString = function () {
|
|
304
|
-
return 'WsEndpoint(identifier=' + this.
|
|
304
|
+
return 'WsEndpoint(identifier=' + this.r2e_1 + ', comment=' + this.comment + ', method=' + this.method.toString() + ', path=' + toString(this.path) + ', query=' + toString(this.query) + ', headers=' + toString(this.headers) + ', cookies=' + toString(this.cookies) + ', requests=' + toString(this.requests) + ', responses=' + toString(this.responses) + ')';
|
|
305
305
|
};
|
|
306
306
|
protoOf(WsEndpoint).hashCode = function () {
|
|
307
|
-
var result = getStringHashCode(this.
|
|
307
|
+
var result = getStringHashCode(this.r2e_1);
|
|
308
308
|
result = imul(result, 31) + (this.comment == null ? 0 : getStringHashCode(this.comment)) | 0;
|
|
309
309
|
result = imul(result, 31) + this.method.hashCode() | 0;
|
|
310
310
|
result = imul(result, 31) + hashCode(this.path) | 0;
|
|
@@ -321,7 +321,7 @@
|
|
|
321
321
|
if (!(other instanceof WsEndpoint))
|
|
322
322
|
return false;
|
|
323
323
|
var tmp0_other_with_cast = other instanceof WsEndpoint ? other : THROW_CCE();
|
|
324
|
-
if (!(this.
|
|
324
|
+
if (!(this.r2e_1 === tmp0_other_with_cast.r2e_1))
|
|
325
325
|
return false;
|
|
326
326
|
if (!(this.comment == tmp0_other_with_cast.comment))
|
|
327
327
|
return false;
|
|
@@ -342,21 +342,21 @@
|
|
|
342
342
|
return true;
|
|
343
343
|
};
|
|
344
344
|
function WsEnum(identifier, comment, entries) {
|
|
345
|
-
this.
|
|
345
|
+
this.g2f_1 = identifier;
|
|
346
346
|
this.comment = comment;
|
|
347
347
|
this.entries = entries;
|
|
348
348
|
}
|
|
349
349
|
protoOf(WsEnum).v28 = function () {
|
|
350
|
-
return this.
|
|
350
|
+
return this.g2f_1;
|
|
351
351
|
};
|
|
352
|
-
protoOf(WsEnum).
|
|
352
|
+
protoOf(WsEnum).n2e = function () {
|
|
353
353
|
return this.comment;
|
|
354
354
|
};
|
|
355
355
|
protoOf(WsEnum).z = function () {
|
|
356
356
|
return this.entries;
|
|
357
357
|
};
|
|
358
358
|
protoOf(WsEnum).qd = function () {
|
|
359
|
-
return this.
|
|
359
|
+
return this.g2f_1;
|
|
360
360
|
};
|
|
361
361
|
protoOf(WsEnum).rd = function () {
|
|
362
362
|
return this.comment;
|
|
@@ -364,20 +364,20 @@
|
|
|
364
364
|
protoOf(WsEnum).ph = function () {
|
|
365
365
|
return this.entries;
|
|
366
366
|
};
|
|
367
|
-
protoOf(WsEnum).
|
|
367
|
+
protoOf(WsEnum).h2f = function (identifier, comment, entries) {
|
|
368
368
|
return new WsEnum(identifier, comment, entries);
|
|
369
369
|
};
|
|
370
370
|
protoOf(WsEnum).copy = function (identifier, comment, entries, $super) {
|
|
371
|
-
identifier = identifier === VOID ? this.
|
|
371
|
+
identifier = identifier === VOID ? this.g2f_1 : identifier;
|
|
372
372
|
comment = comment === VOID ? this.comment : comment;
|
|
373
373
|
entries = entries === VOID ? this.entries : entries;
|
|
374
|
-
return this.
|
|
374
|
+
return this.h2f(identifier, comment, entries);
|
|
375
375
|
};
|
|
376
376
|
protoOf(WsEnum).toString = function () {
|
|
377
|
-
return 'WsEnum(identifier=' + this.
|
|
377
|
+
return 'WsEnum(identifier=' + this.g2f_1 + ', comment=' + this.comment + ', entries=' + toString(this.entries) + ')';
|
|
378
378
|
};
|
|
379
379
|
protoOf(WsEnum).hashCode = function () {
|
|
380
|
-
var result = getStringHashCode(this.
|
|
380
|
+
var result = getStringHashCode(this.g2f_1);
|
|
381
381
|
result = imul(result, 31) + (this.comment == null ? 0 : getStringHashCode(this.comment)) | 0;
|
|
382
382
|
result = imul(result, 31) + hashCode(this.entries) | 0;
|
|
383
383
|
return result;
|
|
@@ -388,7 +388,7 @@
|
|
|
388
388
|
if (!(other instanceof WsEnum))
|
|
389
389
|
return false;
|
|
390
390
|
var tmp0_other_with_cast = other instanceof WsEnum ? other : THROW_CCE();
|
|
391
|
-
if (!(this.
|
|
391
|
+
if (!(this.g2f_1 === tmp0_other_with_cast.g2f_1))
|
|
392
392
|
return false;
|
|
393
393
|
if (!(this.comment == tmp0_other_with_cast.comment))
|
|
394
394
|
return false;
|
|
@@ -397,21 +397,21 @@
|
|
|
397
397
|
return true;
|
|
398
398
|
};
|
|
399
399
|
function WsUnion(identifier, comment, entries) {
|
|
400
|
-
this.
|
|
400
|
+
this.i2f_1 = identifier;
|
|
401
401
|
this.comment = comment;
|
|
402
402
|
this.entries = entries;
|
|
403
403
|
}
|
|
404
404
|
protoOf(WsUnion).v28 = function () {
|
|
405
|
-
return this.
|
|
405
|
+
return this.i2f_1;
|
|
406
406
|
};
|
|
407
|
-
protoOf(WsUnion).
|
|
407
|
+
protoOf(WsUnion).n2e = function () {
|
|
408
408
|
return this.comment;
|
|
409
409
|
};
|
|
410
410
|
protoOf(WsUnion).z = function () {
|
|
411
411
|
return this.entries;
|
|
412
412
|
};
|
|
413
413
|
protoOf(WsUnion).qd = function () {
|
|
414
|
-
return this.
|
|
414
|
+
return this.i2f_1;
|
|
415
415
|
};
|
|
416
416
|
protoOf(WsUnion).rd = function () {
|
|
417
417
|
return this.comment;
|
|
@@ -419,20 +419,20 @@
|
|
|
419
419
|
protoOf(WsUnion).ph = function () {
|
|
420
420
|
return this.entries;
|
|
421
421
|
};
|
|
422
|
-
protoOf(WsUnion).
|
|
422
|
+
protoOf(WsUnion).j2f = function (identifier, comment, entries) {
|
|
423
423
|
return new WsUnion(identifier, comment, entries);
|
|
424
424
|
};
|
|
425
425
|
protoOf(WsUnion).copy = function (identifier, comment, entries, $super) {
|
|
426
|
-
identifier = identifier === VOID ? this.
|
|
426
|
+
identifier = identifier === VOID ? this.i2f_1 : identifier;
|
|
427
427
|
comment = comment === VOID ? this.comment : comment;
|
|
428
428
|
entries = entries === VOID ? this.entries : entries;
|
|
429
|
-
return this.
|
|
429
|
+
return this.j2f(identifier, comment, entries);
|
|
430
430
|
};
|
|
431
431
|
protoOf(WsUnion).toString = function () {
|
|
432
|
-
return 'WsUnion(identifier=' + this.
|
|
432
|
+
return 'WsUnion(identifier=' + this.i2f_1 + ', comment=' + this.comment + ', entries=' + toString(this.entries) + ')';
|
|
433
433
|
};
|
|
434
434
|
protoOf(WsUnion).hashCode = function () {
|
|
435
|
-
var result = getStringHashCode(this.
|
|
435
|
+
var result = getStringHashCode(this.i2f_1);
|
|
436
436
|
result = imul(result, 31) + (this.comment == null ? 0 : getStringHashCode(this.comment)) | 0;
|
|
437
437
|
result = imul(result, 31) + hashCode(this.entries) | 0;
|
|
438
438
|
return result;
|
|
@@ -443,7 +443,7 @@
|
|
|
443
443
|
if (!(other instanceof WsUnion))
|
|
444
444
|
return false;
|
|
445
445
|
var tmp0_other_with_cast = other instanceof WsUnion ? other : THROW_CCE();
|
|
446
|
-
if (!(this.
|
|
446
|
+
if (!(this.i2f_1 === tmp0_other_with_cast.i2f_1))
|
|
447
447
|
return false;
|
|
448
448
|
if (!(this.comment == tmp0_other_with_cast.comment))
|
|
449
449
|
return false;
|
|
@@ -452,21 +452,21 @@
|
|
|
452
452
|
return true;
|
|
453
453
|
};
|
|
454
454
|
function WsChannel(identifier, comment, reference) {
|
|
455
|
-
this.
|
|
455
|
+
this.k2f_1 = identifier;
|
|
456
456
|
this.comment = comment;
|
|
457
457
|
this.reference = reference;
|
|
458
458
|
}
|
|
459
459
|
protoOf(WsChannel).v28 = function () {
|
|
460
|
-
return this.
|
|
460
|
+
return this.k2f_1;
|
|
461
461
|
};
|
|
462
|
-
protoOf(WsChannel).
|
|
462
|
+
protoOf(WsChannel).n2e = function () {
|
|
463
463
|
return this.comment;
|
|
464
464
|
};
|
|
465
|
-
protoOf(WsChannel).
|
|
465
|
+
protoOf(WsChannel).l2f = function () {
|
|
466
466
|
return this.reference;
|
|
467
467
|
};
|
|
468
468
|
protoOf(WsChannel).qd = function () {
|
|
469
|
-
return this.
|
|
469
|
+
return this.k2f_1;
|
|
470
470
|
};
|
|
471
471
|
protoOf(WsChannel).rd = function () {
|
|
472
472
|
return this.comment;
|
|
@@ -474,20 +474,20 @@
|
|
|
474
474
|
protoOf(WsChannel).ph = function () {
|
|
475
475
|
return this.reference;
|
|
476
476
|
};
|
|
477
|
-
protoOf(WsChannel).
|
|
477
|
+
protoOf(WsChannel).m2f = function (identifier, comment, reference) {
|
|
478
478
|
return new WsChannel(identifier, comment, reference);
|
|
479
479
|
};
|
|
480
480
|
protoOf(WsChannel).copy = function (identifier, comment, reference, $super) {
|
|
481
|
-
identifier = identifier === VOID ? this.
|
|
481
|
+
identifier = identifier === VOID ? this.k2f_1 : identifier;
|
|
482
482
|
comment = comment === VOID ? this.comment : comment;
|
|
483
483
|
reference = reference === VOID ? this.reference : reference;
|
|
484
|
-
return this.
|
|
484
|
+
return this.m2f(identifier, comment, reference);
|
|
485
485
|
};
|
|
486
486
|
protoOf(WsChannel).toString = function () {
|
|
487
|
-
return 'WsChannel(identifier=' + this.
|
|
487
|
+
return 'WsChannel(identifier=' + this.k2f_1 + ', comment=' + this.comment + ', reference=' + toString(this.reference) + ')';
|
|
488
488
|
};
|
|
489
489
|
protoOf(WsChannel).hashCode = function () {
|
|
490
|
-
var result = getStringHashCode(this.
|
|
490
|
+
var result = getStringHashCode(this.k2f_1);
|
|
491
491
|
result = imul(result, 31) + (this.comment == null ? 0 : getStringHashCode(this.comment)) | 0;
|
|
492
492
|
result = imul(result, 31) + hashCode(this.reference) | 0;
|
|
493
493
|
return result;
|
|
@@ -498,7 +498,7 @@
|
|
|
498
498
|
if (!(other instanceof WsChannel))
|
|
499
499
|
return false;
|
|
500
500
|
var tmp0_other_with_cast = other instanceof WsChannel ? other : THROW_CCE();
|
|
501
|
-
if (!(this.
|
|
501
|
+
if (!(this.k2f_1 === tmp0_other_with_cast.k2f_1))
|
|
502
502
|
return false;
|
|
503
503
|
if (!(this.comment == tmp0_other_with_cast.comment))
|
|
504
504
|
return false;
|
|
@@ -507,21 +507,21 @@
|
|
|
507
507
|
return true;
|
|
508
508
|
};
|
|
509
509
|
function WsRefined(identifier, comment, validator) {
|
|
510
|
-
this.
|
|
510
|
+
this.n2f_1 = identifier;
|
|
511
511
|
this.comment = comment;
|
|
512
512
|
this.validator = validator;
|
|
513
513
|
}
|
|
514
514
|
protoOf(WsRefined).v28 = function () {
|
|
515
|
-
return this.
|
|
515
|
+
return this.n2f_1;
|
|
516
516
|
};
|
|
517
|
-
protoOf(WsRefined).
|
|
517
|
+
protoOf(WsRefined).n2e = function () {
|
|
518
518
|
return this.comment;
|
|
519
519
|
};
|
|
520
|
-
protoOf(WsRefined).
|
|
520
|
+
protoOf(WsRefined).o2f = function () {
|
|
521
521
|
return this.validator;
|
|
522
522
|
};
|
|
523
523
|
protoOf(WsRefined).qd = function () {
|
|
524
|
-
return this.
|
|
524
|
+
return this.n2f_1;
|
|
525
525
|
};
|
|
526
526
|
protoOf(WsRefined).rd = function () {
|
|
527
527
|
return this.comment;
|
|
@@ -529,20 +529,20 @@
|
|
|
529
529
|
protoOf(WsRefined).ph = function () {
|
|
530
530
|
return this.validator;
|
|
531
531
|
};
|
|
532
|
-
protoOf(WsRefined).
|
|
532
|
+
protoOf(WsRefined).p2f = function (identifier, comment, validator) {
|
|
533
533
|
return new WsRefined(identifier, comment, validator);
|
|
534
534
|
};
|
|
535
535
|
protoOf(WsRefined).copy = function (identifier, comment, validator, $super) {
|
|
536
|
-
identifier = identifier === VOID ? this.
|
|
536
|
+
identifier = identifier === VOID ? this.n2f_1 : identifier;
|
|
537
537
|
comment = comment === VOID ? this.comment : comment;
|
|
538
538
|
validator = validator === VOID ? this.validator : validator;
|
|
539
|
-
return this.
|
|
539
|
+
return this.p2f(identifier, comment, validator);
|
|
540
540
|
};
|
|
541
541
|
protoOf(WsRefined).toString = function () {
|
|
542
|
-
return 'WsRefined(identifier=' + this.
|
|
542
|
+
return 'WsRefined(identifier=' + this.n2f_1 + ', comment=' + this.comment + ', validator=' + this.validator + ')';
|
|
543
543
|
};
|
|
544
544
|
protoOf(WsRefined).hashCode = function () {
|
|
545
|
-
var result = getStringHashCode(this.
|
|
545
|
+
var result = getStringHashCode(this.n2f_1);
|
|
546
546
|
result = imul(result, 31) + (this.comment == null ? 0 : getStringHashCode(this.comment)) | 0;
|
|
547
547
|
result = imul(result, 31) + getStringHashCode(this.validator) | 0;
|
|
548
548
|
return result;
|
|
@@ -553,7 +553,7 @@
|
|
|
553
553
|
if (!(other instanceof WsRefined))
|
|
554
554
|
return false;
|
|
555
555
|
var tmp0_other_with_cast = other instanceof WsRefined ? other : THROW_CCE();
|
|
556
|
-
if (!(this.
|
|
556
|
+
if (!(this.n2f_1 === tmp0_other_with_cast.n2f_1))
|
|
557
557
|
return false;
|
|
558
558
|
if (!(this.comment == tmp0_other_with_cast.comment))
|
|
559
559
|
return false;
|
|
@@ -624,12 +624,12 @@
|
|
|
624
624
|
protoOf(WsLiteral).qd = function () {
|
|
625
625
|
return this.value;
|
|
626
626
|
};
|
|
627
|
-
protoOf(WsLiteral).
|
|
627
|
+
protoOf(WsLiteral).s2f = function (value) {
|
|
628
628
|
return new WsLiteral(value);
|
|
629
629
|
};
|
|
630
630
|
protoOf(WsLiteral).copy = function (value, $super) {
|
|
631
631
|
value = value === VOID ? this.value : value;
|
|
632
|
-
return this.
|
|
632
|
+
return this.s2f(value);
|
|
633
633
|
};
|
|
634
634
|
protoOf(WsLiteral).toString = function () {
|
|
635
635
|
return 'WsLiteral(value=' + this.value + ')';
|
|
@@ -654,7 +654,7 @@
|
|
|
654
654
|
protoOf(WsParam).v28 = function () {
|
|
655
655
|
return this.identifier;
|
|
656
656
|
};
|
|
657
|
-
protoOf(WsParam).
|
|
657
|
+
protoOf(WsParam).l2f = function () {
|
|
658
658
|
return this.reference;
|
|
659
659
|
};
|
|
660
660
|
protoOf(WsParam).qd = function () {
|
|
@@ -663,13 +663,13 @@
|
|
|
663
663
|
protoOf(WsParam).rd = function () {
|
|
664
664
|
return this.reference;
|
|
665
665
|
};
|
|
666
|
-
protoOf(WsParam).
|
|
666
|
+
protoOf(WsParam).t2f = function (identifier, reference) {
|
|
667
667
|
return new WsParam(identifier, reference);
|
|
668
668
|
};
|
|
669
669
|
protoOf(WsParam).copy = function (identifier, reference, $super) {
|
|
670
670
|
identifier = identifier === VOID ? this.identifier : identifier;
|
|
671
671
|
reference = reference === VOID ? this.reference : reference;
|
|
672
|
-
return this.
|
|
672
|
+
return this.t2f(identifier, reference);
|
|
673
673
|
};
|
|
674
674
|
protoOf(WsParam).toString = function () {
|
|
675
675
|
return 'WsParam(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
|
|
@@ -700,12 +700,12 @@
|
|
|
700
700
|
protoOf(Shape_0).qd = function () {
|
|
701
701
|
return this.value;
|
|
702
702
|
};
|
|
703
|
-
protoOf(Shape_0).
|
|
703
|
+
protoOf(Shape_0).q2e = function (value) {
|
|
704
704
|
return new Shape_0(value);
|
|
705
705
|
};
|
|
706
706
|
protoOf(Shape_0).copy = function (value, $super) {
|
|
707
707
|
value = value === VOID ? this.value : value;
|
|
708
|
-
return this.
|
|
708
|
+
return this.q2e(value);
|
|
709
709
|
};
|
|
710
710
|
protoOf(Shape_0).toString = function () {
|
|
711
711
|
return 'Shape(value=' + toString(this.value) + ')';
|
|
@@ -730,7 +730,7 @@
|
|
|
730
730
|
protoOf(WsField).v28 = function () {
|
|
731
731
|
return this.identifier;
|
|
732
732
|
};
|
|
733
|
-
protoOf(WsField).
|
|
733
|
+
protoOf(WsField).l2f = function () {
|
|
734
734
|
return this.reference;
|
|
735
735
|
};
|
|
736
736
|
protoOf(WsField).qd = function () {
|
|
@@ -739,13 +739,13 @@
|
|
|
739
739
|
protoOf(WsField).rd = function () {
|
|
740
740
|
return this.reference;
|
|
741
741
|
};
|
|
742
|
-
protoOf(WsField).
|
|
742
|
+
protoOf(WsField).t2f = function (identifier, reference) {
|
|
743
743
|
return new WsField(identifier, reference);
|
|
744
744
|
};
|
|
745
745
|
protoOf(WsField).copy = function (identifier, reference, $super) {
|
|
746
746
|
identifier = identifier === VOID ? this.identifier : identifier;
|
|
747
747
|
reference = reference === VOID ? this.reference : reference;
|
|
748
|
-
return this.
|
|
748
|
+
return this.t2f(identifier, reference);
|
|
749
749
|
};
|
|
750
750
|
protoOf(WsField).toString = function () {
|
|
751
751
|
return 'WsField(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
|
|
@@ -778,12 +778,12 @@
|
|
|
778
778
|
protoOf(WsClassIdentifier).qd = function () {
|
|
779
779
|
return this.value;
|
|
780
780
|
};
|
|
781
|
-
protoOf(WsClassIdentifier).
|
|
781
|
+
protoOf(WsClassIdentifier).s2f = function (value) {
|
|
782
782
|
return new WsClassIdentifier(value);
|
|
783
783
|
};
|
|
784
784
|
protoOf(WsClassIdentifier).copy = function (value, $super) {
|
|
785
785
|
value = value === VOID ? this.value : value;
|
|
786
|
-
return this.
|
|
786
|
+
return this.s2f(value);
|
|
787
787
|
};
|
|
788
788
|
protoOf(WsClassIdentifier).toString = function () {
|
|
789
789
|
return 'WsClassIdentifier(value=' + this.value + ')';
|
|
@@ -810,12 +810,12 @@
|
|
|
810
810
|
protoOf(WsFieldIdentifier).qd = function () {
|
|
811
811
|
return this.value;
|
|
812
812
|
};
|
|
813
|
-
protoOf(WsFieldIdentifier).
|
|
813
|
+
protoOf(WsFieldIdentifier).s2f = function (value) {
|
|
814
814
|
return new WsFieldIdentifier(value);
|
|
815
815
|
};
|
|
816
816
|
protoOf(WsFieldIdentifier).copy = function (value, $super) {
|
|
817
817
|
value = value === VOID ? this.value : value;
|
|
818
|
-
return this.
|
|
818
|
+
return this.s2f(value);
|
|
819
819
|
};
|
|
820
820
|
protoOf(WsFieldIdentifier).toString = function () {
|
|
821
821
|
return 'WsFieldIdentifier(value=' + this.value + ')';
|
|
@@ -836,26 +836,26 @@
|
|
|
836
836
|
function WsReference() {
|
|
837
837
|
}
|
|
838
838
|
function WsAny(isNullable) {
|
|
839
|
-
this.
|
|
839
|
+
this.u2f_1 = isNullable;
|
|
840
840
|
}
|
|
841
841
|
protoOf(WsAny).vl = function () {
|
|
842
|
-
return this.
|
|
842
|
+
return this.u2f_1;
|
|
843
843
|
};
|
|
844
844
|
protoOf(WsAny).qd = function () {
|
|
845
|
-
return this.
|
|
845
|
+
return this.u2f_1;
|
|
846
846
|
};
|
|
847
|
-
protoOf(WsAny).
|
|
847
|
+
protoOf(WsAny).v2f = function (isNullable) {
|
|
848
848
|
return new WsAny(isNullable);
|
|
849
849
|
};
|
|
850
850
|
protoOf(WsAny).copy = function (isNullable, $super) {
|
|
851
|
-
isNullable = isNullable === VOID ? this.
|
|
852
|
-
return this.
|
|
851
|
+
isNullable = isNullable === VOID ? this.u2f_1 : isNullable;
|
|
852
|
+
return this.v2f(isNullable);
|
|
853
853
|
};
|
|
854
854
|
protoOf(WsAny).toString = function () {
|
|
855
|
-
return 'WsAny(isNullable=' + this.
|
|
855
|
+
return 'WsAny(isNullable=' + this.u2f_1 + ')';
|
|
856
856
|
};
|
|
857
857
|
protoOf(WsAny).hashCode = function () {
|
|
858
|
-
return getBooleanHashCode(this.
|
|
858
|
+
return getBooleanHashCode(this.u2f_1);
|
|
859
859
|
};
|
|
860
860
|
protoOf(WsAny).equals = function (other) {
|
|
861
861
|
if (this === other)
|
|
@@ -863,31 +863,31 @@
|
|
|
863
863
|
if (!(other instanceof WsAny))
|
|
864
864
|
return false;
|
|
865
865
|
var tmp0_other_with_cast = other instanceof WsAny ? other : THROW_CCE();
|
|
866
|
-
if (!(this.
|
|
866
|
+
if (!(this.u2f_1 === tmp0_other_with_cast.u2f_1))
|
|
867
867
|
return false;
|
|
868
868
|
return true;
|
|
869
869
|
};
|
|
870
870
|
function WsUnit(isNullable) {
|
|
871
|
-
this.
|
|
871
|
+
this.w2f_1 = isNullable;
|
|
872
872
|
}
|
|
873
873
|
protoOf(WsUnit).vl = function () {
|
|
874
|
-
return this.
|
|
874
|
+
return this.w2f_1;
|
|
875
875
|
};
|
|
876
876
|
protoOf(WsUnit).qd = function () {
|
|
877
|
-
return this.
|
|
877
|
+
return this.w2f_1;
|
|
878
878
|
};
|
|
879
|
-
protoOf(WsUnit).
|
|
879
|
+
protoOf(WsUnit).v2f = function (isNullable) {
|
|
880
880
|
return new WsUnit(isNullable);
|
|
881
881
|
};
|
|
882
882
|
protoOf(WsUnit).copy = function (isNullable, $super) {
|
|
883
|
-
isNullable = isNullable === VOID ? this.
|
|
884
|
-
return this.
|
|
883
|
+
isNullable = isNullable === VOID ? this.w2f_1 : isNullable;
|
|
884
|
+
return this.v2f(isNullable);
|
|
885
885
|
};
|
|
886
886
|
protoOf(WsUnit).toString = function () {
|
|
887
|
-
return 'WsUnit(isNullable=' + this.
|
|
887
|
+
return 'WsUnit(isNullable=' + this.w2f_1 + ')';
|
|
888
888
|
};
|
|
889
889
|
protoOf(WsUnit).hashCode = function () {
|
|
890
|
-
return getBooleanHashCode(this.
|
|
890
|
+
return getBooleanHashCode(this.w2f_1);
|
|
891
891
|
};
|
|
892
892
|
protoOf(WsUnit).equals = function (other) {
|
|
893
893
|
if (this === other)
|
|
@@ -895,40 +895,40 @@
|
|
|
895
895
|
if (!(other instanceof WsUnit))
|
|
896
896
|
return false;
|
|
897
897
|
var tmp0_other_with_cast = other instanceof WsUnit ? other : THROW_CCE();
|
|
898
|
-
if (!(this.
|
|
898
|
+
if (!(this.w2f_1 === tmp0_other_with_cast.w2f_1))
|
|
899
899
|
return false;
|
|
900
900
|
return true;
|
|
901
901
|
};
|
|
902
902
|
function WsIterable(reference, isNullable) {
|
|
903
903
|
this.reference = reference;
|
|
904
|
-
this.
|
|
904
|
+
this.x2f_1 = isNullable;
|
|
905
905
|
}
|
|
906
|
-
protoOf(WsIterable).
|
|
906
|
+
protoOf(WsIterable).l2f = function () {
|
|
907
907
|
return this.reference;
|
|
908
908
|
};
|
|
909
909
|
protoOf(WsIterable).vl = function () {
|
|
910
|
-
return this.
|
|
910
|
+
return this.x2f_1;
|
|
911
911
|
};
|
|
912
912
|
protoOf(WsIterable).qd = function () {
|
|
913
913
|
return this.reference;
|
|
914
914
|
};
|
|
915
915
|
protoOf(WsIterable).rd = function () {
|
|
916
|
-
return this.
|
|
916
|
+
return this.x2f_1;
|
|
917
917
|
};
|
|
918
|
-
protoOf(WsIterable).
|
|
918
|
+
protoOf(WsIterable).y2f = function (reference, isNullable) {
|
|
919
919
|
return new WsIterable(reference, isNullable);
|
|
920
920
|
};
|
|
921
921
|
protoOf(WsIterable).copy = function (reference, isNullable, $super) {
|
|
922
922
|
reference = reference === VOID ? this.reference : reference;
|
|
923
|
-
isNullable = isNullable === VOID ? this.
|
|
924
|
-
return this.
|
|
923
|
+
isNullable = isNullable === VOID ? this.x2f_1 : isNullable;
|
|
924
|
+
return this.y2f(reference, isNullable);
|
|
925
925
|
};
|
|
926
926
|
protoOf(WsIterable).toString = function () {
|
|
927
|
-
return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.
|
|
927
|
+
return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.x2f_1 + ')';
|
|
928
928
|
};
|
|
929
929
|
protoOf(WsIterable).hashCode = function () {
|
|
930
930
|
var result = hashCode(this.reference);
|
|
931
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
931
|
+
result = imul(result, 31) + getBooleanHashCode(this.x2f_1) | 0;
|
|
932
932
|
return result;
|
|
933
933
|
};
|
|
934
934
|
protoOf(WsIterable).equals = function (other) {
|
|
@@ -939,40 +939,40 @@
|
|
|
939
939
|
var tmp0_other_with_cast = other instanceof WsIterable ? other : THROW_CCE();
|
|
940
940
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
941
941
|
return false;
|
|
942
|
-
if (!(this.
|
|
942
|
+
if (!(this.x2f_1 === tmp0_other_with_cast.x2f_1))
|
|
943
943
|
return false;
|
|
944
944
|
return true;
|
|
945
945
|
};
|
|
946
946
|
function WsDict(reference, isNullable) {
|
|
947
947
|
this.reference = reference;
|
|
948
|
-
this.
|
|
948
|
+
this.z2f_1 = isNullable;
|
|
949
949
|
}
|
|
950
|
-
protoOf(WsDict).
|
|
950
|
+
protoOf(WsDict).l2f = function () {
|
|
951
951
|
return this.reference;
|
|
952
952
|
};
|
|
953
953
|
protoOf(WsDict).vl = function () {
|
|
954
|
-
return this.
|
|
954
|
+
return this.z2f_1;
|
|
955
955
|
};
|
|
956
956
|
protoOf(WsDict).qd = function () {
|
|
957
957
|
return this.reference;
|
|
958
958
|
};
|
|
959
959
|
protoOf(WsDict).rd = function () {
|
|
960
|
-
return this.
|
|
960
|
+
return this.z2f_1;
|
|
961
961
|
};
|
|
962
|
-
protoOf(WsDict).
|
|
962
|
+
protoOf(WsDict).y2f = function (reference, isNullable) {
|
|
963
963
|
return new WsDict(reference, isNullable);
|
|
964
964
|
};
|
|
965
965
|
protoOf(WsDict).copy = function (reference, isNullable, $super) {
|
|
966
966
|
reference = reference === VOID ? this.reference : reference;
|
|
967
|
-
isNullable = isNullable === VOID ? this.
|
|
968
|
-
return this.
|
|
967
|
+
isNullable = isNullable === VOID ? this.z2f_1 : isNullable;
|
|
968
|
+
return this.y2f(reference, isNullable);
|
|
969
969
|
};
|
|
970
970
|
protoOf(WsDict).toString = function () {
|
|
971
|
-
return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.
|
|
971
|
+
return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.z2f_1 + ')';
|
|
972
972
|
};
|
|
973
973
|
protoOf(WsDict).hashCode = function () {
|
|
974
974
|
var result = hashCode(this.reference);
|
|
975
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
975
|
+
result = imul(result, 31) + getBooleanHashCode(this.z2f_1) | 0;
|
|
976
976
|
return result;
|
|
977
977
|
};
|
|
978
978
|
protoOf(WsDict).equals = function (other) {
|
|
@@ -983,40 +983,40 @@
|
|
|
983
983
|
var tmp0_other_with_cast = other instanceof WsDict ? other : THROW_CCE();
|
|
984
984
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
985
985
|
return false;
|
|
986
|
-
if (!(this.
|
|
986
|
+
if (!(this.z2f_1 === tmp0_other_with_cast.z2f_1))
|
|
987
987
|
return false;
|
|
988
988
|
return true;
|
|
989
989
|
};
|
|
990
990
|
function WsCustom(value, isNullable) {
|
|
991
991
|
this.value = value;
|
|
992
|
-
this.
|
|
992
|
+
this.a2g_1 = isNullable;
|
|
993
993
|
}
|
|
994
994
|
protoOf(WsCustom).b1 = function () {
|
|
995
995
|
return this.value;
|
|
996
996
|
};
|
|
997
997
|
protoOf(WsCustom).vl = function () {
|
|
998
|
-
return this.
|
|
998
|
+
return this.a2g_1;
|
|
999
999
|
};
|
|
1000
1000
|
protoOf(WsCustom).qd = function () {
|
|
1001
1001
|
return this.value;
|
|
1002
1002
|
};
|
|
1003
1003
|
protoOf(WsCustom).rd = function () {
|
|
1004
|
-
return this.
|
|
1004
|
+
return this.a2g_1;
|
|
1005
1005
|
};
|
|
1006
|
-
protoOf(WsCustom).
|
|
1006
|
+
protoOf(WsCustom).b2g = function (value, isNullable) {
|
|
1007
1007
|
return new WsCustom(value, isNullable);
|
|
1008
1008
|
};
|
|
1009
1009
|
protoOf(WsCustom).copy = function (value, isNullable, $super) {
|
|
1010
1010
|
value = value === VOID ? this.value : value;
|
|
1011
|
-
isNullable = isNullable === VOID ? this.
|
|
1012
|
-
return this.
|
|
1011
|
+
isNullable = isNullable === VOID ? this.a2g_1 : isNullable;
|
|
1012
|
+
return this.b2g(value, isNullable);
|
|
1013
1013
|
};
|
|
1014
1014
|
protoOf(WsCustom).toString = function () {
|
|
1015
|
-
return 'WsCustom(value=' + this.value + ', isNullable=' + this.
|
|
1015
|
+
return 'WsCustom(value=' + this.value + ', isNullable=' + this.a2g_1 + ')';
|
|
1016
1016
|
};
|
|
1017
1017
|
protoOf(WsCustom).hashCode = function () {
|
|
1018
1018
|
var result = getStringHashCode(this.value);
|
|
1019
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1019
|
+
result = imul(result, 31) + getBooleanHashCode(this.a2g_1) | 0;
|
|
1020
1020
|
return result;
|
|
1021
1021
|
};
|
|
1022
1022
|
protoOf(WsCustom).equals = function (other) {
|
|
@@ -1027,40 +1027,40 @@
|
|
|
1027
1027
|
var tmp0_other_with_cast = other instanceof WsCustom ? other : THROW_CCE();
|
|
1028
1028
|
if (!(this.value === tmp0_other_with_cast.value))
|
|
1029
1029
|
return false;
|
|
1030
|
-
if (!(this.
|
|
1030
|
+
if (!(this.a2g_1 === tmp0_other_with_cast.a2g_1))
|
|
1031
1031
|
return false;
|
|
1032
1032
|
return true;
|
|
1033
1033
|
};
|
|
1034
1034
|
function WsPrimitive(type, isNullable) {
|
|
1035
1035
|
this.type = type;
|
|
1036
|
-
this.
|
|
1036
|
+
this.c2g_1 = isNullable;
|
|
1037
1037
|
}
|
|
1038
|
-
protoOf(WsPrimitive).
|
|
1038
|
+
protoOf(WsPrimitive).d2g = function () {
|
|
1039
1039
|
return this.type;
|
|
1040
1040
|
};
|
|
1041
1041
|
protoOf(WsPrimitive).vl = function () {
|
|
1042
|
-
return this.
|
|
1042
|
+
return this.c2g_1;
|
|
1043
1043
|
};
|
|
1044
1044
|
protoOf(WsPrimitive).qd = function () {
|
|
1045
1045
|
return this.type;
|
|
1046
1046
|
};
|
|
1047
1047
|
protoOf(WsPrimitive).rd = function () {
|
|
1048
|
-
return this.
|
|
1048
|
+
return this.c2g_1;
|
|
1049
1049
|
};
|
|
1050
|
-
protoOf(WsPrimitive).
|
|
1050
|
+
protoOf(WsPrimitive).e2g = function (type, isNullable) {
|
|
1051
1051
|
return new WsPrimitive(type, isNullable);
|
|
1052
1052
|
};
|
|
1053
1053
|
protoOf(WsPrimitive).copy = function (type, isNullable, $super) {
|
|
1054
1054
|
type = type === VOID ? this.type : type;
|
|
1055
|
-
isNullable = isNullable === VOID ? this.
|
|
1056
|
-
return this.
|
|
1055
|
+
isNullable = isNullable === VOID ? this.c2g_1 : isNullable;
|
|
1056
|
+
return this.e2g(type, isNullable);
|
|
1057
1057
|
};
|
|
1058
1058
|
protoOf(WsPrimitive).toString = function () {
|
|
1059
|
-
return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.
|
|
1059
|
+
return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.c2g_1 + ')';
|
|
1060
1060
|
};
|
|
1061
1061
|
protoOf(WsPrimitive).hashCode = function () {
|
|
1062
1062
|
var result = this.type.hashCode();
|
|
1063
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1063
|
+
result = imul(result, 31) + getBooleanHashCode(this.c2g_1) | 0;
|
|
1064
1064
|
return result;
|
|
1065
1065
|
};
|
|
1066
1066
|
protoOf(WsPrimitive).equals = function (other) {
|
|
@@ -1071,7 +1071,7 @@
|
|
|
1071
1071
|
var tmp0_other_with_cast = other instanceof WsPrimitive ? other : THROW_CCE();
|
|
1072
1072
|
if (!this.type.equals(tmp0_other_with_cast.type))
|
|
1073
1073
|
return false;
|
|
1074
|
-
if (!(this.
|
|
1074
|
+
if (!(this.c2g_1 === tmp0_other_with_cast.c2g_1))
|
|
1075
1075
|
return false;
|
|
1076
1076
|
return true;
|
|
1077
1077
|
};
|
|
@@ -1124,12 +1124,12 @@
|
|
|
1124
1124
|
protoOf(WsRequest).qd = function () {
|
|
1125
1125
|
return this.content;
|
|
1126
1126
|
};
|
|
1127
|
-
protoOf(WsRequest).
|
|
1127
|
+
protoOf(WsRequest).h2g = function (content) {
|
|
1128
1128
|
return new WsRequest(content);
|
|
1129
1129
|
};
|
|
1130
1130
|
protoOf(WsRequest).copy = function (content, $super) {
|
|
1131
1131
|
content = content === VOID ? this.content : content;
|
|
1132
|
-
return this.
|
|
1132
|
+
return this.h2g(content);
|
|
1133
1133
|
};
|
|
1134
1134
|
protoOf(WsRequest).toString = function () {
|
|
1135
1135
|
return 'WsRequest(content=' + toString_0(this.content) + ')';
|
|
@@ -1152,10 +1152,10 @@
|
|
|
1152
1152
|
this.headers = headers;
|
|
1153
1153
|
this.content = content;
|
|
1154
1154
|
}
|
|
1155
|
-
protoOf(WsResponse).
|
|
1155
|
+
protoOf(WsResponse).i2g = function () {
|
|
1156
1156
|
return this.status;
|
|
1157
1157
|
};
|
|
1158
|
-
protoOf(WsResponse).
|
|
1158
|
+
protoOf(WsResponse).v2e = function () {
|
|
1159
1159
|
return this.headers;
|
|
1160
1160
|
};
|
|
1161
1161
|
protoOf(WsResponse).e17 = function () {
|
|
@@ -1170,14 +1170,14 @@
|
|
|
1170
1170
|
protoOf(WsResponse).ph = function () {
|
|
1171
1171
|
return this.content;
|
|
1172
1172
|
};
|
|
1173
|
-
protoOf(WsResponse).
|
|
1173
|
+
protoOf(WsResponse).j2g = function (status, headers, content) {
|
|
1174
1174
|
return new WsResponse(status, headers, content);
|
|
1175
1175
|
};
|
|
1176
1176
|
protoOf(WsResponse).copy = function (status, headers, content, $super) {
|
|
1177
1177
|
status = status === VOID ? this.status : status;
|
|
1178
1178
|
headers = headers === VOID ? this.headers : headers;
|
|
1179
1179
|
content = content === VOID ? this.content : content;
|
|
1180
|
-
return this.
|
|
1180
|
+
return this.j2g(status, headers, content);
|
|
1181
1181
|
};
|
|
1182
1182
|
protoOf(WsResponse).toString = function () {
|
|
1183
1183
|
return 'WsResponse(status=' + this.status + ', headers=' + toString(this.headers) + ', content=' + toString_0(this.content) + ')';
|
|
@@ -1208,10 +1208,10 @@
|
|
|
1208
1208
|
this.reference = reference;
|
|
1209
1209
|
this.isNullable = isNullable;
|
|
1210
1210
|
}
|
|
1211
|
-
protoOf(WsContent).
|
|
1211
|
+
protoOf(WsContent).d2g = function () {
|
|
1212
1212
|
return this.type;
|
|
1213
1213
|
};
|
|
1214
|
-
protoOf(WsContent).
|
|
1214
|
+
protoOf(WsContent).l2f = function () {
|
|
1215
1215
|
return this.reference;
|
|
1216
1216
|
};
|
|
1217
1217
|
protoOf(WsContent).vl = function () {
|
|
@@ -1226,14 +1226,14 @@
|
|
|
1226
1226
|
protoOf(WsContent).ph = function () {
|
|
1227
1227
|
return this.isNullable;
|
|
1228
1228
|
};
|
|
1229
|
-
protoOf(WsContent).
|
|
1229
|
+
protoOf(WsContent).k2g = function (type, reference, isNullable) {
|
|
1230
1230
|
return new WsContent(type, reference, isNullable);
|
|
1231
1231
|
};
|
|
1232
1232
|
protoOf(WsContent).copy = function (type, reference, isNullable, $super) {
|
|
1233
1233
|
type = type === VOID ? this.type : type;
|
|
1234
1234
|
reference = reference === VOID ? this.reference : reference;
|
|
1235
1235
|
isNullable = isNullable === VOID ? this.isNullable : isNullable;
|
|
1236
|
-
return this.
|
|
1236
|
+
return this.k2g(type, reference, isNullable);
|
|
1237
1237
|
};
|
|
1238
1238
|
protoOf(WsContent).toString = function () {
|
|
1239
1239
|
return 'WsContent(type=' + this.type + ', reference=' + toString(this.reference) + ', isNullable=' + this.isNullable + ')';
|
|
@@ -1558,7 +1558,7 @@
|
|
|
1558
1558
|
tmp = Companion_instance.w28(tmp0_safe_receiver);
|
|
1559
1559
|
}
|
|
1560
1560
|
var tmp_0 = tmp;
|
|
1561
|
-
var tmp_1 = new DefinitionIdentifier(_this__u8e3s4.
|
|
1561
|
+
var tmp_1 = new DefinitionIdentifier(_this__u8e3s4.r2e_1);
|
|
1562
1562
|
var tmp_2 = consume_6(_this__u8e3s4.method);
|
|
1563
1563
|
// Inline function 'kotlin.collections.map' call
|
|
1564
1564
|
var this_0 = _this__u8e3s4.path;
|
|
@@ -1646,7 +1646,7 @@
|
|
|
1646
1646
|
return new Endpoint(tmp_0, tmp_1, tmp_2, tmp_3, tmp_4, tmp_5, tmp_6, tmp_7, destination_4);
|
|
1647
1647
|
}
|
|
1648
1648
|
function consume_1(_this__u8e3s4) {
|
|
1649
|
-
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.
|
|
1649
|
+
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.g2f_1);
|
|
1650
1650
|
var tmp0_safe_receiver = _this__u8e3s4.comment;
|
|
1651
1651
|
var tmp;
|
|
1652
1652
|
if (tmp0_safe_receiver == null) {
|
|
@@ -1662,7 +1662,7 @@
|
|
|
1662
1662
|
return new Enum_0(tmp2_comment, tmp1_identifier, tmp3_entries);
|
|
1663
1663
|
}
|
|
1664
1664
|
function consume_2(_this__u8e3s4) {
|
|
1665
|
-
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.
|
|
1665
|
+
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.n2f_1);
|
|
1666
1666
|
var tmp0_safe_receiver = _this__u8e3s4.comment;
|
|
1667
1667
|
var tmp;
|
|
1668
1668
|
if (tmp0_safe_receiver == null) {
|
|
@@ -1678,7 +1678,7 @@
|
|
|
1678
1678
|
return new Refined(tmp2_comment, tmp1_identifier, tmp3_validator);
|
|
1679
1679
|
}
|
|
1680
1680
|
function consume_3(_this__u8e3s4) {
|
|
1681
|
-
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.
|
|
1681
|
+
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.m2e_1);
|
|
1682
1682
|
var tmp0_safe_receiver = _this__u8e3s4.comment;
|
|
1683
1683
|
var tmp;
|
|
1684
1684
|
if (tmp0_safe_receiver == null) {
|
|
@@ -1708,7 +1708,7 @@
|
|
|
1708
1708
|
return new Type(tmp2_comment, tmp1_identifier, tmp3_shape, tmp4_extends);
|
|
1709
1709
|
}
|
|
1710
1710
|
function consume_4(_this__u8e3s4) {
|
|
1711
|
-
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.
|
|
1711
|
+
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.i2f_1);
|
|
1712
1712
|
var tmp0_safe_receiver = _this__u8e3s4.comment;
|
|
1713
1713
|
var tmp;
|
|
1714
1714
|
if (tmp0_safe_receiver == null) {
|
|
@@ -1737,7 +1737,7 @@
|
|
|
1737
1737
|
return new Union(tmp2_comment, tmp1_identifier, tmp3_entries);
|
|
1738
1738
|
}
|
|
1739
1739
|
function consume_5(_this__u8e3s4) {
|
|
1740
|
-
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.
|
|
1740
|
+
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.k2f_1);
|
|
1741
1741
|
var tmp0_safe_receiver = _this__u8e3s4.comment;
|
|
1742
1742
|
var tmp;
|
|
1743
1743
|
if (tmp0_safe_receiver == null) {
|
|
@@ -1878,22 +1878,22 @@
|
|
|
1878
1878
|
function consume_11(_this__u8e3s4) {
|
|
1879
1879
|
var tmp;
|
|
1880
1880
|
if (_this__u8e3s4 instanceof WsAny) {
|
|
1881
|
-
tmp = new Any(_this__u8e3s4.
|
|
1881
|
+
tmp = new Any(_this__u8e3s4.u2f_1);
|
|
1882
1882
|
} else {
|
|
1883
1883
|
if (_this__u8e3s4 instanceof WsUnit) {
|
|
1884
|
-
tmp = new Unit(_this__u8e3s4.
|
|
1884
|
+
tmp = new Unit(_this__u8e3s4.w2f_1);
|
|
1885
1885
|
} else {
|
|
1886
1886
|
if (_this__u8e3s4 instanceof WsCustom) {
|
|
1887
|
-
tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.
|
|
1887
|
+
tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.a2g_1);
|
|
1888
1888
|
} else {
|
|
1889
1889
|
if (_this__u8e3s4 instanceof WsPrimitive) {
|
|
1890
|
-
tmp = new Primitive(consume_14(_this__u8e3s4.type), _this__u8e3s4.
|
|
1890
|
+
tmp = new Primitive(consume_14(_this__u8e3s4.type), _this__u8e3s4.c2g_1);
|
|
1891
1891
|
} else {
|
|
1892
1892
|
if (_this__u8e3s4 instanceof WsDict) {
|
|
1893
|
-
tmp = new Dict(consume_11(_this__u8e3s4.reference), _this__u8e3s4.
|
|
1893
|
+
tmp = new Dict(consume_11(_this__u8e3s4.reference), _this__u8e3s4.z2f_1);
|
|
1894
1894
|
} else {
|
|
1895
1895
|
if (_this__u8e3s4 instanceof WsIterable) {
|
|
1896
|
-
tmp = new Iterable(consume_11(_this__u8e3s4.reference), _this__u8e3s4.
|
|
1896
|
+
tmp = new Iterable(consume_11(_this__u8e3s4.reference), _this__u8e3s4.x2f_1);
|
|
1897
1897
|
} else {
|
|
1898
1898
|
noWhenBranchMatchedException();
|
|
1899
1899
|
}
|
|
@@ -2002,10 +2002,10 @@
|
|
|
2002
2002
|
this.result = result;
|
|
2003
2003
|
this.errors = errors;
|
|
2004
2004
|
}
|
|
2005
|
-
protoOf(WsCompilationResult).
|
|
2005
|
+
protoOf(WsCompilationResult).l2g = function () {
|
|
2006
2006
|
return this.result;
|
|
2007
2007
|
};
|
|
2008
|
-
protoOf(WsCompilationResult).
|
|
2008
|
+
protoOf(WsCompilationResult).m2g = function () {
|
|
2009
2009
|
return this.errors;
|
|
2010
2010
|
};
|
|
2011
2011
|
function WsCompiled(value) {
|
|
@@ -2030,10 +2030,10 @@
|
|
|
2030
2030
|
this.result = result;
|
|
2031
2031
|
this.errors = errors;
|
|
2032
2032
|
}
|
|
2033
|
-
protoOf(WsParseResult).
|
|
2033
|
+
protoOf(WsParseResult).l2g = function () {
|
|
2034
2034
|
return this.result;
|
|
2035
2035
|
};
|
|
2036
|
-
protoOf(WsParseResult).
|
|
2036
|
+
protoOf(WsParseResult).m2g = function () {
|
|
2037
2037
|
return this.errors;
|
|
2038
2038
|
};
|
|
2039
2039
|
function WsStringResult(result, errors) {
|
|
@@ -2042,20 +2042,20 @@
|
|
|
2042
2042
|
this.result = result;
|
|
2043
2043
|
this.errors = errors;
|
|
2044
2044
|
}
|
|
2045
|
-
protoOf(WsStringResult).
|
|
2045
|
+
protoOf(WsStringResult).l2g = function () {
|
|
2046
2046
|
return this.result;
|
|
2047
2047
|
};
|
|
2048
|
-
protoOf(WsStringResult).
|
|
2048
|
+
protoOf(WsStringResult).m2g = function () {
|
|
2049
2049
|
return this.errors;
|
|
2050
2050
|
};
|
|
2051
2051
|
function WsEmitted(typeName, result) {
|
|
2052
2052
|
this.typeName = typeName;
|
|
2053
2053
|
this.result = result;
|
|
2054
2054
|
}
|
|
2055
|
-
protoOf(WsEmitted).
|
|
2055
|
+
protoOf(WsEmitted).n2g = function () {
|
|
2056
2056
|
return this.typeName;
|
|
2057
2057
|
};
|
|
2058
|
-
protoOf(WsEmitted).
|
|
2058
|
+
protoOf(WsEmitted).l2g = function () {
|
|
2059
2059
|
return this.result;
|
|
2060
2060
|
};
|
|
2061
2061
|
function produce_14(_this__u8e3s4) {
|
|
@@ -2144,10 +2144,10 @@
|
|
|
2144
2144
|
this.tokens = tokens;
|
|
2145
2145
|
this.error = error;
|
|
2146
2146
|
}
|
|
2147
|
-
protoOf(WsTokenResult).
|
|
2147
|
+
protoOf(WsTokenResult).o2g = function () {
|
|
2148
2148
|
return this.tokens;
|
|
2149
2149
|
};
|
|
2150
|
-
protoOf(WsTokenResult).
|
|
2150
|
+
protoOf(WsTokenResult).p2g = function () {
|
|
2151
2151
|
return this.error;
|
|
2152
2152
|
};
|
|
2153
2153
|
protoOf(WsTokenResult).qd = function () {
|
|
@@ -2156,13 +2156,13 @@
|
|
|
2156
2156
|
protoOf(WsTokenResult).rd = function () {
|
|
2157
2157
|
return this.error;
|
|
2158
2158
|
};
|
|
2159
|
-
protoOf(WsTokenResult).
|
|
2159
|
+
protoOf(WsTokenResult).q2g = function (tokens, error) {
|
|
2160
2160
|
return new WsTokenResult(tokens, error);
|
|
2161
2161
|
};
|
|
2162
2162
|
protoOf(WsTokenResult).copy = function (tokens, error, $super) {
|
|
2163
2163
|
tokens = tokens === VOID ? this.tokens : tokens;
|
|
2164
2164
|
error = error === VOID ? this.error : error;
|
|
2165
|
-
return this.
|
|
2165
|
+
return this.q2g(tokens, error);
|
|
2166
2166
|
};
|
|
2167
2167
|
protoOf(WsTokenResult).toString = function () {
|
|
2168
2168
|
return 'WsTokenResult(tokens=' + toString_0(this.tokens) + ', error=' + toString_0(this.error) + ')';
|
|
@@ -2207,12 +2207,12 @@
|
|
|
2207
2207
|
protoOf(WsTokens).qd = function () {
|
|
2208
2208
|
return this.value;
|
|
2209
2209
|
};
|
|
2210
|
-
protoOf(WsTokens).
|
|
2210
|
+
protoOf(WsTokens).r2g = function (value) {
|
|
2211
2211
|
return new WsTokens(value);
|
|
2212
2212
|
};
|
|
2213
2213
|
protoOf(WsTokens).copy = function (value, $super) {
|
|
2214
2214
|
value = value === VOID ? this.value : value;
|
|
2215
|
-
return this.
|
|
2215
|
+
return this.r2g(value);
|
|
2216
2216
|
};
|
|
2217
2217
|
protoOf(WsTokens).toString = function () {
|
|
2218
2218
|
return 'WsTokens(value=' + toString(this.value) + ')';
|
|
@@ -2223,13 +2223,13 @@
|
|
|
2223
2223
|
this.value = value;
|
|
2224
2224
|
this.coordinates = coordinates;
|
|
2225
2225
|
}
|
|
2226
|
-
protoOf(WsToken).
|
|
2226
|
+
protoOf(WsToken).d2g = function () {
|
|
2227
2227
|
return this.type;
|
|
2228
2228
|
};
|
|
2229
2229
|
protoOf(WsToken).b1 = function () {
|
|
2230
2230
|
return this.value;
|
|
2231
2231
|
};
|
|
2232
|
-
protoOf(WsToken).
|
|
2232
|
+
protoOf(WsToken).s2g = function () {
|
|
2233
2233
|
return this.coordinates;
|
|
2234
2234
|
};
|
|
2235
2235
|
protoOf(WsToken).qd = function () {
|
|
@@ -2241,14 +2241,14 @@
|
|
|
2241
2241
|
protoOf(WsToken).ph = function () {
|
|
2242
2242
|
return this.coordinates;
|
|
2243
2243
|
};
|
|
2244
|
-
protoOf(WsToken).
|
|
2244
|
+
protoOf(WsToken).t2g = function (type, value, coordinates) {
|
|
2245
2245
|
return new WsToken(type, value, coordinates);
|
|
2246
2246
|
};
|
|
2247
2247
|
protoOf(WsToken).copy = function (type, value, coordinates, $super) {
|
|
2248
2248
|
type = type === VOID ? this.type : type;
|
|
2249
2249
|
value = value === VOID ? this.value : value;
|
|
2250
2250
|
coordinates = coordinates === VOID ? this.coordinates : coordinates;
|
|
2251
|
-
return this.
|
|
2251
|
+
return this.t2g(type, value, coordinates);
|
|
2252
2252
|
};
|
|
2253
2253
|
protoOf(WsToken).toString = function () {
|
|
2254
2254
|
return 'WsToken(type=' + this.type + ', value=' + this.value + ', coordinates=' + this.coordinates.toString() + ')';
|
|
@@ -2281,13 +2281,13 @@
|
|
|
2281
2281
|
this.position = position;
|
|
2282
2282
|
this.idxAndLength = idxAndLength;
|
|
2283
2283
|
}
|
|
2284
|
-
protoOf(WsCoordinates).
|
|
2284
|
+
protoOf(WsCoordinates).u2g = function () {
|
|
2285
2285
|
return this.line;
|
|
2286
2286
|
};
|
|
2287
|
-
protoOf(WsCoordinates).
|
|
2287
|
+
protoOf(WsCoordinates).v2g = function () {
|
|
2288
2288
|
return this.position;
|
|
2289
2289
|
};
|
|
2290
|
-
protoOf(WsCoordinates).
|
|
2290
|
+
protoOf(WsCoordinates).w2g = function () {
|
|
2291
2291
|
return this.idxAndLength;
|
|
2292
2292
|
};
|
|
2293
2293
|
protoOf(WsCoordinates).qd = function () {
|
|
@@ -2299,14 +2299,14 @@
|
|
|
2299
2299
|
protoOf(WsCoordinates).ph = function () {
|
|
2300
2300
|
return this.idxAndLength;
|
|
2301
2301
|
};
|
|
2302
|
-
protoOf(WsCoordinates).
|
|
2302
|
+
protoOf(WsCoordinates).x2g = function (line, position, idxAndLength) {
|
|
2303
2303
|
return new WsCoordinates(line, position, idxAndLength);
|
|
2304
2304
|
};
|
|
2305
2305
|
protoOf(WsCoordinates).copy = function (line, position, idxAndLength, $super) {
|
|
2306
2306
|
line = line === VOID ? this.line : line;
|
|
2307
2307
|
position = position === VOID ? this.position : position;
|
|
2308
2308
|
idxAndLength = idxAndLength === VOID ? this.idxAndLength : idxAndLength;
|
|
2309
|
-
return this.
|
|
2309
|
+
return this.x2g(line, position, idxAndLength);
|
|
2310
2310
|
};
|
|
2311
2311
|
protoOf(WsCoordinates).toString = function () {
|
|
2312
2312
|
return 'WsCoordinates(line=' + this.line + ', position=' + this.position + ', idxAndLength=' + this.idxAndLength.toString() + ')';
|
|
@@ -2337,7 +2337,7 @@
|
|
|
2337
2337
|
this.idx = idx;
|
|
2338
2338
|
this.length = length;
|
|
2339
2339
|
}
|
|
2340
|
-
protoOf(WsIndex).
|
|
2340
|
+
protoOf(WsIndex).y2g = function () {
|
|
2341
2341
|
return this.idx;
|
|
2342
2342
|
};
|
|
2343
2343
|
protoOf(WsIndex).a = function () {
|
|
@@ -2349,13 +2349,13 @@
|
|
|
2349
2349
|
protoOf(WsIndex).rd = function () {
|
|
2350
2350
|
return this.length;
|
|
2351
2351
|
};
|
|
2352
|
-
protoOf(WsIndex).
|
|
2352
|
+
protoOf(WsIndex).z2g = function (idx, length) {
|
|
2353
2353
|
return new WsIndex(idx, length);
|
|
2354
2354
|
};
|
|
2355
2355
|
protoOf(WsIndex).copy = function (idx, length, $super) {
|
|
2356
2356
|
idx = idx === VOID ? this.idx : idx;
|
|
2357
2357
|
length = length === VOID ? this.length : length;
|
|
2358
|
-
return this.
|
|
2358
|
+
return this.z2g(idx, length);
|
|
2359
2359
|
};
|
|
2360
2360
|
protoOf(WsIndex).toString = function () {
|
|
2361
2361
|
return 'WsIndex(idx=' + this.idx + ', length=' + this.length + ')';
|
|
@@ -2393,13 +2393,13 @@
|
|
|
2393
2393
|
this.length = length;
|
|
2394
2394
|
this.value = value;
|
|
2395
2395
|
}
|
|
2396
|
-
protoOf(WsError).
|
|
2396
|
+
protoOf(WsError).u2g = function () {
|
|
2397
2397
|
return this.line;
|
|
2398
2398
|
};
|
|
2399
|
-
protoOf(WsError).
|
|
2399
|
+
protoOf(WsError).v2g = function () {
|
|
2400
2400
|
return this.position;
|
|
2401
2401
|
};
|
|
2402
|
-
protoOf(WsError).
|
|
2402
|
+
protoOf(WsError).a2h = function () {
|
|
2403
2403
|
return this.index;
|
|
2404
2404
|
};
|
|
2405
2405
|
protoOf(WsError).a = function () {
|
|
@@ -2417,13 +2417,13 @@
|
|
|
2417
2417
|
protoOf(WsError).ph = function () {
|
|
2418
2418
|
return this.index;
|
|
2419
2419
|
};
|
|
2420
|
-
protoOf(WsError).
|
|
2420
|
+
protoOf(WsError).z2e = function () {
|
|
2421
2421
|
return this.length;
|
|
2422
2422
|
};
|
|
2423
|
-
protoOf(WsError).
|
|
2423
|
+
protoOf(WsError).a2f = function () {
|
|
2424
2424
|
return this.value;
|
|
2425
2425
|
};
|
|
2426
|
-
protoOf(WsError).
|
|
2426
|
+
protoOf(WsError).b2h = function (line, position, index, length, value) {
|
|
2427
2427
|
return new WsError(line, position, index, length, value);
|
|
2428
2428
|
};
|
|
2429
2429
|
protoOf(WsError).copy = function (line, position, index, length, value, $super) {
|
|
@@ -2432,7 +2432,7 @@
|
|
|
2432
2432
|
index = index === VOID ? this.index : index;
|
|
2433
2433
|
length = length === VOID ? this.length : length;
|
|
2434
2434
|
value = value === VOID ? this.value : value;
|
|
2435
|
-
return this.
|
|
2435
|
+
return this.b2h(line, position, index, length, value);
|
|
2436
2436
|
};
|
|
2437
2437
|
protoOf(WsError).toString = function () {
|
|
2438
2438
|
return 'WsError(line=' + this.line + ', position=' + this.position + ', index=' + this.index + ', length=' + this.length + ', value=' + this.value + ')';
|