@flock/wirespec 0.16.14 → 0.17.1
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.mjs +1166 -1166
- package/colormath-root-colormath.mjs +425 -425
- package/kotlin-kotlin-stdlib.mjs +20 -16
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlin-rgxgen.mjs +1767 -1767
- package/kotlinx-io-kotlinx-io-core.mjs +380 -380
- package/markdown.mjs +1864 -1864
- package/mordant-mordant.mjs +1638 -1638
- package/package.json +1 -1
- package/wirespec-src-compiler-core.mjs +3947 -3030
- package/wirespec-src-compiler-core.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-java.mjs +244 -244
- package/wirespec-src-compiler-emitters-java.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-kotlin.mjs +193 -193
- package/wirespec-src-compiler-emitters-kotlin.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-python.mjs +211 -211
- package/wirespec-src-compiler-emitters-python.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-typescript.mjs +195 -195
- package/wirespec-src-compiler-emitters-typescript.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-wirespec.mjs +78 -78
- package/wirespec-src-compiler-emitters-wirespec.mjs.map +1 -1
- package/wirespec-src-compiler-lib.mjs +334 -337
- package/wirespec-src-compiler-lib.mjs.map +1 -1
- package/wirespec-src-converter-avro.mjs +295 -290
- package/wirespec-src-converter-avro.mjs.map +1 -1
- package/wirespec-src-converter-openapi.mjs +438 -414
- package/wirespec-src-converter-openapi.mjs.map +1 -1
- package/wirespec-src-plugin-arguments.mjs +136 -136
- package/wirespec-src-plugin-cli.mjs +75 -75
- package/wirespec-src-plugin-npm.mjs +33 -33
- package/wirespec-src-tools-generator.mjs +24 -24
|
@@ -19,9 +19,9 @@ import {
|
|
|
19
19
|
ArrayList_init_$Create$3m1kyiqequwm5 as ArrayList_init_$Create$,
|
|
20
20
|
copyToArray2j022khrow2yi as copyToArray,
|
|
21
21
|
ensureNotNull1e947j3ixpazm as ensureNotNull,
|
|
22
|
+
emptyList1g2z5xcrvp2zy as emptyList,
|
|
22
23
|
toSet1glep2u1u9tcb as toSet,
|
|
23
24
|
IllegalStateException_init_$Create$1nm9y6jd3c9iy as IllegalStateException_init_$Create$,
|
|
24
|
-
emptyList1g2z5xcrvp2zy as emptyList,
|
|
25
25
|
toSet2orjxp16sotqu as toSet_0,
|
|
26
26
|
contentEqualsaf55p28mnw74 as contentEquals,
|
|
27
27
|
contentHashCode2i020q5tbeh2s as contentHashCode,
|
|
@@ -130,18 +130,18 @@ function WsNode() {
|
|
|
130
130
|
function WsAST(modules) {
|
|
131
131
|
this.modules = modules;
|
|
132
132
|
}
|
|
133
|
-
protoOf(WsAST).
|
|
133
|
+
protoOf(WsAST).v2k = function () {
|
|
134
134
|
return this.modules;
|
|
135
135
|
};
|
|
136
136
|
protoOf(WsAST).sd = function () {
|
|
137
137
|
return this.modules;
|
|
138
138
|
};
|
|
139
|
-
protoOf(WsAST).
|
|
139
|
+
protoOf(WsAST).w2k = function (modules) {
|
|
140
140
|
return new WsAST(modules);
|
|
141
141
|
};
|
|
142
142
|
protoOf(WsAST).copy = function (modules, $super) {
|
|
143
143
|
modules = modules === VOID ? this.modules : modules;
|
|
144
|
-
return this.
|
|
144
|
+
return this.w2k(modules);
|
|
145
145
|
};
|
|
146
146
|
protoOf(WsAST).toString = function () {
|
|
147
147
|
return 'WsAST(modules=' + toString(this.modules) + ')';
|
|
@@ -162,18 +162,18 @@ protoOf(WsAST).equals = function (other) {
|
|
|
162
162
|
function WsModule(statements) {
|
|
163
163
|
this.statements = statements;
|
|
164
164
|
}
|
|
165
|
-
protoOf(WsModule).
|
|
165
|
+
protoOf(WsModule).x2k = function () {
|
|
166
166
|
return this.statements;
|
|
167
167
|
};
|
|
168
168
|
protoOf(WsModule).sd = function () {
|
|
169
169
|
return this.statements;
|
|
170
170
|
};
|
|
171
|
-
protoOf(WsModule).
|
|
171
|
+
protoOf(WsModule).y2k = function (statements) {
|
|
172
172
|
return new WsModule(statements);
|
|
173
173
|
};
|
|
174
174
|
protoOf(WsModule).copy = function (statements, $super) {
|
|
175
175
|
statements = statements === VOID ? this.statements : statements;
|
|
176
|
-
return this.
|
|
176
|
+
return this.y2k(statements);
|
|
177
177
|
};
|
|
178
178
|
protoOf(WsModule).toString = function () {
|
|
179
179
|
return 'WsModule(statements=' + toString(this.statements) + ')';
|
|
@@ -194,43 +194,43 @@ protoOf(WsModule).equals = function (other) {
|
|
|
194
194
|
function WsDefinition() {
|
|
195
195
|
}
|
|
196
196
|
function WsType(identifier, comment, shape) {
|
|
197
|
-
this.
|
|
198
|
-
this.
|
|
197
|
+
this.a2l_1 = identifier;
|
|
198
|
+
this.b2l_1 = comment;
|
|
199
199
|
this.shape = shape;
|
|
200
200
|
}
|
|
201
|
-
protoOf(WsType).
|
|
202
|
-
return this.
|
|
201
|
+
protoOf(WsType).l26 = function () {
|
|
202
|
+
return this.a2l_1;
|
|
203
203
|
};
|
|
204
|
-
protoOf(WsType).
|
|
205
|
-
return this.
|
|
204
|
+
protoOf(WsType).z2k = function () {
|
|
205
|
+
return this.b2l_1;
|
|
206
206
|
};
|
|
207
|
-
protoOf(WsType).
|
|
207
|
+
protoOf(WsType).c2l = function () {
|
|
208
208
|
return this.shape;
|
|
209
209
|
};
|
|
210
210
|
protoOf(WsType).sd = function () {
|
|
211
|
-
return this.
|
|
211
|
+
return this.a2l_1;
|
|
212
212
|
};
|
|
213
213
|
protoOf(WsType).td = function () {
|
|
214
|
-
return this.
|
|
214
|
+
return this.b2l_1;
|
|
215
215
|
};
|
|
216
216
|
protoOf(WsType).uh = function () {
|
|
217
217
|
return this.shape;
|
|
218
218
|
};
|
|
219
|
-
protoOf(WsType).
|
|
219
|
+
protoOf(WsType).d2l = function (identifier, comment, shape) {
|
|
220
220
|
return new WsType(identifier, comment, shape);
|
|
221
221
|
};
|
|
222
222
|
protoOf(WsType).copy = function (identifier, comment, shape, $super) {
|
|
223
|
-
identifier = identifier === VOID ? this.
|
|
224
|
-
comment = comment === VOID ? this.
|
|
223
|
+
identifier = identifier === VOID ? this.a2l_1 : identifier;
|
|
224
|
+
comment = comment === VOID ? this.b2l_1 : comment;
|
|
225
225
|
shape = shape === VOID ? this.shape : shape;
|
|
226
|
-
return this.
|
|
226
|
+
return this.d2l(identifier, comment, shape);
|
|
227
227
|
};
|
|
228
228
|
protoOf(WsType).toString = function () {
|
|
229
|
-
return 'WsType(identifier=' + this.
|
|
229
|
+
return 'WsType(identifier=' + this.a2l_1 + ', comment=' + this.b2l_1 + ', shape=' + this.shape.toString() + ')';
|
|
230
230
|
};
|
|
231
231
|
protoOf(WsType).hashCode = function () {
|
|
232
|
-
var result = getStringHashCode(this.
|
|
233
|
-
result = imul(result, 31) + (this.
|
|
232
|
+
var result = getStringHashCode(this.a2l_1);
|
|
233
|
+
result = imul(result, 31) + (this.b2l_1 == null ? 0 : getStringHashCode(this.b2l_1)) | 0;
|
|
234
234
|
result = imul(result, 31) + this.shape.hashCode() | 0;
|
|
235
235
|
return result;
|
|
236
236
|
};
|
|
@@ -240,9 +240,9 @@ protoOf(WsType).equals = function (other) {
|
|
|
240
240
|
if (!(other instanceof WsType))
|
|
241
241
|
return false;
|
|
242
242
|
var tmp0_other_with_cast = other instanceof WsType ? other : THROW_CCE();
|
|
243
|
-
if (!(this.
|
|
243
|
+
if (!(this.a2l_1 === tmp0_other_with_cast.a2l_1))
|
|
244
244
|
return false;
|
|
245
|
-
if (!(this.
|
|
245
|
+
if (!(this.b2l_1 == tmp0_other_with_cast.b2l_1))
|
|
246
246
|
return false;
|
|
247
247
|
if (!this.shape.equals(tmp0_other_with_cast.shape))
|
|
248
248
|
return false;
|
|
@@ -257,12 +257,12 @@ protoOf(WsShape).b1 = function () {
|
|
|
257
257
|
protoOf(WsShape).sd = function () {
|
|
258
258
|
return this.value;
|
|
259
259
|
};
|
|
260
|
-
protoOf(WsShape).
|
|
260
|
+
protoOf(WsShape).e2l = function (value) {
|
|
261
261
|
return new WsShape(value);
|
|
262
262
|
};
|
|
263
263
|
protoOf(WsShape).copy = function (value, $super) {
|
|
264
264
|
value = value === VOID ? this.value : value;
|
|
265
|
-
return this.
|
|
265
|
+
return this.e2l(value);
|
|
266
266
|
};
|
|
267
267
|
protoOf(WsShape).toString = function () {
|
|
268
268
|
return 'WsShape(value=' + toString(this.value) + ')';
|
|
@@ -281,8 +281,8 @@ protoOf(WsShape).equals = function (other) {
|
|
|
281
281
|
return true;
|
|
282
282
|
};
|
|
283
283
|
function WsEndpoint(identifier, comment, method, path, queries, headers, requests, responses) {
|
|
284
|
-
this.
|
|
285
|
-
this.
|
|
284
|
+
this.f2l_1 = identifier;
|
|
285
|
+
this.g2l_1 = comment;
|
|
286
286
|
this.method = method;
|
|
287
287
|
this.path = path;
|
|
288
288
|
this.queries = queries;
|
|
@@ -290,74 +290,74 @@ function WsEndpoint(identifier, comment, method, path, queries, headers, request
|
|
|
290
290
|
this.requests = requests;
|
|
291
291
|
this.responses = responses;
|
|
292
292
|
}
|
|
293
|
-
protoOf(WsEndpoint).
|
|
294
|
-
return this.
|
|
293
|
+
protoOf(WsEndpoint).l26 = function () {
|
|
294
|
+
return this.f2l_1;
|
|
295
295
|
};
|
|
296
|
-
protoOf(WsEndpoint).
|
|
297
|
-
return this.
|
|
296
|
+
protoOf(WsEndpoint).z2k = function () {
|
|
297
|
+
return this.g2l_1;
|
|
298
298
|
};
|
|
299
|
-
protoOf(WsEndpoint).
|
|
299
|
+
protoOf(WsEndpoint).h2l = function () {
|
|
300
300
|
return this.method;
|
|
301
301
|
};
|
|
302
|
-
protoOf(WsEndpoint).
|
|
302
|
+
protoOf(WsEndpoint).i2l = function () {
|
|
303
303
|
return this.path;
|
|
304
304
|
};
|
|
305
|
-
protoOf(WsEndpoint).
|
|
305
|
+
protoOf(WsEndpoint).j2l = function () {
|
|
306
306
|
return this.queries;
|
|
307
307
|
};
|
|
308
|
-
protoOf(WsEndpoint).
|
|
308
|
+
protoOf(WsEndpoint).k2l = function () {
|
|
309
309
|
return this.headers;
|
|
310
310
|
};
|
|
311
|
-
protoOf(WsEndpoint).
|
|
311
|
+
protoOf(WsEndpoint).l2l = function () {
|
|
312
312
|
return this.requests;
|
|
313
313
|
};
|
|
314
|
-
protoOf(WsEndpoint).
|
|
314
|
+
protoOf(WsEndpoint).m2l = function () {
|
|
315
315
|
return this.responses;
|
|
316
316
|
};
|
|
317
317
|
protoOf(WsEndpoint).sd = function () {
|
|
318
|
-
return this.
|
|
318
|
+
return this.f2l_1;
|
|
319
319
|
};
|
|
320
320
|
protoOf(WsEndpoint).td = function () {
|
|
321
|
-
return this.
|
|
321
|
+
return this.g2l_1;
|
|
322
322
|
};
|
|
323
323
|
protoOf(WsEndpoint).uh = function () {
|
|
324
324
|
return this.method;
|
|
325
325
|
};
|
|
326
|
-
protoOf(WsEndpoint).
|
|
326
|
+
protoOf(WsEndpoint).n2l = function () {
|
|
327
327
|
return this.path;
|
|
328
328
|
};
|
|
329
|
-
protoOf(WsEndpoint).
|
|
329
|
+
protoOf(WsEndpoint).o2l = function () {
|
|
330
330
|
return this.queries;
|
|
331
331
|
};
|
|
332
|
-
protoOf(WsEndpoint).
|
|
332
|
+
protoOf(WsEndpoint).p2l = function () {
|
|
333
333
|
return this.headers;
|
|
334
334
|
};
|
|
335
|
-
protoOf(WsEndpoint).
|
|
335
|
+
protoOf(WsEndpoint).q2l = function () {
|
|
336
336
|
return this.requests;
|
|
337
337
|
};
|
|
338
|
-
protoOf(WsEndpoint).
|
|
338
|
+
protoOf(WsEndpoint).r2l = function () {
|
|
339
339
|
return this.responses;
|
|
340
340
|
};
|
|
341
|
-
protoOf(WsEndpoint).
|
|
341
|
+
protoOf(WsEndpoint).s2l = function (identifier, comment, method, path, queries, headers, requests, responses) {
|
|
342
342
|
return new WsEndpoint(identifier, comment, method, path, queries, headers, requests, responses);
|
|
343
343
|
};
|
|
344
344
|
protoOf(WsEndpoint).copy = function (identifier, comment, method, path, queries, headers, requests, responses, $super) {
|
|
345
|
-
identifier = identifier === VOID ? this.
|
|
346
|
-
comment = comment === VOID ? this.
|
|
345
|
+
identifier = identifier === VOID ? this.f2l_1 : identifier;
|
|
346
|
+
comment = comment === VOID ? this.g2l_1 : comment;
|
|
347
347
|
method = method === VOID ? this.method : method;
|
|
348
348
|
path = path === VOID ? this.path : path;
|
|
349
349
|
queries = queries === VOID ? this.queries : queries;
|
|
350
350
|
headers = headers === VOID ? this.headers : headers;
|
|
351
351
|
requests = requests === VOID ? this.requests : requests;
|
|
352
352
|
responses = responses === VOID ? this.responses : responses;
|
|
353
|
-
return this.
|
|
353
|
+
return this.s2l(identifier, comment, method, path, queries, headers, requests, responses);
|
|
354
354
|
};
|
|
355
355
|
protoOf(WsEndpoint).toString = function () {
|
|
356
|
-
return 'WsEndpoint(identifier=' + this.
|
|
356
|
+
return 'WsEndpoint(identifier=' + this.f2l_1 + ', comment=' + this.g2l_1 + ', method=' + this.method.toString() + ', path=' + toString(this.path) + ', queries=' + toString(this.queries) + ', headers=' + toString(this.headers) + ', requests=' + toString(this.requests) + ', responses=' + toString(this.responses) + ')';
|
|
357
357
|
};
|
|
358
358
|
protoOf(WsEndpoint).hashCode = function () {
|
|
359
|
-
var result = getStringHashCode(this.
|
|
360
|
-
result = imul(result, 31) + (this.
|
|
359
|
+
var result = getStringHashCode(this.f2l_1);
|
|
360
|
+
result = imul(result, 31) + (this.g2l_1 == null ? 0 : getStringHashCode(this.g2l_1)) | 0;
|
|
361
361
|
result = imul(result, 31) + this.method.hashCode() | 0;
|
|
362
362
|
result = imul(result, 31) + hashCode(this.path) | 0;
|
|
363
363
|
result = imul(result, 31) + hashCode(this.queries) | 0;
|
|
@@ -372,9 +372,9 @@ protoOf(WsEndpoint).equals = function (other) {
|
|
|
372
372
|
if (!(other instanceof WsEndpoint))
|
|
373
373
|
return false;
|
|
374
374
|
var tmp0_other_with_cast = other instanceof WsEndpoint ? other : THROW_CCE();
|
|
375
|
-
if (!(this.
|
|
375
|
+
if (!(this.f2l_1 === tmp0_other_with_cast.f2l_1))
|
|
376
376
|
return false;
|
|
377
|
-
if (!(this.
|
|
377
|
+
if (!(this.g2l_1 == tmp0_other_with_cast.g2l_1))
|
|
378
378
|
return false;
|
|
379
379
|
if (!this.method.equals(tmp0_other_with_cast.method))
|
|
380
380
|
return false;
|
|
@@ -391,43 +391,43 @@ protoOf(WsEndpoint).equals = function (other) {
|
|
|
391
391
|
return true;
|
|
392
392
|
};
|
|
393
393
|
function WsEnum(identifier, comment, entries) {
|
|
394
|
-
this.
|
|
395
|
-
this.
|
|
394
|
+
this.t2l_1 = identifier;
|
|
395
|
+
this.u2l_1 = comment;
|
|
396
396
|
this.entries = entries;
|
|
397
397
|
}
|
|
398
|
-
protoOf(WsEnum).
|
|
399
|
-
return this.
|
|
398
|
+
protoOf(WsEnum).l26 = function () {
|
|
399
|
+
return this.t2l_1;
|
|
400
400
|
};
|
|
401
|
-
protoOf(WsEnum).
|
|
402
|
-
return this.
|
|
401
|
+
protoOf(WsEnum).z2k = function () {
|
|
402
|
+
return this.u2l_1;
|
|
403
403
|
};
|
|
404
404
|
protoOf(WsEnum).z = function () {
|
|
405
405
|
return this.entries;
|
|
406
406
|
};
|
|
407
407
|
protoOf(WsEnum).sd = function () {
|
|
408
|
-
return this.
|
|
408
|
+
return this.t2l_1;
|
|
409
409
|
};
|
|
410
410
|
protoOf(WsEnum).td = function () {
|
|
411
|
-
return this.
|
|
411
|
+
return this.u2l_1;
|
|
412
412
|
};
|
|
413
413
|
protoOf(WsEnum).uh = function () {
|
|
414
414
|
return this.entries;
|
|
415
415
|
};
|
|
416
|
-
protoOf(WsEnum).
|
|
416
|
+
protoOf(WsEnum).v2l = function (identifier, comment, entries) {
|
|
417
417
|
return new WsEnum(identifier, comment, entries);
|
|
418
418
|
};
|
|
419
419
|
protoOf(WsEnum).copy = function (identifier, comment, entries, $super) {
|
|
420
|
-
identifier = identifier === VOID ? this.
|
|
421
|
-
comment = comment === VOID ? this.
|
|
420
|
+
identifier = identifier === VOID ? this.t2l_1 : identifier;
|
|
421
|
+
comment = comment === VOID ? this.u2l_1 : comment;
|
|
422
422
|
entries = entries === VOID ? this.entries : entries;
|
|
423
|
-
return this.
|
|
423
|
+
return this.v2l(identifier, comment, entries);
|
|
424
424
|
};
|
|
425
425
|
protoOf(WsEnum).toString = function () {
|
|
426
|
-
return 'WsEnum(identifier=' + this.
|
|
426
|
+
return 'WsEnum(identifier=' + this.t2l_1 + ', comment=' + this.u2l_1 + ', entries=' + toString(this.entries) + ')';
|
|
427
427
|
};
|
|
428
428
|
protoOf(WsEnum).hashCode = function () {
|
|
429
|
-
var result = getStringHashCode(this.
|
|
430
|
-
result = imul(result, 31) + (this.
|
|
429
|
+
var result = getStringHashCode(this.t2l_1);
|
|
430
|
+
result = imul(result, 31) + (this.u2l_1 == null ? 0 : getStringHashCode(this.u2l_1)) | 0;
|
|
431
431
|
result = imul(result, 31) + hashCode(this.entries) | 0;
|
|
432
432
|
return result;
|
|
433
433
|
};
|
|
@@ -437,52 +437,52 @@ protoOf(WsEnum).equals = function (other) {
|
|
|
437
437
|
if (!(other instanceof WsEnum))
|
|
438
438
|
return false;
|
|
439
439
|
var tmp0_other_with_cast = other instanceof WsEnum ? other : THROW_CCE();
|
|
440
|
-
if (!(this.
|
|
440
|
+
if (!(this.t2l_1 === tmp0_other_with_cast.t2l_1))
|
|
441
441
|
return false;
|
|
442
|
-
if (!(this.
|
|
442
|
+
if (!(this.u2l_1 == tmp0_other_with_cast.u2l_1))
|
|
443
443
|
return false;
|
|
444
444
|
if (!equals(this.entries, tmp0_other_with_cast.entries))
|
|
445
445
|
return false;
|
|
446
446
|
return true;
|
|
447
447
|
};
|
|
448
448
|
function WsUnion(identifier, comment, entries) {
|
|
449
|
-
this.
|
|
450
|
-
this.
|
|
449
|
+
this.w2l_1 = identifier;
|
|
450
|
+
this.x2l_1 = comment;
|
|
451
451
|
this.entries = entries;
|
|
452
452
|
}
|
|
453
|
-
protoOf(WsUnion).
|
|
454
|
-
return this.
|
|
453
|
+
protoOf(WsUnion).l26 = function () {
|
|
454
|
+
return this.w2l_1;
|
|
455
455
|
};
|
|
456
|
-
protoOf(WsUnion).
|
|
457
|
-
return this.
|
|
456
|
+
protoOf(WsUnion).z2k = function () {
|
|
457
|
+
return this.x2l_1;
|
|
458
458
|
};
|
|
459
459
|
protoOf(WsUnion).z = function () {
|
|
460
460
|
return this.entries;
|
|
461
461
|
};
|
|
462
462
|
protoOf(WsUnion).sd = function () {
|
|
463
|
-
return this.
|
|
463
|
+
return this.w2l_1;
|
|
464
464
|
};
|
|
465
465
|
protoOf(WsUnion).td = function () {
|
|
466
|
-
return this.
|
|
466
|
+
return this.x2l_1;
|
|
467
467
|
};
|
|
468
468
|
protoOf(WsUnion).uh = function () {
|
|
469
469
|
return this.entries;
|
|
470
470
|
};
|
|
471
|
-
protoOf(WsUnion).
|
|
471
|
+
protoOf(WsUnion).y2l = function (identifier, comment, entries) {
|
|
472
472
|
return new WsUnion(identifier, comment, entries);
|
|
473
473
|
};
|
|
474
474
|
protoOf(WsUnion).copy = function (identifier, comment, entries, $super) {
|
|
475
|
-
identifier = identifier === VOID ? this.
|
|
476
|
-
comment = comment === VOID ? this.
|
|
475
|
+
identifier = identifier === VOID ? this.w2l_1 : identifier;
|
|
476
|
+
comment = comment === VOID ? this.x2l_1 : comment;
|
|
477
477
|
entries = entries === VOID ? this.entries : entries;
|
|
478
|
-
return this.
|
|
478
|
+
return this.y2l(identifier, comment, entries);
|
|
479
479
|
};
|
|
480
480
|
protoOf(WsUnion).toString = function () {
|
|
481
|
-
return 'WsUnion(identifier=' + this.
|
|
481
|
+
return 'WsUnion(identifier=' + this.w2l_1 + ', comment=' + this.x2l_1 + ', entries=' + toString(this.entries) + ')';
|
|
482
482
|
};
|
|
483
483
|
protoOf(WsUnion).hashCode = function () {
|
|
484
|
-
var result = getStringHashCode(this.
|
|
485
|
-
result = imul(result, 31) + (this.
|
|
484
|
+
var result = getStringHashCode(this.w2l_1);
|
|
485
|
+
result = imul(result, 31) + (this.x2l_1 == null ? 0 : getStringHashCode(this.x2l_1)) | 0;
|
|
486
486
|
result = imul(result, 31) + hashCode(this.entries) | 0;
|
|
487
487
|
return result;
|
|
488
488
|
};
|
|
@@ -492,52 +492,52 @@ protoOf(WsUnion).equals = function (other) {
|
|
|
492
492
|
if (!(other instanceof WsUnion))
|
|
493
493
|
return false;
|
|
494
494
|
var tmp0_other_with_cast = other instanceof WsUnion ? other : THROW_CCE();
|
|
495
|
-
if (!(this.
|
|
495
|
+
if (!(this.w2l_1 === tmp0_other_with_cast.w2l_1))
|
|
496
496
|
return false;
|
|
497
|
-
if (!(this.
|
|
497
|
+
if (!(this.x2l_1 == tmp0_other_with_cast.x2l_1))
|
|
498
498
|
return false;
|
|
499
499
|
if (!equals(this.entries, tmp0_other_with_cast.entries))
|
|
500
500
|
return false;
|
|
501
501
|
return true;
|
|
502
502
|
};
|
|
503
503
|
function WsChannel(identifier, comment, reference) {
|
|
504
|
-
this.
|
|
505
|
-
this.
|
|
504
|
+
this.z2l_1 = identifier;
|
|
505
|
+
this.a2m_1 = comment;
|
|
506
506
|
this.reference = reference;
|
|
507
507
|
}
|
|
508
|
-
protoOf(WsChannel).
|
|
509
|
-
return this.
|
|
508
|
+
protoOf(WsChannel).l26 = function () {
|
|
509
|
+
return this.z2l_1;
|
|
510
510
|
};
|
|
511
|
-
protoOf(WsChannel).
|
|
512
|
-
return this.
|
|
511
|
+
protoOf(WsChannel).z2k = function () {
|
|
512
|
+
return this.a2m_1;
|
|
513
513
|
};
|
|
514
|
-
protoOf(WsChannel).
|
|
514
|
+
protoOf(WsChannel).b2m = function () {
|
|
515
515
|
return this.reference;
|
|
516
516
|
};
|
|
517
517
|
protoOf(WsChannel).sd = function () {
|
|
518
|
-
return this.
|
|
518
|
+
return this.z2l_1;
|
|
519
519
|
};
|
|
520
520
|
protoOf(WsChannel).td = function () {
|
|
521
|
-
return this.
|
|
521
|
+
return this.a2m_1;
|
|
522
522
|
};
|
|
523
523
|
protoOf(WsChannel).uh = function () {
|
|
524
524
|
return this.reference;
|
|
525
525
|
};
|
|
526
|
-
protoOf(WsChannel).
|
|
526
|
+
protoOf(WsChannel).c2m = function (identifier, comment, reference) {
|
|
527
527
|
return new WsChannel(identifier, comment, reference);
|
|
528
528
|
};
|
|
529
529
|
protoOf(WsChannel).copy = function (identifier, comment, reference, $super) {
|
|
530
|
-
identifier = identifier === VOID ? this.
|
|
531
|
-
comment = comment === VOID ? this.
|
|
530
|
+
identifier = identifier === VOID ? this.z2l_1 : identifier;
|
|
531
|
+
comment = comment === VOID ? this.a2m_1 : comment;
|
|
532
532
|
reference = reference === VOID ? this.reference : reference;
|
|
533
|
-
return this.
|
|
533
|
+
return this.c2m(identifier, comment, reference);
|
|
534
534
|
};
|
|
535
535
|
protoOf(WsChannel).toString = function () {
|
|
536
|
-
return 'WsChannel(identifier=' + this.
|
|
536
|
+
return 'WsChannel(identifier=' + this.z2l_1 + ', comment=' + this.a2m_1 + ', reference=' + toString(this.reference) + ')';
|
|
537
537
|
};
|
|
538
538
|
protoOf(WsChannel).hashCode = function () {
|
|
539
|
-
var result = getStringHashCode(this.
|
|
540
|
-
result = imul(result, 31) + (this.
|
|
539
|
+
var result = getStringHashCode(this.z2l_1);
|
|
540
|
+
result = imul(result, 31) + (this.a2m_1 == null ? 0 : getStringHashCode(this.a2m_1)) | 0;
|
|
541
541
|
result = imul(result, 31) + hashCode(this.reference) | 0;
|
|
542
542
|
return result;
|
|
543
543
|
};
|
|
@@ -547,52 +547,52 @@ protoOf(WsChannel).equals = function (other) {
|
|
|
547
547
|
if (!(other instanceof WsChannel))
|
|
548
548
|
return false;
|
|
549
549
|
var tmp0_other_with_cast = other instanceof WsChannel ? other : THROW_CCE();
|
|
550
|
-
if (!(this.
|
|
550
|
+
if (!(this.z2l_1 === tmp0_other_with_cast.z2l_1))
|
|
551
551
|
return false;
|
|
552
|
-
if (!(this.
|
|
552
|
+
if (!(this.a2m_1 == tmp0_other_with_cast.a2m_1))
|
|
553
553
|
return false;
|
|
554
554
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
555
555
|
return false;
|
|
556
556
|
return true;
|
|
557
557
|
};
|
|
558
558
|
function WsRefined(identifier, comment, reference) {
|
|
559
|
-
this.
|
|
560
|
-
this.
|
|
559
|
+
this.d2m_1 = identifier;
|
|
560
|
+
this.e2m_1 = comment;
|
|
561
561
|
this.reference = reference;
|
|
562
562
|
}
|
|
563
|
-
protoOf(WsRefined).
|
|
564
|
-
return this.
|
|
563
|
+
protoOf(WsRefined).l26 = function () {
|
|
564
|
+
return this.d2m_1;
|
|
565
565
|
};
|
|
566
|
-
protoOf(WsRefined).
|
|
567
|
-
return this.
|
|
566
|
+
protoOf(WsRefined).z2k = function () {
|
|
567
|
+
return this.e2m_1;
|
|
568
568
|
};
|
|
569
|
-
protoOf(WsRefined).
|
|
569
|
+
protoOf(WsRefined).b2m = function () {
|
|
570
570
|
return this.reference;
|
|
571
571
|
};
|
|
572
572
|
protoOf(WsRefined).sd = function () {
|
|
573
|
-
return this.
|
|
573
|
+
return this.d2m_1;
|
|
574
574
|
};
|
|
575
575
|
protoOf(WsRefined).td = function () {
|
|
576
|
-
return this.
|
|
576
|
+
return this.e2m_1;
|
|
577
577
|
};
|
|
578
578
|
protoOf(WsRefined).uh = function () {
|
|
579
579
|
return this.reference;
|
|
580
580
|
};
|
|
581
|
-
protoOf(WsRefined).
|
|
581
|
+
protoOf(WsRefined).c2m = function (identifier, comment, reference) {
|
|
582
582
|
return new WsRefined(identifier, comment, reference);
|
|
583
583
|
};
|
|
584
584
|
protoOf(WsRefined).copy = function (identifier, comment, reference, $super) {
|
|
585
|
-
identifier = identifier === VOID ? this.
|
|
586
|
-
comment = comment === VOID ? this.
|
|
585
|
+
identifier = identifier === VOID ? this.d2m_1 : identifier;
|
|
586
|
+
comment = comment === VOID ? this.e2m_1 : comment;
|
|
587
587
|
reference = reference === VOID ? this.reference : reference;
|
|
588
|
-
return this.
|
|
588
|
+
return this.c2m(identifier, comment, reference);
|
|
589
589
|
};
|
|
590
590
|
protoOf(WsRefined).toString = function () {
|
|
591
|
-
return 'WsRefined(identifier=' + this.
|
|
591
|
+
return 'WsRefined(identifier=' + this.d2m_1 + ', comment=' + this.e2m_1 + ', reference=' + toString(this.reference) + ')';
|
|
592
592
|
};
|
|
593
593
|
protoOf(WsRefined).hashCode = function () {
|
|
594
|
-
var result = getStringHashCode(this.
|
|
595
|
-
result = imul(result, 31) + (this.
|
|
594
|
+
var result = getStringHashCode(this.d2m_1);
|
|
595
|
+
result = imul(result, 31) + (this.e2m_1 == null ? 0 : getStringHashCode(this.e2m_1)) | 0;
|
|
596
596
|
result = imul(result, 31) + hashCode(this.reference) | 0;
|
|
597
597
|
return result;
|
|
598
598
|
};
|
|
@@ -602,9 +602,9 @@ protoOf(WsRefined).equals = function (other) {
|
|
|
602
602
|
if (!(other instanceof WsRefined))
|
|
603
603
|
return false;
|
|
604
604
|
var tmp0_other_with_cast = other instanceof WsRefined ? other : THROW_CCE();
|
|
605
|
-
if (!(this.
|
|
605
|
+
if (!(this.d2m_1 === tmp0_other_with_cast.d2m_1))
|
|
606
606
|
return false;
|
|
607
|
-
if (!(this.
|
|
607
|
+
if (!(this.e2m_1 == tmp0_other_with_cast.e2m_1))
|
|
608
608
|
return false;
|
|
609
609
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
610
610
|
return false;
|
|
@@ -673,12 +673,12 @@ protoOf(WsLiteral).b1 = function () {
|
|
|
673
673
|
protoOf(WsLiteral).sd = function () {
|
|
674
674
|
return this.value;
|
|
675
675
|
};
|
|
676
|
-
protoOf(WsLiteral).
|
|
676
|
+
protoOf(WsLiteral).h2m = function (value) {
|
|
677
677
|
return new WsLiteral(value);
|
|
678
678
|
};
|
|
679
679
|
protoOf(WsLiteral).copy = function (value, $super) {
|
|
680
680
|
value = value === VOID ? this.value : value;
|
|
681
|
-
return this.
|
|
681
|
+
return this.h2m(value);
|
|
682
682
|
};
|
|
683
683
|
protoOf(WsLiteral).toString = function () {
|
|
684
684
|
return 'WsLiteral(value=' + this.value + ')';
|
|
@@ -700,10 +700,10 @@ function WsParam(identifier, reference) {
|
|
|
700
700
|
this.identifier = identifier;
|
|
701
701
|
this.reference = reference;
|
|
702
702
|
}
|
|
703
|
-
protoOf(WsParam).
|
|
703
|
+
protoOf(WsParam).l26 = function () {
|
|
704
704
|
return this.identifier;
|
|
705
705
|
};
|
|
706
|
-
protoOf(WsParam).
|
|
706
|
+
protoOf(WsParam).b2m = function () {
|
|
707
707
|
return this.reference;
|
|
708
708
|
};
|
|
709
709
|
protoOf(WsParam).sd = function () {
|
|
@@ -712,13 +712,13 @@ protoOf(WsParam).sd = function () {
|
|
|
712
712
|
protoOf(WsParam).td = function () {
|
|
713
713
|
return this.reference;
|
|
714
714
|
};
|
|
715
|
-
protoOf(WsParam).
|
|
715
|
+
protoOf(WsParam).i2m = function (identifier, reference) {
|
|
716
716
|
return new WsParam(identifier, reference);
|
|
717
717
|
};
|
|
718
718
|
protoOf(WsParam).copy = function (identifier, reference, $super) {
|
|
719
719
|
identifier = identifier === VOID ? this.identifier : identifier;
|
|
720
720
|
reference = reference === VOID ? this.reference : reference;
|
|
721
|
-
return this.
|
|
721
|
+
return this.i2m(identifier, reference);
|
|
722
722
|
};
|
|
723
723
|
protoOf(WsParam).toString = function () {
|
|
724
724
|
return 'WsParam(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
|
|
@@ -749,12 +749,12 @@ protoOf(Shape_0).b1 = function () {
|
|
|
749
749
|
protoOf(Shape_0).sd = function () {
|
|
750
750
|
return this.value;
|
|
751
751
|
};
|
|
752
|
-
protoOf(Shape_0).
|
|
752
|
+
protoOf(Shape_0).e2l = function (value) {
|
|
753
753
|
return new Shape_0(value);
|
|
754
754
|
};
|
|
755
755
|
protoOf(Shape_0).copy = function (value, $super) {
|
|
756
756
|
value = value === VOID ? this.value : value;
|
|
757
|
-
return this.
|
|
757
|
+
return this.e2l(value);
|
|
758
758
|
};
|
|
759
759
|
protoOf(Shape_0).toString = function () {
|
|
760
760
|
return 'Shape(value=' + toString(this.value) + ')';
|
|
@@ -776,10 +776,10 @@ function WsField(identifier, reference) {
|
|
|
776
776
|
this.identifier = identifier;
|
|
777
777
|
this.reference = reference;
|
|
778
778
|
}
|
|
779
|
-
protoOf(WsField).
|
|
779
|
+
protoOf(WsField).l26 = function () {
|
|
780
780
|
return this.identifier;
|
|
781
781
|
};
|
|
782
|
-
protoOf(WsField).
|
|
782
|
+
protoOf(WsField).b2m = function () {
|
|
783
783
|
return this.reference;
|
|
784
784
|
};
|
|
785
785
|
protoOf(WsField).sd = function () {
|
|
@@ -788,13 +788,13 @@ protoOf(WsField).sd = function () {
|
|
|
788
788
|
protoOf(WsField).td = function () {
|
|
789
789
|
return this.reference;
|
|
790
790
|
};
|
|
791
|
-
protoOf(WsField).
|
|
791
|
+
protoOf(WsField).i2m = function (identifier, reference) {
|
|
792
792
|
return new WsField(identifier, reference);
|
|
793
793
|
};
|
|
794
794
|
protoOf(WsField).copy = function (identifier, reference, $super) {
|
|
795
795
|
identifier = identifier === VOID ? this.identifier : identifier;
|
|
796
796
|
reference = reference === VOID ? this.reference : reference;
|
|
797
|
-
return this.
|
|
797
|
+
return this.i2m(identifier, reference);
|
|
798
798
|
};
|
|
799
799
|
protoOf(WsField).toString = function () {
|
|
800
800
|
return 'WsField(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
|
|
@@ -827,12 +827,12 @@ protoOf(WsClassIdentifier).b1 = function () {
|
|
|
827
827
|
protoOf(WsClassIdentifier).sd = function () {
|
|
828
828
|
return this.value;
|
|
829
829
|
};
|
|
830
|
-
protoOf(WsClassIdentifier).
|
|
830
|
+
protoOf(WsClassIdentifier).h2m = function (value) {
|
|
831
831
|
return new WsClassIdentifier(value);
|
|
832
832
|
};
|
|
833
833
|
protoOf(WsClassIdentifier).copy = function (value, $super) {
|
|
834
834
|
value = value === VOID ? this.value : value;
|
|
835
|
-
return this.
|
|
835
|
+
return this.h2m(value);
|
|
836
836
|
};
|
|
837
837
|
protoOf(WsClassIdentifier).toString = function () {
|
|
838
838
|
return 'WsClassIdentifier(value=' + this.value + ')';
|
|
@@ -859,12 +859,12 @@ protoOf(WsFieldIdentifier).b1 = function () {
|
|
|
859
859
|
protoOf(WsFieldIdentifier).sd = function () {
|
|
860
860
|
return this.value;
|
|
861
861
|
};
|
|
862
|
-
protoOf(WsFieldIdentifier).
|
|
862
|
+
protoOf(WsFieldIdentifier).h2m = function (value) {
|
|
863
863
|
return new WsFieldIdentifier(value);
|
|
864
864
|
};
|
|
865
865
|
protoOf(WsFieldIdentifier).copy = function (value, $super) {
|
|
866
866
|
value = value === VOID ? this.value : value;
|
|
867
|
-
return this.
|
|
867
|
+
return this.h2m(value);
|
|
868
868
|
};
|
|
869
869
|
protoOf(WsFieldIdentifier).toString = function () {
|
|
870
870
|
return 'WsFieldIdentifier(value=' + this.value + ')';
|
|
@@ -885,26 +885,26 @@ protoOf(WsFieldIdentifier).equals = function (other) {
|
|
|
885
885
|
function WsReference() {
|
|
886
886
|
}
|
|
887
887
|
function WsAny(isNullable) {
|
|
888
|
-
this.
|
|
888
|
+
this.j2m_1 = isNullable;
|
|
889
889
|
}
|
|
890
890
|
protoOf(WsAny).jm = function () {
|
|
891
|
-
return this.
|
|
891
|
+
return this.j2m_1;
|
|
892
892
|
};
|
|
893
893
|
protoOf(WsAny).sd = function () {
|
|
894
|
-
return this.
|
|
894
|
+
return this.j2m_1;
|
|
895
895
|
};
|
|
896
|
-
protoOf(WsAny).
|
|
896
|
+
protoOf(WsAny).k29 = function (isNullable) {
|
|
897
897
|
return new WsAny(isNullable);
|
|
898
898
|
};
|
|
899
899
|
protoOf(WsAny).copy = function (isNullable, $super) {
|
|
900
|
-
isNullable = isNullable === VOID ? this.
|
|
901
|
-
return this.
|
|
900
|
+
isNullable = isNullable === VOID ? this.j2m_1 : isNullable;
|
|
901
|
+
return this.k29(isNullable);
|
|
902
902
|
};
|
|
903
903
|
protoOf(WsAny).toString = function () {
|
|
904
|
-
return 'WsAny(isNullable=' + this.
|
|
904
|
+
return 'WsAny(isNullable=' + this.j2m_1 + ')';
|
|
905
905
|
};
|
|
906
906
|
protoOf(WsAny).hashCode = function () {
|
|
907
|
-
return getBooleanHashCode(this.
|
|
907
|
+
return getBooleanHashCode(this.j2m_1);
|
|
908
908
|
};
|
|
909
909
|
protoOf(WsAny).equals = function (other) {
|
|
910
910
|
if (this === other)
|
|
@@ -912,31 +912,31 @@ protoOf(WsAny).equals = function (other) {
|
|
|
912
912
|
if (!(other instanceof WsAny))
|
|
913
913
|
return false;
|
|
914
914
|
var tmp0_other_with_cast = other instanceof WsAny ? other : THROW_CCE();
|
|
915
|
-
if (!(this.
|
|
915
|
+
if (!(this.j2m_1 === tmp0_other_with_cast.j2m_1))
|
|
916
916
|
return false;
|
|
917
917
|
return true;
|
|
918
918
|
};
|
|
919
919
|
function WsUnit(isNullable) {
|
|
920
|
-
this.
|
|
920
|
+
this.k2m_1 = isNullable;
|
|
921
921
|
}
|
|
922
922
|
protoOf(WsUnit).jm = function () {
|
|
923
|
-
return this.
|
|
923
|
+
return this.k2m_1;
|
|
924
924
|
};
|
|
925
925
|
protoOf(WsUnit).sd = function () {
|
|
926
|
-
return this.
|
|
926
|
+
return this.k2m_1;
|
|
927
927
|
};
|
|
928
|
-
protoOf(WsUnit).
|
|
928
|
+
protoOf(WsUnit).k29 = function (isNullable) {
|
|
929
929
|
return new WsUnit(isNullable);
|
|
930
930
|
};
|
|
931
931
|
protoOf(WsUnit).copy = function (isNullable, $super) {
|
|
932
|
-
isNullable = isNullable === VOID ? this.
|
|
933
|
-
return this.
|
|
932
|
+
isNullable = isNullable === VOID ? this.k2m_1 : isNullable;
|
|
933
|
+
return this.k29(isNullable);
|
|
934
934
|
};
|
|
935
935
|
protoOf(WsUnit).toString = function () {
|
|
936
|
-
return 'WsUnit(isNullable=' + this.
|
|
936
|
+
return 'WsUnit(isNullable=' + this.k2m_1 + ')';
|
|
937
937
|
};
|
|
938
938
|
protoOf(WsUnit).hashCode = function () {
|
|
939
|
-
return getBooleanHashCode(this.
|
|
939
|
+
return getBooleanHashCode(this.k2m_1);
|
|
940
940
|
};
|
|
941
941
|
protoOf(WsUnit).equals = function (other) {
|
|
942
942
|
if (this === other)
|
|
@@ -944,40 +944,40 @@ protoOf(WsUnit).equals = function (other) {
|
|
|
944
944
|
if (!(other instanceof WsUnit))
|
|
945
945
|
return false;
|
|
946
946
|
var tmp0_other_with_cast = other instanceof WsUnit ? other : THROW_CCE();
|
|
947
|
-
if (!(this.
|
|
947
|
+
if (!(this.k2m_1 === tmp0_other_with_cast.k2m_1))
|
|
948
948
|
return false;
|
|
949
949
|
return true;
|
|
950
950
|
};
|
|
951
951
|
function WsIterable(reference, isNullable) {
|
|
952
952
|
this.reference = reference;
|
|
953
|
-
this.
|
|
953
|
+
this.l2m_1 = isNullable;
|
|
954
954
|
}
|
|
955
|
-
protoOf(WsIterable).
|
|
955
|
+
protoOf(WsIterable).b2m = function () {
|
|
956
956
|
return this.reference;
|
|
957
957
|
};
|
|
958
958
|
protoOf(WsIterable).jm = function () {
|
|
959
|
-
return this.
|
|
959
|
+
return this.l2m_1;
|
|
960
960
|
};
|
|
961
961
|
protoOf(WsIterable).sd = function () {
|
|
962
962
|
return this.reference;
|
|
963
963
|
};
|
|
964
964
|
protoOf(WsIterable).td = function () {
|
|
965
|
-
return this.
|
|
965
|
+
return this.l2m_1;
|
|
966
966
|
};
|
|
967
|
-
protoOf(WsIterable).
|
|
967
|
+
protoOf(WsIterable).m2m = function (reference, isNullable) {
|
|
968
968
|
return new WsIterable(reference, isNullable);
|
|
969
969
|
};
|
|
970
970
|
protoOf(WsIterable).copy = function (reference, isNullable, $super) {
|
|
971
971
|
reference = reference === VOID ? this.reference : reference;
|
|
972
|
-
isNullable = isNullable === VOID ? this.
|
|
973
|
-
return this.
|
|
972
|
+
isNullable = isNullable === VOID ? this.l2m_1 : isNullable;
|
|
973
|
+
return this.m2m(reference, isNullable);
|
|
974
974
|
};
|
|
975
975
|
protoOf(WsIterable).toString = function () {
|
|
976
|
-
return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.
|
|
976
|
+
return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.l2m_1 + ')';
|
|
977
977
|
};
|
|
978
978
|
protoOf(WsIterable).hashCode = function () {
|
|
979
979
|
var result = hashCode(this.reference);
|
|
980
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
980
|
+
result = imul(result, 31) + getBooleanHashCode(this.l2m_1) | 0;
|
|
981
981
|
return result;
|
|
982
982
|
};
|
|
983
983
|
protoOf(WsIterable).equals = function (other) {
|
|
@@ -988,40 +988,40 @@ protoOf(WsIterable).equals = function (other) {
|
|
|
988
988
|
var tmp0_other_with_cast = other instanceof WsIterable ? other : THROW_CCE();
|
|
989
989
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
990
990
|
return false;
|
|
991
|
-
if (!(this.
|
|
991
|
+
if (!(this.l2m_1 === tmp0_other_with_cast.l2m_1))
|
|
992
992
|
return false;
|
|
993
993
|
return true;
|
|
994
994
|
};
|
|
995
995
|
function WsDict(reference, isNullable) {
|
|
996
996
|
this.reference = reference;
|
|
997
|
-
this.
|
|
997
|
+
this.n2m_1 = isNullable;
|
|
998
998
|
}
|
|
999
|
-
protoOf(WsDict).
|
|
999
|
+
protoOf(WsDict).b2m = function () {
|
|
1000
1000
|
return this.reference;
|
|
1001
1001
|
};
|
|
1002
1002
|
protoOf(WsDict).jm = function () {
|
|
1003
|
-
return this.
|
|
1003
|
+
return this.n2m_1;
|
|
1004
1004
|
};
|
|
1005
1005
|
protoOf(WsDict).sd = function () {
|
|
1006
1006
|
return this.reference;
|
|
1007
1007
|
};
|
|
1008
1008
|
protoOf(WsDict).td = function () {
|
|
1009
|
-
return this.
|
|
1009
|
+
return this.n2m_1;
|
|
1010
1010
|
};
|
|
1011
|
-
protoOf(WsDict).
|
|
1011
|
+
protoOf(WsDict).m2m = function (reference, isNullable) {
|
|
1012
1012
|
return new WsDict(reference, isNullable);
|
|
1013
1013
|
};
|
|
1014
1014
|
protoOf(WsDict).copy = function (reference, isNullable, $super) {
|
|
1015
1015
|
reference = reference === VOID ? this.reference : reference;
|
|
1016
|
-
isNullable = isNullable === VOID ? this.
|
|
1017
|
-
return this.
|
|
1016
|
+
isNullable = isNullable === VOID ? this.n2m_1 : isNullable;
|
|
1017
|
+
return this.m2m(reference, isNullable);
|
|
1018
1018
|
};
|
|
1019
1019
|
protoOf(WsDict).toString = function () {
|
|
1020
|
-
return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.
|
|
1020
|
+
return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.n2m_1 + ')';
|
|
1021
1021
|
};
|
|
1022
1022
|
protoOf(WsDict).hashCode = function () {
|
|
1023
1023
|
var result = hashCode(this.reference);
|
|
1024
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1024
|
+
result = imul(result, 31) + getBooleanHashCode(this.n2m_1) | 0;
|
|
1025
1025
|
return result;
|
|
1026
1026
|
};
|
|
1027
1027
|
protoOf(WsDict).equals = function (other) {
|
|
@@ -1032,40 +1032,40 @@ protoOf(WsDict).equals = function (other) {
|
|
|
1032
1032
|
var tmp0_other_with_cast = other instanceof WsDict ? other : THROW_CCE();
|
|
1033
1033
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
1034
1034
|
return false;
|
|
1035
|
-
if (!(this.
|
|
1035
|
+
if (!(this.n2m_1 === tmp0_other_with_cast.n2m_1))
|
|
1036
1036
|
return false;
|
|
1037
1037
|
return true;
|
|
1038
1038
|
};
|
|
1039
1039
|
function WsCustom(value, isNullable) {
|
|
1040
1040
|
this.value = value;
|
|
1041
|
-
this.
|
|
1041
|
+
this.o2m_1 = isNullable;
|
|
1042
1042
|
}
|
|
1043
1043
|
protoOf(WsCustom).b1 = function () {
|
|
1044
1044
|
return this.value;
|
|
1045
1045
|
};
|
|
1046
1046
|
protoOf(WsCustom).jm = function () {
|
|
1047
|
-
return this.
|
|
1047
|
+
return this.o2m_1;
|
|
1048
1048
|
};
|
|
1049
1049
|
protoOf(WsCustom).sd = function () {
|
|
1050
1050
|
return this.value;
|
|
1051
1051
|
};
|
|
1052
1052
|
protoOf(WsCustom).td = function () {
|
|
1053
|
-
return this.
|
|
1053
|
+
return this.o2m_1;
|
|
1054
1054
|
};
|
|
1055
|
-
protoOf(WsCustom).
|
|
1055
|
+
protoOf(WsCustom).t29 = function (value, isNullable) {
|
|
1056
1056
|
return new WsCustom(value, isNullable);
|
|
1057
1057
|
};
|
|
1058
1058
|
protoOf(WsCustom).copy = function (value, isNullable, $super) {
|
|
1059
1059
|
value = value === VOID ? this.value : value;
|
|
1060
|
-
isNullable = isNullable === VOID ? this.
|
|
1061
|
-
return this.
|
|
1060
|
+
isNullable = isNullable === VOID ? this.o2m_1 : isNullable;
|
|
1061
|
+
return this.t29(value, isNullable);
|
|
1062
1062
|
};
|
|
1063
1063
|
protoOf(WsCustom).toString = function () {
|
|
1064
|
-
return 'WsCustom(value=' + this.value + ', isNullable=' + this.
|
|
1064
|
+
return 'WsCustom(value=' + this.value + ', isNullable=' + this.o2m_1 + ')';
|
|
1065
1065
|
};
|
|
1066
1066
|
protoOf(WsCustom).hashCode = function () {
|
|
1067
1067
|
var result = getStringHashCode(this.value);
|
|
1068
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1068
|
+
result = imul(result, 31) + getBooleanHashCode(this.o2m_1) | 0;
|
|
1069
1069
|
return result;
|
|
1070
1070
|
};
|
|
1071
1071
|
protoOf(WsCustom).equals = function (other) {
|
|
@@ -1076,40 +1076,40 @@ protoOf(WsCustom).equals = function (other) {
|
|
|
1076
1076
|
var tmp0_other_with_cast = other instanceof WsCustom ? other : THROW_CCE();
|
|
1077
1077
|
if (!(this.value === tmp0_other_with_cast.value))
|
|
1078
1078
|
return false;
|
|
1079
|
-
if (!(this.
|
|
1079
|
+
if (!(this.o2m_1 === tmp0_other_with_cast.o2m_1))
|
|
1080
1080
|
return false;
|
|
1081
1081
|
return true;
|
|
1082
1082
|
};
|
|
1083
1083
|
function WsPrimitive(type, isNullable) {
|
|
1084
1084
|
this.type = type;
|
|
1085
|
-
this.
|
|
1085
|
+
this.p2m_1 = isNullable;
|
|
1086
1086
|
}
|
|
1087
1087
|
protoOf(WsPrimitive).v1j = function () {
|
|
1088
1088
|
return this.type;
|
|
1089
1089
|
};
|
|
1090
1090
|
protoOf(WsPrimitive).jm = function () {
|
|
1091
|
-
return this.
|
|
1091
|
+
return this.p2m_1;
|
|
1092
1092
|
};
|
|
1093
1093
|
protoOf(WsPrimitive).sd = function () {
|
|
1094
1094
|
return this.type;
|
|
1095
1095
|
};
|
|
1096
1096
|
protoOf(WsPrimitive).td = function () {
|
|
1097
|
-
return this.
|
|
1097
|
+
return this.p2m_1;
|
|
1098
1098
|
};
|
|
1099
|
-
protoOf(WsPrimitive).
|
|
1099
|
+
protoOf(WsPrimitive).q2m = function (type, isNullable) {
|
|
1100
1100
|
return new WsPrimitive(type, isNullable);
|
|
1101
1101
|
};
|
|
1102
1102
|
protoOf(WsPrimitive).copy = function (type, isNullable, $super) {
|
|
1103
1103
|
type = type === VOID ? this.type : type;
|
|
1104
|
-
isNullable = isNullable === VOID ? this.
|
|
1105
|
-
return this.
|
|
1104
|
+
isNullable = isNullable === VOID ? this.p2m_1 : isNullable;
|
|
1105
|
+
return this.q2m(type, isNullable);
|
|
1106
1106
|
};
|
|
1107
1107
|
protoOf(WsPrimitive).toString = function () {
|
|
1108
|
-
return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.
|
|
1108
|
+
return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.p2m_1 + ')';
|
|
1109
1109
|
};
|
|
1110
1110
|
protoOf(WsPrimitive).hashCode = function () {
|
|
1111
1111
|
var result = this.type.hashCode();
|
|
1112
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1112
|
+
result = imul(result, 31) + getBooleanHashCode(this.p2m_1) | 0;
|
|
1113
1113
|
return result;
|
|
1114
1114
|
};
|
|
1115
1115
|
protoOf(WsPrimitive).equals = function (other) {
|
|
@@ -1120,7 +1120,7 @@ protoOf(WsPrimitive).equals = function (other) {
|
|
|
1120
1120
|
var tmp0_other_with_cast = other instanceof WsPrimitive ? other : THROW_CCE();
|
|
1121
1121
|
if (!this.type.equals(tmp0_other_with_cast.type))
|
|
1122
1122
|
return false;
|
|
1123
|
-
if (!(this.
|
|
1123
|
+
if (!(this.p2m_1 === tmp0_other_with_cast.p2m_1))
|
|
1124
1124
|
return false;
|
|
1125
1125
|
return true;
|
|
1126
1126
|
};
|
|
@@ -1173,12 +1173,12 @@ protoOf(WsRequest).q17 = function () {
|
|
|
1173
1173
|
protoOf(WsRequest).sd = function () {
|
|
1174
1174
|
return this.content;
|
|
1175
1175
|
};
|
|
1176
|
-
protoOf(WsRequest).
|
|
1176
|
+
protoOf(WsRequest).t2m = function (content) {
|
|
1177
1177
|
return new WsRequest(content);
|
|
1178
1178
|
};
|
|
1179
1179
|
protoOf(WsRequest).copy = function (content, $super) {
|
|
1180
1180
|
content = content === VOID ? this.content : content;
|
|
1181
|
-
return this.
|
|
1181
|
+
return this.t2m(content);
|
|
1182
1182
|
};
|
|
1183
1183
|
protoOf(WsRequest).toString = function () {
|
|
1184
1184
|
return 'WsRequest(content=' + toString_0(this.content) + ')';
|
|
@@ -1201,10 +1201,10 @@ function WsResponse(status, headers, content) {
|
|
|
1201
1201
|
this.headers = headers;
|
|
1202
1202
|
this.content = content;
|
|
1203
1203
|
}
|
|
1204
|
-
protoOf(WsResponse).
|
|
1204
|
+
protoOf(WsResponse).u2m = function () {
|
|
1205
1205
|
return this.status;
|
|
1206
1206
|
};
|
|
1207
|
-
protoOf(WsResponse).
|
|
1207
|
+
protoOf(WsResponse).k2l = function () {
|
|
1208
1208
|
return this.headers;
|
|
1209
1209
|
};
|
|
1210
1210
|
protoOf(WsResponse).q17 = function () {
|
|
@@ -1219,14 +1219,14 @@ protoOf(WsResponse).td = function () {
|
|
|
1219
1219
|
protoOf(WsResponse).uh = function () {
|
|
1220
1220
|
return this.content;
|
|
1221
1221
|
};
|
|
1222
|
-
protoOf(WsResponse).
|
|
1222
|
+
protoOf(WsResponse).v2m = function (status, headers, content) {
|
|
1223
1223
|
return new WsResponse(status, headers, content);
|
|
1224
1224
|
};
|
|
1225
1225
|
protoOf(WsResponse).copy = function (status, headers, content, $super) {
|
|
1226
1226
|
status = status === VOID ? this.status : status;
|
|
1227
1227
|
headers = headers === VOID ? this.headers : headers;
|
|
1228
1228
|
content = content === VOID ? this.content : content;
|
|
1229
|
-
return this.
|
|
1229
|
+
return this.v2m(status, headers, content);
|
|
1230
1230
|
};
|
|
1231
1231
|
protoOf(WsResponse).toString = function () {
|
|
1232
1232
|
return 'WsResponse(status=' + this.status + ', headers=' + toString(this.headers) + ', content=' + toString_0(this.content) + ')';
|
|
@@ -1260,7 +1260,7 @@ function WsContent(type, reference, isNullable) {
|
|
|
1260
1260
|
protoOf(WsContent).v1j = function () {
|
|
1261
1261
|
return this.type;
|
|
1262
1262
|
};
|
|
1263
|
-
protoOf(WsContent).
|
|
1263
|
+
protoOf(WsContent).b2m = function () {
|
|
1264
1264
|
return this.reference;
|
|
1265
1265
|
};
|
|
1266
1266
|
protoOf(WsContent).jm = function () {
|
|
@@ -1275,14 +1275,14 @@ protoOf(WsContent).td = function () {
|
|
|
1275
1275
|
protoOf(WsContent).uh = function () {
|
|
1276
1276
|
return this.isNullable;
|
|
1277
1277
|
};
|
|
1278
|
-
protoOf(WsContent).
|
|
1278
|
+
protoOf(WsContent).w2m = function (type, reference, isNullable) {
|
|
1279
1279
|
return new WsContent(type, reference, isNullable);
|
|
1280
1280
|
};
|
|
1281
1281
|
protoOf(WsContent).copy = function (type, reference, isNullable, $super) {
|
|
1282
1282
|
type = type === VOID ? this.type : type;
|
|
1283
1283
|
reference = reference === VOID ? this.reference : reference;
|
|
1284
1284
|
isNullable = isNullable === VOID ? this.isNullable : isNullable;
|
|
1285
|
-
return this.
|
|
1285
|
+
return this.w2m(type, reference, isNullable);
|
|
1286
1286
|
};
|
|
1287
1287
|
protoOf(WsContent).toString = function () {
|
|
1288
1288
|
return 'WsContent(type=' + this.type + ', reference=' + toString(this.reference) + ', isNullable=' + this.isNullable + ')';
|
|
@@ -1310,8 +1310,8 @@ protoOf(WsContent).equals = function (other) {
|
|
|
1310
1310
|
function produce(_this__u8e3s4) {
|
|
1311
1311
|
var tmp;
|
|
1312
1312
|
if (_this__u8e3s4 instanceof Type) {
|
|
1313
|
-
var tmp_0 = _this__u8e3s4.
|
|
1314
|
-
var tmp1_safe_receiver = _this__u8e3s4.
|
|
1313
|
+
var tmp_0 = _this__u8e3s4.n24_1.b1();
|
|
1314
|
+
var tmp1_safe_receiver = _this__u8e3s4.l24_1;
|
|
1315
1315
|
var tmp_1;
|
|
1316
1316
|
var tmp_2 = tmp1_safe_receiver;
|
|
1317
1317
|
if ((tmp_2 == null ? null : new Comment(tmp_2)) == null) {
|
|
@@ -1319,11 +1319,11 @@ function produce(_this__u8e3s4) {
|
|
|
1319
1319
|
} else {
|
|
1320
1320
|
tmp_1 = _Comment___get_value__impl__8r3pla(tmp1_safe_receiver);
|
|
1321
1321
|
}
|
|
1322
|
-
tmp = new WsType(tmp_0, tmp_1, produce_1(_this__u8e3s4.
|
|
1322
|
+
tmp = new WsType(tmp_0, tmp_1, produce_1(_this__u8e3s4.o24_1));
|
|
1323
1323
|
} else {
|
|
1324
1324
|
if (_this__u8e3s4 instanceof Endpoint) {
|
|
1325
|
-
var tmp_3 = _this__u8e3s4.
|
|
1326
|
-
var tmp2_safe_receiver = _this__u8e3s4.
|
|
1325
|
+
var tmp_3 = _this__u8e3s4.w24_1.b1();
|
|
1326
|
+
var tmp2_safe_receiver = _this__u8e3s4.u24_1;
|
|
1327
1327
|
var tmp_4;
|
|
1328
1328
|
var tmp_5 = tmp2_safe_receiver;
|
|
1329
1329
|
if ((tmp_5 == null ? null : new Comment(tmp_5)) == null) {
|
|
@@ -1331,11 +1331,11 @@ function produce(_this__u8e3s4) {
|
|
|
1331
1331
|
} else {
|
|
1332
1332
|
tmp_4 = _Comment___get_value__impl__8r3pla(tmp2_safe_receiver);
|
|
1333
1333
|
}
|
|
1334
|
-
tmp = new WsEndpoint(tmp_3, tmp_4, produce_2(_this__u8e3s4.
|
|
1334
|
+
tmp = new WsEndpoint(tmp_3, tmp_4, produce_2(_this__u8e3s4.x24_1), produce_3(_this__u8e3s4.y24_1), produce_4(_this__u8e3s4.z24_1), produce_4(_this__u8e3s4.a25_1), produce_5(_this__u8e3s4.b25_1), produce_6(_this__u8e3s4.c25_1));
|
|
1335
1335
|
} else {
|
|
1336
1336
|
if (_this__u8e3s4 instanceof Enum_0) {
|
|
1337
|
-
var tmp_6 = _this__u8e3s4.
|
|
1338
|
-
var tmp3_safe_receiver = _this__u8e3s4.
|
|
1337
|
+
var tmp_6 = _this__u8e3s4.x26_1.b1();
|
|
1338
|
+
var tmp3_safe_receiver = _this__u8e3s4.v26_1;
|
|
1339
1339
|
var tmp_7;
|
|
1340
1340
|
var tmp_8 = tmp3_safe_receiver;
|
|
1341
1341
|
if ((tmp_8 == null ? null : new Comment(tmp_8)) == null) {
|
|
@@ -1345,13 +1345,13 @@ function produce(_this__u8e3s4) {
|
|
|
1345
1345
|
}
|
|
1346
1346
|
var tmp_9 = tmp_7;
|
|
1347
1347
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1348
|
-
var this_0 = _this__u8e3s4.
|
|
1348
|
+
var this_0 = _this__u8e3s4.y26_1;
|
|
1349
1349
|
var tmp$ret$0 = copyToArray(this_0);
|
|
1350
1350
|
tmp = new WsEnum(tmp_6, tmp_9, tmp$ret$0);
|
|
1351
1351
|
} else {
|
|
1352
1352
|
if (_this__u8e3s4 instanceof Refined) {
|
|
1353
|
-
var tmp_10 = _this__u8e3s4.
|
|
1354
|
-
var tmp4_safe_receiver = _this__u8e3s4.
|
|
1353
|
+
var tmp_10 = _this__u8e3s4.s26_1.b1();
|
|
1354
|
+
var tmp4_safe_receiver = _this__u8e3s4.q26_1;
|
|
1355
1355
|
var tmp_11;
|
|
1356
1356
|
var tmp_12 = tmp4_safe_receiver;
|
|
1357
1357
|
if ((tmp_12 == null ? null : new Comment(tmp_12)) == null) {
|
|
@@ -1359,11 +1359,11 @@ function produce(_this__u8e3s4) {
|
|
|
1359
1359
|
} else {
|
|
1360
1360
|
tmp_11 = _Comment___get_value__impl__8r3pla(tmp4_safe_receiver);
|
|
1361
1361
|
}
|
|
1362
|
-
tmp = new WsRefined(tmp_10, tmp_11, produce_7(_this__u8e3s4.
|
|
1362
|
+
tmp = new WsRefined(tmp_10, tmp_11, produce_7(_this__u8e3s4.t26_1));
|
|
1363
1363
|
} else {
|
|
1364
1364
|
if (_this__u8e3s4 instanceof Union) {
|
|
1365
|
-
var tmp_13 = _this__u8e3s4.
|
|
1366
|
-
var tmp5_safe_receiver = _this__u8e3s4.
|
|
1365
|
+
var tmp_13 = _this__u8e3s4.i24_1.b1();
|
|
1366
|
+
var tmp5_safe_receiver = _this__u8e3s4.g24_1;
|
|
1367
1367
|
var tmp_14;
|
|
1368
1368
|
var tmp_15 = tmp5_safe_receiver;
|
|
1369
1369
|
if ((tmp_15 == null ? null : new Comment(tmp_15)) == null) {
|
|
@@ -1374,7 +1374,7 @@ function produce(_this__u8e3s4) {
|
|
|
1374
1374
|
var tmp_16 = tmp_14;
|
|
1375
1375
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1376
1376
|
// Inline function 'kotlin.collections.map' call
|
|
1377
|
-
var this_1 = _this__u8e3s4.
|
|
1377
|
+
var this_1 = _this__u8e3s4.j24_1;
|
|
1378
1378
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1379
1379
|
var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_1, 10));
|
|
1380
1380
|
var tmp0_iterator = this_1.g();
|
|
@@ -1388,7 +1388,7 @@ function produce(_this__u8e3s4) {
|
|
|
1388
1388
|
tmp = new WsUnion(tmp_13, tmp_16, tmp$ret$4);
|
|
1389
1389
|
} else {
|
|
1390
1390
|
if (_this__u8e3s4 instanceof Channel) {
|
|
1391
|
-
var tmp_17 = _this__u8e3s4.
|
|
1391
|
+
var tmp_17 = _this__u8e3s4.e24_1.b1();
|
|
1392
1392
|
var tmp6_safe_receiver = _this__u8e3s4.c24_1;
|
|
1393
1393
|
var tmp_18;
|
|
1394
1394
|
var tmp_19 = tmp6_safe_receiver;
|
|
@@ -1397,7 +1397,7 @@ function produce(_this__u8e3s4) {
|
|
|
1397
1397
|
} else {
|
|
1398
1398
|
tmp_18 = _Comment___get_value__impl__8r3pla(tmp6_safe_receiver);
|
|
1399
1399
|
}
|
|
1400
|
-
tmp = new WsChannel(tmp_17, tmp_18, produce_7(_this__u8e3s4.
|
|
1400
|
+
tmp = new WsChannel(tmp_17, tmp_18, produce_7(_this__u8e3s4.f24_1));
|
|
1401
1401
|
} else {
|
|
1402
1402
|
noWhenBranchMatchedException();
|
|
1403
1403
|
}
|
|
@@ -1411,7 +1411,7 @@ function produce(_this__u8e3s4) {
|
|
|
1411
1411
|
function produce_0(_this__u8e3s4) {
|
|
1412
1412
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1413
1413
|
// Inline function 'arrow.core.NonEmptyList.map' call
|
|
1414
|
-
var this_0 = _this__u8e3s4.
|
|
1414
|
+
var this_0 = _this__u8e3s4.s25_1;
|
|
1415
1415
|
// Inline function 'community.flock.wirespec.compiler.lib.produce.<anonymous>' call
|
|
1416
1416
|
var it = this_0.pk_1;
|
|
1417
1417
|
var tmp = produce_8(it);
|
|
@@ -1449,7 +1449,7 @@ function consume(_this__u8e3s4) {
|
|
|
1449
1449
|
function produce_1(_this__u8e3s4) {
|
|
1450
1450
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1451
1451
|
// Inline function 'kotlin.collections.map' call
|
|
1452
|
-
var this_0 = _this__u8e3s4.
|
|
1452
|
+
var this_0 = _this__u8e3s4.k24_1;
|
|
1453
1453
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1454
1454
|
var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_0, 10));
|
|
1455
1455
|
var tmp0_iterator = this_0.g();
|
|
@@ -1506,10 +1506,10 @@ function produce_3(_this__u8e3s4) {
|
|
|
1506
1506
|
// Inline function 'community.flock.wirespec.compiler.lib.produce.<anonymous>' call
|
|
1507
1507
|
var tmp;
|
|
1508
1508
|
if (item instanceof Literal) {
|
|
1509
|
-
tmp = new WsLiteral(item.
|
|
1509
|
+
tmp = new WsLiteral(item.y25_1);
|
|
1510
1510
|
} else {
|
|
1511
1511
|
if (item instanceof Param) {
|
|
1512
|
-
tmp = new WsParam(produce_10(item.
|
|
1512
|
+
tmp = new WsParam(produce_10(item.d25_1), produce_7(item.e25_1));
|
|
1513
1513
|
} else {
|
|
1514
1514
|
noWhenBranchMatchedException();
|
|
1515
1515
|
}
|
|
@@ -1564,16 +1564,16 @@ function produce_6(_this__u8e3s4) {
|
|
|
1564
1564
|
function produce_7(_this__u8e3s4) {
|
|
1565
1565
|
var tmp;
|
|
1566
1566
|
if (_this__u8e3s4 instanceof Any) {
|
|
1567
|
-
tmp = new WsAny(_this__u8e3s4.
|
|
1567
|
+
tmp = new WsAny(_this__u8e3s4.i29_1);
|
|
1568
1568
|
} else {
|
|
1569
1569
|
if (_this__u8e3s4 instanceof Unit) {
|
|
1570
|
-
tmp = new WsUnit(_this__u8e3s4.
|
|
1570
|
+
tmp = new WsUnit(_this__u8e3s4.m29_1);
|
|
1571
1571
|
} else {
|
|
1572
1572
|
if (_this__u8e3s4 instanceof Custom) {
|
|
1573
|
-
tmp = new WsCustom(_this__u8e3s4.
|
|
1573
|
+
tmp = new WsCustom(_this__u8e3s4.r29_1, _this__u8e3s4.s29_1);
|
|
1574
1574
|
} else {
|
|
1575
1575
|
if (_this__u8e3s4 instanceof Primitive) {
|
|
1576
|
-
tmp = new WsPrimitive(produce_13(_this__u8e3s4.
|
|
1576
|
+
tmp = new WsPrimitive(produce_13(_this__u8e3s4.v29_1), _this__u8e3s4.w29_1);
|
|
1577
1577
|
} else {
|
|
1578
1578
|
if (_this__u8e3s4 instanceof Dict) {
|
|
1579
1579
|
tmp = new WsDict(produce_7(_this__u8e3s4.u23_1), _this__u8e3s4.v23_1);
|
|
@@ -1593,7 +1593,7 @@ function produce_7(_this__u8e3s4) {
|
|
|
1593
1593
|
function produce_8(_this__u8e3s4) {
|
|
1594
1594
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1595
1595
|
// Inline function 'arrow.core.NonEmptyList.map' call
|
|
1596
|
-
var this_0 = _this__u8e3s4.
|
|
1596
|
+
var this_0 = _this__u8e3s4.u25_1;
|
|
1597
1597
|
// Inline function 'community.flock.wirespec.compiler.lib.produce.<anonymous>' call
|
|
1598
1598
|
var it = this_0.pk_1;
|
|
1599
1599
|
var tmp = produce(it);
|
|
@@ -1630,19 +1630,19 @@ function consume_0(_this__u8e3s4) {
|
|
|
1630
1630
|
return new Module(tmp, ensureNotNull(toNonEmptyListOrNull(destination)));
|
|
1631
1631
|
}
|
|
1632
1632
|
function produce_9(_this__u8e3s4) {
|
|
1633
|
-
return new WsField(produce_10(_this__u8e3s4.
|
|
1633
|
+
return new WsField(produce_10(_this__u8e3s4.r24_1), produce_7(_this__u8e3s4.s24_1));
|
|
1634
1634
|
}
|
|
1635
1635
|
function produce_10(_this__u8e3s4) {
|
|
1636
1636
|
return new WsFieldIdentifier(_this__u8e3s4.b1());
|
|
1637
1637
|
}
|
|
1638
1638
|
function produce_11(_this__u8e3s4) {
|
|
1639
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1639
|
+
var tmp0_safe_receiver = _this__u8e3s4.f25_1;
|
|
1640
1640
|
return new WsRequest(tmp0_safe_receiver == null ? null : produce_14(tmp0_safe_receiver));
|
|
1641
1641
|
}
|
|
1642
1642
|
function produce_12(_this__u8e3s4) {
|
|
1643
1643
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1644
1644
|
// Inline function 'kotlin.collections.map' call
|
|
1645
|
-
var this_0 = _this__u8e3s4.
|
|
1645
|
+
var this_0 = _this__u8e3s4.j25_1;
|
|
1646
1646
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1647
1647
|
var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_0, 10));
|
|
1648
1648
|
var tmp0_iterator = this_0.g();
|
|
@@ -1653,8 +1653,8 @@ function produce_12(_this__u8e3s4) {
|
|
|
1653
1653
|
destination.e(tmp$ret$0);
|
|
1654
1654
|
}
|
|
1655
1655
|
var tmp = copyToArray(destination);
|
|
1656
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1657
|
-
return new WsResponse(_this__u8e3s4.
|
|
1656
|
+
var tmp0_safe_receiver = _this__u8e3s4.k25_1;
|
|
1657
|
+
return new WsResponse(_this__u8e3s4.i25_1, tmp, tmp0_safe_receiver == null ? null : produce_14(tmp0_safe_receiver));
|
|
1658
1658
|
}
|
|
1659
1659
|
function produce_13(_this__u8e3s4) {
|
|
1660
1660
|
var tmp;
|
|
@@ -1711,10 +1711,10 @@ function consume_1(_this__u8e3s4) {
|
|
|
1711
1711
|
return tmp;
|
|
1712
1712
|
}
|
|
1713
1713
|
function produce_14(_this__u8e3s4) {
|
|
1714
|
-
return new WsContent(_this__u8e3s4.
|
|
1714
|
+
return new WsContent(_this__u8e3s4.g25_1, produce_7(_this__u8e3s4.h25_1));
|
|
1715
1715
|
}
|
|
1716
1716
|
function consume_2(_this__u8e3s4) {
|
|
1717
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1717
|
+
var tmp0_safe_receiver = _this__u8e3s4.g2l_1;
|
|
1718
1718
|
var tmp;
|
|
1719
1719
|
if (tmp0_safe_receiver == null) {
|
|
1720
1720
|
tmp = null;
|
|
@@ -1722,11 +1722,12 @@ function consume_2(_this__u8e3s4) {
|
|
|
1722
1722
|
// Inline function 'kotlin.let' call
|
|
1723
1723
|
// Inline function 'kotlin.contracts.contract' call
|
|
1724
1724
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1725
|
-
tmp = Companion_instance.
|
|
1725
|
+
tmp = Companion_instance.i28(tmp0_safe_receiver);
|
|
1726
1726
|
}
|
|
1727
1727
|
var tmp_0 = tmp;
|
|
1728
|
-
var tmp_1 =
|
|
1729
|
-
var tmp_2 =
|
|
1728
|
+
var tmp_1 = emptyList();
|
|
1729
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.f2l_1);
|
|
1730
|
+
var tmp_3 = consume_8(_this__u8e3s4.method);
|
|
1730
1731
|
// Inline function 'kotlin.collections.map' call
|
|
1731
1732
|
var this_0 = _this__u8e3s4.path;
|
|
1732
1733
|
// Inline function 'kotlin.collections.mapTo' call
|
|
@@ -1740,7 +1741,7 @@ function consume_2(_this__u8e3s4) {
|
|
|
1740
1741
|
var tmp$ret$2 = consume_9(item);
|
|
1741
1742
|
destination.e(tmp$ret$2);
|
|
1742
1743
|
}
|
|
1743
|
-
var
|
|
1744
|
+
var tmp_4 = destination;
|
|
1744
1745
|
// Inline function 'kotlin.collections.map' call
|
|
1745
1746
|
var this_1 = _this__u8e3s4.queries;
|
|
1746
1747
|
// Inline function 'kotlin.collections.mapTo' call
|
|
@@ -1754,7 +1755,7 @@ function consume_2(_this__u8e3s4) {
|
|
|
1754
1755
|
var tmp$ret$5 = consume_10(item_0);
|
|
1755
1756
|
destination_0.e(tmp$ret$5);
|
|
1756
1757
|
}
|
|
1757
|
-
var
|
|
1758
|
+
var tmp_5 = destination_0;
|
|
1758
1759
|
// Inline function 'kotlin.collections.map' call
|
|
1759
1760
|
var this_2 = _this__u8e3s4.headers;
|
|
1760
1761
|
// Inline function 'kotlin.collections.mapTo' call
|
|
@@ -1768,7 +1769,7 @@ function consume_2(_this__u8e3s4) {
|
|
|
1768
1769
|
var tmp$ret$8 = consume_10(item_1);
|
|
1769
1770
|
destination_1.e(tmp$ret$8);
|
|
1770
1771
|
}
|
|
1771
|
-
var
|
|
1772
|
+
var tmp_6 = destination_1;
|
|
1772
1773
|
// Inline function 'kotlin.collections.map' call
|
|
1773
1774
|
var this_3 = _this__u8e3s4.requests;
|
|
1774
1775
|
// Inline function 'kotlin.collections.mapTo' call
|
|
@@ -1782,7 +1783,7 @@ function consume_2(_this__u8e3s4) {
|
|
|
1782
1783
|
var tmp$ret$11 = consume_11(item_2);
|
|
1783
1784
|
destination_2.e(tmp$ret$11);
|
|
1784
1785
|
}
|
|
1785
|
-
var
|
|
1786
|
+
var tmp_7 = destination_2;
|
|
1786
1787
|
// Inline function 'kotlin.collections.map' call
|
|
1787
1788
|
var this_4 = _this__u8e3s4.responses;
|
|
1788
1789
|
// Inline function 'kotlin.collections.mapTo' call
|
|
@@ -1796,11 +1797,10 @@ function consume_2(_this__u8e3s4) {
|
|
|
1796
1797
|
var tmp$ret$14 = consume_12(item_3);
|
|
1797
1798
|
destination_3.e(tmp$ret$14);
|
|
1798
1799
|
}
|
|
1799
|
-
return new Endpoint(tmp_0, tmp_1, tmp_2, tmp_3, tmp_4, tmp_5, tmp_6, destination_3);
|
|
1800
|
+
return new Endpoint(tmp_0, tmp_1, tmp_2, tmp_3, tmp_4, tmp_5, tmp_6, tmp_7, destination_3);
|
|
1800
1801
|
}
|
|
1801
1802
|
function consume_3(_this__u8e3s4) {
|
|
1802
|
-
var
|
|
1803
|
-
var tmp0_safe_receiver = _this__u8e3s4.f2l_1;
|
|
1803
|
+
var tmp0_safe_receiver = _this__u8e3s4.u2l_1;
|
|
1804
1804
|
var tmp;
|
|
1805
1805
|
if (tmp0_safe_receiver == null) {
|
|
1806
1806
|
tmp = null;
|
|
@@ -1808,15 +1808,12 @@ function consume_3(_this__u8e3s4) {
|
|
|
1808
1808
|
// Inline function 'kotlin.let' call
|
|
1809
1809
|
// Inline function 'kotlin.contracts.contract' call
|
|
1810
1810
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1811
|
-
tmp = Companion_instance.
|
|
1811
|
+
tmp = Companion_instance.i28(tmp0_safe_receiver);
|
|
1812
1812
|
}
|
|
1813
|
-
|
|
1814
|
-
var tmp3_entries = toSet(_this__u8e3s4.entries);
|
|
1815
|
-
return new Enum_0(tmp2_comment, tmp1_identifier, tmp3_entries);
|
|
1813
|
+
return new Enum_0(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.t2l_1), toSet(_this__u8e3s4.entries));
|
|
1816
1814
|
}
|
|
1817
1815
|
function consume_4(_this__u8e3s4) {
|
|
1818
|
-
var
|
|
1819
|
-
var tmp0_safe_receiver = _this__u8e3s4.p2l_1;
|
|
1816
|
+
var tmp0_safe_receiver = _this__u8e3s4.e2m_1;
|
|
1820
1817
|
var tmp;
|
|
1821
1818
|
if (tmp0_safe_receiver == null) {
|
|
1822
1819
|
tmp = null;
|
|
@@ -1824,24 +1821,24 @@ function consume_4(_this__u8e3s4) {
|
|
|
1824
1821
|
// Inline function 'kotlin.let' call
|
|
1825
1822
|
// Inline function 'kotlin.contracts.contract' call
|
|
1826
1823
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1827
|
-
tmp = Companion_instance.
|
|
1824
|
+
tmp = Companion_instance.i28(tmp0_safe_receiver);
|
|
1828
1825
|
}
|
|
1829
|
-
var
|
|
1830
|
-
var
|
|
1831
|
-
var
|
|
1832
|
-
var
|
|
1826
|
+
var tmp_0 = tmp;
|
|
1827
|
+
var tmp_1 = emptyList();
|
|
1828
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.d2m_1);
|
|
1829
|
+
var tmp_3 = consume_13(_this__u8e3s4.reference);
|
|
1830
|
+
var tmp1_elvis_lhs = tmp_3 instanceof Primitive ? tmp_3 : null;
|
|
1831
|
+
var tmp_4;
|
|
1833
1832
|
if (tmp1_elvis_lhs == null) {
|
|
1834
1833
|
var message = 'Cannot refine non-primitive type';
|
|
1835
1834
|
throw IllegalStateException_init_$Create$(toString(message));
|
|
1836
1835
|
} else {
|
|
1837
|
-
|
|
1836
|
+
tmp_4 = tmp1_elvis_lhs;
|
|
1838
1837
|
}
|
|
1839
|
-
|
|
1840
|
-
return new Refined(tmp3_comment, tmp2_identifier, tmp4_reference);
|
|
1838
|
+
return new Refined(tmp_0, tmp_1, tmp_2, tmp_4);
|
|
1841
1839
|
}
|
|
1842
1840
|
function consume_5(_this__u8e3s4) {
|
|
1843
|
-
var
|
|
1844
|
-
var tmp0_safe_receiver = _this__u8e3s4.m2k_1;
|
|
1841
|
+
var tmp0_safe_receiver = _this__u8e3s4.b2l_1;
|
|
1845
1842
|
var tmp;
|
|
1846
1843
|
if (tmp0_safe_receiver == null) {
|
|
1847
1844
|
tmp = null;
|
|
@@ -1849,9 +1846,11 @@ function consume_5(_this__u8e3s4) {
|
|
|
1849
1846
|
// Inline function 'kotlin.let' call
|
|
1850
1847
|
// Inline function 'kotlin.contracts.contract' call
|
|
1851
1848
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1852
|
-
tmp = Companion_instance.
|
|
1849
|
+
tmp = Companion_instance.i28(tmp0_safe_receiver);
|
|
1853
1850
|
}
|
|
1854
|
-
var
|
|
1851
|
+
var tmp_0 = tmp;
|
|
1852
|
+
var tmp_1 = emptyList();
|
|
1853
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.a2l_1);
|
|
1855
1854
|
// Inline function 'kotlin.collections.map' call
|
|
1856
1855
|
var this_0 = _this__u8e3s4.shape.value;
|
|
1857
1856
|
// Inline function 'kotlin.collections.mapTo' call
|
|
@@ -1865,13 +1864,10 @@ function consume_5(_this__u8e3s4) {
|
|
|
1865
1864
|
var tmp$ret$2 = consume_10(item);
|
|
1866
1865
|
destination.e(tmp$ret$2);
|
|
1867
1866
|
}
|
|
1868
|
-
|
|
1869
|
-
var tmp4_extends = emptyList();
|
|
1870
|
-
return new Type(tmp2_comment, tmp1_identifier, tmp3_shape, tmp4_extends);
|
|
1867
|
+
return new Type(tmp_0, tmp_1, tmp_2, new Shape(destination), emptyList());
|
|
1871
1868
|
}
|
|
1872
1869
|
function consume_6(_this__u8e3s4) {
|
|
1873
|
-
var
|
|
1874
|
-
var tmp0_safe_receiver = _this__u8e3s4.i2l_1;
|
|
1870
|
+
var tmp0_safe_receiver = _this__u8e3s4.x2l_1;
|
|
1875
1871
|
var tmp;
|
|
1876
1872
|
if (tmp0_safe_receiver == null) {
|
|
1877
1873
|
tmp = null;
|
|
@@ -1879,9 +1875,11 @@ function consume_6(_this__u8e3s4) {
|
|
|
1879
1875
|
// Inline function 'kotlin.let' call
|
|
1880
1876
|
// Inline function 'kotlin.contracts.contract' call
|
|
1881
1877
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1882
|
-
tmp = Companion_instance.
|
|
1878
|
+
tmp = Companion_instance.i28(tmp0_safe_receiver);
|
|
1883
1879
|
}
|
|
1884
|
-
var
|
|
1880
|
+
var tmp_0 = tmp;
|
|
1881
|
+
var tmp_1 = emptyList();
|
|
1882
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.w2l_1);
|
|
1885
1883
|
// Inline function 'kotlin.collections.map' call
|
|
1886
1884
|
var this_0 = _this__u8e3s4.entries;
|
|
1887
1885
|
// Inline function 'kotlin.collections.mapTo' call
|
|
@@ -1895,12 +1893,10 @@ function consume_6(_this__u8e3s4) {
|
|
|
1895
1893
|
var tmp$ret$2 = consume_13(item);
|
|
1896
1894
|
destination.e(tmp$ret$2);
|
|
1897
1895
|
}
|
|
1898
|
-
|
|
1899
|
-
return new Union(tmp2_comment, tmp1_identifier, tmp3_entries);
|
|
1896
|
+
return new Union(tmp_0, tmp_1, tmp_2, toSet_0(destination));
|
|
1900
1897
|
}
|
|
1901
1898
|
function consume_7(_this__u8e3s4) {
|
|
1902
|
-
var
|
|
1903
|
-
var tmp0_safe_receiver = _this__u8e3s4.l2l_1;
|
|
1899
|
+
var tmp0_safe_receiver = _this__u8e3s4.a2m_1;
|
|
1904
1900
|
var tmp;
|
|
1905
1901
|
if (tmp0_safe_receiver == null) {
|
|
1906
1902
|
tmp = null;
|
|
@@ -1908,11 +1904,9 @@ function consume_7(_this__u8e3s4) {
|
|
|
1908
1904
|
// Inline function 'kotlin.let' call
|
|
1909
1905
|
// Inline function 'kotlin.contracts.contract' call
|
|
1910
1906
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1911
|
-
tmp = Companion_instance.
|
|
1907
|
+
tmp = Companion_instance.i28(tmp0_safe_receiver);
|
|
1912
1908
|
}
|
|
1913
|
-
|
|
1914
|
-
var tmp3_reference = consume_13(_this__u8e3s4.reference);
|
|
1915
|
-
return new Channel(tmp2_comment, tmp1_identifier, tmp3_reference);
|
|
1909
|
+
return new Channel(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.z2l_1), consume_13(_this__u8e3s4.reference));
|
|
1916
1910
|
}
|
|
1917
1911
|
function consume_8(_this__u8e3s4) {
|
|
1918
1912
|
var tmp;
|
|
@@ -1961,7 +1955,10 @@ function consume_9(_this__u8e3s4) {
|
|
|
1961
1955
|
return tmp;
|
|
1962
1956
|
}
|
|
1963
1957
|
function consume_10(_this__u8e3s4) {
|
|
1964
|
-
|
|
1958
|
+
var tmp0_identifier = consume_14(_this__u8e3s4.identifier);
|
|
1959
|
+
var tmp1_annotations = emptyList();
|
|
1960
|
+
var tmp2_reference = consume_13(_this__u8e3s4.reference);
|
|
1961
|
+
return new Field(tmp0_identifier, tmp2_reference, tmp1_annotations);
|
|
1965
1962
|
}
|
|
1966
1963
|
function consume_11(_this__u8e3s4) {
|
|
1967
1964
|
var tmp0_safe_receiver = _this__u8e3s4.content;
|
|
@@ -1988,22 +1985,22 @@ function consume_12(_this__u8e3s4) {
|
|
|
1988
1985
|
function consume_13(_this__u8e3s4) {
|
|
1989
1986
|
var tmp;
|
|
1990
1987
|
if (_this__u8e3s4 instanceof WsAny) {
|
|
1991
|
-
tmp = new Any(_this__u8e3s4.
|
|
1988
|
+
tmp = new Any(_this__u8e3s4.j2m_1);
|
|
1992
1989
|
} else {
|
|
1993
1990
|
if (_this__u8e3s4 instanceof WsUnit) {
|
|
1994
|
-
tmp = new Unit(_this__u8e3s4.
|
|
1991
|
+
tmp = new Unit(_this__u8e3s4.k2m_1);
|
|
1995
1992
|
} else {
|
|
1996
1993
|
if (_this__u8e3s4 instanceof WsCustom) {
|
|
1997
|
-
tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.
|
|
1994
|
+
tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.o2m_1);
|
|
1998
1995
|
} else {
|
|
1999
1996
|
if (_this__u8e3s4 instanceof WsPrimitive) {
|
|
2000
|
-
tmp = new Primitive(consume_16(_this__u8e3s4.type), _this__u8e3s4.
|
|
1997
|
+
tmp = new Primitive(consume_16(_this__u8e3s4.type), _this__u8e3s4.p2m_1);
|
|
2001
1998
|
} else {
|
|
2002
1999
|
if (_this__u8e3s4 instanceof WsDict) {
|
|
2003
|
-
tmp = new Dict(consume_13(_this__u8e3s4.reference), _this__u8e3s4.
|
|
2000
|
+
tmp = new Dict(consume_13(_this__u8e3s4.reference), _this__u8e3s4.n2m_1);
|
|
2004
2001
|
} else {
|
|
2005
2002
|
if (_this__u8e3s4 instanceof WsIterable) {
|
|
2006
|
-
tmp = new Iterable(consume_13(_this__u8e3s4.reference), _this__u8e3s4.
|
|
2003
|
+
tmp = new Iterable(consume_13(_this__u8e3s4.reference), _this__u8e3s4.l2m_1);
|
|
2007
2004
|
} else {
|
|
2008
2005
|
noWhenBranchMatchedException();
|
|
2009
2006
|
}
|
|
@@ -2109,10 +2106,10 @@ function WsCompilationResult(result, errors) {
|
|
|
2109
2106
|
this.result = result;
|
|
2110
2107
|
this.errors = errors;
|
|
2111
2108
|
}
|
|
2112
|
-
protoOf(WsCompilationResult).
|
|
2109
|
+
protoOf(WsCompilationResult).x2m = function () {
|
|
2113
2110
|
return this.result;
|
|
2114
2111
|
};
|
|
2115
|
-
protoOf(WsCompilationResult).
|
|
2112
|
+
protoOf(WsCompilationResult).y2m = function () {
|
|
2116
2113
|
return this.errors;
|
|
2117
2114
|
};
|
|
2118
2115
|
function WsCompiled(value) {
|
|
@@ -2137,10 +2134,10 @@ function WsParseResult(result, errors) {
|
|
|
2137
2134
|
this.result = result;
|
|
2138
2135
|
this.errors = errors;
|
|
2139
2136
|
}
|
|
2140
|
-
protoOf(WsParseResult).
|
|
2137
|
+
protoOf(WsParseResult).x2m = function () {
|
|
2141
2138
|
return this.result;
|
|
2142
2139
|
};
|
|
2143
|
-
protoOf(WsParseResult).
|
|
2140
|
+
protoOf(WsParseResult).y2m = function () {
|
|
2144
2141
|
return this.errors;
|
|
2145
2142
|
};
|
|
2146
2143
|
function WsStringResult(result, errors) {
|
|
@@ -2149,20 +2146,20 @@ function WsStringResult(result, errors) {
|
|
|
2149
2146
|
this.result = result;
|
|
2150
2147
|
this.errors = errors;
|
|
2151
2148
|
}
|
|
2152
|
-
protoOf(WsStringResult).
|
|
2149
|
+
protoOf(WsStringResult).x2m = function () {
|
|
2153
2150
|
return this.result;
|
|
2154
2151
|
};
|
|
2155
|
-
protoOf(WsStringResult).
|
|
2152
|
+
protoOf(WsStringResult).y2m = function () {
|
|
2156
2153
|
return this.errors;
|
|
2157
2154
|
};
|
|
2158
2155
|
function WsEmitted(file, result) {
|
|
2159
2156
|
this.file = file;
|
|
2160
2157
|
this.result = result;
|
|
2161
2158
|
}
|
|
2162
|
-
protoOf(WsEmitted).
|
|
2159
|
+
protoOf(WsEmitted).z2m = function () {
|
|
2163
2160
|
return this.file;
|
|
2164
2161
|
};
|
|
2165
|
-
protoOf(WsEmitted).
|
|
2162
|
+
protoOf(WsEmitted).x2m = function () {
|
|
2166
2163
|
return this.result;
|
|
2167
2164
|
};
|
|
2168
2165
|
function produce_15(_this__u8e3s4) {
|
|
@@ -2238,10 +2235,10 @@ function WsTokenResult(tokens, error) {
|
|
|
2238
2235
|
this.tokens = tokens;
|
|
2239
2236
|
this.error = error;
|
|
2240
2237
|
}
|
|
2241
|
-
protoOf(WsTokenResult).
|
|
2238
|
+
protoOf(WsTokenResult).a2n = function () {
|
|
2242
2239
|
return this.tokens;
|
|
2243
2240
|
};
|
|
2244
|
-
protoOf(WsTokenResult).
|
|
2241
|
+
protoOf(WsTokenResult).j2k = function () {
|
|
2245
2242
|
return this.error;
|
|
2246
2243
|
};
|
|
2247
2244
|
protoOf(WsTokenResult).sd = function () {
|
|
@@ -2250,13 +2247,13 @@ protoOf(WsTokenResult).sd = function () {
|
|
|
2250
2247
|
protoOf(WsTokenResult).td = function () {
|
|
2251
2248
|
return this.error;
|
|
2252
2249
|
};
|
|
2253
|
-
protoOf(WsTokenResult).
|
|
2250
|
+
protoOf(WsTokenResult).b2n = function (tokens, error) {
|
|
2254
2251
|
return new WsTokenResult(tokens, error);
|
|
2255
2252
|
};
|
|
2256
2253
|
protoOf(WsTokenResult).copy = function (tokens, error, $super) {
|
|
2257
2254
|
tokens = tokens === VOID ? this.tokens : tokens;
|
|
2258
2255
|
error = error === VOID ? this.error : error;
|
|
2259
|
-
return this.
|
|
2256
|
+
return this.b2n(tokens, error);
|
|
2260
2257
|
};
|
|
2261
2258
|
protoOf(WsTokenResult).toString = function () {
|
|
2262
2259
|
return 'WsTokenResult(tokens=' + toString_0(this.tokens) + ', error=' + toString_0(this.error) + ')';
|
|
@@ -2301,12 +2298,12 @@ protoOf(WsTokens).hashCode = function () {
|
|
|
2301
2298
|
protoOf(WsTokens).sd = function () {
|
|
2302
2299
|
return this.value;
|
|
2303
2300
|
};
|
|
2304
|
-
protoOf(WsTokens).
|
|
2301
|
+
protoOf(WsTokens).c2n = function (value) {
|
|
2305
2302
|
return new WsTokens(value);
|
|
2306
2303
|
};
|
|
2307
2304
|
protoOf(WsTokens).copy = function (value, $super) {
|
|
2308
2305
|
value = value === VOID ? this.value : value;
|
|
2309
|
-
return this.
|
|
2306
|
+
return this.c2n(value);
|
|
2310
2307
|
};
|
|
2311
2308
|
protoOf(WsTokens).toString = function () {
|
|
2312
2309
|
return 'WsTokens(value=' + toString(this.value) + ')';
|
|
@@ -2323,7 +2320,7 @@ protoOf(WsToken).v1j = function () {
|
|
|
2323
2320
|
protoOf(WsToken).b1 = function () {
|
|
2324
2321
|
return this.value;
|
|
2325
2322
|
};
|
|
2326
|
-
protoOf(WsToken).
|
|
2323
|
+
protoOf(WsToken).d2n = function () {
|
|
2327
2324
|
return this.coordinates;
|
|
2328
2325
|
};
|
|
2329
2326
|
protoOf(WsToken).sd = function () {
|
|
@@ -2335,14 +2332,14 @@ protoOf(WsToken).td = function () {
|
|
|
2335
2332
|
protoOf(WsToken).uh = function () {
|
|
2336
2333
|
return this.coordinates;
|
|
2337
2334
|
};
|
|
2338
|
-
protoOf(WsToken).
|
|
2335
|
+
protoOf(WsToken).e2n = function (type, value, coordinates) {
|
|
2339
2336
|
return new WsToken(type, value, coordinates);
|
|
2340
2337
|
};
|
|
2341
2338
|
protoOf(WsToken).copy = function (type, value, coordinates, $super) {
|
|
2342
2339
|
type = type === VOID ? this.type : type;
|
|
2343
2340
|
value = value === VOID ? this.value : value;
|
|
2344
2341
|
coordinates = coordinates === VOID ? this.coordinates : coordinates;
|
|
2345
|
-
return this.
|
|
2342
|
+
return this.e2n(type, value, coordinates);
|
|
2346
2343
|
};
|
|
2347
2344
|
protoOf(WsToken).toString = function () {
|
|
2348
2345
|
return 'WsToken(type=' + this.type + ', value=' + this.value + ', coordinates=' + this.coordinates.toString() + ')';
|
|
@@ -2375,13 +2372,13 @@ function WsCoordinates(line, position, idxAndLength) {
|
|
|
2375
2372
|
this.position = position;
|
|
2376
2373
|
this.idxAndLength = idxAndLength;
|
|
2377
2374
|
}
|
|
2378
|
-
protoOf(WsCoordinates).
|
|
2375
|
+
protoOf(WsCoordinates).f2n = function () {
|
|
2379
2376
|
return this.line;
|
|
2380
2377
|
};
|
|
2381
|
-
protoOf(WsCoordinates).
|
|
2378
|
+
protoOf(WsCoordinates).g2n = function () {
|
|
2382
2379
|
return this.position;
|
|
2383
2380
|
};
|
|
2384
|
-
protoOf(WsCoordinates).
|
|
2381
|
+
protoOf(WsCoordinates).h2n = function () {
|
|
2385
2382
|
return this.idxAndLength;
|
|
2386
2383
|
};
|
|
2387
2384
|
protoOf(WsCoordinates).sd = function () {
|
|
@@ -2393,14 +2390,14 @@ protoOf(WsCoordinates).td = function () {
|
|
|
2393
2390
|
protoOf(WsCoordinates).uh = function () {
|
|
2394
2391
|
return this.idxAndLength;
|
|
2395
2392
|
};
|
|
2396
|
-
protoOf(WsCoordinates).
|
|
2393
|
+
protoOf(WsCoordinates).i2n = function (line, position, idxAndLength) {
|
|
2397
2394
|
return new WsCoordinates(line, position, idxAndLength);
|
|
2398
2395
|
};
|
|
2399
2396
|
protoOf(WsCoordinates).copy = function (line, position, idxAndLength, $super) {
|
|
2400
2397
|
line = line === VOID ? this.line : line;
|
|
2401
2398
|
position = position === VOID ? this.position : position;
|
|
2402
2399
|
idxAndLength = idxAndLength === VOID ? this.idxAndLength : idxAndLength;
|
|
2403
|
-
return this.
|
|
2400
|
+
return this.i2n(line, position, idxAndLength);
|
|
2404
2401
|
};
|
|
2405
2402
|
protoOf(WsCoordinates).toString = function () {
|
|
2406
2403
|
return 'WsCoordinates(line=' + this.line + ', position=' + this.position + ', idxAndLength=' + this.idxAndLength.toString() + ')';
|
|
@@ -2431,7 +2428,7 @@ function WsIndex(idx, length) {
|
|
|
2431
2428
|
this.idx = idx;
|
|
2432
2429
|
this.length = length;
|
|
2433
2430
|
}
|
|
2434
|
-
protoOf(WsIndex).
|
|
2431
|
+
protoOf(WsIndex).j2n = function () {
|
|
2435
2432
|
return this.idx;
|
|
2436
2433
|
};
|
|
2437
2434
|
protoOf(WsIndex).a = function () {
|
|
@@ -2443,13 +2440,13 @@ protoOf(WsIndex).sd = function () {
|
|
|
2443
2440
|
protoOf(WsIndex).td = function () {
|
|
2444
2441
|
return this.length;
|
|
2445
2442
|
};
|
|
2446
|
-
protoOf(WsIndex).
|
|
2443
|
+
protoOf(WsIndex).k2n = function (idx, length) {
|
|
2447
2444
|
return new WsIndex(idx, length);
|
|
2448
2445
|
};
|
|
2449
2446
|
protoOf(WsIndex).copy = function (idx, length, $super) {
|
|
2450
2447
|
idx = idx === VOID ? this.idx : idx;
|
|
2451
2448
|
length = length === VOID ? this.length : length;
|
|
2452
|
-
return this.
|
|
2449
|
+
return this.k2n(idx, length);
|
|
2453
2450
|
};
|
|
2454
2451
|
protoOf(WsIndex).toString = function () {
|
|
2455
2452
|
return 'WsIndex(idx=' + this.idx + ', length=' + this.length + ')';
|
|
@@ -2472,13 +2469,13 @@ protoOf(WsIndex).equals = function (other) {
|
|
|
2472
2469
|
return true;
|
|
2473
2470
|
};
|
|
2474
2471
|
function produce_18(_this__u8e3s4) {
|
|
2475
|
-
return new WsToken(name(_this__u8e3s4.
|
|
2472
|
+
return new WsToken(name(_this__u8e3s4.j27_1), _this__u8e3s4.i27_1, produce_19(_this__u8e3s4.k27_1));
|
|
2476
2473
|
}
|
|
2477
2474
|
function produce_19(_this__u8e3s4) {
|
|
2478
|
-
return new WsCoordinates(_this__u8e3s4.
|
|
2475
|
+
return new WsCoordinates(_this__u8e3s4.l27_1, _this__u8e3s4.m27_1, produce_20(_this__u8e3s4.n27_1));
|
|
2479
2476
|
}
|
|
2480
2477
|
function produce_20(_this__u8e3s4) {
|
|
2481
|
-
return new WsIndex(_this__u8e3s4.
|
|
2478
|
+
return new WsIndex(_this__u8e3s4.k2a_1, _this__u8e3s4.l2a_1);
|
|
2482
2479
|
}
|
|
2483
2480
|
function WsError(line, position, index, length, value) {
|
|
2484
2481
|
this.line = line;
|
|
@@ -2487,13 +2484,13 @@ function WsError(line, position, index, length, value) {
|
|
|
2487
2484
|
this.length = length;
|
|
2488
2485
|
this.value = value;
|
|
2489
2486
|
}
|
|
2490
|
-
protoOf(WsError).
|
|
2487
|
+
protoOf(WsError).f2n = function () {
|
|
2491
2488
|
return this.line;
|
|
2492
2489
|
};
|
|
2493
|
-
protoOf(WsError).
|
|
2490
|
+
protoOf(WsError).g2n = function () {
|
|
2494
2491
|
return this.position;
|
|
2495
2492
|
};
|
|
2496
|
-
protoOf(WsError).
|
|
2493
|
+
protoOf(WsError).l2n = function () {
|
|
2497
2494
|
return this.index;
|
|
2498
2495
|
};
|
|
2499
2496
|
protoOf(WsError).a = function () {
|
|
@@ -2511,13 +2508,13 @@ protoOf(WsError).td = function () {
|
|
|
2511
2508
|
protoOf(WsError).uh = function () {
|
|
2512
2509
|
return this.index;
|
|
2513
2510
|
};
|
|
2514
|
-
protoOf(WsError).
|
|
2511
|
+
protoOf(WsError).n2l = function () {
|
|
2515
2512
|
return this.length;
|
|
2516
2513
|
};
|
|
2517
|
-
protoOf(WsError).
|
|
2514
|
+
protoOf(WsError).o2l = function () {
|
|
2518
2515
|
return this.value;
|
|
2519
2516
|
};
|
|
2520
|
-
protoOf(WsError).
|
|
2517
|
+
protoOf(WsError).m2n = function (line, position, index, length, value) {
|
|
2521
2518
|
return new WsError(line, position, index, length, value);
|
|
2522
2519
|
};
|
|
2523
2520
|
protoOf(WsError).copy = function (line, position, index, length, value, $super) {
|
|
@@ -2526,7 +2523,7 @@ protoOf(WsError).copy = function (line, position, index, length, value, $super)
|
|
|
2526
2523
|
index = index === VOID ? this.index : index;
|
|
2527
2524
|
length = length === VOID ? this.length : length;
|
|
2528
2525
|
value = value === VOID ? this.value : value;
|
|
2529
|
-
return this.
|
|
2526
|
+
return this.m2n(line, position, index, length, value);
|
|
2530
2527
|
};
|
|
2531
2528
|
protoOf(WsError).toString = function () {
|
|
2532
2529
|
return 'WsError(line=' + this.line + ', position=' + this.position + ', index=' + this.index + ', length=' + this.length + ', value=' + this.value + ')';
|
|
@@ -2558,44 +2555,44 @@ protoOf(WsError).equals = function (other) {
|
|
|
2558
2555
|
return true;
|
|
2559
2556
|
};
|
|
2560
2557
|
function produce_21(_this__u8e3s4) {
|
|
2561
|
-
return new WsError(_this__u8e3s4.
|
|
2558
|
+
return new WsError(_this__u8e3s4.q27_1.l27_1, _this__u8e3s4.q27_1.m27_1, _this__u8e3s4.q27_1.n27_1.k2a_1 - _this__u8e3s4.q27_1.n27_1.l2a_1 | 0, _this__u8e3s4.q27_1.n27_1.l2a_1, _this__u8e3s4.r1());
|
|
2562
2559
|
}
|
|
2563
2560
|
//region block: post-declaration
|
|
2564
2561
|
defineProp(protoOf(WsType), 'identifier', function () {
|
|
2565
|
-
return this.
|
|
2562
|
+
return this.l26();
|
|
2566
2563
|
});
|
|
2567
2564
|
defineProp(protoOf(WsType), 'comment', function () {
|
|
2568
|
-
return this.
|
|
2565
|
+
return this.z2k();
|
|
2569
2566
|
});
|
|
2570
2567
|
defineProp(protoOf(WsEndpoint), 'identifier', function () {
|
|
2571
|
-
return this.
|
|
2568
|
+
return this.l26();
|
|
2572
2569
|
});
|
|
2573
2570
|
defineProp(protoOf(WsEndpoint), 'comment', function () {
|
|
2574
|
-
return this.
|
|
2571
|
+
return this.z2k();
|
|
2575
2572
|
});
|
|
2576
2573
|
defineProp(protoOf(WsEnum), 'identifier', function () {
|
|
2577
|
-
return this.
|
|
2574
|
+
return this.l26();
|
|
2578
2575
|
});
|
|
2579
2576
|
defineProp(protoOf(WsEnum), 'comment', function () {
|
|
2580
|
-
return this.
|
|
2577
|
+
return this.z2k();
|
|
2581
2578
|
});
|
|
2582
2579
|
defineProp(protoOf(WsUnion), 'identifier', function () {
|
|
2583
|
-
return this.
|
|
2580
|
+
return this.l26();
|
|
2584
2581
|
});
|
|
2585
2582
|
defineProp(protoOf(WsUnion), 'comment', function () {
|
|
2586
|
-
return this.
|
|
2583
|
+
return this.z2k();
|
|
2587
2584
|
});
|
|
2588
2585
|
defineProp(protoOf(WsChannel), 'identifier', function () {
|
|
2589
|
-
return this.
|
|
2586
|
+
return this.l26();
|
|
2590
2587
|
});
|
|
2591
2588
|
defineProp(protoOf(WsChannel), 'comment', function () {
|
|
2592
|
-
return this.
|
|
2589
|
+
return this.z2k();
|
|
2593
2590
|
});
|
|
2594
2591
|
defineProp(protoOf(WsRefined), 'identifier', function () {
|
|
2595
|
-
return this.
|
|
2592
|
+
return this.l26();
|
|
2596
2593
|
});
|
|
2597
2594
|
defineProp(protoOf(WsRefined), 'comment', function () {
|
|
2598
|
-
return this.
|
|
2595
|
+
return this.z2k();
|
|
2599
2596
|
});
|
|
2600
2597
|
defineProp(protoOf(WsMethod), 'name', protoOf(WsMethod).s2);
|
|
2601
2598
|
defineProp(protoOf(WsMethod), 'ordinal', protoOf(WsMethod).t2);
|