@flock/wirespec 0.15.13 → 0.16.0
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/arrow-arrow-atomic.mjs +11 -11
- package/arrow-arrow-core.mjs +84 -84
- package/clikt-clikt.mjs +1168 -1168
- package/colormath-root-colormath.mjs +427 -427
- package/kotlin-kotlin-stdlib.mjs +374 -310
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlin-openapi-bindings.mjs +5729 -5657
- package/kotlin-openapi-bindings.mjs.map +1 -1
- package/kotlin-rgxgen.mjs +1768 -1768
- package/kotlinx-io-kotlinx-io-core.mjs +380 -380
- package/kotlinx-serialization-kotlinx-serialization-core.mjs +1625 -1625
- package/kotlinx-serialization-kotlinx-serialization-core.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json.mjs +1295 -1295
- package/markdown.mjs +1872 -1872
- package/mordant-mordant.mjs +1642 -1642
- package/package.json +1 -1
- package/wirespec-src-compiler-core.mjs +3796 -2397
- package/wirespec-src-compiler-core.mjs.map +1 -1
- package/wirespec-src-compiler-lib.mjs +379 -371
- package/wirespec-src-compiler-lib.mjs.map +1 -1
- package/wirespec-src-converter-avro.mjs +513 -514
- package/wirespec-src-converter-avro.mjs.map +1 -1
- package/wirespec-src-converter-openapi.mjs +869 -673
- package/wirespec-src-converter-openapi.mjs.map +1 -1
- package/wirespec-src-plugin-arguments.mjs +310 -174
- package/wirespec-src-plugin-arguments.mjs.map +1 -1
- package/wirespec-src-plugin-cli.mjs +85 -85
- package/wirespec-src-plugin-npm.d.ts +3 -3
- package/wirespec-src-plugin-npm.mjs +27 -27
- package/wirespec-src-tools-generator.mjs +101 -31
- package/wirespec-src-tools-generator.mjs.map +1 -1
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
copyToArray2j022khrow2yi as copyToArray,
|
|
21
21
|
ensureNotNull1e947j3ixpazm as ensureNotNull,
|
|
22
22
|
toSet1glep2u1u9tcb as toSet,
|
|
23
|
+
IllegalStateException_init_$Create$1nm9y6jd3c9iy as IllegalStateException_init_$Create$,
|
|
23
24
|
emptyList1g2z5xcrvp2zy as emptyList,
|
|
24
25
|
toSet2orjxp16sotqu as toSet_0,
|
|
25
26
|
contentEqualsaf55p28mnw74 as contentEquals,
|
|
@@ -50,7 +51,6 @@ import {
|
|
|
50
51
|
String23kqvhe3sk098 as String_0,
|
|
51
52
|
Companion_instance1twsg5rpyxokb as Companion_instance,
|
|
52
53
|
DefinitionIdentifier21mzme854zakh as DefinitionIdentifier,
|
|
53
|
-
Validator1lvd572uwolmf as Validator,
|
|
54
54
|
Shape1dq3mrwqqa6gt as Shape,
|
|
55
55
|
Method_GET_getInstance8splzmy83d3a as Method_GET_getInstance,
|
|
56
56
|
Method_POST_getInstance1o71cgxp73yf as Method_POST_getInstance,
|
|
@@ -65,7 +65,6 @@ import {
|
|
|
65
65
|
Responseeuhlz3134lpv as Response,
|
|
66
66
|
FieldIdentifier2fnn30qixmpf as FieldIdentifier,
|
|
67
67
|
Content2l86jxk275n97 as Content,
|
|
68
|
-
String_instancephyttzykqgeu as String_instance,
|
|
69
68
|
Boolean_instance3qnzv8pgzox40 as Boolean_instance,
|
|
70
69
|
Bytes_instance1at7binw0nl40 as Bytes_instance,
|
|
71
70
|
name2tedo82t36o5w as name,
|
|
@@ -129,18 +128,18 @@ function WsNode() {
|
|
|
129
128
|
function WsAST(modules) {
|
|
130
129
|
this.modules = modules;
|
|
131
130
|
}
|
|
132
|
-
protoOf(WsAST).
|
|
131
|
+
protoOf(WsAST).m2k = function () {
|
|
133
132
|
return this.modules;
|
|
134
133
|
};
|
|
135
134
|
protoOf(WsAST).sd = function () {
|
|
136
135
|
return this.modules;
|
|
137
136
|
};
|
|
138
|
-
protoOf(WsAST).
|
|
137
|
+
protoOf(WsAST).n2k = function (modules) {
|
|
139
138
|
return new WsAST(modules);
|
|
140
139
|
};
|
|
141
140
|
protoOf(WsAST).copy = function (modules, $super) {
|
|
142
141
|
modules = modules === VOID ? this.modules : modules;
|
|
143
|
-
return this.
|
|
142
|
+
return this.n2k(modules);
|
|
144
143
|
};
|
|
145
144
|
protoOf(WsAST).toString = function () {
|
|
146
145
|
return 'WsAST(modules=' + toString(this.modules) + ')';
|
|
@@ -161,18 +160,18 @@ protoOf(WsAST).equals = function (other) {
|
|
|
161
160
|
function WsModule(statements) {
|
|
162
161
|
this.statements = statements;
|
|
163
162
|
}
|
|
164
|
-
protoOf(WsModule).
|
|
163
|
+
protoOf(WsModule).o2k = function () {
|
|
165
164
|
return this.statements;
|
|
166
165
|
};
|
|
167
166
|
protoOf(WsModule).sd = function () {
|
|
168
167
|
return this.statements;
|
|
169
168
|
};
|
|
170
|
-
protoOf(WsModule).
|
|
169
|
+
protoOf(WsModule).p2k = function (statements) {
|
|
171
170
|
return new WsModule(statements);
|
|
172
171
|
};
|
|
173
172
|
protoOf(WsModule).copy = function (statements, $super) {
|
|
174
173
|
statements = statements === VOID ? this.statements : statements;
|
|
175
|
-
return this.
|
|
174
|
+
return this.p2k(statements);
|
|
176
175
|
};
|
|
177
176
|
protoOf(WsModule).toString = function () {
|
|
178
177
|
return 'WsModule(statements=' + toString(this.statements) + ')';
|
|
@@ -193,43 +192,43 @@ protoOf(WsModule).equals = function (other) {
|
|
|
193
192
|
function WsDefinition() {
|
|
194
193
|
}
|
|
195
194
|
function WsType(identifier, comment, shape) {
|
|
196
|
-
this.
|
|
197
|
-
this.
|
|
195
|
+
this.r2k_1 = identifier;
|
|
196
|
+
this.s2k_1 = comment;
|
|
198
197
|
this.shape = shape;
|
|
199
198
|
}
|
|
200
|
-
protoOf(WsType).
|
|
201
|
-
return this.
|
|
199
|
+
protoOf(WsType).o24 = function () {
|
|
200
|
+
return this.r2k_1;
|
|
202
201
|
};
|
|
203
|
-
protoOf(WsType).
|
|
204
|
-
return this.
|
|
202
|
+
protoOf(WsType).q2k = function () {
|
|
203
|
+
return this.s2k_1;
|
|
205
204
|
};
|
|
206
|
-
protoOf(WsType).
|
|
205
|
+
protoOf(WsType).t2k = function () {
|
|
207
206
|
return this.shape;
|
|
208
207
|
};
|
|
209
208
|
protoOf(WsType).sd = function () {
|
|
210
|
-
return this.
|
|
209
|
+
return this.r2k_1;
|
|
211
210
|
};
|
|
212
211
|
protoOf(WsType).td = function () {
|
|
213
|
-
return this.
|
|
212
|
+
return this.s2k_1;
|
|
214
213
|
};
|
|
215
|
-
protoOf(WsType).
|
|
214
|
+
protoOf(WsType).uh = function () {
|
|
216
215
|
return this.shape;
|
|
217
216
|
};
|
|
218
|
-
protoOf(WsType).
|
|
217
|
+
protoOf(WsType).u2k = function (identifier, comment, shape) {
|
|
219
218
|
return new WsType(identifier, comment, shape);
|
|
220
219
|
};
|
|
221
220
|
protoOf(WsType).copy = function (identifier, comment, shape, $super) {
|
|
222
|
-
identifier = identifier === VOID ? this.
|
|
223
|
-
comment = comment === VOID ? this.
|
|
221
|
+
identifier = identifier === VOID ? this.r2k_1 : identifier;
|
|
222
|
+
comment = comment === VOID ? this.s2k_1 : comment;
|
|
224
223
|
shape = shape === VOID ? this.shape : shape;
|
|
225
|
-
return this.
|
|
224
|
+
return this.u2k(identifier, comment, shape);
|
|
226
225
|
};
|
|
227
226
|
protoOf(WsType).toString = function () {
|
|
228
|
-
return 'WsType(identifier=' + this.
|
|
227
|
+
return 'WsType(identifier=' + this.r2k_1 + ', comment=' + this.s2k_1 + ', shape=' + this.shape.toString() + ')';
|
|
229
228
|
};
|
|
230
229
|
protoOf(WsType).hashCode = function () {
|
|
231
|
-
var result = getStringHashCode(this.
|
|
232
|
-
result = imul(result, 31) + (this.
|
|
230
|
+
var result = getStringHashCode(this.r2k_1);
|
|
231
|
+
result = imul(result, 31) + (this.s2k_1 == null ? 0 : getStringHashCode(this.s2k_1)) | 0;
|
|
233
232
|
result = imul(result, 31) + this.shape.hashCode() | 0;
|
|
234
233
|
return result;
|
|
235
234
|
};
|
|
@@ -239,9 +238,9 @@ protoOf(WsType).equals = function (other) {
|
|
|
239
238
|
if (!(other instanceof WsType))
|
|
240
239
|
return false;
|
|
241
240
|
var tmp0_other_with_cast = other instanceof WsType ? other : THROW_CCE();
|
|
242
|
-
if (!(this.
|
|
241
|
+
if (!(this.r2k_1 === tmp0_other_with_cast.r2k_1))
|
|
243
242
|
return false;
|
|
244
|
-
if (!(this.
|
|
243
|
+
if (!(this.s2k_1 == tmp0_other_with_cast.s2k_1))
|
|
245
244
|
return false;
|
|
246
245
|
if (!this.shape.equals(tmp0_other_with_cast.shape))
|
|
247
246
|
return false;
|
|
@@ -256,12 +255,12 @@ protoOf(WsShape).b1 = function () {
|
|
|
256
255
|
protoOf(WsShape).sd = function () {
|
|
257
256
|
return this.value;
|
|
258
257
|
};
|
|
259
|
-
protoOf(WsShape).
|
|
258
|
+
protoOf(WsShape).v2k = function (value) {
|
|
260
259
|
return new WsShape(value);
|
|
261
260
|
};
|
|
262
261
|
protoOf(WsShape).copy = function (value, $super) {
|
|
263
262
|
value = value === VOID ? this.value : value;
|
|
264
|
-
return this.
|
|
263
|
+
return this.v2k(value);
|
|
265
264
|
};
|
|
266
265
|
protoOf(WsShape).toString = function () {
|
|
267
266
|
return 'WsShape(value=' + toString(this.value) + ')';
|
|
@@ -280,8 +279,8 @@ protoOf(WsShape).equals = function (other) {
|
|
|
280
279
|
return true;
|
|
281
280
|
};
|
|
282
281
|
function WsEndpoint(identifier, comment, method, path, queries, headers, requests, responses) {
|
|
283
|
-
this.
|
|
284
|
-
this.
|
|
282
|
+
this.w2k_1 = identifier;
|
|
283
|
+
this.x2k_1 = comment;
|
|
285
284
|
this.method = method;
|
|
286
285
|
this.path = path;
|
|
287
286
|
this.queries = queries;
|
|
@@ -289,74 +288,74 @@ function WsEndpoint(identifier, comment, method, path, queries, headers, request
|
|
|
289
288
|
this.requests = requests;
|
|
290
289
|
this.responses = responses;
|
|
291
290
|
}
|
|
292
|
-
protoOf(WsEndpoint).
|
|
293
|
-
return this.
|
|
291
|
+
protoOf(WsEndpoint).o24 = function () {
|
|
292
|
+
return this.w2k_1;
|
|
294
293
|
};
|
|
295
|
-
protoOf(WsEndpoint).
|
|
296
|
-
return this.
|
|
294
|
+
protoOf(WsEndpoint).q2k = function () {
|
|
295
|
+
return this.x2k_1;
|
|
297
296
|
};
|
|
298
|
-
protoOf(WsEndpoint).
|
|
297
|
+
protoOf(WsEndpoint).y2k = function () {
|
|
299
298
|
return this.method;
|
|
300
299
|
};
|
|
301
|
-
protoOf(WsEndpoint).
|
|
300
|
+
protoOf(WsEndpoint).z2k = function () {
|
|
302
301
|
return this.path;
|
|
303
302
|
};
|
|
304
|
-
protoOf(WsEndpoint).
|
|
303
|
+
protoOf(WsEndpoint).a2l = function () {
|
|
305
304
|
return this.queries;
|
|
306
305
|
};
|
|
307
|
-
protoOf(WsEndpoint).
|
|
306
|
+
protoOf(WsEndpoint).b2l = function () {
|
|
308
307
|
return this.headers;
|
|
309
308
|
};
|
|
310
|
-
protoOf(WsEndpoint).
|
|
309
|
+
protoOf(WsEndpoint).c2l = function () {
|
|
311
310
|
return this.requests;
|
|
312
311
|
};
|
|
313
|
-
protoOf(WsEndpoint).
|
|
312
|
+
protoOf(WsEndpoint).d2l = function () {
|
|
314
313
|
return this.responses;
|
|
315
314
|
};
|
|
316
315
|
protoOf(WsEndpoint).sd = function () {
|
|
317
|
-
return this.
|
|
316
|
+
return this.w2k_1;
|
|
318
317
|
};
|
|
319
318
|
protoOf(WsEndpoint).td = function () {
|
|
320
|
-
return this.
|
|
319
|
+
return this.x2k_1;
|
|
321
320
|
};
|
|
322
|
-
protoOf(WsEndpoint).
|
|
321
|
+
protoOf(WsEndpoint).uh = function () {
|
|
323
322
|
return this.method;
|
|
324
323
|
};
|
|
325
|
-
protoOf(WsEndpoint).
|
|
324
|
+
protoOf(WsEndpoint).e2l = function () {
|
|
326
325
|
return this.path;
|
|
327
326
|
};
|
|
328
|
-
protoOf(WsEndpoint).
|
|
327
|
+
protoOf(WsEndpoint).f2l = function () {
|
|
329
328
|
return this.queries;
|
|
330
329
|
};
|
|
331
|
-
protoOf(WsEndpoint).
|
|
330
|
+
protoOf(WsEndpoint).g2l = function () {
|
|
332
331
|
return this.headers;
|
|
333
332
|
};
|
|
334
|
-
protoOf(WsEndpoint).
|
|
333
|
+
protoOf(WsEndpoint).h2l = function () {
|
|
335
334
|
return this.requests;
|
|
336
335
|
};
|
|
337
|
-
protoOf(WsEndpoint).
|
|
336
|
+
protoOf(WsEndpoint).i2l = function () {
|
|
338
337
|
return this.responses;
|
|
339
338
|
};
|
|
340
|
-
protoOf(WsEndpoint).
|
|
339
|
+
protoOf(WsEndpoint).j2l = function (identifier, comment, method, path, queries, headers, requests, responses) {
|
|
341
340
|
return new WsEndpoint(identifier, comment, method, path, queries, headers, requests, responses);
|
|
342
341
|
};
|
|
343
342
|
protoOf(WsEndpoint).copy = function (identifier, comment, method, path, queries, headers, requests, responses, $super) {
|
|
344
|
-
identifier = identifier === VOID ? this.
|
|
345
|
-
comment = comment === VOID ? this.
|
|
343
|
+
identifier = identifier === VOID ? this.w2k_1 : identifier;
|
|
344
|
+
comment = comment === VOID ? this.x2k_1 : comment;
|
|
346
345
|
method = method === VOID ? this.method : method;
|
|
347
346
|
path = path === VOID ? this.path : path;
|
|
348
347
|
queries = queries === VOID ? this.queries : queries;
|
|
349
348
|
headers = headers === VOID ? this.headers : headers;
|
|
350
349
|
requests = requests === VOID ? this.requests : requests;
|
|
351
350
|
responses = responses === VOID ? this.responses : responses;
|
|
352
|
-
return this.
|
|
351
|
+
return this.j2l(identifier, comment, method, path, queries, headers, requests, responses);
|
|
353
352
|
};
|
|
354
353
|
protoOf(WsEndpoint).toString = function () {
|
|
355
|
-
return 'WsEndpoint(identifier=' + this.
|
|
354
|
+
return 'WsEndpoint(identifier=' + this.w2k_1 + ', comment=' + this.x2k_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) + ')';
|
|
356
355
|
};
|
|
357
356
|
protoOf(WsEndpoint).hashCode = function () {
|
|
358
|
-
var result = getStringHashCode(this.
|
|
359
|
-
result = imul(result, 31) + (this.
|
|
357
|
+
var result = getStringHashCode(this.w2k_1);
|
|
358
|
+
result = imul(result, 31) + (this.x2k_1 == null ? 0 : getStringHashCode(this.x2k_1)) | 0;
|
|
360
359
|
result = imul(result, 31) + this.method.hashCode() | 0;
|
|
361
360
|
result = imul(result, 31) + hashCode(this.path) | 0;
|
|
362
361
|
result = imul(result, 31) + hashCode(this.queries) | 0;
|
|
@@ -371,9 +370,9 @@ protoOf(WsEndpoint).equals = function (other) {
|
|
|
371
370
|
if (!(other instanceof WsEndpoint))
|
|
372
371
|
return false;
|
|
373
372
|
var tmp0_other_with_cast = other instanceof WsEndpoint ? other : THROW_CCE();
|
|
374
|
-
if (!(this.
|
|
373
|
+
if (!(this.w2k_1 === tmp0_other_with_cast.w2k_1))
|
|
375
374
|
return false;
|
|
376
|
-
if (!(this.
|
|
375
|
+
if (!(this.x2k_1 == tmp0_other_with_cast.x2k_1))
|
|
377
376
|
return false;
|
|
378
377
|
if (!this.method.equals(tmp0_other_with_cast.method))
|
|
379
378
|
return false;
|
|
@@ -390,43 +389,43 @@ protoOf(WsEndpoint).equals = function (other) {
|
|
|
390
389
|
return true;
|
|
391
390
|
};
|
|
392
391
|
function WsEnum(identifier, comment, entries) {
|
|
393
|
-
this.
|
|
394
|
-
this.
|
|
392
|
+
this.k2l_1 = identifier;
|
|
393
|
+
this.l2l_1 = comment;
|
|
395
394
|
this.entries = entries;
|
|
396
395
|
}
|
|
397
|
-
protoOf(WsEnum).
|
|
398
|
-
return this.
|
|
396
|
+
protoOf(WsEnum).o24 = function () {
|
|
397
|
+
return this.k2l_1;
|
|
399
398
|
};
|
|
400
|
-
protoOf(WsEnum).
|
|
401
|
-
return this.
|
|
399
|
+
protoOf(WsEnum).q2k = function () {
|
|
400
|
+
return this.l2l_1;
|
|
402
401
|
};
|
|
403
402
|
protoOf(WsEnum).z = function () {
|
|
404
403
|
return this.entries;
|
|
405
404
|
};
|
|
406
405
|
protoOf(WsEnum).sd = function () {
|
|
407
|
-
return this.
|
|
406
|
+
return this.k2l_1;
|
|
408
407
|
};
|
|
409
408
|
protoOf(WsEnum).td = function () {
|
|
410
|
-
return this.
|
|
409
|
+
return this.l2l_1;
|
|
411
410
|
};
|
|
412
|
-
protoOf(WsEnum).
|
|
411
|
+
protoOf(WsEnum).uh = function () {
|
|
413
412
|
return this.entries;
|
|
414
413
|
};
|
|
415
|
-
protoOf(WsEnum).
|
|
414
|
+
protoOf(WsEnum).m2l = function (identifier, comment, entries) {
|
|
416
415
|
return new WsEnum(identifier, comment, entries);
|
|
417
416
|
};
|
|
418
417
|
protoOf(WsEnum).copy = function (identifier, comment, entries, $super) {
|
|
419
|
-
identifier = identifier === VOID ? this.
|
|
420
|
-
comment = comment === VOID ? this.
|
|
418
|
+
identifier = identifier === VOID ? this.k2l_1 : identifier;
|
|
419
|
+
comment = comment === VOID ? this.l2l_1 : comment;
|
|
421
420
|
entries = entries === VOID ? this.entries : entries;
|
|
422
|
-
return this.
|
|
421
|
+
return this.m2l(identifier, comment, entries);
|
|
423
422
|
};
|
|
424
423
|
protoOf(WsEnum).toString = function () {
|
|
425
|
-
return 'WsEnum(identifier=' + this.
|
|
424
|
+
return 'WsEnum(identifier=' + this.k2l_1 + ', comment=' + this.l2l_1 + ', entries=' + toString(this.entries) + ')';
|
|
426
425
|
};
|
|
427
426
|
protoOf(WsEnum).hashCode = function () {
|
|
428
|
-
var result = getStringHashCode(this.
|
|
429
|
-
result = imul(result, 31) + (this.
|
|
427
|
+
var result = getStringHashCode(this.k2l_1);
|
|
428
|
+
result = imul(result, 31) + (this.l2l_1 == null ? 0 : getStringHashCode(this.l2l_1)) | 0;
|
|
430
429
|
result = imul(result, 31) + hashCode(this.entries) | 0;
|
|
431
430
|
return result;
|
|
432
431
|
};
|
|
@@ -436,52 +435,52 @@ protoOf(WsEnum).equals = function (other) {
|
|
|
436
435
|
if (!(other instanceof WsEnum))
|
|
437
436
|
return false;
|
|
438
437
|
var tmp0_other_with_cast = other instanceof WsEnum ? other : THROW_CCE();
|
|
439
|
-
if (!(this.
|
|
438
|
+
if (!(this.k2l_1 === tmp0_other_with_cast.k2l_1))
|
|
440
439
|
return false;
|
|
441
|
-
if (!(this.
|
|
440
|
+
if (!(this.l2l_1 == tmp0_other_with_cast.l2l_1))
|
|
442
441
|
return false;
|
|
443
442
|
if (!equals(this.entries, tmp0_other_with_cast.entries))
|
|
444
443
|
return false;
|
|
445
444
|
return true;
|
|
446
445
|
};
|
|
447
446
|
function WsUnion(identifier, comment, entries) {
|
|
448
|
-
this.
|
|
449
|
-
this.
|
|
447
|
+
this.n2l_1 = identifier;
|
|
448
|
+
this.o2l_1 = comment;
|
|
450
449
|
this.entries = entries;
|
|
451
450
|
}
|
|
452
|
-
protoOf(WsUnion).
|
|
453
|
-
return this.
|
|
451
|
+
protoOf(WsUnion).o24 = function () {
|
|
452
|
+
return this.n2l_1;
|
|
454
453
|
};
|
|
455
|
-
protoOf(WsUnion).
|
|
456
|
-
return this.
|
|
454
|
+
protoOf(WsUnion).q2k = function () {
|
|
455
|
+
return this.o2l_1;
|
|
457
456
|
};
|
|
458
457
|
protoOf(WsUnion).z = function () {
|
|
459
458
|
return this.entries;
|
|
460
459
|
};
|
|
461
460
|
protoOf(WsUnion).sd = function () {
|
|
462
|
-
return this.
|
|
461
|
+
return this.n2l_1;
|
|
463
462
|
};
|
|
464
463
|
protoOf(WsUnion).td = function () {
|
|
465
|
-
return this.
|
|
464
|
+
return this.o2l_1;
|
|
466
465
|
};
|
|
467
|
-
protoOf(WsUnion).
|
|
466
|
+
protoOf(WsUnion).uh = function () {
|
|
468
467
|
return this.entries;
|
|
469
468
|
};
|
|
470
|
-
protoOf(WsUnion).
|
|
469
|
+
protoOf(WsUnion).p2l = function (identifier, comment, entries) {
|
|
471
470
|
return new WsUnion(identifier, comment, entries);
|
|
472
471
|
};
|
|
473
472
|
protoOf(WsUnion).copy = function (identifier, comment, entries, $super) {
|
|
474
|
-
identifier = identifier === VOID ? this.
|
|
475
|
-
comment = comment === VOID ? this.
|
|
473
|
+
identifier = identifier === VOID ? this.n2l_1 : identifier;
|
|
474
|
+
comment = comment === VOID ? this.o2l_1 : comment;
|
|
476
475
|
entries = entries === VOID ? this.entries : entries;
|
|
477
|
-
return this.
|
|
476
|
+
return this.p2l(identifier, comment, entries);
|
|
478
477
|
};
|
|
479
478
|
protoOf(WsUnion).toString = function () {
|
|
480
|
-
return 'WsUnion(identifier=' + this.
|
|
479
|
+
return 'WsUnion(identifier=' + this.n2l_1 + ', comment=' + this.o2l_1 + ', entries=' + toString(this.entries) + ')';
|
|
481
480
|
};
|
|
482
481
|
protoOf(WsUnion).hashCode = function () {
|
|
483
|
-
var result = getStringHashCode(this.
|
|
484
|
-
result = imul(result, 31) + (this.
|
|
482
|
+
var result = getStringHashCode(this.n2l_1);
|
|
483
|
+
result = imul(result, 31) + (this.o2l_1 == null ? 0 : getStringHashCode(this.o2l_1)) | 0;
|
|
485
484
|
result = imul(result, 31) + hashCode(this.entries) | 0;
|
|
486
485
|
return result;
|
|
487
486
|
};
|
|
@@ -491,52 +490,52 @@ protoOf(WsUnion).equals = function (other) {
|
|
|
491
490
|
if (!(other instanceof WsUnion))
|
|
492
491
|
return false;
|
|
493
492
|
var tmp0_other_with_cast = other instanceof WsUnion ? other : THROW_CCE();
|
|
494
|
-
if (!(this.
|
|
493
|
+
if (!(this.n2l_1 === tmp0_other_with_cast.n2l_1))
|
|
495
494
|
return false;
|
|
496
|
-
if (!(this.
|
|
495
|
+
if (!(this.o2l_1 == tmp0_other_with_cast.o2l_1))
|
|
497
496
|
return false;
|
|
498
497
|
if (!equals(this.entries, tmp0_other_with_cast.entries))
|
|
499
498
|
return false;
|
|
500
499
|
return true;
|
|
501
500
|
};
|
|
502
501
|
function WsChannel(identifier, comment, reference) {
|
|
503
|
-
this.
|
|
504
|
-
this.
|
|
502
|
+
this.q2l_1 = identifier;
|
|
503
|
+
this.r2l_1 = comment;
|
|
505
504
|
this.reference = reference;
|
|
506
505
|
}
|
|
507
|
-
protoOf(WsChannel).
|
|
508
|
-
return this.
|
|
506
|
+
protoOf(WsChannel).o24 = function () {
|
|
507
|
+
return this.q2l_1;
|
|
509
508
|
};
|
|
510
|
-
protoOf(WsChannel).
|
|
511
|
-
return this.
|
|
509
|
+
protoOf(WsChannel).q2k = function () {
|
|
510
|
+
return this.r2l_1;
|
|
512
511
|
};
|
|
513
|
-
protoOf(WsChannel).
|
|
512
|
+
protoOf(WsChannel).s2l = function () {
|
|
514
513
|
return this.reference;
|
|
515
514
|
};
|
|
516
515
|
protoOf(WsChannel).sd = function () {
|
|
517
|
-
return this.
|
|
516
|
+
return this.q2l_1;
|
|
518
517
|
};
|
|
519
518
|
protoOf(WsChannel).td = function () {
|
|
520
|
-
return this.
|
|
519
|
+
return this.r2l_1;
|
|
521
520
|
};
|
|
522
|
-
protoOf(WsChannel).
|
|
521
|
+
protoOf(WsChannel).uh = function () {
|
|
523
522
|
return this.reference;
|
|
524
523
|
};
|
|
525
|
-
protoOf(WsChannel).
|
|
524
|
+
protoOf(WsChannel).t2l = function (identifier, comment, reference) {
|
|
526
525
|
return new WsChannel(identifier, comment, reference);
|
|
527
526
|
};
|
|
528
527
|
protoOf(WsChannel).copy = function (identifier, comment, reference, $super) {
|
|
529
|
-
identifier = identifier === VOID ? this.
|
|
530
|
-
comment = comment === VOID ? this.
|
|
528
|
+
identifier = identifier === VOID ? this.q2l_1 : identifier;
|
|
529
|
+
comment = comment === VOID ? this.r2l_1 : comment;
|
|
531
530
|
reference = reference === VOID ? this.reference : reference;
|
|
532
|
-
return this.
|
|
531
|
+
return this.t2l(identifier, comment, reference);
|
|
533
532
|
};
|
|
534
533
|
protoOf(WsChannel).toString = function () {
|
|
535
|
-
return 'WsChannel(identifier=' + this.
|
|
534
|
+
return 'WsChannel(identifier=' + this.q2l_1 + ', comment=' + this.r2l_1 + ', reference=' + toString(this.reference) + ')';
|
|
536
535
|
};
|
|
537
536
|
protoOf(WsChannel).hashCode = function () {
|
|
538
|
-
var result = getStringHashCode(this.
|
|
539
|
-
result = imul(result, 31) + (this.
|
|
537
|
+
var result = getStringHashCode(this.q2l_1);
|
|
538
|
+
result = imul(result, 31) + (this.r2l_1 == null ? 0 : getStringHashCode(this.r2l_1)) | 0;
|
|
540
539
|
result = imul(result, 31) + hashCode(this.reference) | 0;
|
|
541
540
|
return result;
|
|
542
541
|
};
|
|
@@ -546,53 +545,53 @@ protoOf(WsChannel).equals = function (other) {
|
|
|
546
545
|
if (!(other instanceof WsChannel))
|
|
547
546
|
return false;
|
|
548
547
|
var tmp0_other_with_cast = other instanceof WsChannel ? other : THROW_CCE();
|
|
549
|
-
if (!(this.
|
|
548
|
+
if (!(this.q2l_1 === tmp0_other_with_cast.q2l_1))
|
|
550
549
|
return false;
|
|
551
|
-
if (!(this.
|
|
550
|
+
if (!(this.r2l_1 == tmp0_other_with_cast.r2l_1))
|
|
552
551
|
return false;
|
|
553
552
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
554
553
|
return false;
|
|
555
554
|
return true;
|
|
556
555
|
};
|
|
557
|
-
function WsRefined(identifier, comment,
|
|
558
|
-
this.
|
|
559
|
-
this.
|
|
560
|
-
this.
|
|
556
|
+
function WsRefined(identifier, comment, reference) {
|
|
557
|
+
this.u2l_1 = identifier;
|
|
558
|
+
this.v2l_1 = comment;
|
|
559
|
+
this.reference = reference;
|
|
561
560
|
}
|
|
562
|
-
protoOf(WsRefined).
|
|
563
|
-
return this.
|
|
561
|
+
protoOf(WsRefined).o24 = function () {
|
|
562
|
+
return this.u2l_1;
|
|
564
563
|
};
|
|
565
|
-
protoOf(WsRefined).
|
|
566
|
-
return this.
|
|
564
|
+
protoOf(WsRefined).q2k = function () {
|
|
565
|
+
return this.v2l_1;
|
|
567
566
|
};
|
|
568
|
-
protoOf(WsRefined).
|
|
569
|
-
return this.
|
|
567
|
+
protoOf(WsRefined).s2l = function () {
|
|
568
|
+
return this.reference;
|
|
570
569
|
};
|
|
571
570
|
protoOf(WsRefined).sd = function () {
|
|
572
|
-
return this.
|
|
571
|
+
return this.u2l_1;
|
|
573
572
|
};
|
|
574
573
|
protoOf(WsRefined).td = function () {
|
|
575
|
-
return this.
|
|
574
|
+
return this.v2l_1;
|
|
576
575
|
};
|
|
577
|
-
protoOf(WsRefined).
|
|
578
|
-
return this.
|
|
576
|
+
protoOf(WsRefined).uh = function () {
|
|
577
|
+
return this.reference;
|
|
579
578
|
};
|
|
580
|
-
protoOf(WsRefined).
|
|
581
|
-
return new WsRefined(identifier, comment,
|
|
579
|
+
protoOf(WsRefined).t2l = function (identifier, comment, reference) {
|
|
580
|
+
return new WsRefined(identifier, comment, reference);
|
|
582
581
|
};
|
|
583
|
-
protoOf(WsRefined).copy = function (identifier, comment,
|
|
584
|
-
identifier = identifier === VOID ? this.
|
|
585
|
-
comment = comment === VOID ? this.
|
|
586
|
-
|
|
587
|
-
return this.
|
|
582
|
+
protoOf(WsRefined).copy = function (identifier, comment, reference, $super) {
|
|
583
|
+
identifier = identifier === VOID ? this.u2l_1 : identifier;
|
|
584
|
+
comment = comment === VOID ? this.v2l_1 : comment;
|
|
585
|
+
reference = reference === VOID ? this.reference : reference;
|
|
586
|
+
return this.t2l(identifier, comment, reference);
|
|
588
587
|
};
|
|
589
588
|
protoOf(WsRefined).toString = function () {
|
|
590
|
-
return 'WsRefined(identifier=' + this.
|
|
589
|
+
return 'WsRefined(identifier=' + this.u2l_1 + ', comment=' + this.v2l_1 + ', reference=' + toString(this.reference) + ')';
|
|
591
590
|
};
|
|
592
591
|
protoOf(WsRefined).hashCode = function () {
|
|
593
|
-
var result = getStringHashCode(this.
|
|
594
|
-
result = imul(result, 31) + (this.
|
|
595
|
-
result = imul(result, 31) +
|
|
592
|
+
var result = getStringHashCode(this.u2l_1);
|
|
593
|
+
result = imul(result, 31) + (this.v2l_1 == null ? 0 : getStringHashCode(this.v2l_1)) | 0;
|
|
594
|
+
result = imul(result, 31) + hashCode(this.reference) | 0;
|
|
596
595
|
return result;
|
|
597
596
|
};
|
|
598
597
|
protoOf(WsRefined).equals = function (other) {
|
|
@@ -601,11 +600,11 @@ protoOf(WsRefined).equals = function (other) {
|
|
|
601
600
|
if (!(other instanceof WsRefined))
|
|
602
601
|
return false;
|
|
603
602
|
var tmp0_other_with_cast = other instanceof WsRefined ? other : THROW_CCE();
|
|
604
|
-
if (!(this.
|
|
603
|
+
if (!(this.u2l_1 === tmp0_other_with_cast.u2l_1))
|
|
605
604
|
return false;
|
|
606
|
-
if (!(this.
|
|
605
|
+
if (!(this.v2l_1 == tmp0_other_with_cast.v2l_1))
|
|
607
606
|
return false;
|
|
608
|
-
if (!(this.
|
|
607
|
+
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
609
608
|
return false;
|
|
610
609
|
return true;
|
|
611
610
|
};
|
|
@@ -672,12 +671,12 @@ protoOf(WsLiteral).b1 = function () {
|
|
|
672
671
|
protoOf(WsLiteral).sd = function () {
|
|
673
672
|
return this.value;
|
|
674
673
|
};
|
|
675
|
-
protoOf(WsLiteral).
|
|
674
|
+
protoOf(WsLiteral).y2l = function (value) {
|
|
676
675
|
return new WsLiteral(value);
|
|
677
676
|
};
|
|
678
677
|
protoOf(WsLiteral).copy = function (value, $super) {
|
|
679
678
|
value = value === VOID ? this.value : value;
|
|
680
|
-
return this.
|
|
679
|
+
return this.y2l(value);
|
|
681
680
|
};
|
|
682
681
|
protoOf(WsLiteral).toString = function () {
|
|
683
682
|
return 'WsLiteral(value=' + this.value + ')';
|
|
@@ -699,10 +698,10 @@ function WsParam(identifier, reference) {
|
|
|
699
698
|
this.identifier = identifier;
|
|
700
699
|
this.reference = reference;
|
|
701
700
|
}
|
|
702
|
-
protoOf(WsParam).
|
|
701
|
+
protoOf(WsParam).o24 = function () {
|
|
703
702
|
return this.identifier;
|
|
704
703
|
};
|
|
705
|
-
protoOf(WsParam).
|
|
704
|
+
protoOf(WsParam).s2l = function () {
|
|
706
705
|
return this.reference;
|
|
707
706
|
};
|
|
708
707
|
protoOf(WsParam).sd = function () {
|
|
@@ -711,13 +710,13 @@ protoOf(WsParam).sd = function () {
|
|
|
711
710
|
protoOf(WsParam).td = function () {
|
|
712
711
|
return this.reference;
|
|
713
712
|
};
|
|
714
|
-
protoOf(WsParam).
|
|
713
|
+
protoOf(WsParam).z2l = function (identifier, reference) {
|
|
715
714
|
return new WsParam(identifier, reference);
|
|
716
715
|
};
|
|
717
716
|
protoOf(WsParam).copy = function (identifier, reference, $super) {
|
|
718
717
|
identifier = identifier === VOID ? this.identifier : identifier;
|
|
719
718
|
reference = reference === VOID ? this.reference : reference;
|
|
720
|
-
return this.
|
|
719
|
+
return this.z2l(identifier, reference);
|
|
721
720
|
};
|
|
722
721
|
protoOf(WsParam).toString = function () {
|
|
723
722
|
return 'WsParam(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
|
|
@@ -748,12 +747,12 @@ protoOf(Shape_0).b1 = function () {
|
|
|
748
747
|
protoOf(Shape_0).sd = function () {
|
|
749
748
|
return this.value;
|
|
750
749
|
};
|
|
751
|
-
protoOf(Shape_0).
|
|
750
|
+
protoOf(Shape_0).v2k = function (value) {
|
|
752
751
|
return new Shape_0(value);
|
|
753
752
|
};
|
|
754
753
|
protoOf(Shape_0).copy = function (value, $super) {
|
|
755
754
|
value = value === VOID ? this.value : value;
|
|
756
|
-
return this.
|
|
755
|
+
return this.v2k(value);
|
|
757
756
|
};
|
|
758
757
|
protoOf(Shape_0).toString = function () {
|
|
759
758
|
return 'Shape(value=' + toString(this.value) + ')';
|
|
@@ -775,10 +774,10 @@ function WsField(identifier, reference) {
|
|
|
775
774
|
this.identifier = identifier;
|
|
776
775
|
this.reference = reference;
|
|
777
776
|
}
|
|
778
|
-
protoOf(WsField).
|
|
777
|
+
protoOf(WsField).o24 = function () {
|
|
779
778
|
return this.identifier;
|
|
780
779
|
};
|
|
781
|
-
protoOf(WsField).
|
|
780
|
+
protoOf(WsField).s2l = function () {
|
|
782
781
|
return this.reference;
|
|
783
782
|
};
|
|
784
783
|
protoOf(WsField).sd = function () {
|
|
@@ -787,13 +786,13 @@ protoOf(WsField).sd = function () {
|
|
|
787
786
|
protoOf(WsField).td = function () {
|
|
788
787
|
return this.reference;
|
|
789
788
|
};
|
|
790
|
-
protoOf(WsField).
|
|
789
|
+
protoOf(WsField).z2l = function (identifier, reference) {
|
|
791
790
|
return new WsField(identifier, reference);
|
|
792
791
|
};
|
|
793
792
|
protoOf(WsField).copy = function (identifier, reference, $super) {
|
|
794
793
|
identifier = identifier === VOID ? this.identifier : identifier;
|
|
795
794
|
reference = reference === VOID ? this.reference : reference;
|
|
796
|
-
return this.
|
|
795
|
+
return this.z2l(identifier, reference);
|
|
797
796
|
};
|
|
798
797
|
protoOf(WsField).toString = function () {
|
|
799
798
|
return 'WsField(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
|
|
@@ -826,12 +825,12 @@ protoOf(WsClassIdentifier).b1 = function () {
|
|
|
826
825
|
protoOf(WsClassIdentifier).sd = function () {
|
|
827
826
|
return this.value;
|
|
828
827
|
};
|
|
829
|
-
protoOf(WsClassIdentifier).
|
|
828
|
+
protoOf(WsClassIdentifier).y2l = function (value) {
|
|
830
829
|
return new WsClassIdentifier(value);
|
|
831
830
|
};
|
|
832
831
|
protoOf(WsClassIdentifier).copy = function (value, $super) {
|
|
833
832
|
value = value === VOID ? this.value : value;
|
|
834
|
-
return this.
|
|
833
|
+
return this.y2l(value);
|
|
835
834
|
};
|
|
836
835
|
protoOf(WsClassIdentifier).toString = function () {
|
|
837
836
|
return 'WsClassIdentifier(value=' + this.value + ')';
|
|
@@ -858,12 +857,12 @@ protoOf(WsFieldIdentifier).b1 = function () {
|
|
|
858
857
|
protoOf(WsFieldIdentifier).sd = function () {
|
|
859
858
|
return this.value;
|
|
860
859
|
};
|
|
861
|
-
protoOf(WsFieldIdentifier).
|
|
860
|
+
protoOf(WsFieldIdentifier).y2l = function (value) {
|
|
862
861
|
return new WsFieldIdentifier(value);
|
|
863
862
|
};
|
|
864
863
|
protoOf(WsFieldIdentifier).copy = function (value, $super) {
|
|
865
864
|
value = value === VOID ? this.value : value;
|
|
866
|
-
return this.
|
|
865
|
+
return this.y2l(value);
|
|
867
866
|
};
|
|
868
867
|
protoOf(WsFieldIdentifier).toString = function () {
|
|
869
868
|
return 'WsFieldIdentifier(value=' + this.value + ')';
|
|
@@ -884,26 +883,26 @@ protoOf(WsFieldIdentifier).equals = function (other) {
|
|
|
884
883
|
function WsReference() {
|
|
885
884
|
}
|
|
886
885
|
function WsAny(isNullable) {
|
|
887
|
-
this.
|
|
886
|
+
this.a2m_1 = isNullable;
|
|
888
887
|
}
|
|
889
|
-
protoOf(WsAny).
|
|
890
|
-
return this.
|
|
888
|
+
protoOf(WsAny).hm = function () {
|
|
889
|
+
return this.a2m_1;
|
|
891
890
|
};
|
|
892
891
|
protoOf(WsAny).sd = function () {
|
|
893
|
-
return this.
|
|
892
|
+
return this.a2m_1;
|
|
894
893
|
};
|
|
895
|
-
protoOf(WsAny).
|
|
894
|
+
protoOf(WsAny).d2b = function (isNullable) {
|
|
896
895
|
return new WsAny(isNullable);
|
|
897
896
|
};
|
|
898
897
|
protoOf(WsAny).copy = function (isNullable, $super) {
|
|
899
|
-
isNullable = isNullable === VOID ? this.
|
|
900
|
-
return this.
|
|
898
|
+
isNullable = isNullable === VOID ? this.a2m_1 : isNullable;
|
|
899
|
+
return this.d2b(isNullable);
|
|
901
900
|
};
|
|
902
901
|
protoOf(WsAny).toString = function () {
|
|
903
|
-
return 'WsAny(isNullable=' + this.
|
|
902
|
+
return 'WsAny(isNullable=' + this.a2m_1 + ')';
|
|
904
903
|
};
|
|
905
904
|
protoOf(WsAny).hashCode = function () {
|
|
906
|
-
return getBooleanHashCode(this.
|
|
905
|
+
return getBooleanHashCode(this.a2m_1);
|
|
907
906
|
};
|
|
908
907
|
protoOf(WsAny).equals = function (other) {
|
|
909
908
|
if (this === other)
|
|
@@ -911,31 +910,31 @@ protoOf(WsAny).equals = function (other) {
|
|
|
911
910
|
if (!(other instanceof WsAny))
|
|
912
911
|
return false;
|
|
913
912
|
var tmp0_other_with_cast = other instanceof WsAny ? other : THROW_CCE();
|
|
914
|
-
if (!(this.
|
|
913
|
+
if (!(this.a2m_1 === tmp0_other_with_cast.a2m_1))
|
|
915
914
|
return false;
|
|
916
915
|
return true;
|
|
917
916
|
};
|
|
918
917
|
function WsUnit(isNullable) {
|
|
919
|
-
this.
|
|
918
|
+
this.b2m_1 = isNullable;
|
|
920
919
|
}
|
|
921
|
-
protoOf(WsUnit).
|
|
922
|
-
return this.
|
|
920
|
+
protoOf(WsUnit).hm = function () {
|
|
921
|
+
return this.b2m_1;
|
|
923
922
|
};
|
|
924
923
|
protoOf(WsUnit).sd = function () {
|
|
925
|
-
return this.
|
|
924
|
+
return this.b2m_1;
|
|
926
925
|
};
|
|
927
|
-
protoOf(WsUnit).
|
|
926
|
+
protoOf(WsUnit).d2b = function (isNullable) {
|
|
928
927
|
return new WsUnit(isNullable);
|
|
929
928
|
};
|
|
930
929
|
protoOf(WsUnit).copy = function (isNullable, $super) {
|
|
931
|
-
isNullable = isNullable === VOID ? this.
|
|
932
|
-
return this.
|
|
930
|
+
isNullable = isNullable === VOID ? this.b2m_1 : isNullable;
|
|
931
|
+
return this.d2b(isNullable);
|
|
933
932
|
};
|
|
934
933
|
protoOf(WsUnit).toString = function () {
|
|
935
|
-
return 'WsUnit(isNullable=' + this.
|
|
934
|
+
return 'WsUnit(isNullable=' + this.b2m_1 + ')';
|
|
936
935
|
};
|
|
937
936
|
protoOf(WsUnit).hashCode = function () {
|
|
938
|
-
return getBooleanHashCode(this.
|
|
937
|
+
return getBooleanHashCode(this.b2m_1);
|
|
939
938
|
};
|
|
940
939
|
protoOf(WsUnit).equals = function (other) {
|
|
941
940
|
if (this === other)
|
|
@@ -943,40 +942,40 @@ protoOf(WsUnit).equals = function (other) {
|
|
|
943
942
|
if (!(other instanceof WsUnit))
|
|
944
943
|
return false;
|
|
945
944
|
var tmp0_other_with_cast = other instanceof WsUnit ? other : THROW_CCE();
|
|
946
|
-
if (!(this.
|
|
945
|
+
if (!(this.b2m_1 === tmp0_other_with_cast.b2m_1))
|
|
947
946
|
return false;
|
|
948
947
|
return true;
|
|
949
948
|
};
|
|
950
949
|
function WsIterable(reference, isNullable) {
|
|
951
950
|
this.reference = reference;
|
|
952
|
-
this.
|
|
951
|
+
this.c2m_1 = isNullable;
|
|
953
952
|
}
|
|
954
|
-
protoOf(WsIterable).
|
|
953
|
+
protoOf(WsIterable).s2l = function () {
|
|
955
954
|
return this.reference;
|
|
956
955
|
};
|
|
957
|
-
protoOf(WsIterable).
|
|
958
|
-
return this.
|
|
956
|
+
protoOf(WsIterable).hm = function () {
|
|
957
|
+
return this.c2m_1;
|
|
959
958
|
};
|
|
960
959
|
protoOf(WsIterable).sd = function () {
|
|
961
960
|
return this.reference;
|
|
962
961
|
};
|
|
963
962
|
protoOf(WsIterable).td = function () {
|
|
964
|
-
return this.
|
|
963
|
+
return this.c2m_1;
|
|
965
964
|
};
|
|
966
|
-
protoOf(WsIterable).
|
|
965
|
+
protoOf(WsIterable).d2m = function (reference, isNullable) {
|
|
967
966
|
return new WsIterable(reference, isNullable);
|
|
968
967
|
};
|
|
969
968
|
protoOf(WsIterable).copy = function (reference, isNullable, $super) {
|
|
970
969
|
reference = reference === VOID ? this.reference : reference;
|
|
971
|
-
isNullable = isNullable === VOID ? this.
|
|
972
|
-
return this.
|
|
970
|
+
isNullable = isNullable === VOID ? this.c2m_1 : isNullable;
|
|
971
|
+
return this.d2m(reference, isNullable);
|
|
973
972
|
};
|
|
974
973
|
protoOf(WsIterable).toString = function () {
|
|
975
|
-
return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.
|
|
974
|
+
return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.c2m_1 + ')';
|
|
976
975
|
};
|
|
977
976
|
protoOf(WsIterable).hashCode = function () {
|
|
978
977
|
var result = hashCode(this.reference);
|
|
979
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
978
|
+
result = imul(result, 31) + getBooleanHashCode(this.c2m_1) | 0;
|
|
980
979
|
return result;
|
|
981
980
|
};
|
|
982
981
|
protoOf(WsIterable).equals = function (other) {
|
|
@@ -987,40 +986,40 @@ protoOf(WsIterable).equals = function (other) {
|
|
|
987
986
|
var tmp0_other_with_cast = other instanceof WsIterable ? other : THROW_CCE();
|
|
988
987
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
989
988
|
return false;
|
|
990
|
-
if (!(this.
|
|
989
|
+
if (!(this.c2m_1 === tmp0_other_with_cast.c2m_1))
|
|
991
990
|
return false;
|
|
992
991
|
return true;
|
|
993
992
|
};
|
|
994
993
|
function WsDict(reference, isNullable) {
|
|
995
994
|
this.reference = reference;
|
|
996
|
-
this.
|
|
995
|
+
this.e2m_1 = isNullable;
|
|
997
996
|
}
|
|
998
|
-
protoOf(WsDict).
|
|
997
|
+
protoOf(WsDict).s2l = function () {
|
|
999
998
|
return this.reference;
|
|
1000
999
|
};
|
|
1001
|
-
protoOf(WsDict).
|
|
1002
|
-
return this.
|
|
1000
|
+
protoOf(WsDict).hm = function () {
|
|
1001
|
+
return this.e2m_1;
|
|
1003
1002
|
};
|
|
1004
1003
|
protoOf(WsDict).sd = function () {
|
|
1005
1004
|
return this.reference;
|
|
1006
1005
|
};
|
|
1007
1006
|
protoOf(WsDict).td = function () {
|
|
1008
|
-
return this.
|
|
1007
|
+
return this.e2m_1;
|
|
1009
1008
|
};
|
|
1010
|
-
protoOf(WsDict).
|
|
1009
|
+
protoOf(WsDict).d2m = function (reference, isNullable) {
|
|
1011
1010
|
return new WsDict(reference, isNullable);
|
|
1012
1011
|
};
|
|
1013
1012
|
protoOf(WsDict).copy = function (reference, isNullable, $super) {
|
|
1014
1013
|
reference = reference === VOID ? this.reference : reference;
|
|
1015
|
-
isNullable = isNullable === VOID ? this.
|
|
1016
|
-
return this.
|
|
1014
|
+
isNullable = isNullable === VOID ? this.e2m_1 : isNullable;
|
|
1015
|
+
return this.d2m(reference, isNullable);
|
|
1017
1016
|
};
|
|
1018
1017
|
protoOf(WsDict).toString = function () {
|
|
1019
|
-
return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.
|
|
1018
|
+
return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.e2m_1 + ')';
|
|
1020
1019
|
};
|
|
1021
1020
|
protoOf(WsDict).hashCode = function () {
|
|
1022
1021
|
var result = hashCode(this.reference);
|
|
1023
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1022
|
+
result = imul(result, 31) + getBooleanHashCode(this.e2m_1) | 0;
|
|
1024
1023
|
return result;
|
|
1025
1024
|
};
|
|
1026
1025
|
protoOf(WsDict).equals = function (other) {
|
|
@@ -1031,40 +1030,40 @@ protoOf(WsDict).equals = function (other) {
|
|
|
1031
1030
|
var tmp0_other_with_cast = other instanceof WsDict ? other : THROW_CCE();
|
|
1032
1031
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
1033
1032
|
return false;
|
|
1034
|
-
if (!(this.
|
|
1033
|
+
if (!(this.e2m_1 === tmp0_other_with_cast.e2m_1))
|
|
1035
1034
|
return false;
|
|
1036
1035
|
return true;
|
|
1037
1036
|
};
|
|
1038
1037
|
function WsCustom(value, isNullable) {
|
|
1039
1038
|
this.value = value;
|
|
1040
|
-
this.
|
|
1039
|
+
this.f2m_1 = isNullable;
|
|
1041
1040
|
}
|
|
1042
1041
|
protoOf(WsCustom).b1 = function () {
|
|
1043
1042
|
return this.value;
|
|
1044
1043
|
};
|
|
1045
|
-
protoOf(WsCustom).
|
|
1046
|
-
return this.
|
|
1044
|
+
protoOf(WsCustom).hm = function () {
|
|
1045
|
+
return this.f2m_1;
|
|
1047
1046
|
};
|
|
1048
1047
|
protoOf(WsCustom).sd = function () {
|
|
1049
1048
|
return this.value;
|
|
1050
1049
|
};
|
|
1051
1050
|
protoOf(WsCustom).td = function () {
|
|
1052
|
-
return this.
|
|
1051
|
+
return this.f2m_1;
|
|
1053
1052
|
};
|
|
1054
|
-
protoOf(WsCustom).
|
|
1053
|
+
protoOf(WsCustom).j2b = function (value, isNullable) {
|
|
1055
1054
|
return new WsCustom(value, isNullable);
|
|
1056
1055
|
};
|
|
1057
1056
|
protoOf(WsCustom).copy = function (value, isNullable, $super) {
|
|
1058
1057
|
value = value === VOID ? this.value : value;
|
|
1059
|
-
isNullable = isNullable === VOID ? this.
|
|
1060
|
-
return this.
|
|
1058
|
+
isNullable = isNullable === VOID ? this.f2m_1 : isNullable;
|
|
1059
|
+
return this.j2b(value, isNullable);
|
|
1061
1060
|
};
|
|
1062
1061
|
protoOf(WsCustom).toString = function () {
|
|
1063
|
-
return 'WsCustom(value=' + this.value + ', isNullable=' + this.
|
|
1062
|
+
return 'WsCustom(value=' + this.value + ', isNullable=' + this.f2m_1 + ')';
|
|
1064
1063
|
};
|
|
1065
1064
|
protoOf(WsCustom).hashCode = function () {
|
|
1066
1065
|
var result = getStringHashCode(this.value);
|
|
1067
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1066
|
+
result = imul(result, 31) + getBooleanHashCode(this.f2m_1) | 0;
|
|
1068
1067
|
return result;
|
|
1069
1068
|
};
|
|
1070
1069
|
protoOf(WsCustom).equals = function (other) {
|
|
@@ -1075,40 +1074,40 @@ protoOf(WsCustom).equals = function (other) {
|
|
|
1075
1074
|
var tmp0_other_with_cast = other instanceof WsCustom ? other : THROW_CCE();
|
|
1076
1075
|
if (!(this.value === tmp0_other_with_cast.value))
|
|
1077
1076
|
return false;
|
|
1078
|
-
if (!(this.
|
|
1077
|
+
if (!(this.f2m_1 === tmp0_other_with_cast.f2m_1))
|
|
1079
1078
|
return false;
|
|
1080
1079
|
return true;
|
|
1081
1080
|
};
|
|
1082
1081
|
function WsPrimitive(type, isNullable) {
|
|
1083
1082
|
this.type = type;
|
|
1084
|
-
this.
|
|
1083
|
+
this.g2m_1 = isNullable;
|
|
1085
1084
|
}
|
|
1086
|
-
protoOf(WsPrimitive).
|
|
1085
|
+
protoOf(WsPrimitive).t1j = function () {
|
|
1087
1086
|
return this.type;
|
|
1088
1087
|
};
|
|
1089
|
-
protoOf(WsPrimitive).
|
|
1090
|
-
return this.
|
|
1088
|
+
protoOf(WsPrimitive).hm = function () {
|
|
1089
|
+
return this.g2m_1;
|
|
1091
1090
|
};
|
|
1092
1091
|
protoOf(WsPrimitive).sd = function () {
|
|
1093
1092
|
return this.type;
|
|
1094
1093
|
};
|
|
1095
1094
|
protoOf(WsPrimitive).td = function () {
|
|
1096
|
-
return this.
|
|
1095
|
+
return this.g2m_1;
|
|
1097
1096
|
};
|
|
1098
|
-
protoOf(WsPrimitive).
|
|
1097
|
+
protoOf(WsPrimitive).h2m = function (type, isNullable) {
|
|
1099
1098
|
return new WsPrimitive(type, isNullable);
|
|
1100
1099
|
};
|
|
1101
1100
|
protoOf(WsPrimitive).copy = function (type, isNullable, $super) {
|
|
1102
1101
|
type = type === VOID ? this.type : type;
|
|
1103
|
-
isNullable = isNullable === VOID ? this.
|
|
1104
|
-
return this.
|
|
1102
|
+
isNullable = isNullable === VOID ? this.g2m_1 : isNullable;
|
|
1103
|
+
return this.h2m(type, isNullable);
|
|
1105
1104
|
};
|
|
1106
1105
|
protoOf(WsPrimitive).toString = function () {
|
|
1107
|
-
return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.
|
|
1106
|
+
return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.g2m_1 + ')';
|
|
1108
1107
|
};
|
|
1109
1108
|
protoOf(WsPrimitive).hashCode = function () {
|
|
1110
1109
|
var result = this.type.hashCode();
|
|
1111
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1110
|
+
result = imul(result, 31) + getBooleanHashCode(this.g2m_1) | 0;
|
|
1112
1111
|
return result;
|
|
1113
1112
|
};
|
|
1114
1113
|
protoOf(WsPrimitive).equals = function (other) {
|
|
@@ -1119,7 +1118,7 @@ protoOf(WsPrimitive).equals = function (other) {
|
|
|
1119
1118
|
var tmp0_other_with_cast = other instanceof WsPrimitive ? other : THROW_CCE();
|
|
1120
1119
|
if (!this.type.equals(tmp0_other_with_cast.type))
|
|
1121
1120
|
return false;
|
|
1122
|
-
if (!(this.
|
|
1121
|
+
if (!(this.g2m_1 === tmp0_other_with_cast.g2m_1))
|
|
1123
1122
|
return false;
|
|
1124
1123
|
return true;
|
|
1125
1124
|
};
|
|
@@ -1166,18 +1165,18 @@ function WsPrimitiveType(name, ordinal) {
|
|
|
1166
1165
|
function WsRequest(content) {
|
|
1167
1166
|
this.content = content;
|
|
1168
1167
|
}
|
|
1169
|
-
protoOf(WsRequest).
|
|
1168
|
+
protoOf(WsRequest).o17 = function () {
|
|
1170
1169
|
return this.content;
|
|
1171
1170
|
};
|
|
1172
1171
|
protoOf(WsRequest).sd = function () {
|
|
1173
1172
|
return this.content;
|
|
1174
1173
|
};
|
|
1175
|
-
protoOf(WsRequest).
|
|
1174
|
+
protoOf(WsRequest).k2m = function (content) {
|
|
1176
1175
|
return new WsRequest(content);
|
|
1177
1176
|
};
|
|
1178
1177
|
protoOf(WsRequest).copy = function (content, $super) {
|
|
1179
1178
|
content = content === VOID ? this.content : content;
|
|
1180
|
-
return this.
|
|
1179
|
+
return this.k2m(content);
|
|
1181
1180
|
};
|
|
1182
1181
|
protoOf(WsRequest).toString = function () {
|
|
1183
1182
|
return 'WsRequest(content=' + toString_0(this.content) + ')';
|
|
@@ -1200,13 +1199,13 @@ function WsResponse(status, headers, content) {
|
|
|
1200
1199
|
this.headers = headers;
|
|
1201
1200
|
this.content = content;
|
|
1202
1201
|
}
|
|
1203
|
-
protoOf(WsResponse).
|
|
1202
|
+
protoOf(WsResponse).l2m = function () {
|
|
1204
1203
|
return this.status;
|
|
1205
1204
|
};
|
|
1206
|
-
protoOf(WsResponse).
|
|
1205
|
+
protoOf(WsResponse).b2l = function () {
|
|
1207
1206
|
return this.headers;
|
|
1208
1207
|
};
|
|
1209
|
-
protoOf(WsResponse).
|
|
1208
|
+
protoOf(WsResponse).o17 = function () {
|
|
1210
1209
|
return this.content;
|
|
1211
1210
|
};
|
|
1212
1211
|
protoOf(WsResponse).sd = function () {
|
|
@@ -1215,17 +1214,17 @@ protoOf(WsResponse).sd = function () {
|
|
|
1215
1214
|
protoOf(WsResponse).td = function () {
|
|
1216
1215
|
return this.headers;
|
|
1217
1216
|
};
|
|
1218
|
-
protoOf(WsResponse).
|
|
1217
|
+
protoOf(WsResponse).uh = function () {
|
|
1219
1218
|
return this.content;
|
|
1220
1219
|
};
|
|
1221
|
-
protoOf(WsResponse).
|
|
1220
|
+
protoOf(WsResponse).m2m = function (status, headers, content) {
|
|
1222
1221
|
return new WsResponse(status, headers, content);
|
|
1223
1222
|
};
|
|
1224
1223
|
protoOf(WsResponse).copy = function (status, headers, content, $super) {
|
|
1225
1224
|
status = status === VOID ? this.status : status;
|
|
1226
1225
|
headers = headers === VOID ? this.headers : headers;
|
|
1227
1226
|
content = content === VOID ? this.content : content;
|
|
1228
|
-
return this.
|
|
1227
|
+
return this.m2m(status, headers, content);
|
|
1229
1228
|
};
|
|
1230
1229
|
protoOf(WsResponse).toString = function () {
|
|
1231
1230
|
return 'WsResponse(status=' + this.status + ', headers=' + toString(this.headers) + ', content=' + toString_0(this.content) + ')';
|
|
@@ -1256,13 +1255,13 @@ function WsContent(type, reference, isNullable) {
|
|
|
1256
1255
|
this.reference = reference;
|
|
1257
1256
|
this.isNullable = isNullable;
|
|
1258
1257
|
}
|
|
1259
|
-
protoOf(WsContent).
|
|
1258
|
+
protoOf(WsContent).t1j = function () {
|
|
1260
1259
|
return this.type;
|
|
1261
1260
|
};
|
|
1262
|
-
protoOf(WsContent).
|
|
1261
|
+
protoOf(WsContent).s2l = function () {
|
|
1263
1262
|
return this.reference;
|
|
1264
1263
|
};
|
|
1265
|
-
protoOf(WsContent).
|
|
1264
|
+
protoOf(WsContent).hm = function () {
|
|
1266
1265
|
return this.isNullable;
|
|
1267
1266
|
};
|
|
1268
1267
|
protoOf(WsContent).sd = function () {
|
|
@@ -1271,17 +1270,17 @@ protoOf(WsContent).sd = function () {
|
|
|
1271
1270
|
protoOf(WsContent).td = function () {
|
|
1272
1271
|
return this.reference;
|
|
1273
1272
|
};
|
|
1274
|
-
protoOf(WsContent).
|
|
1273
|
+
protoOf(WsContent).uh = function () {
|
|
1275
1274
|
return this.isNullable;
|
|
1276
1275
|
};
|
|
1277
|
-
protoOf(WsContent).
|
|
1276
|
+
protoOf(WsContent).n2m = function (type, reference, isNullable) {
|
|
1278
1277
|
return new WsContent(type, reference, isNullable);
|
|
1279
1278
|
};
|
|
1280
1279
|
protoOf(WsContent).copy = function (type, reference, isNullable, $super) {
|
|
1281
1280
|
type = type === VOID ? this.type : type;
|
|
1282
1281
|
reference = reference === VOID ? this.reference : reference;
|
|
1283
1282
|
isNullable = isNullable === VOID ? this.isNullable : isNullable;
|
|
1284
|
-
return this.
|
|
1283
|
+
return this.n2m(type, reference, isNullable);
|
|
1285
1284
|
};
|
|
1286
1285
|
protoOf(WsContent).toString = function () {
|
|
1287
1286
|
return 'WsContent(type=' + this.type + ', reference=' + toString(this.reference) + ', isNullable=' + this.isNullable + ')';
|
|
@@ -1309,8 +1308,8 @@ protoOf(WsContent).equals = function (other) {
|
|
|
1309
1308
|
function produce(_this__u8e3s4) {
|
|
1310
1309
|
var tmp;
|
|
1311
1310
|
if (_this__u8e3s4 instanceof Type) {
|
|
1312
|
-
var tmp_0 = _this__u8e3s4.
|
|
1313
|
-
var tmp1_safe_receiver = _this__u8e3s4.
|
|
1311
|
+
var tmp_0 = _this__u8e3s4.q26_1.b1();
|
|
1312
|
+
var tmp1_safe_receiver = _this__u8e3s4.p26_1;
|
|
1314
1313
|
var tmp_1;
|
|
1315
1314
|
var tmp_2 = tmp1_safe_receiver;
|
|
1316
1315
|
if ((tmp_2 == null ? null : new Comment(tmp_2)) == null) {
|
|
@@ -1318,11 +1317,11 @@ function produce(_this__u8e3s4) {
|
|
|
1318
1317
|
} else {
|
|
1319
1318
|
tmp_1 = _Comment___get_value__impl__8r3pla(tmp1_safe_receiver);
|
|
1320
1319
|
}
|
|
1321
|
-
tmp = new WsType(tmp_0, tmp_1, produce_1(_this__u8e3s4.
|
|
1320
|
+
tmp = new WsType(tmp_0, tmp_1, produce_1(_this__u8e3s4.r26_1));
|
|
1322
1321
|
} else {
|
|
1323
1322
|
if (_this__u8e3s4 instanceof Endpoint) {
|
|
1324
|
-
var tmp_3 = _this__u8e3s4.
|
|
1325
|
-
var tmp2_safe_receiver = _this__u8e3s4.
|
|
1323
|
+
var tmp_3 = _this__u8e3s4.s24_1.b1();
|
|
1324
|
+
var tmp2_safe_receiver = _this__u8e3s4.r24_1;
|
|
1326
1325
|
var tmp_4;
|
|
1327
1326
|
var tmp_5 = tmp2_safe_receiver;
|
|
1328
1327
|
if ((tmp_5 == null ? null : new Comment(tmp_5)) == null) {
|
|
@@ -1330,11 +1329,11 @@ function produce(_this__u8e3s4) {
|
|
|
1330
1329
|
} else {
|
|
1331
1330
|
tmp_4 = _Comment___get_value__impl__8r3pla(tmp2_safe_receiver);
|
|
1332
1331
|
}
|
|
1333
|
-
tmp = new WsEndpoint(tmp_3, tmp_4, produce_2(_this__u8e3s4.
|
|
1332
|
+
tmp = new WsEndpoint(tmp_3, tmp_4, produce_2(_this__u8e3s4.t24_1), produce_3(_this__u8e3s4.u24_1), produce_4(_this__u8e3s4.v24_1), produce_4(_this__u8e3s4.w24_1), produce_5(_this__u8e3s4.x24_1), produce_6(_this__u8e3s4.y24_1));
|
|
1334
1333
|
} else {
|
|
1335
1334
|
if (_this__u8e3s4 instanceof Enum_0) {
|
|
1336
|
-
var tmp_6 = _this__u8e3s4.
|
|
1337
|
-
var tmp3_safe_receiver = _this__u8e3s4.
|
|
1335
|
+
var tmp_6 = _this__u8e3s4.q27_1.b1();
|
|
1336
|
+
var tmp3_safe_receiver = _this__u8e3s4.p27_1;
|
|
1338
1337
|
var tmp_7;
|
|
1339
1338
|
var tmp_8 = tmp3_safe_receiver;
|
|
1340
1339
|
if ((tmp_8 == null ? null : new Comment(tmp_8)) == null) {
|
|
@@ -1344,13 +1343,13 @@ function produce(_this__u8e3s4) {
|
|
|
1344
1343
|
}
|
|
1345
1344
|
var tmp_9 = tmp_7;
|
|
1346
1345
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1347
|
-
var this_0 = _this__u8e3s4.
|
|
1346
|
+
var this_0 = _this__u8e3s4.r27_1;
|
|
1348
1347
|
var tmp$ret$0 = copyToArray(this_0);
|
|
1349
1348
|
tmp = new WsEnum(tmp_6, tmp_9, tmp$ret$0);
|
|
1350
1349
|
} else {
|
|
1351
1350
|
if (_this__u8e3s4 instanceof Refined) {
|
|
1352
|
-
var tmp_10 = _this__u8e3s4.
|
|
1353
|
-
var tmp4_safe_receiver = _this__u8e3s4.
|
|
1351
|
+
var tmp_10 = _this__u8e3s4.e27_1.b1();
|
|
1352
|
+
var tmp4_safe_receiver = _this__u8e3s4.d27_1;
|
|
1354
1353
|
var tmp_11;
|
|
1355
1354
|
var tmp_12 = tmp4_safe_receiver;
|
|
1356
1355
|
if ((tmp_12 == null ? null : new Comment(tmp_12)) == null) {
|
|
@@ -1358,11 +1357,11 @@ function produce(_this__u8e3s4) {
|
|
|
1358
1357
|
} else {
|
|
1359
1358
|
tmp_11 = _Comment___get_value__impl__8r3pla(tmp4_safe_receiver);
|
|
1360
1359
|
}
|
|
1361
|
-
tmp = new WsRefined(tmp_10, tmp_11, _this__u8e3s4.
|
|
1360
|
+
tmp = new WsRefined(tmp_10, tmp_11, produce_7(_this__u8e3s4.f27_1));
|
|
1362
1361
|
} else {
|
|
1363
1362
|
if (_this__u8e3s4 instanceof Union) {
|
|
1364
|
-
var tmp_13 = _this__u8e3s4.
|
|
1365
|
-
var tmp5_safe_receiver = _this__u8e3s4.
|
|
1363
|
+
var tmp_13 = _this__u8e3s4.y26_1.b1();
|
|
1364
|
+
var tmp5_safe_receiver = _this__u8e3s4.x26_1;
|
|
1366
1365
|
var tmp_14;
|
|
1367
1366
|
var tmp_15 = tmp5_safe_receiver;
|
|
1368
1367
|
if ((tmp_15 == null ? null : new Comment(tmp_15)) == null) {
|
|
@@ -1373,7 +1372,7 @@ function produce(_this__u8e3s4) {
|
|
|
1373
1372
|
var tmp_16 = tmp_14;
|
|
1374
1373
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1375
1374
|
// Inline function 'kotlin.collections.map' call
|
|
1376
|
-
var this_1 = _this__u8e3s4.
|
|
1375
|
+
var this_1 = _this__u8e3s4.z26_1;
|
|
1377
1376
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1378
1377
|
var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_1, 10));
|
|
1379
1378
|
var tmp0_iterator = this_1.g();
|
|
@@ -1387,8 +1386,8 @@ function produce(_this__u8e3s4) {
|
|
|
1387
1386
|
tmp = new WsUnion(tmp_13, tmp_16, tmp$ret$4);
|
|
1388
1387
|
} else {
|
|
1389
1388
|
if (_this__u8e3s4 instanceof Channel) {
|
|
1390
|
-
var tmp_17 = _this__u8e3s4.
|
|
1391
|
-
var tmp6_safe_receiver = _this__u8e3s4.
|
|
1389
|
+
var tmp_17 = _this__u8e3s4.w27_1.b1();
|
|
1390
|
+
var tmp6_safe_receiver = _this__u8e3s4.v27_1;
|
|
1392
1391
|
var tmp_18;
|
|
1393
1392
|
var tmp_19 = tmp6_safe_receiver;
|
|
1394
1393
|
if ((tmp_19 == null ? null : new Comment(tmp_19)) == null) {
|
|
@@ -1396,7 +1395,7 @@ function produce(_this__u8e3s4) {
|
|
|
1396
1395
|
} else {
|
|
1397
1396
|
tmp_18 = _Comment___get_value__impl__8r3pla(tmp6_safe_receiver);
|
|
1398
1397
|
}
|
|
1399
|
-
tmp = new WsChannel(tmp_17, tmp_18, produce_7(_this__u8e3s4.
|
|
1398
|
+
tmp = new WsChannel(tmp_17, tmp_18, produce_7(_this__u8e3s4.x27_1));
|
|
1400
1399
|
} else {
|
|
1401
1400
|
noWhenBranchMatchedException();
|
|
1402
1401
|
}
|
|
@@ -1410,12 +1409,12 @@ function produce(_this__u8e3s4) {
|
|
|
1410
1409
|
function produce_0(_this__u8e3s4) {
|
|
1411
1410
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1412
1411
|
// Inline function 'arrow.core.NonEmptyList.map' call
|
|
1413
|
-
var this_0 = _this__u8e3s4.
|
|
1412
|
+
var this_0 = _this__u8e3s4.o29_1;
|
|
1414
1413
|
// Inline function 'community.flock.wirespec.compiler.lib.produce.<anonymous>' call
|
|
1415
|
-
var it = this_0.
|
|
1414
|
+
var it = this_0.jk_1;
|
|
1416
1415
|
var tmp = produce_8(it);
|
|
1417
1416
|
// Inline function 'kotlin.collections.map' call
|
|
1418
|
-
var this_1 = this_0.
|
|
1417
|
+
var this_1 = this_0.kk_1;
|
|
1419
1418
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1420
1419
|
var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_1, 10));
|
|
1421
1420
|
var tmp0_iterator = this_1.g();
|
|
@@ -1448,7 +1447,7 @@ function consume(_this__u8e3s4) {
|
|
|
1448
1447
|
function produce_1(_this__u8e3s4) {
|
|
1449
1448
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1450
1449
|
// Inline function 'kotlin.collections.map' call
|
|
1451
|
-
var this_0 = _this__u8e3s4.
|
|
1450
|
+
var this_0 = _this__u8e3s4.a27_1;
|
|
1452
1451
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1453
1452
|
var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_0, 10));
|
|
1454
1453
|
var tmp0_iterator = this_0.g();
|
|
@@ -1505,10 +1504,10 @@ function produce_3(_this__u8e3s4) {
|
|
|
1505
1504
|
// Inline function 'community.flock.wirespec.compiler.lib.produce.<anonymous>' call
|
|
1506
1505
|
var tmp;
|
|
1507
1506
|
if (item instanceof Literal) {
|
|
1508
|
-
tmp = new WsLiteral(item.
|
|
1507
|
+
tmp = new WsLiteral(item.z25_1);
|
|
1509
1508
|
} else {
|
|
1510
1509
|
if (item instanceof Param) {
|
|
1511
|
-
tmp = new WsParam(produce_10(item.
|
|
1510
|
+
tmp = new WsParam(produce_10(item.p25_1), produce_7(item.q25_1));
|
|
1512
1511
|
} else {
|
|
1513
1512
|
noWhenBranchMatchedException();
|
|
1514
1513
|
}
|
|
@@ -1563,22 +1562,22 @@ function produce_6(_this__u8e3s4) {
|
|
|
1563
1562
|
function produce_7(_this__u8e3s4) {
|
|
1564
1563
|
var tmp;
|
|
1565
1564
|
if (_this__u8e3s4 instanceof Any) {
|
|
1566
|
-
tmp = new WsAny(_this__u8e3s4.
|
|
1565
|
+
tmp = new WsAny(_this__u8e3s4.b2b_1);
|
|
1567
1566
|
} else {
|
|
1568
1567
|
if (_this__u8e3s4 instanceof Unit) {
|
|
1569
|
-
tmp = new WsUnit(_this__u8e3s4.
|
|
1568
|
+
tmp = new WsUnit(_this__u8e3s4.e2b_1);
|
|
1570
1569
|
} else {
|
|
1571
1570
|
if (_this__u8e3s4 instanceof Custom) {
|
|
1572
|
-
tmp = new WsCustom(_this__u8e3s4.
|
|
1571
|
+
tmp = new WsCustom(_this__u8e3s4.o23_1, _this__u8e3s4.p23_1);
|
|
1573
1572
|
} else {
|
|
1574
1573
|
if (_this__u8e3s4 instanceof Primitive) {
|
|
1575
|
-
tmp = new WsPrimitive(produce_13(_this__u8e3s4.
|
|
1574
|
+
tmp = new WsPrimitive(produce_13(_this__u8e3s4.d24_1), _this__u8e3s4.e24_1);
|
|
1576
1575
|
} else {
|
|
1577
1576
|
if (_this__u8e3s4 instanceof Dict) {
|
|
1578
|
-
tmp = new WsDict(produce_7(_this__u8e3s4.
|
|
1577
|
+
tmp = new WsDict(produce_7(_this__u8e3s4.a24_1), _this__u8e3s4.b24_1);
|
|
1579
1578
|
} else {
|
|
1580
1579
|
if (_this__u8e3s4 instanceof Iterable) {
|
|
1581
|
-
tmp = new WsIterable(produce_7(_this__u8e3s4.
|
|
1580
|
+
tmp = new WsIterable(produce_7(_this__u8e3s4.q23_1), _this__u8e3s4.r23_1);
|
|
1582
1581
|
} else {
|
|
1583
1582
|
noWhenBranchMatchedException();
|
|
1584
1583
|
}
|
|
@@ -1592,12 +1591,12 @@ function produce_7(_this__u8e3s4) {
|
|
|
1592
1591
|
function produce_8(_this__u8e3s4) {
|
|
1593
1592
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1594
1593
|
// Inline function 'arrow.core.NonEmptyList.map' call
|
|
1595
|
-
var this_0 = _this__u8e3s4.
|
|
1594
|
+
var this_0 = _this__u8e3s4.w26_1;
|
|
1596
1595
|
// Inline function 'community.flock.wirespec.compiler.lib.produce.<anonymous>' call
|
|
1597
|
-
var it = this_0.
|
|
1596
|
+
var it = this_0.jk_1;
|
|
1598
1597
|
var tmp = produce(it);
|
|
1599
1598
|
// Inline function 'kotlin.collections.map' call
|
|
1600
|
-
var this_1 = this_0.
|
|
1599
|
+
var this_1 = this_0.kk_1;
|
|
1601
1600
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1602
1601
|
var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_1, 10));
|
|
1603
1602
|
var tmp0_iterator = this_1.g();
|
|
@@ -1641,19 +1640,19 @@ function consume_0(_this__u8e3s4) {
|
|
|
1641
1640
|
return tmp;
|
|
1642
1641
|
}
|
|
1643
1642
|
function produce_9(_this__u8e3s4) {
|
|
1644
|
-
return new WsField(produce_10(_this__u8e3s4.
|
|
1643
|
+
return new WsField(produce_10(_this__u8e3s4.m25_1), produce_7(_this__u8e3s4.n25_1));
|
|
1645
1644
|
}
|
|
1646
1645
|
function produce_10(_this__u8e3s4) {
|
|
1647
1646
|
return new WsFieldIdentifier(_this__u8e3s4.b1());
|
|
1648
1647
|
}
|
|
1649
1648
|
function produce_11(_this__u8e3s4) {
|
|
1650
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1649
|
+
var tmp0_safe_receiver = _this__u8e3s4.f25_1;
|
|
1651
1650
|
return new WsRequest(tmp0_safe_receiver == null ? null : produce_14(tmp0_safe_receiver));
|
|
1652
1651
|
}
|
|
1653
1652
|
function produce_12(_this__u8e3s4) {
|
|
1654
1653
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1655
1654
|
// Inline function 'kotlin.collections.map' call
|
|
1656
|
-
var this_0 = _this__u8e3s4.
|
|
1655
|
+
var this_0 = _this__u8e3s4.a25_1;
|
|
1657
1656
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1658
1657
|
var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_0, 10));
|
|
1659
1658
|
var tmp0_iterator = this_0.g();
|
|
@@ -1664,8 +1663,8 @@ function produce_12(_this__u8e3s4) {
|
|
|
1664
1663
|
destination.e(tmp$ret$0);
|
|
1665
1664
|
}
|
|
1666
1665
|
var tmp = copyToArray(destination);
|
|
1667
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1668
|
-
return new WsResponse(_this__u8e3s4.
|
|
1666
|
+
var tmp0_safe_receiver = _this__u8e3s4.b25_1;
|
|
1667
|
+
return new WsResponse(_this__u8e3s4.z24_1, tmp, tmp0_safe_receiver == null ? null : produce_14(tmp0_safe_receiver));
|
|
1669
1668
|
}
|
|
1670
1669
|
function produce_13(_this__u8e3s4) {
|
|
1671
1670
|
var tmp;
|
|
@@ -1693,7 +1692,7 @@ function produce_13(_this__u8e3s4) {
|
|
|
1693
1692
|
return tmp;
|
|
1694
1693
|
}
|
|
1695
1694
|
function consume_1(_this__u8e3s4) {
|
|
1696
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1695
|
+
var tmp0_safe_receiver = _this__u8e3s4.x2k_1;
|
|
1697
1696
|
var tmp;
|
|
1698
1697
|
if (tmp0_safe_receiver == null) {
|
|
1699
1698
|
tmp = null;
|
|
@@ -1701,10 +1700,10 @@ function consume_1(_this__u8e3s4) {
|
|
|
1701
1700
|
// Inline function 'kotlin.let' call
|
|
1702
1701
|
// Inline function 'kotlin.contracts.contract' call
|
|
1703
1702
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1704
|
-
tmp = Companion_instance.
|
|
1703
|
+
tmp = Companion_instance.x2a(tmp0_safe_receiver);
|
|
1705
1704
|
}
|
|
1706
1705
|
var tmp_0 = tmp;
|
|
1707
|
-
var tmp_1 = new DefinitionIdentifier(_this__u8e3s4.
|
|
1706
|
+
var tmp_1 = new DefinitionIdentifier(_this__u8e3s4.w2k_1);
|
|
1708
1707
|
var tmp_2 = consume_7(_this__u8e3s4.method);
|
|
1709
1708
|
// Inline function 'kotlin.collections.map' call
|
|
1710
1709
|
var this_0 = _this__u8e3s4.path;
|
|
@@ -1778,8 +1777,8 @@ function consume_1(_this__u8e3s4) {
|
|
|
1778
1777
|
return new Endpoint(tmp_0, tmp_1, tmp_2, tmp_3, tmp_4, tmp_5, tmp_6, destination_3);
|
|
1779
1778
|
}
|
|
1780
1779
|
function consume_2(_this__u8e3s4) {
|
|
1781
|
-
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.
|
|
1782
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1780
|
+
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.k2l_1);
|
|
1781
|
+
var tmp0_safe_receiver = _this__u8e3s4.l2l_1;
|
|
1783
1782
|
var tmp;
|
|
1784
1783
|
if (tmp0_safe_receiver == null) {
|
|
1785
1784
|
tmp = null;
|
|
@@ -1787,15 +1786,15 @@ function consume_2(_this__u8e3s4) {
|
|
|
1787
1786
|
// Inline function 'kotlin.let' call
|
|
1788
1787
|
// Inline function 'kotlin.contracts.contract' call
|
|
1789
1788
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1790
|
-
tmp = Companion_instance.
|
|
1789
|
+
tmp = Companion_instance.x2a(tmp0_safe_receiver);
|
|
1791
1790
|
}
|
|
1792
1791
|
var tmp2_comment = tmp;
|
|
1793
1792
|
var tmp3_entries = toSet(_this__u8e3s4.entries);
|
|
1794
1793
|
return new Enum_0(tmp2_comment, tmp1_identifier, tmp3_entries);
|
|
1795
1794
|
}
|
|
1796
1795
|
function consume_3(_this__u8e3s4) {
|
|
1797
|
-
var
|
|
1798
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1796
|
+
var tmp2_identifier = new DefinitionIdentifier(_this__u8e3s4.u2l_1);
|
|
1797
|
+
var tmp0_safe_receiver = _this__u8e3s4.v2l_1;
|
|
1799
1798
|
var tmp;
|
|
1800
1799
|
if (tmp0_safe_receiver == null) {
|
|
1801
1800
|
tmp = null;
|
|
@@ -1803,15 +1802,24 @@ function consume_3(_this__u8e3s4) {
|
|
|
1803
1802
|
// Inline function 'kotlin.let' call
|
|
1804
1803
|
// Inline function 'kotlin.contracts.contract' call
|
|
1805
1804
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1806
|
-
tmp = Companion_instance.
|
|
1805
|
+
tmp = Companion_instance.x2a(tmp0_safe_receiver);
|
|
1807
1806
|
}
|
|
1808
|
-
var
|
|
1809
|
-
var
|
|
1810
|
-
|
|
1807
|
+
var tmp3_comment = tmp;
|
|
1808
|
+
var tmp_0 = consume_12(_this__u8e3s4.reference);
|
|
1809
|
+
var tmp1_elvis_lhs = tmp_0 instanceof Primitive ? tmp_0 : null;
|
|
1810
|
+
var tmp_1;
|
|
1811
|
+
if (tmp1_elvis_lhs == null) {
|
|
1812
|
+
var message = 'Cannot refine non-primitive type';
|
|
1813
|
+
throw IllegalStateException_init_$Create$(toString(message));
|
|
1814
|
+
} else {
|
|
1815
|
+
tmp_1 = tmp1_elvis_lhs;
|
|
1816
|
+
}
|
|
1817
|
+
var tmp4_reference = tmp_1;
|
|
1818
|
+
return new Refined(tmp3_comment, tmp2_identifier, tmp4_reference);
|
|
1811
1819
|
}
|
|
1812
1820
|
function consume_4(_this__u8e3s4) {
|
|
1813
|
-
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.
|
|
1814
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1821
|
+
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.r2k_1);
|
|
1822
|
+
var tmp0_safe_receiver = _this__u8e3s4.s2k_1;
|
|
1815
1823
|
var tmp;
|
|
1816
1824
|
if (tmp0_safe_receiver == null) {
|
|
1817
1825
|
tmp = null;
|
|
@@ -1819,7 +1827,7 @@ function consume_4(_this__u8e3s4) {
|
|
|
1819
1827
|
// Inline function 'kotlin.let' call
|
|
1820
1828
|
// Inline function 'kotlin.contracts.contract' call
|
|
1821
1829
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1822
|
-
tmp = Companion_instance.
|
|
1830
|
+
tmp = Companion_instance.x2a(tmp0_safe_receiver);
|
|
1823
1831
|
}
|
|
1824
1832
|
var tmp2_comment = tmp;
|
|
1825
1833
|
// Inline function 'kotlin.collections.map' call
|
|
@@ -1840,8 +1848,8 @@ function consume_4(_this__u8e3s4) {
|
|
|
1840
1848
|
return new Type(tmp2_comment, tmp1_identifier, tmp3_shape, tmp4_extends);
|
|
1841
1849
|
}
|
|
1842
1850
|
function consume_5(_this__u8e3s4) {
|
|
1843
|
-
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.
|
|
1844
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1851
|
+
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.n2l_1);
|
|
1852
|
+
var tmp0_safe_receiver = _this__u8e3s4.o2l_1;
|
|
1845
1853
|
var tmp;
|
|
1846
1854
|
if (tmp0_safe_receiver == null) {
|
|
1847
1855
|
tmp = null;
|
|
@@ -1849,7 +1857,7 @@ function consume_5(_this__u8e3s4) {
|
|
|
1849
1857
|
// Inline function 'kotlin.let' call
|
|
1850
1858
|
// Inline function 'kotlin.contracts.contract' call
|
|
1851
1859
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1852
|
-
tmp = Companion_instance.
|
|
1860
|
+
tmp = Companion_instance.x2a(tmp0_safe_receiver);
|
|
1853
1861
|
}
|
|
1854
1862
|
var tmp2_comment = tmp;
|
|
1855
1863
|
// Inline function 'kotlin.collections.map' call
|
|
@@ -1869,8 +1877,8 @@ function consume_5(_this__u8e3s4) {
|
|
|
1869
1877
|
return new Union(tmp2_comment, tmp1_identifier, tmp3_entries);
|
|
1870
1878
|
}
|
|
1871
1879
|
function consume_6(_this__u8e3s4) {
|
|
1872
|
-
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.
|
|
1873
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1880
|
+
var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.q2l_1);
|
|
1881
|
+
var tmp0_safe_receiver = _this__u8e3s4.r2l_1;
|
|
1874
1882
|
var tmp;
|
|
1875
1883
|
if (tmp0_safe_receiver == null) {
|
|
1876
1884
|
tmp = null;
|
|
@@ -1878,14 +1886,14 @@ function consume_6(_this__u8e3s4) {
|
|
|
1878
1886
|
// Inline function 'kotlin.let' call
|
|
1879
1887
|
// Inline function 'kotlin.contracts.contract' call
|
|
1880
1888
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1881
|
-
tmp = Companion_instance.
|
|
1889
|
+
tmp = Companion_instance.x2a(tmp0_safe_receiver);
|
|
1882
1890
|
}
|
|
1883
1891
|
var tmp2_comment = tmp;
|
|
1884
1892
|
var tmp3_reference = consume_12(_this__u8e3s4.reference);
|
|
1885
1893
|
return new Channel(tmp2_comment, tmp1_identifier, tmp3_reference);
|
|
1886
1894
|
}
|
|
1887
1895
|
function produce_14(_this__u8e3s4) {
|
|
1888
|
-
return new WsContent(_this__u8e3s4.
|
|
1896
|
+
return new WsContent(_this__u8e3s4.g25_1, produce_7(_this__u8e3s4.h25_1));
|
|
1889
1897
|
}
|
|
1890
1898
|
function consume_7(_this__u8e3s4) {
|
|
1891
1899
|
var tmp;
|
|
@@ -1961,22 +1969,22 @@ function consume_11(_this__u8e3s4) {
|
|
|
1961
1969
|
function consume_12(_this__u8e3s4) {
|
|
1962
1970
|
var tmp;
|
|
1963
1971
|
if (_this__u8e3s4 instanceof WsAny) {
|
|
1964
|
-
tmp = new Any(_this__u8e3s4.
|
|
1972
|
+
tmp = new Any(_this__u8e3s4.a2m_1);
|
|
1965
1973
|
} else {
|
|
1966
1974
|
if (_this__u8e3s4 instanceof WsUnit) {
|
|
1967
|
-
tmp = new Unit(_this__u8e3s4.
|
|
1975
|
+
tmp = new Unit(_this__u8e3s4.b2m_1);
|
|
1968
1976
|
} else {
|
|
1969
1977
|
if (_this__u8e3s4 instanceof WsCustom) {
|
|
1970
|
-
tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.
|
|
1978
|
+
tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.f2m_1);
|
|
1971
1979
|
} else {
|
|
1972
1980
|
if (_this__u8e3s4 instanceof WsPrimitive) {
|
|
1973
|
-
tmp = new Primitive(consume_15(_this__u8e3s4.type), _this__u8e3s4.
|
|
1981
|
+
tmp = new Primitive(consume_15(_this__u8e3s4.type), _this__u8e3s4.g2m_1);
|
|
1974
1982
|
} else {
|
|
1975
1983
|
if (_this__u8e3s4 instanceof WsDict) {
|
|
1976
|
-
tmp = new Dict(consume_12(_this__u8e3s4.reference), _this__u8e3s4.
|
|
1984
|
+
tmp = new Dict(consume_12(_this__u8e3s4.reference), _this__u8e3s4.e2m_1);
|
|
1977
1985
|
} else {
|
|
1978
1986
|
if (_this__u8e3s4 instanceof WsIterable) {
|
|
1979
|
-
tmp = new Iterable(consume_12(_this__u8e3s4.reference), _this__u8e3s4.
|
|
1987
|
+
tmp = new Iterable(consume_12(_this__u8e3s4.reference), _this__u8e3s4.c2m_1);
|
|
1980
1988
|
} else {
|
|
1981
1989
|
noWhenBranchMatchedException();
|
|
1982
1990
|
}
|
|
@@ -1997,13 +2005,13 @@ function consume_15(_this__u8e3s4) {
|
|
|
1997
2005
|
var tmp;
|
|
1998
2006
|
switch (_this__u8e3s4.r2_1) {
|
|
1999
2007
|
case 0:
|
|
2000
|
-
tmp =
|
|
2008
|
+
tmp = new String_0(null);
|
|
2001
2009
|
break;
|
|
2002
2010
|
case 1:
|
|
2003
|
-
tmp = new Integer();
|
|
2011
|
+
tmp = new Integer(VOID, null);
|
|
2004
2012
|
break;
|
|
2005
2013
|
case 2:
|
|
2006
|
-
tmp = new Number_0();
|
|
2014
|
+
tmp = new Number_0(VOID, null);
|
|
2007
2015
|
break;
|
|
2008
2016
|
case 3:
|
|
2009
2017
|
tmp = Boolean_instance;
|
|
@@ -2082,10 +2090,10 @@ function WsCompilationResult(result, errors) {
|
|
|
2082
2090
|
this.result = result;
|
|
2083
2091
|
this.errors = errors;
|
|
2084
2092
|
}
|
|
2085
|
-
protoOf(WsCompilationResult).
|
|
2093
|
+
protoOf(WsCompilationResult).o2m = function () {
|
|
2086
2094
|
return this.result;
|
|
2087
2095
|
};
|
|
2088
|
-
protoOf(WsCompilationResult).
|
|
2096
|
+
protoOf(WsCompilationResult).p2m = function () {
|
|
2089
2097
|
return this.errors;
|
|
2090
2098
|
};
|
|
2091
2099
|
function WsCompiled(value) {
|
|
@@ -2110,10 +2118,10 @@ function WsParseResult(result, errors) {
|
|
|
2110
2118
|
this.result = result;
|
|
2111
2119
|
this.errors = errors;
|
|
2112
2120
|
}
|
|
2113
|
-
protoOf(WsParseResult).
|
|
2121
|
+
protoOf(WsParseResult).o2m = function () {
|
|
2114
2122
|
return this.result;
|
|
2115
2123
|
};
|
|
2116
|
-
protoOf(WsParseResult).
|
|
2124
|
+
protoOf(WsParseResult).p2m = function () {
|
|
2117
2125
|
return this.errors;
|
|
2118
2126
|
};
|
|
2119
2127
|
function WsStringResult(result, errors) {
|
|
@@ -2122,20 +2130,20 @@ function WsStringResult(result, errors) {
|
|
|
2122
2130
|
this.result = result;
|
|
2123
2131
|
this.errors = errors;
|
|
2124
2132
|
}
|
|
2125
|
-
protoOf(WsStringResult).
|
|
2133
|
+
protoOf(WsStringResult).o2m = function () {
|
|
2126
2134
|
return this.result;
|
|
2127
2135
|
};
|
|
2128
|
-
protoOf(WsStringResult).
|
|
2136
|
+
protoOf(WsStringResult).p2m = function () {
|
|
2129
2137
|
return this.errors;
|
|
2130
2138
|
};
|
|
2131
2139
|
function WsEmitted(file, result) {
|
|
2132
2140
|
this.file = file;
|
|
2133
2141
|
this.result = result;
|
|
2134
2142
|
}
|
|
2135
|
-
protoOf(WsEmitted).
|
|
2143
|
+
protoOf(WsEmitted).q2m = function () {
|
|
2136
2144
|
return this.file;
|
|
2137
2145
|
};
|
|
2138
|
-
protoOf(WsEmitted).
|
|
2146
|
+
protoOf(WsEmitted).o2m = function () {
|
|
2139
2147
|
return this.result;
|
|
2140
2148
|
};
|
|
2141
2149
|
function produce_15(_this__u8e3s4) {
|
|
@@ -2143,12 +2151,12 @@ function produce_15(_this__u8e3s4) {
|
|
|
2143
2151
|
if (_this__u8e3s4 instanceof Left) {
|
|
2144
2152
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
2145
2153
|
// Inline function 'arrow.core.NonEmptyList.map' call
|
|
2146
|
-
var this_0 = _this__u8e3s4.
|
|
2154
|
+
var this_0 = _this__u8e3s4.yj_1;
|
|
2147
2155
|
// Inline function 'community.flock.wirespec.compiler.lib.produce.<anonymous>' call
|
|
2148
|
-
var it = this_0.
|
|
2156
|
+
var it = this_0.jk_1;
|
|
2149
2157
|
var tmp_0 = produce_21(it);
|
|
2150
2158
|
// Inline function 'kotlin.collections.map' call
|
|
2151
|
-
var this_1 = this_0.
|
|
2159
|
+
var this_1 = this_0.kk_1;
|
|
2152
2160
|
// Inline function 'kotlin.collections.mapTo' call
|
|
2153
2161
|
var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_1, 10));
|
|
2154
2162
|
var tmp0_iterator = this_1.g();
|
|
@@ -2163,7 +2171,7 @@ function produce_15(_this__u8e3s4) {
|
|
|
2163
2171
|
tmp = new WsParseResult(VOID, tmp$ret$5);
|
|
2164
2172
|
} else {
|
|
2165
2173
|
if (_this__u8e3s4 instanceof Right) {
|
|
2166
|
-
tmp = new WsParseResult(produce_0(_this__u8e3s4.
|
|
2174
|
+
tmp = new WsParseResult(produce_0(_this__u8e3s4.ek_1));
|
|
2167
2175
|
} else {
|
|
2168
2176
|
noWhenBranchMatchedException();
|
|
2169
2177
|
}
|
|
@@ -2175,12 +2183,12 @@ function produce_16(_this__u8e3s4) {
|
|
|
2175
2183
|
if (_this__u8e3s4 instanceof Left) {
|
|
2176
2184
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
2177
2185
|
// Inline function 'arrow.core.NonEmptyList.map' call
|
|
2178
|
-
var this_0 = _this__u8e3s4.
|
|
2186
|
+
var this_0 = _this__u8e3s4.yj_1;
|
|
2179
2187
|
// Inline function 'community.flock.wirespec.compiler.lib.produce.<anonymous>' call
|
|
2180
|
-
var it = this_0.
|
|
2188
|
+
var it = this_0.jk_1;
|
|
2181
2189
|
var tmp_0 = produce_21(it);
|
|
2182
2190
|
// Inline function 'kotlin.collections.map' call
|
|
2183
|
-
var this_1 = this_0.
|
|
2191
|
+
var this_1 = this_0.kk_1;
|
|
2184
2192
|
// Inline function 'kotlin.collections.mapTo' call
|
|
2185
2193
|
var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_1, 10));
|
|
2186
2194
|
var tmp0_iterator = this_1.g();
|
|
@@ -2195,7 +2203,7 @@ function produce_16(_this__u8e3s4) {
|
|
|
2195
2203
|
tmp = new WsStringResult(VOID, tmp$ret$5);
|
|
2196
2204
|
} else {
|
|
2197
2205
|
if (_this__u8e3s4 instanceof Right) {
|
|
2198
|
-
tmp = new WsStringResult(_this__u8e3s4.
|
|
2206
|
+
tmp = new WsStringResult(_this__u8e3s4.ek_1);
|
|
2199
2207
|
} else {
|
|
2200
2208
|
noWhenBranchMatchedException();
|
|
2201
2209
|
}
|
|
@@ -2203,7 +2211,7 @@ function produce_16(_this__u8e3s4) {
|
|
|
2203
2211
|
return tmp;
|
|
2204
2212
|
}
|
|
2205
2213
|
function produce_17(_this__u8e3s4) {
|
|
2206
|
-
return new WsEmitted(_this__u8e3s4.
|
|
2214
|
+
return new WsEmitted(_this__u8e3s4.l26_1, _this__u8e3s4.m26_1);
|
|
2207
2215
|
}
|
|
2208
2216
|
function WsTokenResult(tokens, error) {
|
|
2209
2217
|
tokens = tokens === VOID ? null : tokens;
|
|
@@ -2211,10 +2219,10 @@ function WsTokenResult(tokens, error) {
|
|
|
2211
2219
|
this.tokens = tokens;
|
|
2212
2220
|
this.error = error;
|
|
2213
2221
|
}
|
|
2214
|
-
protoOf(WsTokenResult).
|
|
2222
|
+
protoOf(WsTokenResult).r2m = function () {
|
|
2215
2223
|
return this.tokens;
|
|
2216
2224
|
};
|
|
2217
|
-
protoOf(WsTokenResult).
|
|
2225
|
+
protoOf(WsTokenResult).s2m = function () {
|
|
2218
2226
|
return this.error;
|
|
2219
2227
|
};
|
|
2220
2228
|
protoOf(WsTokenResult).sd = function () {
|
|
@@ -2223,13 +2231,13 @@ protoOf(WsTokenResult).sd = function () {
|
|
|
2223
2231
|
protoOf(WsTokenResult).td = function () {
|
|
2224
2232
|
return this.error;
|
|
2225
2233
|
};
|
|
2226
|
-
protoOf(WsTokenResult).
|
|
2234
|
+
protoOf(WsTokenResult).t2m = function (tokens, error) {
|
|
2227
2235
|
return new WsTokenResult(tokens, error);
|
|
2228
2236
|
};
|
|
2229
2237
|
protoOf(WsTokenResult).copy = function (tokens, error, $super) {
|
|
2230
2238
|
tokens = tokens === VOID ? this.tokens : tokens;
|
|
2231
2239
|
error = error === VOID ? this.error : error;
|
|
2232
|
-
return this.
|
|
2240
|
+
return this.t2m(tokens, error);
|
|
2233
2241
|
};
|
|
2234
2242
|
protoOf(WsTokenResult).toString = function () {
|
|
2235
2243
|
return 'WsTokenResult(tokens=' + toString_0(this.tokens) + ', error=' + toString_0(this.error) + ')';
|
|
@@ -2274,12 +2282,12 @@ protoOf(WsTokens).hashCode = function () {
|
|
|
2274
2282
|
protoOf(WsTokens).sd = function () {
|
|
2275
2283
|
return this.value;
|
|
2276
2284
|
};
|
|
2277
|
-
protoOf(WsTokens).
|
|
2285
|
+
protoOf(WsTokens).u2m = function (value) {
|
|
2278
2286
|
return new WsTokens(value);
|
|
2279
2287
|
};
|
|
2280
2288
|
protoOf(WsTokens).copy = function (value, $super) {
|
|
2281
2289
|
value = value === VOID ? this.value : value;
|
|
2282
|
-
return this.
|
|
2290
|
+
return this.u2m(value);
|
|
2283
2291
|
};
|
|
2284
2292
|
protoOf(WsTokens).toString = function () {
|
|
2285
2293
|
return 'WsTokens(value=' + toString(this.value) + ')';
|
|
@@ -2290,13 +2298,13 @@ function WsToken(type, value, coordinates) {
|
|
|
2290
2298
|
this.value = value;
|
|
2291
2299
|
this.coordinates = coordinates;
|
|
2292
2300
|
}
|
|
2293
|
-
protoOf(WsToken).
|
|
2301
|
+
protoOf(WsToken).t1j = function () {
|
|
2294
2302
|
return this.type;
|
|
2295
2303
|
};
|
|
2296
2304
|
protoOf(WsToken).b1 = function () {
|
|
2297
2305
|
return this.value;
|
|
2298
2306
|
};
|
|
2299
|
-
protoOf(WsToken).
|
|
2307
|
+
protoOf(WsToken).v2m = function () {
|
|
2300
2308
|
return this.coordinates;
|
|
2301
2309
|
};
|
|
2302
2310
|
protoOf(WsToken).sd = function () {
|
|
@@ -2305,17 +2313,17 @@ protoOf(WsToken).sd = function () {
|
|
|
2305
2313
|
protoOf(WsToken).td = function () {
|
|
2306
2314
|
return this.value;
|
|
2307
2315
|
};
|
|
2308
|
-
protoOf(WsToken).
|
|
2316
|
+
protoOf(WsToken).uh = function () {
|
|
2309
2317
|
return this.coordinates;
|
|
2310
2318
|
};
|
|
2311
|
-
protoOf(WsToken).
|
|
2319
|
+
protoOf(WsToken).w2m = function (type, value, coordinates) {
|
|
2312
2320
|
return new WsToken(type, value, coordinates);
|
|
2313
2321
|
};
|
|
2314
2322
|
protoOf(WsToken).copy = function (type, value, coordinates, $super) {
|
|
2315
2323
|
type = type === VOID ? this.type : type;
|
|
2316
2324
|
value = value === VOID ? this.value : value;
|
|
2317
2325
|
coordinates = coordinates === VOID ? this.coordinates : coordinates;
|
|
2318
|
-
return this.
|
|
2326
|
+
return this.w2m(type, value, coordinates);
|
|
2319
2327
|
};
|
|
2320
2328
|
protoOf(WsToken).toString = function () {
|
|
2321
2329
|
return 'WsToken(type=' + this.type + ', value=' + this.value + ', coordinates=' + this.coordinates.toString() + ')';
|
|
@@ -2348,13 +2356,13 @@ function WsCoordinates(line, position, idxAndLength) {
|
|
|
2348
2356
|
this.position = position;
|
|
2349
2357
|
this.idxAndLength = idxAndLength;
|
|
2350
2358
|
}
|
|
2351
|
-
protoOf(WsCoordinates).
|
|
2359
|
+
protoOf(WsCoordinates).x2m = function () {
|
|
2352
2360
|
return this.line;
|
|
2353
2361
|
};
|
|
2354
|
-
protoOf(WsCoordinates).
|
|
2362
|
+
protoOf(WsCoordinates).y2m = function () {
|
|
2355
2363
|
return this.position;
|
|
2356
2364
|
};
|
|
2357
|
-
protoOf(WsCoordinates).
|
|
2365
|
+
protoOf(WsCoordinates).z2m = function () {
|
|
2358
2366
|
return this.idxAndLength;
|
|
2359
2367
|
};
|
|
2360
2368
|
protoOf(WsCoordinates).sd = function () {
|
|
@@ -2363,17 +2371,17 @@ protoOf(WsCoordinates).sd = function () {
|
|
|
2363
2371
|
protoOf(WsCoordinates).td = function () {
|
|
2364
2372
|
return this.position;
|
|
2365
2373
|
};
|
|
2366
|
-
protoOf(WsCoordinates).
|
|
2374
|
+
protoOf(WsCoordinates).uh = function () {
|
|
2367
2375
|
return this.idxAndLength;
|
|
2368
2376
|
};
|
|
2369
|
-
protoOf(WsCoordinates).
|
|
2377
|
+
protoOf(WsCoordinates).a2n = function (line, position, idxAndLength) {
|
|
2370
2378
|
return new WsCoordinates(line, position, idxAndLength);
|
|
2371
2379
|
};
|
|
2372
2380
|
protoOf(WsCoordinates).copy = function (line, position, idxAndLength, $super) {
|
|
2373
2381
|
line = line === VOID ? this.line : line;
|
|
2374
2382
|
position = position === VOID ? this.position : position;
|
|
2375
2383
|
idxAndLength = idxAndLength === VOID ? this.idxAndLength : idxAndLength;
|
|
2376
|
-
return this.
|
|
2384
|
+
return this.a2n(line, position, idxAndLength);
|
|
2377
2385
|
};
|
|
2378
2386
|
protoOf(WsCoordinates).toString = function () {
|
|
2379
2387
|
return 'WsCoordinates(line=' + this.line + ', position=' + this.position + ', idxAndLength=' + this.idxAndLength.toString() + ')';
|
|
@@ -2404,7 +2412,7 @@ function WsIndex(idx, length) {
|
|
|
2404
2412
|
this.idx = idx;
|
|
2405
2413
|
this.length = length;
|
|
2406
2414
|
}
|
|
2407
|
-
protoOf(WsIndex).
|
|
2415
|
+
protoOf(WsIndex).b2n = function () {
|
|
2408
2416
|
return this.idx;
|
|
2409
2417
|
};
|
|
2410
2418
|
protoOf(WsIndex).a = function () {
|
|
@@ -2416,13 +2424,13 @@ protoOf(WsIndex).sd = function () {
|
|
|
2416
2424
|
protoOf(WsIndex).td = function () {
|
|
2417
2425
|
return this.length;
|
|
2418
2426
|
};
|
|
2419
|
-
protoOf(WsIndex).
|
|
2427
|
+
protoOf(WsIndex).c2n = function (idx, length) {
|
|
2420
2428
|
return new WsIndex(idx, length);
|
|
2421
2429
|
};
|
|
2422
2430
|
protoOf(WsIndex).copy = function (idx, length, $super) {
|
|
2423
2431
|
idx = idx === VOID ? this.idx : idx;
|
|
2424
2432
|
length = length === VOID ? this.length : length;
|
|
2425
|
-
return this.
|
|
2433
|
+
return this.c2n(idx, length);
|
|
2426
2434
|
};
|
|
2427
2435
|
protoOf(WsIndex).toString = function () {
|
|
2428
2436
|
return 'WsIndex(idx=' + this.idx + ', length=' + this.length + ')';
|
|
@@ -2445,13 +2453,13 @@ protoOf(WsIndex).equals = function (other) {
|
|
|
2445
2453
|
return true;
|
|
2446
2454
|
};
|
|
2447
2455
|
function produce_18(_this__u8e3s4) {
|
|
2448
|
-
return new WsToken(name(_this__u8e3s4.
|
|
2456
|
+
return new WsToken(name(_this__u8e3s4.c2a_1), _this__u8e3s4.b2a_1, produce_19(_this__u8e3s4.d2a_1));
|
|
2449
2457
|
}
|
|
2450
2458
|
function produce_19(_this__u8e3s4) {
|
|
2451
|
-
return new WsCoordinates(_this__u8e3s4.
|
|
2459
|
+
return new WsCoordinates(_this__u8e3s4.e2a_1, _this__u8e3s4.f2a_1, produce_20(_this__u8e3s4.g2a_1));
|
|
2452
2460
|
}
|
|
2453
2461
|
function produce_20(_this__u8e3s4) {
|
|
2454
|
-
return new WsIndex(_this__u8e3s4.
|
|
2462
|
+
return new WsIndex(_this__u8e3s4.c2c_1, _this__u8e3s4.d2c_1);
|
|
2455
2463
|
}
|
|
2456
2464
|
function WsError(line, position, index, length, value) {
|
|
2457
2465
|
this.line = line;
|
|
@@ -2460,13 +2468,13 @@ function WsError(line, position, index, length, value) {
|
|
|
2460
2468
|
this.length = length;
|
|
2461
2469
|
this.value = value;
|
|
2462
2470
|
}
|
|
2463
|
-
protoOf(WsError).
|
|
2471
|
+
protoOf(WsError).x2m = function () {
|
|
2464
2472
|
return this.line;
|
|
2465
2473
|
};
|
|
2466
|
-
protoOf(WsError).
|
|
2474
|
+
protoOf(WsError).y2m = function () {
|
|
2467
2475
|
return this.position;
|
|
2468
2476
|
};
|
|
2469
|
-
protoOf(WsError).
|
|
2477
|
+
protoOf(WsError).d2n = function () {
|
|
2470
2478
|
return this.index;
|
|
2471
2479
|
};
|
|
2472
2480
|
protoOf(WsError).a = function () {
|
|
@@ -2481,16 +2489,16 @@ protoOf(WsError).sd = function () {
|
|
|
2481
2489
|
protoOf(WsError).td = function () {
|
|
2482
2490
|
return this.position;
|
|
2483
2491
|
};
|
|
2484
|
-
protoOf(WsError).
|
|
2492
|
+
protoOf(WsError).uh = function () {
|
|
2485
2493
|
return this.index;
|
|
2486
2494
|
};
|
|
2487
|
-
protoOf(WsError).
|
|
2495
|
+
protoOf(WsError).e2l = function () {
|
|
2488
2496
|
return this.length;
|
|
2489
2497
|
};
|
|
2490
|
-
protoOf(WsError).
|
|
2498
|
+
protoOf(WsError).f2l = function () {
|
|
2491
2499
|
return this.value;
|
|
2492
2500
|
};
|
|
2493
|
-
protoOf(WsError).
|
|
2501
|
+
protoOf(WsError).e2n = function (line, position, index, length, value) {
|
|
2494
2502
|
return new WsError(line, position, index, length, value);
|
|
2495
2503
|
};
|
|
2496
2504
|
protoOf(WsError).copy = function (line, position, index, length, value, $super) {
|
|
@@ -2499,7 +2507,7 @@ protoOf(WsError).copy = function (line, position, index, length, value, $super)
|
|
|
2499
2507
|
index = index === VOID ? this.index : index;
|
|
2500
2508
|
length = length === VOID ? this.length : length;
|
|
2501
2509
|
value = value === VOID ? this.value : value;
|
|
2502
|
-
return this.
|
|
2510
|
+
return this.e2n(line, position, index, length, value);
|
|
2503
2511
|
};
|
|
2504
2512
|
protoOf(WsError).toString = function () {
|
|
2505
2513
|
return 'WsError(line=' + this.line + ', position=' + this.position + ', index=' + this.index + ', length=' + this.length + ', value=' + this.value + ')';
|
|
@@ -2531,64 +2539,64 @@ protoOf(WsError).equals = function (other) {
|
|
|
2531
2539
|
return true;
|
|
2532
2540
|
};
|
|
2533
2541
|
function produce_21(_this__u8e3s4) {
|
|
2534
|
-
return new WsError(_this__u8e3s4.
|
|
2542
|
+
return new WsError(_this__u8e3s4.i2a_1.e2a_1, _this__u8e3s4.i2a_1.f2a_1, _this__u8e3s4.i2a_1.g2a_1.c2c_1 - _this__u8e3s4.i2a_1.g2a_1.d2c_1 | 0, _this__u8e3s4.i2a_1.g2a_1.d2c_1, _this__u8e3s4.r1());
|
|
2535
2543
|
}
|
|
2536
2544
|
//region block: post-declaration
|
|
2537
2545
|
defineProp(protoOf(WsType), 'identifier', function () {
|
|
2538
|
-
return this.
|
|
2546
|
+
return this.o24();
|
|
2539
2547
|
});
|
|
2540
2548
|
defineProp(protoOf(WsType), 'comment', function () {
|
|
2541
|
-
return this.
|
|
2549
|
+
return this.q2k();
|
|
2542
2550
|
});
|
|
2543
2551
|
defineProp(protoOf(WsEndpoint), 'identifier', function () {
|
|
2544
|
-
return this.
|
|
2552
|
+
return this.o24();
|
|
2545
2553
|
});
|
|
2546
2554
|
defineProp(protoOf(WsEndpoint), 'comment', function () {
|
|
2547
|
-
return this.
|
|
2555
|
+
return this.q2k();
|
|
2548
2556
|
});
|
|
2549
2557
|
defineProp(protoOf(WsEnum), 'identifier', function () {
|
|
2550
|
-
return this.
|
|
2558
|
+
return this.o24();
|
|
2551
2559
|
});
|
|
2552
2560
|
defineProp(protoOf(WsEnum), 'comment', function () {
|
|
2553
|
-
return this.
|
|
2561
|
+
return this.q2k();
|
|
2554
2562
|
});
|
|
2555
2563
|
defineProp(protoOf(WsUnion), 'identifier', function () {
|
|
2556
|
-
return this.
|
|
2564
|
+
return this.o24();
|
|
2557
2565
|
});
|
|
2558
2566
|
defineProp(protoOf(WsUnion), 'comment', function () {
|
|
2559
|
-
return this.
|
|
2567
|
+
return this.q2k();
|
|
2560
2568
|
});
|
|
2561
2569
|
defineProp(protoOf(WsChannel), 'identifier', function () {
|
|
2562
|
-
return this.
|
|
2570
|
+
return this.o24();
|
|
2563
2571
|
});
|
|
2564
2572
|
defineProp(protoOf(WsChannel), 'comment', function () {
|
|
2565
|
-
return this.
|
|
2573
|
+
return this.q2k();
|
|
2566
2574
|
});
|
|
2567
2575
|
defineProp(protoOf(WsRefined), 'identifier', function () {
|
|
2568
|
-
return this.
|
|
2576
|
+
return this.o24();
|
|
2569
2577
|
});
|
|
2570
2578
|
defineProp(protoOf(WsRefined), 'comment', function () {
|
|
2571
|
-
return this.
|
|
2579
|
+
return this.q2k();
|
|
2572
2580
|
});
|
|
2573
2581
|
defineProp(protoOf(WsMethod), 'name', protoOf(WsMethod).s2);
|
|
2574
2582
|
defineProp(protoOf(WsMethod), 'ordinal', protoOf(WsMethod).t2);
|
|
2575
2583
|
defineProp(protoOf(WsAny), 'isNullable', function () {
|
|
2576
|
-
return this.
|
|
2584
|
+
return this.hm();
|
|
2577
2585
|
});
|
|
2578
2586
|
defineProp(protoOf(WsUnit), 'isNullable', function () {
|
|
2579
|
-
return this.
|
|
2587
|
+
return this.hm();
|
|
2580
2588
|
});
|
|
2581
2589
|
defineProp(protoOf(WsIterable), 'isNullable', function () {
|
|
2582
|
-
return this.
|
|
2590
|
+
return this.hm();
|
|
2583
2591
|
});
|
|
2584
2592
|
defineProp(protoOf(WsDict), 'isNullable', function () {
|
|
2585
|
-
return this.
|
|
2593
|
+
return this.hm();
|
|
2586
2594
|
});
|
|
2587
2595
|
defineProp(protoOf(WsCustom), 'isNullable', function () {
|
|
2588
|
-
return this.
|
|
2596
|
+
return this.hm();
|
|
2589
2597
|
});
|
|
2590
2598
|
defineProp(protoOf(WsPrimitive), 'isNullable', function () {
|
|
2591
|
-
return this.
|
|
2599
|
+
return this.hm();
|
|
2592
2600
|
});
|
|
2593
2601
|
defineProp(protoOf(WsPrimitiveType), 'name', protoOf(WsPrimitiveType).s2);
|
|
2594
2602
|
defineProp(protoOf(WsPrimitiveType), 'ordinal', protoOf(WsPrimitiveType).t2);
|