@flock/wirespec 0.17.2 → 0.17.4
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 +1174 -1174
- package/colormath-root-colormath.mjs +425 -425
- package/kotlin-kotlin-stdlib.mjs +44 -43
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlin-openapi-bindings.mjs +9202 -9761
- package/kotlin-openapi-bindings.mjs.map +1 -1
- package/kotlin-rgxgen.mjs +1767 -1767
- package/kotlinx-io-kotlinx-io-core.mjs +380 -380
- package/kotlinx-serialization-kotlinx-serialization-core.mjs +4 -0
- package/kotlinx-serialization-kotlinx-serialization-core.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json.mjs +299 -299
- package/kotlinx-serialization-kotlinx-serialization-json.mjs.map +1 -1
- package/markdown.mjs +1876 -1876
- package/mordant-mordant.mjs +1643 -1643
- package/package.json +1 -1
- package/wirespec-src-compiler-core.mjs +1059 -1059
- package/wirespec-src-compiler-emitters-java.mjs +260 -260
- package/wirespec-src-compiler-emitters-java.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-kotlin.mjs +186 -186
- package/wirespec-src-compiler-emitters-kotlin.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-python.mjs +183 -183
- package/wirespec-src-compiler-emitters-python.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-typescript.mjs +196 -196
- package/wirespec-src-compiler-emitters-typescript.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-wirespec.mjs +76 -76
- package/wirespec-src-compiler-emitters-wirespec.mjs.map +1 -1
- package/wirespec-src-compiler-lib.mjs +377 -327
- package/wirespec-src-compiler-lib.mjs.map +1 -1
- package/wirespec-src-converter-avro.mjs +316 -316
- package/wirespec-src-converter-openapi.mjs +2565 -2561
- package/wirespec-src-converter-openapi.mjs.map +1 -1
- package/wirespec-src-plugin-arguments.mjs +139 -139
- package/wirespec-src-plugin-cli.mjs +77 -77
- package/wirespec-src-plugin-npm.d.ts +13 -5
- package/wirespec-src-plugin-npm.mjs +41 -41
- package/wirespec-src-plugin-npm.mjs.map +1 -1
- package/wirespec-src-tools-generator.mjs +25 -25
|
@@ -67,6 +67,8 @@ import {
|
|
|
67
67
|
Responseeuhlz3134lpv as Response,
|
|
68
68
|
FieldIdentifier2fnn30qixmpf as FieldIdentifier,
|
|
69
69
|
Content2l86jxk275n97 as Content,
|
|
70
|
+
Precision_P64_getInstance24om6ftq5m2zr as Precision_P64_getInstance,
|
|
71
|
+
Precision_P32_getInstance14v0hvellj0za as Precision_P32_getInstance,
|
|
70
72
|
Boolean_instance3qnzv8pgzox40 as Boolean_instance,
|
|
71
73
|
Bytes_instance1at7binw0nl40 as Bytes_instance,
|
|
72
74
|
name2tedo82t36o5w as name,
|
|
@@ -130,18 +132,18 @@ function WsNode() {
|
|
|
130
132
|
function WsAST(modules) {
|
|
131
133
|
this.modules = modules;
|
|
132
134
|
}
|
|
133
|
-
protoOf(WsAST).
|
|
135
|
+
protoOf(WsAST).m2j = function () {
|
|
134
136
|
return this.modules;
|
|
135
137
|
};
|
|
136
138
|
protoOf(WsAST).sd = function () {
|
|
137
139
|
return this.modules;
|
|
138
140
|
};
|
|
139
|
-
protoOf(WsAST).
|
|
141
|
+
protoOf(WsAST).n2j = function (modules) {
|
|
140
142
|
return new WsAST(modules);
|
|
141
143
|
};
|
|
142
144
|
protoOf(WsAST).copy = function (modules, $super) {
|
|
143
145
|
modules = modules === VOID ? this.modules : modules;
|
|
144
|
-
return this.
|
|
146
|
+
return this.n2j(modules);
|
|
145
147
|
};
|
|
146
148
|
protoOf(WsAST).toString = function () {
|
|
147
149
|
return 'WsAST(modules=' + toString(this.modules) + ')';
|
|
@@ -162,18 +164,18 @@ protoOf(WsAST).equals = function (other) {
|
|
|
162
164
|
function WsModule(statements) {
|
|
163
165
|
this.statements = statements;
|
|
164
166
|
}
|
|
165
|
-
protoOf(WsModule).
|
|
167
|
+
protoOf(WsModule).o2j = function () {
|
|
166
168
|
return this.statements;
|
|
167
169
|
};
|
|
168
170
|
protoOf(WsModule).sd = function () {
|
|
169
171
|
return this.statements;
|
|
170
172
|
};
|
|
171
|
-
protoOf(WsModule).
|
|
173
|
+
protoOf(WsModule).p2j = function (statements) {
|
|
172
174
|
return new WsModule(statements);
|
|
173
175
|
};
|
|
174
176
|
protoOf(WsModule).copy = function (statements, $super) {
|
|
175
177
|
statements = statements === VOID ? this.statements : statements;
|
|
176
|
-
return this.
|
|
178
|
+
return this.p2j(statements);
|
|
177
179
|
};
|
|
178
180
|
protoOf(WsModule).toString = function () {
|
|
179
181
|
return 'WsModule(statements=' + toString(this.statements) + ')';
|
|
@@ -194,43 +196,43 @@ protoOf(WsModule).equals = function (other) {
|
|
|
194
196
|
function WsDefinition() {
|
|
195
197
|
}
|
|
196
198
|
function WsType(identifier, comment, shape) {
|
|
197
|
-
this.
|
|
198
|
-
this.
|
|
199
|
+
this.r2j_1 = identifier;
|
|
200
|
+
this.s2j_1 = comment;
|
|
199
201
|
this.shape = shape;
|
|
200
202
|
}
|
|
201
|
-
protoOf(WsType).
|
|
202
|
-
return this.
|
|
203
|
+
protoOf(WsType).f25 = function () {
|
|
204
|
+
return this.r2j_1;
|
|
203
205
|
};
|
|
204
|
-
protoOf(WsType).
|
|
205
|
-
return this.
|
|
206
|
+
protoOf(WsType).q2j = function () {
|
|
207
|
+
return this.s2j_1;
|
|
206
208
|
};
|
|
207
|
-
protoOf(WsType).
|
|
209
|
+
protoOf(WsType).t2j = function () {
|
|
208
210
|
return this.shape;
|
|
209
211
|
};
|
|
210
212
|
protoOf(WsType).sd = function () {
|
|
211
|
-
return this.
|
|
213
|
+
return this.r2j_1;
|
|
212
214
|
};
|
|
213
215
|
protoOf(WsType).td = function () {
|
|
214
|
-
return this.
|
|
216
|
+
return this.s2j_1;
|
|
215
217
|
};
|
|
216
218
|
protoOf(WsType).uh = function () {
|
|
217
219
|
return this.shape;
|
|
218
220
|
};
|
|
219
|
-
protoOf(WsType).
|
|
221
|
+
protoOf(WsType).u2j = function (identifier, comment, shape) {
|
|
220
222
|
return new WsType(identifier, comment, shape);
|
|
221
223
|
};
|
|
222
224
|
protoOf(WsType).copy = function (identifier, comment, shape, $super) {
|
|
223
|
-
identifier = identifier === VOID ? this.
|
|
224
|
-
comment = comment === VOID ? this.
|
|
225
|
+
identifier = identifier === VOID ? this.r2j_1 : identifier;
|
|
226
|
+
comment = comment === VOID ? this.s2j_1 : comment;
|
|
225
227
|
shape = shape === VOID ? this.shape : shape;
|
|
226
|
-
return this.
|
|
228
|
+
return this.u2j(identifier, comment, shape);
|
|
227
229
|
};
|
|
228
230
|
protoOf(WsType).toString = function () {
|
|
229
|
-
return 'WsType(identifier=' + this.
|
|
231
|
+
return 'WsType(identifier=' + this.r2j_1 + ', comment=' + this.s2j_1 + ', shape=' + this.shape.toString() + ')';
|
|
230
232
|
};
|
|
231
233
|
protoOf(WsType).hashCode = function () {
|
|
232
|
-
var result = getStringHashCode(this.
|
|
233
|
-
result = imul(result, 31) + (this.
|
|
234
|
+
var result = getStringHashCode(this.r2j_1);
|
|
235
|
+
result = imul(result, 31) + (this.s2j_1 == null ? 0 : getStringHashCode(this.s2j_1)) | 0;
|
|
234
236
|
result = imul(result, 31) + this.shape.hashCode() | 0;
|
|
235
237
|
return result;
|
|
236
238
|
};
|
|
@@ -240,9 +242,9 @@ protoOf(WsType).equals = function (other) {
|
|
|
240
242
|
if (!(other instanceof WsType))
|
|
241
243
|
return false;
|
|
242
244
|
var tmp0_other_with_cast = other instanceof WsType ? other : THROW_CCE();
|
|
243
|
-
if (!(this.
|
|
245
|
+
if (!(this.r2j_1 === tmp0_other_with_cast.r2j_1))
|
|
244
246
|
return false;
|
|
245
|
-
if (!(this.
|
|
247
|
+
if (!(this.s2j_1 == tmp0_other_with_cast.s2j_1))
|
|
246
248
|
return false;
|
|
247
249
|
if (!this.shape.equals(tmp0_other_with_cast.shape))
|
|
248
250
|
return false;
|
|
@@ -257,12 +259,12 @@ protoOf(WsShape).b1 = function () {
|
|
|
257
259
|
protoOf(WsShape).sd = function () {
|
|
258
260
|
return this.value;
|
|
259
261
|
};
|
|
260
|
-
protoOf(WsShape).
|
|
262
|
+
protoOf(WsShape).v2j = function (value) {
|
|
261
263
|
return new WsShape(value);
|
|
262
264
|
};
|
|
263
265
|
protoOf(WsShape).copy = function (value, $super) {
|
|
264
266
|
value = value === VOID ? this.value : value;
|
|
265
|
-
return this.
|
|
267
|
+
return this.v2j(value);
|
|
266
268
|
};
|
|
267
269
|
protoOf(WsShape).toString = function () {
|
|
268
270
|
return 'WsShape(value=' + toString(this.value) + ')';
|
|
@@ -281,8 +283,8 @@ protoOf(WsShape).equals = function (other) {
|
|
|
281
283
|
return true;
|
|
282
284
|
};
|
|
283
285
|
function WsEndpoint(identifier, comment, method, path, queries, headers, requests, responses) {
|
|
284
|
-
this.
|
|
285
|
-
this.
|
|
286
|
+
this.w2j_1 = identifier;
|
|
287
|
+
this.x2j_1 = comment;
|
|
286
288
|
this.method = method;
|
|
287
289
|
this.path = path;
|
|
288
290
|
this.queries = queries;
|
|
@@ -290,74 +292,74 @@ function WsEndpoint(identifier, comment, method, path, queries, headers, request
|
|
|
290
292
|
this.requests = requests;
|
|
291
293
|
this.responses = responses;
|
|
292
294
|
}
|
|
293
|
-
protoOf(WsEndpoint).
|
|
294
|
-
return this.
|
|
295
|
+
protoOf(WsEndpoint).f25 = function () {
|
|
296
|
+
return this.w2j_1;
|
|
295
297
|
};
|
|
296
|
-
protoOf(WsEndpoint).
|
|
297
|
-
return this.
|
|
298
|
+
protoOf(WsEndpoint).q2j = function () {
|
|
299
|
+
return this.x2j_1;
|
|
298
300
|
};
|
|
299
|
-
protoOf(WsEndpoint).
|
|
301
|
+
protoOf(WsEndpoint).y2j = function () {
|
|
300
302
|
return this.method;
|
|
301
303
|
};
|
|
302
|
-
protoOf(WsEndpoint).
|
|
304
|
+
protoOf(WsEndpoint).z2j = function () {
|
|
303
305
|
return this.path;
|
|
304
306
|
};
|
|
305
|
-
protoOf(WsEndpoint).
|
|
307
|
+
protoOf(WsEndpoint).a2k = function () {
|
|
306
308
|
return this.queries;
|
|
307
309
|
};
|
|
308
|
-
protoOf(WsEndpoint).
|
|
310
|
+
protoOf(WsEndpoint).b2k = function () {
|
|
309
311
|
return this.headers;
|
|
310
312
|
};
|
|
311
|
-
protoOf(WsEndpoint).
|
|
313
|
+
protoOf(WsEndpoint).c2k = function () {
|
|
312
314
|
return this.requests;
|
|
313
315
|
};
|
|
314
|
-
protoOf(WsEndpoint).
|
|
316
|
+
protoOf(WsEndpoint).d2k = function () {
|
|
315
317
|
return this.responses;
|
|
316
318
|
};
|
|
317
319
|
protoOf(WsEndpoint).sd = function () {
|
|
318
|
-
return this.
|
|
320
|
+
return this.w2j_1;
|
|
319
321
|
};
|
|
320
322
|
protoOf(WsEndpoint).td = function () {
|
|
321
|
-
return this.
|
|
323
|
+
return this.x2j_1;
|
|
322
324
|
};
|
|
323
325
|
protoOf(WsEndpoint).uh = function () {
|
|
324
326
|
return this.method;
|
|
325
327
|
};
|
|
326
|
-
protoOf(WsEndpoint).
|
|
328
|
+
protoOf(WsEndpoint).e2k = function () {
|
|
327
329
|
return this.path;
|
|
328
330
|
};
|
|
329
|
-
protoOf(WsEndpoint).
|
|
331
|
+
protoOf(WsEndpoint).f2k = function () {
|
|
330
332
|
return this.queries;
|
|
331
333
|
};
|
|
332
|
-
protoOf(WsEndpoint).
|
|
334
|
+
protoOf(WsEndpoint).g2k = function () {
|
|
333
335
|
return this.headers;
|
|
334
336
|
};
|
|
335
|
-
protoOf(WsEndpoint).
|
|
337
|
+
protoOf(WsEndpoint).h2k = function () {
|
|
336
338
|
return this.requests;
|
|
337
339
|
};
|
|
338
|
-
protoOf(WsEndpoint).
|
|
340
|
+
protoOf(WsEndpoint).i2k = function () {
|
|
339
341
|
return this.responses;
|
|
340
342
|
};
|
|
341
|
-
protoOf(WsEndpoint).
|
|
343
|
+
protoOf(WsEndpoint).j2k = function (identifier, comment, method, path, queries, headers, requests, responses) {
|
|
342
344
|
return new WsEndpoint(identifier, comment, method, path, queries, headers, requests, responses);
|
|
343
345
|
};
|
|
344
346
|
protoOf(WsEndpoint).copy = function (identifier, comment, method, path, queries, headers, requests, responses, $super) {
|
|
345
|
-
identifier = identifier === VOID ? this.
|
|
346
|
-
comment = comment === VOID ? this.
|
|
347
|
+
identifier = identifier === VOID ? this.w2j_1 : identifier;
|
|
348
|
+
comment = comment === VOID ? this.x2j_1 : comment;
|
|
347
349
|
method = method === VOID ? this.method : method;
|
|
348
350
|
path = path === VOID ? this.path : path;
|
|
349
351
|
queries = queries === VOID ? this.queries : queries;
|
|
350
352
|
headers = headers === VOID ? this.headers : headers;
|
|
351
353
|
requests = requests === VOID ? this.requests : requests;
|
|
352
354
|
responses = responses === VOID ? this.responses : responses;
|
|
353
|
-
return this.
|
|
355
|
+
return this.j2k(identifier, comment, method, path, queries, headers, requests, responses);
|
|
354
356
|
};
|
|
355
357
|
protoOf(WsEndpoint).toString = function () {
|
|
356
|
-
return 'WsEndpoint(identifier=' + this.
|
|
358
|
+
return 'WsEndpoint(identifier=' + this.w2j_1 + ', comment=' + this.x2j_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
359
|
};
|
|
358
360
|
protoOf(WsEndpoint).hashCode = function () {
|
|
359
|
-
var result = getStringHashCode(this.
|
|
360
|
-
result = imul(result, 31) + (this.
|
|
361
|
+
var result = getStringHashCode(this.w2j_1);
|
|
362
|
+
result = imul(result, 31) + (this.x2j_1 == null ? 0 : getStringHashCode(this.x2j_1)) | 0;
|
|
361
363
|
result = imul(result, 31) + this.method.hashCode() | 0;
|
|
362
364
|
result = imul(result, 31) + hashCode(this.path) | 0;
|
|
363
365
|
result = imul(result, 31) + hashCode(this.queries) | 0;
|
|
@@ -372,9 +374,9 @@ protoOf(WsEndpoint).equals = function (other) {
|
|
|
372
374
|
if (!(other instanceof WsEndpoint))
|
|
373
375
|
return false;
|
|
374
376
|
var tmp0_other_with_cast = other instanceof WsEndpoint ? other : THROW_CCE();
|
|
375
|
-
if (!(this.
|
|
377
|
+
if (!(this.w2j_1 === tmp0_other_with_cast.w2j_1))
|
|
376
378
|
return false;
|
|
377
|
-
if (!(this.
|
|
379
|
+
if (!(this.x2j_1 == tmp0_other_with_cast.x2j_1))
|
|
378
380
|
return false;
|
|
379
381
|
if (!this.method.equals(tmp0_other_with_cast.method))
|
|
380
382
|
return false;
|
|
@@ -391,43 +393,43 @@ protoOf(WsEndpoint).equals = function (other) {
|
|
|
391
393
|
return true;
|
|
392
394
|
};
|
|
393
395
|
function WsEnum(identifier, comment, entries) {
|
|
394
|
-
this.
|
|
395
|
-
this.
|
|
396
|
+
this.k2k_1 = identifier;
|
|
397
|
+
this.l2k_1 = comment;
|
|
396
398
|
this.entries = entries;
|
|
397
399
|
}
|
|
398
|
-
protoOf(WsEnum).
|
|
399
|
-
return this.
|
|
400
|
+
protoOf(WsEnum).f25 = function () {
|
|
401
|
+
return this.k2k_1;
|
|
400
402
|
};
|
|
401
|
-
protoOf(WsEnum).
|
|
402
|
-
return this.
|
|
403
|
+
protoOf(WsEnum).q2j = function () {
|
|
404
|
+
return this.l2k_1;
|
|
403
405
|
};
|
|
404
406
|
protoOf(WsEnum).z = function () {
|
|
405
407
|
return this.entries;
|
|
406
408
|
};
|
|
407
409
|
protoOf(WsEnum).sd = function () {
|
|
408
|
-
return this.
|
|
410
|
+
return this.k2k_1;
|
|
409
411
|
};
|
|
410
412
|
protoOf(WsEnum).td = function () {
|
|
411
|
-
return this.
|
|
413
|
+
return this.l2k_1;
|
|
412
414
|
};
|
|
413
415
|
protoOf(WsEnum).uh = function () {
|
|
414
416
|
return this.entries;
|
|
415
417
|
};
|
|
416
|
-
protoOf(WsEnum).
|
|
418
|
+
protoOf(WsEnum).m2k = function (identifier, comment, entries) {
|
|
417
419
|
return new WsEnum(identifier, comment, entries);
|
|
418
420
|
};
|
|
419
421
|
protoOf(WsEnum).copy = function (identifier, comment, entries, $super) {
|
|
420
|
-
identifier = identifier === VOID ? this.
|
|
421
|
-
comment = comment === VOID ? this.
|
|
422
|
+
identifier = identifier === VOID ? this.k2k_1 : identifier;
|
|
423
|
+
comment = comment === VOID ? this.l2k_1 : comment;
|
|
422
424
|
entries = entries === VOID ? this.entries : entries;
|
|
423
|
-
return this.
|
|
425
|
+
return this.m2k(identifier, comment, entries);
|
|
424
426
|
};
|
|
425
427
|
protoOf(WsEnum).toString = function () {
|
|
426
|
-
return 'WsEnum(identifier=' + this.
|
|
428
|
+
return 'WsEnum(identifier=' + this.k2k_1 + ', comment=' + this.l2k_1 + ', entries=' + toString(this.entries) + ')';
|
|
427
429
|
};
|
|
428
430
|
protoOf(WsEnum).hashCode = function () {
|
|
429
|
-
var result = getStringHashCode(this.
|
|
430
|
-
result = imul(result, 31) + (this.
|
|
431
|
+
var result = getStringHashCode(this.k2k_1);
|
|
432
|
+
result = imul(result, 31) + (this.l2k_1 == null ? 0 : getStringHashCode(this.l2k_1)) | 0;
|
|
431
433
|
result = imul(result, 31) + hashCode(this.entries) | 0;
|
|
432
434
|
return result;
|
|
433
435
|
};
|
|
@@ -437,52 +439,52 @@ protoOf(WsEnum).equals = function (other) {
|
|
|
437
439
|
if (!(other instanceof WsEnum))
|
|
438
440
|
return false;
|
|
439
441
|
var tmp0_other_with_cast = other instanceof WsEnum ? other : THROW_CCE();
|
|
440
|
-
if (!(this.
|
|
442
|
+
if (!(this.k2k_1 === tmp0_other_with_cast.k2k_1))
|
|
441
443
|
return false;
|
|
442
|
-
if (!(this.
|
|
444
|
+
if (!(this.l2k_1 == tmp0_other_with_cast.l2k_1))
|
|
443
445
|
return false;
|
|
444
446
|
if (!equals(this.entries, tmp0_other_with_cast.entries))
|
|
445
447
|
return false;
|
|
446
448
|
return true;
|
|
447
449
|
};
|
|
448
450
|
function WsUnion(identifier, comment, entries) {
|
|
449
|
-
this.
|
|
450
|
-
this.
|
|
451
|
+
this.n2k_1 = identifier;
|
|
452
|
+
this.o2k_1 = comment;
|
|
451
453
|
this.entries = entries;
|
|
452
454
|
}
|
|
453
|
-
protoOf(WsUnion).
|
|
454
|
-
return this.
|
|
455
|
+
protoOf(WsUnion).f25 = function () {
|
|
456
|
+
return this.n2k_1;
|
|
455
457
|
};
|
|
456
|
-
protoOf(WsUnion).
|
|
457
|
-
return this.
|
|
458
|
+
protoOf(WsUnion).q2j = function () {
|
|
459
|
+
return this.o2k_1;
|
|
458
460
|
};
|
|
459
461
|
protoOf(WsUnion).z = function () {
|
|
460
462
|
return this.entries;
|
|
461
463
|
};
|
|
462
464
|
protoOf(WsUnion).sd = function () {
|
|
463
|
-
return this.
|
|
465
|
+
return this.n2k_1;
|
|
464
466
|
};
|
|
465
467
|
protoOf(WsUnion).td = function () {
|
|
466
|
-
return this.
|
|
468
|
+
return this.o2k_1;
|
|
467
469
|
};
|
|
468
470
|
protoOf(WsUnion).uh = function () {
|
|
469
471
|
return this.entries;
|
|
470
472
|
};
|
|
471
|
-
protoOf(WsUnion).
|
|
473
|
+
protoOf(WsUnion).p2k = function (identifier, comment, entries) {
|
|
472
474
|
return new WsUnion(identifier, comment, entries);
|
|
473
475
|
};
|
|
474
476
|
protoOf(WsUnion).copy = function (identifier, comment, entries, $super) {
|
|
475
|
-
identifier = identifier === VOID ? this.
|
|
476
|
-
comment = comment === VOID ? this.
|
|
477
|
+
identifier = identifier === VOID ? this.n2k_1 : identifier;
|
|
478
|
+
comment = comment === VOID ? this.o2k_1 : comment;
|
|
477
479
|
entries = entries === VOID ? this.entries : entries;
|
|
478
|
-
return this.
|
|
480
|
+
return this.p2k(identifier, comment, entries);
|
|
479
481
|
};
|
|
480
482
|
protoOf(WsUnion).toString = function () {
|
|
481
|
-
return 'WsUnion(identifier=' + this.
|
|
483
|
+
return 'WsUnion(identifier=' + this.n2k_1 + ', comment=' + this.o2k_1 + ', entries=' + toString(this.entries) + ')';
|
|
482
484
|
};
|
|
483
485
|
protoOf(WsUnion).hashCode = function () {
|
|
484
|
-
var result = getStringHashCode(this.
|
|
485
|
-
result = imul(result, 31) + (this.
|
|
486
|
+
var result = getStringHashCode(this.n2k_1);
|
|
487
|
+
result = imul(result, 31) + (this.o2k_1 == null ? 0 : getStringHashCode(this.o2k_1)) | 0;
|
|
486
488
|
result = imul(result, 31) + hashCode(this.entries) | 0;
|
|
487
489
|
return result;
|
|
488
490
|
};
|
|
@@ -492,52 +494,52 @@ protoOf(WsUnion).equals = function (other) {
|
|
|
492
494
|
if (!(other instanceof WsUnion))
|
|
493
495
|
return false;
|
|
494
496
|
var tmp0_other_with_cast = other instanceof WsUnion ? other : THROW_CCE();
|
|
495
|
-
if (!(this.
|
|
497
|
+
if (!(this.n2k_1 === tmp0_other_with_cast.n2k_1))
|
|
496
498
|
return false;
|
|
497
|
-
if (!(this.
|
|
499
|
+
if (!(this.o2k_1 == tmp0_other_with_cast.o2k_1))
|
|
498
500
|
return false;
|
|
499
501
|
if (!equals(this.entries, tmp0_other_with_cast.entries))
|
|
500
502
|
return false;
|
|
501
503
|
return true;
|
|
502
504
|
};
|
|
503
505
|
function WsChannel(identifier, comment, reference) {
|
|
504
|
-
this.
|
|
505
|
-
this.
|
|
506
|
+
this.q2k_1 = identifier;
|
|
507
|
+
this.r2k_1 = comment;
|
|
506
508
|
this.reference = reference;
|
|
507
509
|
}
|
|
508
|
-
protoOf(WsChannel).
|
|
509
|
-
return this.
|
|
510
|
+
protoOf(WsChannel).f25 = function () {
|
|
511
|
+
return this.q2k_1;
|
|
510
512
|
};
|
|
511
|
-
protoOf(WsChannel).
|
|
512
|
-
return this.
|
|
513
|
+
protoOf(WsChannel).q2j = function () {
|
|
514
|
+
return this.r2k_1;
|
|
513
515
|
};
|
|
514
|
-
protoOf(WsChannel).
|
|
516
|
+
protoOf(WsChannel).s2k = function () {
|
|
515
517
|
return this.reference;
|
|
516
518
|
};
|
|
517
519
|
protoOf(WsChannel).sd = function () {
|
|
518
|
-
return this.
|
|
520
|
+
return this.q2k_1;
|
|
519
521
|
};
|
|
520
522
|
protoOf(WsChannel).td = function () {
|
|
521
|
-
return this.
|
|
523
|
+
return this.r2k_1;
|
|
522
524
|
};
|
|
523
525
|
protoOf(WsChannel).uh = function () {
|
|
524
526
|
return this.reference;
|
|
525
527
|
};
|
|
526
|
-
protoOf(WsChannel).
|
|
528
|
+
protoOf(WsChannel).t2k = function (identifier, comment, reference) {
|
|
527
529
|
return new WsChannel(identifier, comment, reference);
|
|
528
530
|
};
|
|
529
531
|
protoOf(WsChannel).copy = function (identifier, comment, reference, $super) {
|
|
530
|
-
identifier = identifier === VOID ? this.
|
|
531
|
-
comment = comment === VOID ? this.
|
|
532
|
+
identifier = identifier === VOID ? this.q2k_1 : identifier;
|
|
533
|
+
comment = comment === VOID ? this.r2k_1 : comment;
|
|
532
534
|
reference = reference === VOID ? this.reference : reference;
|
|
533
|
-
return this.
|
|
535
|
+
return this.t2k(identifier, comment, reference);
|
|
534
536
|
};
|
|
535
537
|
protoOf(WsChannel).toString = function () {
|
|
536
|
-
return 'WsChannel(identifier=' + this.
|
|
538
|
+
return 'WsChannel(identifier=' + this.q2k_1 + ', comment=' + this.r2k_1 + ', reference=' + toString(this.reference) + ')';
|
|
537
539
|
};
|
|
538
540
|
protoOf(WsChannel).hashCode = function () {
|
|
539
|
-
var result = getStringHashCode(this.
|
|
540
|
-
result = imul(result, 31) + (this.
|
|
541
|
+
var result = getStringHashCode(this.q2k_1);
|
|
542
|
+
result = imul(result, 31) + (this.r2k_1 == null ? 0 : getStringHashCode(this.r2k_1)) | 0;
|
|
541
543
|
result = imul(result, 31) + hashCode(this.reference) | 0;
|
|
542
544
|
return result;
|
|
543
545
|
};
|
|
@@ -547,52 +549,52 @@ protoOf(WsChannel).equals = function (other) {
|
|
|
547
549
|
if (!(other instanceof WsChannel))
|
|
548
550
|
return false;
|
|
549
551
|
var tmp0_other_with_cast = other instanceof WsChannel ? other : THROW_CCE();
|
|
550
|
-
if (!(this.
|
|
552
|
+
if (!(this.q2k_1 === tmp0_other_with_cast.q2k_1))
|
|
551
553
|
return false;
|
|
552
|
-
if (!(this.
|
|
554
|
+
if (!(this.r2k_1 == tmp0_other_with_cast.r2k_1))
|
|
553
555
|
return false;
|
|
554
556
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
555
557
|
return false;
|
|
556
558
|
return true;
|
|
557
559
|
};
|
|
558
560
|
function WsRefined(identifier, comment, reference) {
|
|
559
|
-
this.
|
|
560
|
-
this.
|
|
561
|
+
this.u2k_1 = identifier;
|
|
562
|
+
this.v2k_1 = comment;
|
|
561
563
|
this.reference = reference;
|
|
562
564
|
}
|
|
563
|
-
protoOf(WsRefined).
|
|
564
|
-
return this.
|
|
565
|
+
protoOf(WsRefined).f25 = function () {
|
|
566
|
+
return this.u2k_1;
|
|
565
567
|
};
|
|
566
|
-
protoOf(WsRefined).
|
|
567
|
-
return this.
|
|
568
|
+
protoOf(WsRefined).q2j = function () {
|
|
569
|
+
return this.v2k_1;
|
|
568
570
|
};
|
|
569
|
-
protoOf(WsRefined).
|
|
571
|
+
protoOf(WsRefined).s2k = function () {
|
|
570
572
|
return this.reference;
|
|
571
573
|
};
|
|
572
574
|
protoOf(WsRefined).sd = function () {
|
|
573
|
-
return this.
|
|
575
|
+
return this.u2k_1;
|
|
574
576
|
};
|
|
575
577
|
protoOf(WsRefined).td = function () {
|
|
576
|
-
return this.
|
|
578
|
+
return this.v2k_1;
|
|
577
579
|
};
|
|
578
580
|
protoOf(WsRefined).uh = function () {
|
|
579
581
|
return this.reference;
|
|
580
582
|
};
|
|
581
|
-
protoOf(WsRefined).
|
|
583
|
+
protoOf(WsRefined).t2k = function (identifier, comment, reference) {
|
|
582
584
|
return new WsRefined(identifier, comment, reference);
|
|
583
585
|
};
|
|
584
586
|
protoOf(WsRefined).copy = function (identifier, comment, reference, $super) {
|
|
585
|
-
identifier = identifier === VOID ? this.
|
|
586
|
-
comment = comment === VOID ? this.
|
|
587
|
+
identifier = identifier === VOID ? this.u2k_1 : identifier;
|
|
588
|
+
comment = comment === VOID ? this.v2k_1 : comment;
|
|
587
589
|
reference = reference === VOID ? this.reference : reference;
|
|
588
|
-
return this.
|
|
590
|
+
return this.t2k(identifier, comment, reference);
|
|
589
591
|
};
|
|
590
592
|
protoOf(WsRefined).toString = function () {
|
|
591
|
-
return 'WsRefined(identifier=' + this.
|
|
593
|
+
return 'WsRefined(identifier=' + this.u2k_1 + ', comment=' + this.v2k_1 + ', reference=' + toString(this.reference) + ')';
|
|
592
594
|
};
|
|
593
595
|
protoOf(WsRefined).hashCode = function () {
|
|
594
|
-
var result = getStringHashCode(this.
|
|
595
|
-
result = imul(result, 31) + (this.
|
|
596
|
+
var result = getStringHashCode(this.u2k_1);
|
|
597
|
+
result = imul(result, 31) + (this.v2k_1 == null ? 0 : getStringHashCode(this.v2k_1)) | 0;
|
|
596
598
|
result = imul(result, 31) + hashCode(this.reference) | 0;
|
|
597
599
|
return result;
|
|
598
600
|
};
|
|
@@ -602,9 +604,9 @@ protoOf(WsRefined).equals = function (other) {
|
|
|
602
604
|
if (!(other instanceof WsRefined))
|
|
603
605
|
return false;
|
|
604
606
|
var tmp0_other_with_cast = other instanceof WsRefined ? other : THROW_CCE();
|
|
605
|
-
if (!(this.
|
|
607
|
+
if (!(this.u2k_1 === tmp0_other_with_cast.u2k_1))
|
|
606
608
|
return false;
|
|
607
|
-
if (!(this.
|
|
609
|
+
if (!(this.v2k_1 == tmp0_other_with_cast.v2k_1))
|
|
608
610
|
return false;
|
|
609
611
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
610
612
|
return false;
|
|
@@ -673,12 +675,12 @@ protoOf(WsLiteral).b1 = function () {
|
|
|
673
675
|
protoOf(WsLiteral).sd = function () {
|
|
674
676
|
return this.value;
|
|
675
677
|
};
|
|
676
|
-
protoOf(WsLiteral).
|
|
678
|
+
protoOf(WsLiteral).y2k = function (value) {
|
|
677
679
|
return new WsLiteral(value);
|
|
678
680
|
};
|
|
679
681
|
protoOf(WsLiteral).copy = function (value, $super) {
|
|
680
682
|
value = value === VOID ? this.value : value;
|
|
681
|
-
return this.
|
|
683
|
+
return this.y2k(value);
|
|
682
684
|
};
|
|
683
685
|
protoOf(WsLiteral).toString = function () {
|
|
684
686
|
return 'WsLiteral(value=' + this.value + ')';
|
|
@@ -700,10 +702,10 @@ function WsParam(identifier, reference) {
|
|
|
700
702
|
this.identifier = identifier;
|
|
701
703
|
this.reference = reference;
|
|
702
704
|
}
|
|
703
|
-
protoOf(WsParam).
|
|
705
|
+
protoOf(WsParam).f25 = function () {
|
|
704
706
|
return this.identifier;
|
|
705
707
|
};
|
|
706
|
-
protoOf(WsParam).
|
|
708
|
+
protoOf(WsParam).s2k = function () {
|
|
707
709
|
return this.reference;
|
|
708
710
|
};
|
|
709
711
|
protoOf(WsParam).sd = function () {
|
|
@@ -712,13 +714,13 @@ protoOf(WsParam).sd = function () {
|
|
|
712
714
|
protoOf(WsParam).td = function () {
|
|
713
715
|
return this.reference;
|
|
714
716
|
};
|
|
715
|
-
protoOf(WsParam).
|
|
717
|
+
protoOf(WsParam).z2k = function (identifier, reference) {
|
|
716
718
|
return new WsParam(identifier, reference);
|
|
717
719
|
};
|
|
718
720
|
protoOf(WsParam).copy = function (identifier, reference, $super) {
|
|
719
721
|
identifier = identifier === VOID ? this.identifier : identifier;
|
|
720
722
|
reference = reference === VOID ? this.reference : reference;
|
|
721
|
-
return this.
|
|
723
|
+
return this.z2k(identifier, reference);
|
|
722
724
|
};
|
|
723
725
|
protoOf(WsParam).toString = function () {
|
|
724
726
|
return 'WsParam(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
|
|
@@ -749,12 +751,12 @@ protoOf(Shape_0).b1 = function () {
|
|
|
749
751
|
protoOf(Shape_0).sd = function () {
|
|
750
752
|
return this.value;
|
|
751
753
|
};
|
|
752
|
-
protoOf(Shape_0).
|
|
754
|
+
protoOf(Shape_0).v2j = function (value) {
|
|
753
755
|
return new Shape_0(value);
|
|
754
756
|
};
|
|
755
757
|
protoOf(Shape_0).copy = function (value, $super) {
|
|
756
758
|
value = value === VOID ? this.value : value;
|
|
757
|
-
return this.
|
|
759
|
+
return this.v2j(value);
|
|
758
760
|
};
|
|
759
761
|
protoOf(Shape_0).toString = function () {
|
|
760
762
|
return 'Shape(value=' + toString(this.value) + ')';
|
|
@@ -776,10 +778,10 @@ function WsField(identifier, reference) {
|
|
|
776
778
|
this.identifier = identifier;
|
|
777
779
|
this.reference = reference;
|
|
778
780
|
}
|
|
779
|
-
protoOf(WsField).
|
|
781
|
+
protoOf(WsField).f25 = function () {
|
|
780
782
|
return this.identifier;
|
|
781
783
|
};
|
|
782
|
-
protoOf(WsField).
|
|
784
|
+
protoOf(WsField).s2k = function () {
|
|
783
785
|
return this.reference;
|
|
784
786
|
};
|
|
785
787
|
protoOf(WsField).sd = function () {
|
|
@@ -788,13 +790,13 @@ protoOf(WsField).sd = function () {
|
|
|
788
790
|
protoOf(WsField).td = function () {
|
|
789
791
|
return this.reference;
|
|
790
792
|
};
|
|
791
|
-
protoOf(WsField).
|
|
793
|
+
protoOf(WsField).z2k = function (identifier, reference) {
|
|
792
794
|
return new WsField(identifier, reference);
|
|
793
795
|
};
|
|
794
796
|
protoOf(WsField).copy = function (identifier, reference, $super) {
|
|
795
797
|
identifier = identifier === VOID ? this.identifier : identifier;
|
|
796
798
|
reference = reference === VOID ? this.reference : reference;
|
|
797
|
-
return this.
|
|
799
|
+
return this.z2k(identifier, reference);
|
|
798
800
|
};
|
|
799
801
|
protoOf(WsField).toString = function () {
|
|
800
802
|
return 'WsField(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
|
|
@@ -827,12 +829,12 @@ protoOf(WsClassIdentifier).b1 = function () {
|
|
|
827
829
|
protoOf(WsClassIdentifier).sd = function () {
|
|
828
830
|
return this.value;
|
|
829
831
|
};
|
|
830
|
-
protoOf(WsClassIdentifier).
|
|
832
|
+
protoOf(WsClassIdentifier).y2k = function (value) {
|
|
831
833
|
return new WsClassIdentifier(value);
|
|
832
834
|
};
|
|
833
835
|
protoOf(WsClassIdentifier).copy = function (value, $super) {
|
|
834
836
|
value = value === VOID ? this.value : value;
|
|
835
|
-
return this.
|
|
837
|
+
return this.y2k(value);
|
|
836
838
|
};
|
|
837
839
|
protoOf(WsClassIdentifier).toString = function () {
|
|
838
840
|
return 'WsClassIdentifier(value=' + this.value + ')';
|
|
@@ -859,12 +861,12 @@ protoOf(WsFieldIdentifier).b1 = function () {
|
|
|
859
861
|
protoOf(WsFieldIdentifier).sd = function () {
|
|
860
862
|
return this.value;
|
|
861
863
|
};
|
|
862
|
-
protoOf(WsFieldIdentifier).
|
|
864
|
+
protoOf(WsFieldIdentifier).y2k = function (value) {
|
|
863
865
|
return new WsFieldIdentifier(value);
|
|
864
866
|
};
|
|
865
867
|
protoOf(WsFieldIdentifier).copy = function (value, $super) {
|
|
866
868
|
value = value === VOID ? this.value : value;
|
|
867
|
-
return this.
|
|
869
|
+
return this.y2k(value);
|
|
868
870
|
};
|
|
869
871
|
protoOf(WsFieldIdentifier).toString = function () {
|
|
870
872
|
return 'WsFieldIdentifier(value=' + this.value + ')';
|
|
@@ -885,26 +887,26 @@ protoOf(WsFieldIdentifier).equals = function (other) {
|
|
|
885
887
|
function WsReference() {
|
|
886
888
|
}
|
|
887
889
|
function WsAny(isNullable) {
|
|
888
|
-
this.
|
|
890
|
+
this.a2l_1 = isNullable;
|
|
889
891
|
}
|
|
890
892
|
protoOf(WsAny).jm = function () {
|
|
891
|
-
return this.
|
|
893
|
+
return this.a2l_1;
|
|
892
894
|
};
|
|
893
895
|
protoOf(WsAny).sd = function () {
|
|
894
|
-
return this.
|
|
896
|
+
return this.a2l_1;
|
|
895
897
|
};
|
|
896
|
-
protoOf(WsAny).
|
|
898
|
+
protoOf(WsAny).e28 = function (isNullable) {
|
|
897
899
|
return new WsAny(isNullable);
|
|
898
900
|
};
|
|
899
901
|
protoOf(WsAny).copy = function (isNullable, $super) {
|
|
900
|
-
isNullable = isNullable === VOID ? this.
|
|
901
|
-
return this.
|
|
902
|
+
isNullable = isNullable === VOID ? this.a2l_1 : isNullable;
|
|
903
|
+
return this.e28(isNullable);
|
|
902
904
|
};
|
|
903
905
|
protoOf(WsAny).toString = function () {
|
|
904
|
-
return 'WsAny(isNullable=' + this.
|
|
906
|
+
return 'WsAny(isNullable=' + this.a2l_1 + ')';
|
|
905
907
|
};
|
|
906
908
|
protoOf(WsAny).hashCode = function () {
|
|
907
|
-
return getBooleanHashCode(this.
|
|
909
|
+
return getBooleanHashCode(this.a2l_1);
|
|
908
910
|
};
|
|
909
911
|
protoOf(WsAny).equals = function (other) {
|
|
910
912
|
if (this === other)
|
|
@@ -912,31 +914,31 @@ protoOf(WsAny).equals = function (other) {
|
|
|
912
914
|
if (!(other instanceof WsAny))
|
|
913
915
|
return false;
|
|
914
916
|
var tmp0_other_with_cast = other instanceof WsAny ? other : THROW_CCE();
|
|
915
|
-
if (!(this.
|
|
917
|
+
if (!(this.a2l_1 === tmp0_other_with_cast.a2l_1))
|
|
916
918
|
return false;
|
|
917
919
|
return true;
|
|
918
920
|
};
|
|
919
921
|
function WsUnit(isNullable) {
|
|
920
|
-
this.
|
|
922
|
+
this.b2l_1 = isNullable;
|
|
921
923
|
}
|
|
922
924
|
protoOf(WsUnit).jm = function () {
|
|
923
|
-
return this.
|
|
925
|
+
return this.b2l_1;
|
|
924
926
|
};
|
|
925
927
|
protoOf(WsUnit).sd = function () {
|
|
926
|
-
return this.
|
|
928
|
+
return this.b2l_1;
|
|
927
929
|
};
|
|
928
|
-
protoOf(WsUnit).
|
|
930
|
+
protoOf(WsUnit).e28 = function (isNullable) {
|
|
929
931
|
return new WsUnit(isNullable);
|
|
930
932
|
};
|
|
931
933
|
protoOf(WsUnit).copy = function (isNullable, $super) {
|
|
932
|
-
isNullable = isNullable === VOID ? this.
|
|
933
|
-
return this.
|
|
934
|
+
isNullable = isNullable === VOID ? this.b2l_1 : isNullable;
|
|
935
|
+
return this.e28(isNullable);
|
|
934
936
|
};
|
|
935
937
|
protoOf(WsUnit).toString = function () {
|
|
936
|
-
return 'WsUnit(isNullable=' + this.
|
|
938
|
+
return 'WsUnit(isNullable=' + this.b2l_1 + ')';
|
|
937
939
|
};
|
|
938
940
|
protoOf(WsUnit).hashCode = function () {
|
|
939
|
-
return getBooleanHashCode(this.
|
|
941
|
+
return getBooleanHashCode(this.b2l_1);
|
|
940
942
|
};
|
|
941
943
|
protoOf(WsUnit).equals = function (other) {
|
|
942
944
|
if (this === other)
|
|
@@ -944,40 +946,40 @@ protoOf(WsUnit).equals = function (other) {
|
|
|
944
946
|
if (!(other instanceof WsUnit))
|
|
945
947
|
return false;
|
|
946
948
|
var tmp0_other_with_cast = other instanceof WsUnit ? other : THROW_CCE();
|
|
947
|
-
if (!(this.
|
|
949
|
+
if (!(this.b2l_1 === tmp0_other_with_cast.b2l_1))
|
|
948
950
|
return false;
|
|
949
951
|
return true;
|
|
950
952
|
};
|
|
951
953
|
function WsIterable(reference, isNullable) {
|
|
952
954
|
this.reference = reference;
|
|
953
|
-
this.
|
|
955
|
+
this.c2l_1 = isNullable;
|
|
954
956
|
}
|
|
955
|
-
protoOf(WsIterable).
|
|
957
|
+
protoOf(WsIterable).s2k = function () {
|
|
956
958
|
return this.reference;
|
|
957
959
|
};
|
|
958
960
|
protoOf(WsIterable).jm = function () {
|
|
959
|
-
return this.
|
|
961
|
+
return this.c2l_1;
|
|
960
962
|
};
|
|
961
963
|
protoOf(WsIterable).sd = function () {
|
|
962
964
|
return this.reference;
|
|
963
965
|
};
|
|
964
966
|
protoOf(WsIterable).td = function () {
|
|
965
|
-
return this.
|
|
967
|
+
return this.c2l_1;
|
|
966
968
|
};
|
|
967
|
-
protoOf(WsIterable).
|
|
969
|
+
protoOf(WsIterable).d2l = function (reference, isNullable) {
|
|
968
970
|
return new WsIterable(reference, isNullable);
|
|
969
971
|
};
|
|
970
972
|
protoOf(WsIterable).copy = function (reference, isNullable, $super) {
|
|
971
973
|
reference = reference === VOID ? this.reference : reference;
|
|
972
|
-
isNullable = isNullable === VOID ? this.
|
|
973
|
-
return this.
|
|
974
|
+
isNullable = isNullable === VOID ? this.c2l_1 : isNullable;
|
|
975
|
+
return this.d2l(reference, isNullable);
|
|
974
976
|
};
|
|
975
977
|
protoOf(WsIterable).toString = function () {
|
|
976
|
-
return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.
|
|
978
|
+
return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.c2l_1 + ')';
|
|
977
979
|
};
|
|
978
980
|
protoOf(WsIterable).hashCode = function () {
|
|
979
981
|
var result = hashCode(this.reference);
|
|
980
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
982
|
+
result = imul(result, 31) + getBooleanHashCode(this.c2l_1) | 0;
|
|
981
983
|
return result;
|
|
982
984
|
};
|
|
983
985
|
protoOf(WsIterable).equals = function (other) {
|
|
@@ -988,40 +990,40 @@ protoOf(WsIterable).equals = function (other) {
|
|
|
988
990
|
var tmp0_other_with_cast = other instanceof WsIterable ? other : THROW_CCE();
|
|
989
991
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
990
992
|
return false;
|
|
991
|
-
if (!(this.
|
|
993
|
+
if (!(this.c2l_1 === tmp0_other_with_cast.c2l_1))
|
|
992
994
|
return false;
|
|
993
995
|
return true;
|
|
994
996
|
};
|
|
995
997
|
function WsDict(reference, isNullable) {
|
|
996
998
|
this.reference = reference;
|
|
997
|
-
this.
|
|
999
|
+
this.e2l_1 = isNullable;
|
|
998
1000
|
}
|
|
999
|
-
protoOf(WsDict).
|
|
1001
|
+
protoOf(WsDict).s2k = function () {
|
|
1000
1002
|
return this.reference;
|
|
1001
1003
|
};
|
|
1002
1004
|
protoOf(WsDict).jm = function () {
|
|
1003
|
-
return this.
|
|
1005
|
+
return this.e2l_1;
|
|
1004
1006
|
};
|
|
1005
1007
|
protoOf(WsDict).sd = function () {
|
|
1006
1008
|
return this.reference;
|
|
1007
1009
|
};
|
|
1008
1010
|
protoOf(WsDict).td = function () {
|
|
1009
|
-
return this.
|
|
1011
|
+
return this.e2l_1;
|
|
1010
1012
|
};
|
|
1011
|
-
protoOf(WsDict).
|
|
1013
|
+
protoOf(WsDict).d2l = function (reference, isNullable) {
|
|
1012
1014
|
return new WsDict(reference, isNullable);
|
|
1013
1015
|
};
|
|
1014
1016
|
protoOf(WsDict).copy = function (reference, isNullable, $super) {
|
|
1015
1017
|
reference = reference === VOID ? this.reference : reference;
|
|
1016
|
-
isNullable = isNullable === VOID ? this.
|
|
1017
|
-
return this.
|
|
1018
|
+
isNullable = isNullable === VOID ? this.e2l_1 : isNullable;
|
|
1019
|
+
return this.d2l(reference, isNullable);
|
|
1018
1020
|
};
|
|
1019
1021
|
protoOf(WsDict).toString = function () {
|
|
1020
|
-
return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.
|
|
1022
|
+
return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.e2l_1 + ')';
|
|
1021
1023
|
};
|
|
1022
1024
|
protoOf(WsDict).hashCode = function () {
|
|
1023
1025
|
var result = hashCode(this.reference);
|
|
1024
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1026
|
+
result = imul(result, 31) + getBooleanHashCode(this.e2l_1) | 0;
|
|
1025
1027
|
return result;
|
|
1026
1028
|
};
|
|
1027
1029
|
protoOf(WsDict).equals = function (other) {
|
|
@@ -1032,40 +1034,40 @@ protoOf(WsDict).equals = function (other) {
|
|
|
1032
1034
|
var tmp0_other_with_cast = other instanceof WsDict ? other : THROW_CCE();
|
|
1033
1035
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
1034
1036
|
return false;
|
|
1035
|
-
if (!(this.
|
|
1037
|
+
if (!(this.e2l_1 === tmp0_other_with_cast.e2l_1))
|
|
1036
1038
|
return false;
|
|
1037
1039
|
return true;
|
|
1038
1040
|
};
|
|
1039
1041
|
function WsCustom(value, isNullable) {
|
|
1040
1042
|
this.value = value;
|
|
1041
|
-
this.
|
|
1043
|
+
this.f2l_1 = isNullable;
|
|
1042
1044
|
}
|
|
1043
1045
|
protoOf(WsCustom).b1 = function () {
|
|
1044
1046
|
return this.value;
|
|
1045
1047
|
};
|
|
1046
1048
|
protoOf(WsCustom).jm = function () {
|
|
1047
|
-
return this.
|
|
1049
|
+
return this.f2l_1;
|
|
1048
1050
|
};
|
|
1049
1051
|
protoOf(WsCustom).sd = function () {
|
|
1050
1052
|
return this.value;
|
|
1051
1053
|
};
|
|
1052
1054
|
protoOf(WsCustom).td = function () {
|
|
1053
|
-
return this.
|
|
1055
|
+
return this.f2l_1;
|
|
1054
1056
|
};
|
|
1055
|
-
protoOf(WsCustom).
|
|
1057
|
+
protoOf(WsCustom).n28 = function (value, isNullable) {
|
|
1056
1058
|
return new WsCustom(value, isNullable);
|
|
1057
1059
|
};
|
|
1058
1060
|
protoOf(WsCustom).copy = function (value, isNullable, $super) {
|
|
1059
1061
|
value = value === VOID ? this.value : value;
|
|
1060
|
-
isNullable = isNullable === VOID ? this.
|
|
1061
|
-
return this.
|
|
1062
|
+
isNullable = isNullable === VOID ? this.f2l_1 : isNullable;
|
|
1063
|
+
return this.n28(value, isNullable);
|
|
1062
1064
|
};
|
|
1063
1065
|
protoOf(WsCustom).toString = function () {
|
|
1064
|
-
return 'WsCustom(value=' + this.value + ', isNullable=' + this.
|
|
1066
|
+
return 'WsCustom(value=' + this.value + ', isNullable=' + this.f2l_1 + ')';
|
|
1065
1067
|
};
|
|
1066
1068
|
protoOf(WsCustom).hashCode = function () {
|
|
1067
1069
|
var result = getStringHashCode(this.value);
|
|
1068
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1070
|
+
result = imul(result, 31) + getBooleanHashCode(this.f2l_1) | 0;
|
|
1069
1071
|
return result;
|
|
1070
1072
|
};
|
|
1071
1073
|
protoOf(WsCustom).equals = function (other) {
|
|
@@ -1076,40 +1078,40 @@ protoOf(WsCustom).equals = function (other) {
|
|
|
1076
1078
|
var tmp0_other_with_cast = other instanceof WsCustom ? other : THROW_CCE();
|
|
1077
1079
|
if (!(this.value === tmp0_other_with_cast.value))
|
|
1078
1080
|
return false;
|
|
1079
|
-
if (!(this.
|
|
1081
|
+
if (!(this.f2l_1 === tmp0_other_with_cast.f2l_1))
|
|
1080
1082
|
return false;
|
|
1081
1083
|
return true;
|
|
1082
1084
|
};
|
|
1083
1085
|
function WsPrimitive(type, isNullable) {
|
|
1084
1086
|
this.type = type;
|
|
1085
|
-
this.
|
|
1087
|
+
this.g2l_1 = isNullable;
|
|
1086
1088
|
}
|
|
1087
|
-
protoOf(WsPrimitive).
|
|
1089
|
+
protoOf(WsPrimitive).c1l = function () {
|
|
1088
1090
|
return this.type;
|
|
1089
1091
|
};
|
|
1090
1092
|
protoOf(WsPrimitive).jm = function () {
|
|
1091
|
-
return this.
|
|
1093
|
+
return this.g2l_1;
|
|
1092
1094
|
};
|
|
1093
1095
|
protoOf(WsPrimitive).sd = function () {
|
|
1094
1096
|
return this.type;
|
|
1095
1097
|
};
|
|
1096
1098
|
protoOf(WsPrimitive).td = function () {
|
|
1097
|
-
return this.
|
|
1099
|
+
return this.g2l_1;
|
|
1098
1100
|
};
|
|
1099
|
-
protoOf(WsPrimitive).
|
|
1101
|
+
protoOf(WsPrimitive).h2l = function (type, isNullable) {
|
|
1100
1102
|
return new WsPrimitive(type, isNullable);
|
|
1101
1103
|
};
|
|
1102
1104
|
protoOf(WsPrimitive).copy = function (type, isNullable, $super) {
|
|
1103
1105
|
type = type === VOID ? this.type : type;
|
|
1104
|
-
isNullable = isNullable === VOID ? this.
|
|
1105
|
-
return this.
|
|
1106
|
+
isNullable = isNullable === VOID ? this.g2l_1 : isNullable;
|
|
1107
|
+
return this.h2l(type, isNullable);
|
|
1106
1108
|
};
|
|
1107
1109
|
protoOf(WsPrimitive).toString = function () {
|
|
1108
|
-
return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.
|
|
1110
|
+
return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.g2l_1 + ')';
|
|
1109
1111
|
};
|
|
1110
1112
|
protoOf(WsPrimitive).hashCode = function () {
|
|
1111
1113
|
var result = this.type.hashCode();
|
|
1112
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1114
|
+
result = imul(result, 31) + getBooleanHashCode(this.g2l_1) | 0;
|
|
1113
1115
|
return result;
|
|
1114
1116
|
};
|
|
1115
1117
|
protoOf(WsPrimitive).equals = function (other) {
|
|
@@ -1120,17 +1122,19 @@ protoOf(WsPrimitive).equals = function (other) {
|
|
|
1120
1122
|
var tmp0_other_with_cast = other instanceof WsPrimitive ? other : THROW_CCE();
|
|
1121
1123
|
if (!this.type.equals(tmp0_other_with_cast.type))
|
|
1122
1124
|
return false;
|
|
1123
|
-
if (!(this.
|
|
1125
|
+
if (!(this.g2l_1 === tmp0_other_with_cast.g2l_1))
|
|
1124
1126
|
return false;
|
|
1125
1127
|
return true;
|
|
1126
1128
|
};
|
|
1127
1129
|
var WsPrimitiveType_String_instance;
|
|
1128
1130
|
var WsPrimitiveType_Integer_instance;
|
|
1131
|
+
var WsPrimitiveType_Integer32_instance;
|
|
1129
1132
|
var WsPrimitiveType_Number_instance;
|
|
1133
|
+
var WsPrimitiveType_Number32_instance;
|
|
1130
1134
|
var WsPrimitiveType_Boolean_instance;
|
|
1131
1135
|
var WsPrimitiveType_Bytes_instance;
|
|
1132
1136
|
function values_0() {
|
|
1133
|
-
return [WsPrimitiveType_String_getInstance(), WsPrimitiveType_Integer_getInstance(), WsPrimitiveType_Number_getInstance(), WsPrimitiveType_Boolean_getInstance(), WsPrimitiveType_Bytes_getInstance()];
|
|
1137
|
+
return [WsPrimitiveType_String_getInstance(), WsPrimitiveType_Integer_getInstance(), WsPrimitiveType_Integer32_getInstance(), WsPrimitiveType_Number_getInstance(), WsPrimitiveType_Number32_getInstance(), WsPrimitiveType_Boolean_getInstance(), WsPrimitiveType_Bytes_getInstance()];
|
|
1134
1138
|
}
|
|
1135
1139
|
function valueOf_0(value) {
|
|
1136
1140
|
switch (value) {
|
|
@@ -1138,8 +1142,12 @@ function valueOf_0(value) {
|
|
|
1138
1142
|
return WsPrimitiveType_String_getInstance();
|
|
1139
1143
|
case 'Integer':
|
|
1140
1144
|
return WsPrimitiveType_Integer_getInstance();
|
|
1145
|
+
case 'Integer32':
|
|
1146
|
+
return WsPrimitiveType_Integer32_getInstance();
|
|
1141
1147
|
case 'Number':
|
|
1142
1148
|
return WsPrimitiveType_Number_getInstance();
|
|
1149
|
+
case 'Number32':
|
|
1150
|
+
return WsPrimitiveType_Number32_getInstance();
|
|
1143
1151
|
case 'Boolean':
|
|
1144
1152
|
return WsPrimitiveType_Boolean_getInstance();
|
|
1145
1153
|
case 'Bytes':
|
|
@@ -1157,9 +1165,11 @@ function WsPrimitiveType_initEntries() {
|
|
|
1157
1165
|
WsPrimitiveType_entriesInitialized = true;
|
|
1158
1166
|
WsPrimitiveType_String_instance = new WsPrimitiveType('String', 0);
|
|
1159
1167
|
WsPrimitiveType_Integer_instance = new WsPrimitiveType('Integer', 1);
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1168
|
+
WsPrimitiveType_Integer32_instance = new WsPrimitiveType('Integer32', 2);
|
|
1169
|
+
WsPrimitiveType_Number_instance = new WsPrimitiveType('Number', 3);
|
|
1170
|
+
WsPrimitiveType_Number32_instance = new WsPrimitiveType('Number32', 4);
|
|
1171
|
+
WsPrimitiveType_Boolean_instance = new WsPrimitiveType('Boolean', 5);
|
|
1172
|
+
WsPrimitiveType_Bytes_instance = new WsPrimitiveType('Bytes', 6);
|
|
1163
1173
|
}
|
|
1164
1174
|
function WsPrimitiveType(name, ordinal) {
|
|
1165
1175
|
Enum.call(this, name, ordinal);
|
|
@@ -1167,18 +1177,18 @@ function WsPrimitiveType(name, ordinal) {
|
|
|
1167
1177
|
function WsRequest(content) {
|
|
1168
1178
|
this.content = content;
|
|
1169
1179
|
}
|
|
1170
|
-
protoOf(WsRequest).
|
|
1180
|
+
protoOf(WsRequest).u17 = function () {
|
|
1171
1181
|
return this.content;
|
|
1172
1182
|
};
|
|
1173
1183
|
protoOf(WsRequest).sd = function () {
|
|
1174
1184
|
return this.content;
|
|
1175
1185
|
};
|
|
1176
|
-
protoOf(WsRequest).
|
|
1186
|
+
protoOf(WsRequest).k2l = function (content) {
|
|
1177
1187
|
return new WsRequest(content);
|
|
1178
1188
|
};
|
|
1179
1189
|
protoOf(WsRequest).copy = function (content, $super) {
|
|
1180
1190
|
content = content === VOID ? this.content : content;
|
|
1181
|
-
return this.
|
|
1191
|
+
return this.k2l(content);
|
|
1182
1192
|
};
|
|
1183
1193
|
protoOf(WsRequest).toString = function () {
|
|
1184
1194
|
return 'WsRequest(content=' + toString_0(this.content) + ')';
|
|
@@ -1201,13 +1211,13 @@ function WsResponse(status, headers, content) {
|
|
|
1201
1211
|
this.headers = headers;
|
|
1202
1212
|
this.content = content;
|
|
1203
1213
|
}
|
|
1204
|
-
protoOf(WsResponse).
|
|
1214
|
+
protoOf(WsResponse).l2l = function () {
|
|
1205
1215
|
return this.status;
|
|
1206
1216
|
};
|
|
1207
|
-
protoOf(WsResponse).
|
|
1217
|
+
protoOf(WsResponse).b2k = function () {
|
|
1208
1218
|
return this.headers;
|
|
1209
1219
|
};
|
|
1210
|
-
protoOf(WsResponse).
|
|
1220
|
+
protoOf(WsResponse).u17 = function () {
|
|
1211
1221
|
return this.content;
|
|
1212
1222
|
};
|
|
1213
1223
|
protoOf(WsResponse).sd = function () {
|
|
@@ -1219,14 +1229,14 @@ protoOf(WsResponse).td = function () {
|
|
|
1219
1229
|
protoOf(WsResponse).uh = function () {
|
|
1220
1230
|
return this.content;
|
|
1221
1231
|
};
|
|
1222
|
-
protoOf(WsResponse).
|
|
1232
|
+
protoOf(WsResponse).m2l = function (status, headers, content) {
|
|
1223
1233
|
return new WsResponse(status, headers, content);
|
|
1224
1234
|
};
|
|
1225
1235
|
protoOf(WsResponse).copy = function (status, headers, content, $super) {
|
|
1226
1236
|
status = status === VOID ? this.status : status;
|
|
1227
1237
|
headers = headers === VOID ? this.headers : headers;
|
|
1228
1238
|
content = content === VOID ? this.content : content;
|
|
1229
|
-
return this.
|
|
1239
|
+
return this.m2l(status, headers, content);
|
|
1230
1240
|
};
|
|
1231
1241
|
protoOf(WsResponse).toString = function () {
|
|
1232
1242
|
return 'WsResponse(status=' + this.status + ', headers=' + toString(this.headers) + ', content=' + toString_0(this.content) + ')';
|
|
@@ -1257,10 +1267,10 @@ function WsContent(type, reference, isNullable) {
|
|
|
1257
1267
|
this.reference = reference;
|
|
1258
1268
|
this.isNullable = isNullable;
|
|
1259
1269
|
}
|
|
1260
|
-
protoOf(WsContent).
|
|
1270
|
+
protoOf(WsContent).c1l = function () {
|
|
1261
1271
|
return this.type;
|
|
1262
1272
|
};
|
|
1263
|
-
protoOf(WsContent).
|
|
1273
|
+
protoOf(WsContent).s2k = function () {
|
|
1264
1274
|
return this.reference;
|
|
1265
1275
|
};
|
|
1266
1276
|
protoOf(WsContent).jm = function () {
|
|
@@ -1275,14 +1285,14 @@ protoOf(WsContent).td = function () {
|
|
|
1275
1285
|
protoOf(WsContent).uh = function () {
|
|
1276
1286
|
return this.isNullable;
|
|
1277
1287
|
};
|
|
1278
|
-
protoOf(WsContent).
|
|
1288
|
+
protoOf(WsContent).n2l = function (type, reference, isNullable) {
|
|
1279
1289
|
return new WsContent(type, reference, isNullable);
|
|
1280
1290
|
};
|
|
1281
1291
|
protoOf(WsContent).copy = function (type, reference, isNullable, $super) {
|
|
1282
1292
|
type = type === VOID ? this.type : type;
|
|
1283
1293
|
reference = reference === VOID ? this.reference : reference;
|
|
1284
1294
|
isNullable = isNullable === VOID ? this.isNullable : isNullable;
|
|
1285
|
-
return this.
|
|
1295
|
+
return this.n2l(type, reference, isNullable);
|
|
1286
1296
|
};
|
|
1287
1297
|
protoOf(WsContent).toString = function () {
|
|
1288
1298
|
return 'WsContent(type=' + this.type + ', reference=' + toString(this.reference) + ', isNullable=' + this.isNullable + ')';
|
|
@@ -1310,8 +1320,8 @@ protoOf(WsContent).equals = function (other) {
|
|
|
1310
1320
|
function produce(_this__u8e3s4) {
|
|
1311
1321
|
var tmp;
|
|
1312
1322
|
if (_this__u8e3s4 instanceof Type) {
|
|
1313
|
-
var tmp_0 = _this__u8e3s4.
|
|
1314
|
-
var tmp1_safe_receiver = _this__u8e3s4.
|
|
1323
|
+
var tmp_0 = _this__u8e3s4.h23_1.b1();
|
|
1324
|
+
var tmp1_safe_receiver = _this__u8e3s4.f23_1;
|
|
1315
1325
|
var tmp_1;
|
|
1316
1326
|
var tmp_2 = tmp1_safe_receiver;
|
|
1317
1327
|
if ((tmp_2 == null ? null : new Comment(tmp_2)) == null) {
|
|
@@ -1319,11 +1329,11 @@ function produce(_this__u8e3s4) {
|
|
|
1319
1329
|
} else {
|
|
1320
1330
|
tmp_1 = _Comment___get_value__impl__8r3pla(tmp1_safe_receiver);
|
|
1321
1331
|
}
|
|
1322
|
-
tmp = new WsType(tmp_0, tmp_1, produce_1(_this__u8e3s4.
|
|
1332
|
+
tmp = new WsType(tmp_0, tmp_1, produce_1(_this__u8e3s4.i23_1));
|
|
1323
1333
|
} else {
|
|
1324
1334
|
if (_this__u8e3s4 instanceof Endpoint) {
|
|
1325
|
-
var tmp_3 = _this__u8e3s4.
|
|
1326
|
-
var tmp2_safe_receiver = _this__u8e3s4.
|
|
1335
|
+
var tmp_3 = _this__u8e3s4.q23_1.b1();
|
|
1336
|
+
var tmp2_safe_receiver = _this__u8e3s4.o23_1;
|
|
1327
1337
|
var tmp_4;
|
|
1328
1338
|
var tmp_5 = tmp2_safe_receiver;
|
|
1329
1339
|
if ((tmp_5 == null ? null : new Comment(tmp_5)) == null) {
|
|
@@ -1331,11 +1341,11 @@ function produce(_this__u8e3s4) {
|
|
|
1331
1341
|
} else {
|
|
1332
1342
|
tmp_4 = _Comment___get_value__impl__8r3pla(tmp2_safe_receiver);
|
|
1333
1343
|
}
|
|
1334
|
-
tmp = new WsEndpoint(tmp_3, tmp_4, produce_2(_this__u8e3s4.
|
|
1344
|
+
tmp = new WsEndpoint(tmp_3, tmp_4, produce_2(_this__u8e3s4.r23_1), produce_3(_this__u8e3s4.s23_1), produce_4(_this__u8e3s4.t23_1), produce_4(_this__u8e3s4.u23_1), produce_5(_this__u8e3s4.v23_1), produce_6(_this__u8e3s4.w23_1));
|
|
1335
1345
|
} else {
|
|
1336
1346
|
if (_this__u8e3s4 instanceof Enum_0) {
|
|
1337
|
-
var tmp_6 = _this__u8e3s4.
|
|
1338
|
-
var tmp3_safe_receiver = _this__u8e3s4.
|
|
1347
|
+
var tmp_6 = _this__u8e3s4.r25_1.b1();
|
|
1348
|
+
var tmp3_safe_receiver = _this__u8e3s4.p25_1;
|
|
1339
1349
|
var tmp_7;
|
|
1340
1350
|
var tmp_8 = tmp3_safe_receiver;
|
|
1341
1351
|
if ((tmp_8 == null ? null : new Comment(tmp_8)) == null) {
|
|
@@ -1345,13 +1355,13 @@ function produce(_this__u8e3s4) {
|
|
|
1345
1355
|
}
|
|
1346
1356
|
var tmp_9 = tmp_7;
|
|
1347
1357
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1348
|
-
var this_0 = _this__u8e3s4.
|
|
1358
|
+
var this_0 = _this__u8e3s4.s25_1;
|
|
1349
1359
|
var tmp$ret$0 = copyToArray(this_0);
|
|
1350
1360
|
tmp = new WsEnum(tmp_6, tmp_9, tmp$ret$0);
|
|
1351
1361
|
} else {
|
|
1352
1362
|
if (_this__u8e3s4 instanceof Refined) {
|
|
1353
|
-
var tmp_10 = _this__u8e3s4.
|
|
1354
|
-
var tmp4_safe_receiver = _this__u8e3s4.
|
|
1363
|
+
var tmp_10 = _this__u8e3s4.m25_1.b1();
|
|
1364
|
+
var tmp4_safe_receiver = _this__u8e3s4.k25_1;
|
|
1355
1365
|
var tmp_11;
|
|
1356
1366
|
var tmp_12 = tmp4_safe_receiver;
|
|
1357
1367
|
if ((tmp_12 == null ? null : new Comment(tmp_12)) == null) {
|
|
@@ -1359,11 +1369,11 @@ function produce(_this__u8e3s4) {
|
|
|
1359
1369
|
} else {
|
|
1360
1370
|
tmp_11 = _Comment___get_value__impl__8r3pla(tmp4_safe_receiver);
|
|
1361
1371
|
}
|
|
1362
|
-
tmp = new WsRefined(tmp_10, tmp_11, produce_7(_this__u8e3s4.
|
|
1372
|
+
tmp = new WsRefined(tmp_10, tmp_11, produce_7(_this__u8e3s4.n25_1));
|
|
1363
1373
|
} else {
|
|
1364
1374
|
if (_this__u8e3s4 instanceof Union) {
|
|
1365
|
-
var tmp_13 = _this__u8e3s4.
|
|
1366
|
-
var tmp5_safe_receiver = _this__u8e3s4.
|
|
1375
|
+
var tmp_13 = _this__u8e3s4.c23_1.b1();
|
|
1376
|
+
var tmp5_safe_receiver = _this__u8e3s4.a23_1;
|
|
1367
1377
|
var tmp_14;
|
|
1368
1378
|
var tmp_15 = tmp5_safe_receiver;
|
|
1369
1379
|
if ((tmp_15 == null ? null : new Comment(tmp_15)) == null) {
|
|
@@ -1374,7 +1384,7 @@ function produce(_this__u8e3s4) {
|
|
|
1374
1384
|
var tmp_16 = tmp_14;
|
|
1375
1385
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1376
1386
|
// Inline function 'kotlin.collections.map' call
|
|
1377
|
-
var this_1 = _this__u8e3s4.
|
|
1387
|
+
var this_1 = _this__u8e3s4.d23_1;
|
|
1378
1388
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1379
1389
|
var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_1, 10));
|
|
1380
1390
|
var tmp0_iterator = this_1.g();
|
|
@@ -1388,8 +1398,8 @@ function produce(_this__u8e3s4) {
|
|
|
1388
1398
|
tmp = new WsUnion(tmp_13, tmp_16, tmp$ret$4);
|
|
1389
1399
|
} else {
|
|
1390
1400
|
if (_this__u8e3s4 instanceof Channel) {
|
|
1391
|
-
var tmp_17 = _this__u8e3s4.
|
|
1392
|
-
var tmp6_safe_receiver = _this__u8e3s4.
|
|
1401
|
+
var tmp_17 = _this__u8e3s4.y22_1.b1();
|
|
1402
|
+
var tmp6_safe_receiver = _this__u8e3s4.w22_1;
|
|
1393
1403
|
var tmp_18;
|
|
1394
1404
|
var tmp_19 = tmp6_safe_receiver;
|
|
1395
1405
|
if ((tmp_19 == null ? null : new Comment(tmp_19)) == null) {
|
|
@@ -1397,7 +1407,7 @@ function produce(_this__u8e3s4) {
|
|
|
1397
1407
|
} else {
|
|
1398
1408
|
tmp_18 = _Comment___get_value__impl__8r3pla(tmp6_safe_receiver);
|
|
1399
1409
|
}
|
|
1400
|
-
tmp = new WsChannel(tmp_17, tmp_18, produce_7(_this__u8e3s4.
|
|
1410
|
+
tmp = new WsChannel(tmp_17, tmp_18, produce_7(_this__u8e3s4.z22_1));
|
|
1401
1411
|
} else {
|
|
1402
1412
|
noWhenBranchMatchedException();
|
|
1403
1413
|
}
|
|
@@ -1411,7 +1421,7 @@ function produce(_this__u8e3s4) {
|
|
|
1411
1421
|
function produce_0(_this__u8e3s4) {
|
|
1412
1422
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1413
1423
|
// Inline function 'arrow.core.NonEmptyList.map' call
|
|
1414
|
-
var this_0 = _this__u8e3s4.
|
|
1424
|
+
var this_0 = _this__u8e3s4.m24_1;
|
|
1415
1425
|
// Inline function 'community.flock.wirespec.compiler.lib.produce.<anonymous>' call
|
|
1416
1426
|
var it = this_0.pk_1;
|
|
1417
1427
|
var tmp = produce_8(it);
|
|
@@ -1449,7 +1459,7 @@ function consume(_this__u8e3s4) {
|
|
|
1449
1459
|
function produce_1(_this__u8e3s4) {
|
|
1450
1460
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1451
1461
|
// Inline function 'kotlin.collections.map' call
|
|
1452
|
-
var this_0 = _this__u8e3s4.
|
|
1462
|
+
var this_0 = _this__u8e3s4.e23_1;
|
|
1453
1463
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1454
1464
|
var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_0, 10));
|
|
1455
1465
|
var tmp0_iterator = this_0.g();
|
|
@@ -1506,10 +1516,10 @@ function produce_3(_this__u8e3s4) {
|
|
|
1506
1516
|
// Inline function 'community.flock.wirespec.compiler.lib.produce.<anonymous>' call
|
|
1507
1517
|
var tmp;
|
|
1508
1518
|
if (item instanceof Literal) {
|
|
1509
|
-
tmp = new WsLiteral(item.
|
|
1519
|
+
tmp = new WsLiteral(item.s24_1);
|
|
1510
1520
|
} else {
|
|
1511
1521
|
if (item instanceof Param) {
|
|
1512
|
-
tmp = new WsParam(produce_10(item.
|
|
1522
|
+
tmp = new WsParam(produce_10(item.x23_1), produce_7(item.y23_1));
|
|
1513
1523
|
} else {
|
|
1514
1524
|
noWhenBranchMatchedException();
|
|
1515
1525
|
}
|
|
@@ -1564,22 +1574,22 @@ function produce_6(_this__u8e3s4) {
|
|
|
1564
1574
|
function produce_7(_this__u8e3s4) {
|
|
1565
1575
|
var tmp;
|
|
1566
1576
|
if (_this__u8e3s4 instanceof Any) {
|
|
1567
|
-
tmp = new WsAny(_this__u8e3s4.
|
|
1577
|
+
tmp = new WsAny(_this__u8e3s4.c28_1);
|
|
1568
1578
|
} else {
|
|
1569
1579
|
if (_this__u8e3s4 instanceof Unit) {
|
|
1570
|
-
tmp = new WsUnit(_this__u8e3s4.
|
|
1580
|
+
tmp = new WsUnit(_this__u8e3s4.g28_1);
|
|
1571
1581
|
} else {
|
|
1572
1582
|
if (_this__u8e3s4 instanceof Custom) {
|
|
1573
|
-
tmp = new WsCustom(_this__u8e3s4.
|
|
1583
|
+
tmp = new WsCustom(_this__u8e3s4.l28_1, _this__u8e3s4.m28_1);
|
|
1574
1584
|
} else {
|
|
1575
1585
|
if (_this__u8e3s4 instanceof Primitive) {
|
|
1576
|
-
tmp = new WsPrimitive(produce_13(_this__u8e3s4.
|
|
1586
|
+
tmp = new WsPrimitive(produce_13(_this__u8e3s4.p28_1), _this__u8e3s4.q28_1);
|
|
1577
1587
|
} else {
|
|
1578
1588
|
if (_this__u8e3s4 instanceof Dict) {
|
|
1579
|
-
tmp = new WsDict(produce_7(_this__u8e3s4.
|
|
1589
|
+
tmp = new WsDict(produce_7(_this__u8e3s4.o22_1), _this__u8e3s4.p22_1);
|
|
1580
1590
|
} else {
|
|
1581
1591
|
if (_this__u8e3s4 instanceof Iterable) {
|
|
1582
|
-
tmp = new WsIterable(produce_7(_this__u8e3s4.
|
|
1592
|
+
tmp = new WsIterable(produce_7(_this__u8e3s4.l22_1), _this__u8e3s4.m22_1);
|
|
1583
1593
|
} else {
|
|
1584
1594
|
noWhenBranchMatchedException();
|
|
1585
1595
|
}
|
|
@@ -1593,7 +1603,7 @@ function produce_7(_this__u8e3s4) {
|
|
|
1593
1603
|
function produce_8(_this__u8e3s4) {
|
|
1594
1604
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1595
1605
|
// Inline function 'arrow.core.NonEmptyList.map' call
|
|
1596
|
-
var this_0 = _this__u8e3s4.
|
|
1606
|
+
var this_0 = _this__u8e3s4.o24_1;
|
|
1597
1607
|
// Inline function 'community.flock.wirespec.compiler.lib.produce.<anonymous>' call
|
|
1598
1608
|
var it = this_0.pk_1;
|
|
1599
1609
|
var tmp = produce(it);
|
|
@@ -1630,19 +1640,19 @@ function consume_0(_this__u8e3s4) {
|
|
|
1630
1640
|
return new Module(tmp, ensureNotNull(toNonEmptyListOrNull(destination)));
|
|
1631
1641
|
}
|
|
1632
1642
|
function produce_9(_this__u8e3s4) {
|
|
1633
|
-
return new WsField(produce_10(_this__u8e3s4.
|
|
1643
|
+
return new WsField(produce_10(_this__u8e3s4.l23_1), produce_7(_this__u8e3s4.m23_1));
|
|
1634
1644
|
}
|
|
1635
1645
|
function produce_10(_this__u8e3s4) {
|
|
1636
1646
|
return new WsFieldIdentifier(_this__u8e3s4.b1());
|
|
1637
1647
|
}
|
|
1638
1648
|
function produce_11(_this__u8e3s4) {
|
|
1639
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1649
|
+
var tmp0_safe_receiver = _this__u8e3s4.z23_1;
|
|
1640
1650
|
return new WsRequest(tmp0_safe_receiver == null ? null : produce_14(tmp0_safe_receiver));
|
|
1641
1651
|
}
|
|
1642
1652
|
function produce_12(_this__u8e3s4) {
|
|
1643
1653
|
// Inline function 'kotlin.collections.toTypedArray' call
|
|
1644
1654
|
// Inline function 'kotlin.collections.map' call
|
|
1645
|
-
var this_0 = _this__u8e3s4.
|
|
1655
|
+
var this_0 = _this__u8e3s4.d24_1;
|
|
1646
1656
|
// Inline function 'kotlin.collections.mapTo' call
|
|
1647
1657
|
var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_0, 10));
|
|
1648
1658
|
var tmp0_iterator = this_0.g();
|
|
@@ -1653,8 +1663,8 @@ function produce_12(_this__u8e3s4) {
|
|
|
1653
1663
|
destination.e(tmp$ret$0);
|
|
1654
1664
|
}
|
|
1655
1665
|
var tmp = copyToArray(destination);
|
|
1656
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1657
|
-
return new WsResponse(_this__u8e3s4.
|
|
1666
|
+
var tmp0_safe_receiver = _this__u8e3s4.e24_1;
|
|
1667
|
+
return new WsResponse(_this__u8e3s4.c24_1, tmp, tmp0_safe_receiver == null ? null : produce_14(tmp0_safe_receiver));
|
|
1658
1668
|
}
|
|
1659
1669
|
function produce_13(_this__u8e3s4) {
|
|
1660
1670
|
var tmp;
|
|
@@ -1662,10 +1672,34 @@ function produce_13(_this__u8e3s4) {
|
|
|
1662
1672
|
tmp = WsPrimitiveType_String_getInstance();
|
|
1663
1673
|
} else {
|
|
1664
1674
|
if (_this__u8e3s4 instanceof Integer) {
|
|
1665
|
-
|
|
1675
|
+
var tmp_0;
|
|
1676
|
+
switch (_this__u8e3s4.u27_1.r2_1) {
|
|
1677
|
+
case 0:
|
|
1678
|
+
tmp_0 = WsPrimitiveType_Integer32_getInstance();
|
|
1679
|
+
break;
|
|
1680
|
+
case 1:
|
|
1681
|
+
tmp_0 = WsPrimitiveType_Integer_getInstance();
|
|
1682
|
+
break;
|
|
1683
|
+
default:
|
|
1684
|
+
noWhenBranchMatchedException();
|
|
1685
|
+
break;
|
|
1686
|
+
}
|
|
1687
|
+
tmp = tmp_0;
|
|
1666
1688
|
} else {
|
|
1667
1689
|
if (_this__u8e3s4 instanceof Number_0) {
|
|
1668
|
-
|
|
1690
|
+
var tmp_1;
|
|
1691
|
+
switch (_this__u8e3s4.x27_1.r2_1) {
|
|
1692
|
+
case 0:
|
|
1693
|
+
tmp_1 = WsPrimitiveType_Number32_getInstance();
|
|
1694
|
+
break;
|
|
1695
|
+
case 1:
|
|
1696
|
+
tmp_1 = WsPrimitiveType_Number_getInstance();
|
|
1697
|
+
break;
|
|
1698
|
+
default:
|
|
1699
|
+
noWhenBranchMatchedException();
|
|
1700
|
+
break;
|
|
1701
|
+
}
|
|
1702
|
+
tmp = tmp_1;
|
|
1669
1703
|
} else {
|
|
1670
1704
|
if (_this__u8e3s4 instanceof Boolean_0) {
|
|
1671
1705
|
tmp = WsPrimitiveType_Boolean_getInstance();
|
|
@@ -1711,10 +1745,10 @@ function consume_1(_this__u8e3s4) {
|
|
|
1711
1745
|
return tmp;
|
|
1712
1746
|
}
|
|
1713
1747
|
function produce_14(_this__u8e3s4) {
|
|
1714
|
-
return new WsContent(_this__u8e3s4.
|
|
1748
|
+
return new WsContent(_this__u8e3s4.a24_1, produce_7(_this__u8e3s4.b24_1));
|
|
1715
1749
|
}
|
|
1716
1750
|
function consume_2(_this__u8e3s4) {
|
|
1717
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1751
|
+
var tmp0_safe_receiver = _this__u8e3s4.x2j_1;
|
|
1718
1752
|
var tmp;
|
|
1719
1753
|
if (tmp0_safe_receiver == null) {
|
|
1720
1754
|
tmp = null;
|
|
@@ -1722,11 +1756,11 @@ function consume_2(_this__u8e3s4) {
|
|
|
1722
1756
|
// Inline function 'kotlin.let' call
|
|
1723
1757
|
// Inline function 'kotlin.contracts.contract' call
|
|
1724
1758
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1725
|
-
tmp = Companion_instance.
|
|
1759
|
+
tmp = Companion_instance.c27(tmp0_safe_receiver);
|
|
1726
1760
|
}
|
|
1727
1761
|
var tmp_0 = tmp;
|
|
1728
1762
|
var tmp_1 = emptyList();
|
|
1729
|
-
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.
|
|
1763
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.w2j_1);
|
|
1730
1764
|
var tmp_3 = consume_8(_this__u8e3s4.method);
|
|
1731
1765
|
// Inline function 'kotlin.collections.map' call
|
|
1732
1766
|
var this_0 = _this__u8e3s4.path;
|
|
@@ -1800,7 +1834,7 @@ function consume_2(_this__u8e3s4) {
|
|
|
1800
1834
|
return new Endpoint(tmp_0, tmp_1, tmp_2, tmp_3, tmp_4, tmp_5, tmp_6, tmp_7, destination_3);
|
|
1801
1835
|
}
|
|
1802
1836
|
function consume_3(_this__u8e3s4) {
|
|
1803
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1837
|
+
var tmp0_safe_receiver = _this__u8e3s4.l2k_1;
|
|
1804
1838
|
var tmp;
|
|
1805
1839
|
if (tmp0_safe_receiver == null) {
|
|
1806
1840
|
tmp = null;
|
|
@@ -1808,12 +1842,12 @@ function consume_3(_this__u8e3s4) {
|
|
|
1808
1842
|
// Inline function 'kotlin.let' call
|
|
1809
1843
|
// Inline function 'kotlin.contracts.contract' call
|
|
1810
1844
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1811
|
-
tmp = Companion_instance.
|
|
1845
|
+
tmp = Companion_instance.c27(tmp0_safe_receiver);
|
|
1812
1846
|
}
|
|
1813
|
-
return new Enum_0(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.
|
|
1847
|
+
return new Enum_0(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.k2k_1), toSet(_this__u8e3s4.entries));
|
|
1814
1848
|
}
|
|
1815
1849
|
function consume_4(_this__u8e3s4) {
|
|
1816
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1850
|
+
var tmp0_safe_receiver = _this__u8e3s4.v2k_1;
|
|
1817
1851
|
var tmp;
|
|
1818
1852
|
if (tmp0_safe_receiver == null) {
|
|
1819
1853
|
tmp = null;
|
|
@@ -1821,11 +1855,11 @@ function consume_4(_this__u8e3s4) {
|
|
|
1821
1855
|
// Inline function 'kotlin.let' call
|
|
1822
1856
|
// Inline function 'kotlin.contracts.contract' call
|
|
1823
1857
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1824
|
-
tmp = Companion_instance.
|
|
1858
|
+
tmp = Companion_instance.c27(tmp0_safe_receiver);
|
|
1825
1859
|
}
|
|
1826
1860
|
var tmp_0 = tmp;
|
|
1827
1861
|
var tmp_1 = emptyList();
|
|
1828
|
-
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.
|
|
1862
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.u2k_1);
|
|
1829
1863
|
var tmp_3 = consume_13(_this__u8e3s4.reference);
|
|
1830
1864
|
var tmp1_elvis_lhs = tmp_3 instanceof Primitive ? tmp_3 : null;
|
|
1831
1865
|
var tmp_4;
|
|
@@ -1838,7 +1872,7 @@ function consume_4(_this__u8e3s4) {
|
|
|
1838
1872
|
return new Refined(tmp_0, tmp_1, tmp_2, tmp_4);
|
|
1839
1873
|
}
|
|
1840
1874
|
function consume_5(_this__u8e3s4) {
|
|
1841
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1875
|
+
var tmp0_safe_receiver = _this__u8e3s4.s2j_1;
|
|
1842
1876
|
var tmp;
|
|
1843
1877
|
if (tmp0_safe_receiver == null) {
|
|
1844
1878
|
tmp = null;
|
|
@@ -1846,11 +1880,11 @@ function consume_5(_this__u8e3s4) {
|
|
|
1846
1880
|
// Inline function 'kotlin.let' call
|
|
1847
1881
|
// Inline function 'kotlin.contracts.contract' call
|
|
1848
1882
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1849
|
-
tmp = Companion_instance.
|
|
1883
|
+
tmp = Companion_instance.c27(tmp0_safe_receiver);
|
|
1850
1884
|
}
|
|
1851
1885
|
var tmp_0 = tmp;
|
|
1852
1886
|
var tmp_1 = emptyList();
|
|
1853
|
-
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.
|
|
1887
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.r2j_1);
|
|
1854
1888
|
// Inline function 'kotlin.collections.map' call
|
|
1855
1889
|
var this_0 = _this__u8e3s4.shape.value;
|
|
1856
1890
|
// Inline function 'kotlin.collections.mapTo' call
|
|
@@ -1867,7 +1901,7 @@ function consume_5(_this__u8e3s4) {
|
|
|
1867
1901
|
return new Type(tmp_0, tmp_1, tmp_2, new Shape(destination), emptyList());
|
|
1868
1902
|
}
|
|
1869
1903
|
function consume_6(_this__u8e3s4) {
|
|
1870
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1904
|
+
var tmp0_safe_receiver = _this__u8e3s4.o2k_1;
|
|
1871
1905
|
var tmp;
|
|
1872
1906
|
if (tmp0_safe_receiver == null) {
|
|
1873
1907
|
tmp = null;
|
|
@@ -1875,11 +1909,11 @@ function consume_6(_this__u8e3s4) {
|
|
|
1875
1909
|
// Inline function 'kotlin.let' call
|
|
1876
1910
|
// Inline function 'kotlin.contracts.contract' call
|
|
1877
1911
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1878
|
-
tmp = Companion_instance.
|
|
1912
|
+
tmp = Companion_instance.c27(tmp0_safe_receiver);
|
|
1879
1913
|
}
|
|
1880
1914
|
var tmp_0 = tmp;
|
|
1881
1915
|
var tmp_1 = emptyList();
|
|
1882
|
-
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.
|
|
1916
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.n2k_1);
|
|
1883
1917
|
// Inline function 'kotlin.collections.map' call
|
|
1884
1918
|
var this_0 = _this__u8e3s4.entries;
|
|
1885
1919
|
// Inline function 'kotlin.collections.mapTo' call
|
|
@@ -1896,7 +1930,7 @@ function consume_6(_this__u8e3s4) {
|
|
|
1896
1930
|
return new Union(tmp_0, tmp_1, tmp_2, toSet_0(destination));
|
|
1897
1931
|
}
|
|
1898
1932
|
function consume_7(_this__u8e3s4) {
|
|
1899
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1933
|
+
var tmp0_safe_receiver = _this__u8e3s4.r2k_1;
|
|
1900
1934
|
var tmp;
|
|
1901
1935
|
if (tmp0_safe_receiver == null) {
|
|
1902
1936
|
tmp = null;
|
|
@@ -1904,9 +1938,9 @@ function consume_7(_this__u8e3s4) {
|
|
|
1904
1938
|
// Inline function 'kotlin.let' call
|
|
1905
1939
|
// Inline function 'kotlin.contracts.contract' call
|
|
1906
1940
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1907
|
-
tmp = Companion_instance.
|
|
1941
|
+
tmp = Companion_instance.c27(tmp0_safe_receiver);
|
|
1908
1942
|
}
|
|
1909
|
-
return new Channel(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.
|
|
1943
|
+
return new Channel(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.q2k_1), consume_13(_this__u8e3s4.reference));
|
|
1910
1944
|
}
|
|
1911
1945
|
function consume_8(_this__u8e3s4) {
|
|
1912
1946
|
var tmp;
|
|
@@ -1985,22 +2019,22 @@ function consume_12(_this__u8e3s4) {
|
|
|
1985
2019
|
function consume_13(_this__u8e3s4) {
|
|
1986
2020
|
var tmp;
|
|
1987
2021
|
if (_this__u8e3s4 instanceof WsAny) {
|
|
1988
|
-
tmp = new Any(_this__u8e3s4.
|
|
2022
|
+
tmp = new Any(_this__u8e3s4.a2l_1);
|
|
1989
2023
|
} else {
|
|
1990
2024
|
if (_this__u8e3s4 instanceof WsUnit) {
|
|
1991
|
-
tmp = new Unit(_this__u8e3s4.
|
|
2025
|
+
tmp = new Unit(_this__u8e3s4.b2l_1);
|
|
1992
2026
|
} else {
|
|
1993
2027
|
if (_this__u8e3s4 instanceof WsCustom) {
|
|
1994
|
-
tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.
|
|
2028
|
+
tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.f2l_1);
|
|
1995
2029
|
} else {
|
|
1996
2030
|
if (_this__u8e3s4 instanceof WsPrimitive) {
|
|
1997
|
-
tmp = new Primitive(consume_16(_this__u8e3s4.type), _this__u8e3s4.
|
|
2031
|
+
tmp = new Primitive(consume_16(_this__u8e3s4.type), _this__u8e3s4.g2l_1);
|
|
1998
2032
|
} else {
|
|
1999
2033
|
if (_this__u8e3s4 instanceof WsDict) {
|
|
2000
|
-
tmp = new Dict(consume_13(_this__u8e3s4.reference), _this__u8e3s4.
|
|
2034
|
+
tmp = new Dict(consume_13(_this__u8e3s4.reference), _this__u8e3s4.e2l_1);
|
|
2001
2035
|
} else {
|
|
2002
2036
|
if (_this__u8e3s4 instanceof WsIterable) {
|
|
2003
|
-
tmp = new Iterable(consume_13(_this__u8e3s4.reference), _this__u8e3s4.
|
|
2037
|
+
tmp = new Iterable(consume_13(_this__u8e3s4.reference), _this__u8e3s4.c2l_1);
|
|
2004
2038
|
} else {
|
|
2005
2039
|
noWhenBranchMatchedException();
|
|
2006
2040
|
}
|
|
@@ -2024,15 +2058,21 @@ function consume_16(_this__u8e3s4) {
|
|
|
2024
2058
|
tmp = new String_0(null);
|
|
2025
2059
|
break;
|
|
2026
2060
|
case 1:
|
|
2027
|
-
tmp = new Integer(
|
|
2061
|
+
tmp = new Integer(Precision_P64_getInstance(), null);
|
|
2028
2062
|
break;
|
|
2029
2063
|
case 2:
|
|
2030
|
-
tmp = new
|
|
2064
|
+
tmp = new Integer(Precision_P32_getInstance(), null);
|
|
2031
2065
|
break;
|
|
2032
2066
|
case 3:
|
|
2033
|
-
tmp =
|
|
2067
|
+
tmp = new Number_0(Precision_P64_getInstance(), null);
|
|
2034
2068
|
break;
|
|
2035
2069
|
case 4:
|
|
2070
|
+
tmp = new Number_0(Precision_P32_getInstance(), null);
|
|
2071
|
+
break;
|
|
2072
|
+
case 5:
|
|
2073
|
+
tmp = Boolean_instance;
|
|
2074
|
+
break;
|
|
2075
|
+
case 6:
|
|
2036
2076
|
tmp = Bytes_instance;
|
|
2037
2077
|
break;
|
|
2038
2078
|
default:
|
|
@@ -2081,10 +2121,18 @@ function WsPrimitiveType_Integer_getInstance() {
|
|
|
2081
2121
|
WsPrimitiveType_initEntries();
|
|
2082
2122
|
return WsPrimitiveType_Integer_instance;
|
|
2083
2123
|
}
|
|
2124
|
+
function WsPrimitiveType_Integer32_getInstance() {
|
|
2125
|
+
WsPrimitiveType_initEntries();
|
|
2126
|
+
return WsPrimitiveType_Integer32_instance;
|
|
2127
|
+
}
|
|
2084
2128
|
function WsPrimitiveType_Number_getInstance() {
|
|
2085
2129
|
WsPrimitiveType_initEntries();
|
|
2086
2130
|
return WsPrimitiveType_Number_instance;
|
|
2087
2131
|
}
|
|
2132
|
+
function WsPrimitiveType_Number32_getInstance() {
|
|
2133
|
+
WsPrimitiveType_initEntries();
|
|
2134
|
+
return WsPrimitiveType_Number32_instance;
|
|
2135
|
+
}
|
|
2088
2136
|
function WsPrimitiveType_Boolean_getInstance() {
|
|
2089
2137
|
WsPrimitiveType_initEntries();
|
|
2090
2138
|
return WsPrimitiveType_Boolean_instance;
|
|
@@ -2106,10 +2154,10 @@ function WsCompilationResult(result, errors) {
|
|
|
2106
2154
|
this.result = result;
|
|
2107
2155
|
this.errors = errors;
|
|
2108
2156
|
}
|
|
2109
|
-
protoOf(WsCompilationResult).
|
|
2157
|
+
protoOf(WsCompilationResult).o2l = function () {
|
|
2110
2158
|
return this.result;
|
|
2111
2159
|
};
|
|
2112
|
-
protoOf(WsCompilationResult).
|
|
2160
|
+
protoOf(WsCompilationResult).p2l = function () {
|
|
2113
2161
|
return this.errors;
|
|
2114
2162
|
};
|
|
2115
2163
|
function WsCompiled(value) {
|
|
@@ -2134,10 +2182,10 @@ function WsParseResult(result, errors) {
|
|
|
2134
2182
|
this.result = result;
|
|
2135
2183
|
this.errors = errors;
|
|
2136
2184
|
}
|
|
2137
|
-
protoOf(WsParseResult).
|
|
2185
|
+
protoOf(WsParseResult).o2l = function () {
|
|
2138
2186
|
return this.result;
|
|
2139
2187
|
};
|
|
2140
|
-
protoOf(WsParseResult).
|
|
2188
|
+
protoOf(WsParseResult).p2l = function () {
|
|
2141
2189
|
return this.errors;
|
|
2142
2190
|
};
|
|
2143
2191
|
function WsStringResult(result, errors) {
|
|
@@ -2146,20 +2194,20 @@ function WsStringResult(result, errors) {
|
|
|
2146
2194
|
this.result = result;
|
|
2147
2195
|
this.errors = errors;
|
|
2148
2196
|
}
|
|
2149
|
-
protoOf(WsStringResult).
|
|
2197
|
+
protoOf(WsStringResult).o2l = function () {
|
|
2150
2198
|
return this.result;
|
|
2151
2199
|
};
|
|
2152
|
-
protoOf(WsStringResult).
|
|
2200
|
+
protoOf(WsStringResult).p2l = function () {
|
|
2153
2201
|
return this.errors;
|
|
2154
2202
|
};
|
|
2155
2203
|
function WsEmitted(file, result) {
|
|
2156
2204
|
this.file = file;
|
|
2157
2205
|
this.result = result;
|
|
2158
2206
|
}
|
|
2159
|
-
protoOf(WsEmitted).
|
|
2207
|
+
protoOf(WsEmitted).q2l = function () {
|
|
2160
2208
|
return this.file;
|
|
2161
2209
|
};
|
|
2162
|
-
protoOf(WsEmitted).
|
|
2210
|
+
protoOf(WsEmitted).o2l = function () {
|
|
2163
2211
|
return this.result;
|
|
2164
2212
|
};
|
|
2165
2213
|
function produce_15(_this__u8e3s4) {
|
|
@@ -2227,7 +2275,7 @@ function produce_16(_this__u8e3s4) {
|
|
|
2227
2275
|
return tmp;
|
|
2228
2276
|
}
|
|
2229
2277
|
function produce_17(_this__u8e3s4) {
|
|
2230
|
-
return new WsEmitted(_this__u8e3s4.
|
|
2278
|
+
return new WsEmitted(_this__u8e3s4.u22_1, _this__u8e3s4.v22_1);
|
|
2231
2279
|
}
|
|
2232
2280
|
function WsTokenResult(tokens, error) {
|
|
2233
2281
|
tokens = tokens === VOID ? null : tokens;
|
|
@@ -2235,10 +2283,10 @@ function WsTokenResult(tokens, error) {
|
|
|
2235
2283
|
this.tokens = tokens;
|
|
2236
2284
|
this.error = error;
|
|
2237
2285
|
}
|
|
2238
|
-
protoOf(WsTokenResult).
|
|
2286
|
+
protoOf(WsTokenResult).r2l = function () {
|
|
2239
2287
|
return this.tokens;
|
|
2240
2288
|
};
|
|
2241
|
-
protoOf(WsTokenResult).
|
|
2289
|
+
protoOf(WsTokenResult).a2j = function () {
|
|
2242
2290
|
return this.error;
|
|
2243
2291
|
};
|
|
2244
2292
|
protoOf(WsTokenResult).sd = function () {
|
|
@@ -2247,13 +2295,13 @@ protoOf(WsTokenResult).sd = function () {
|
|
|
2247
2295
|
protoOf(WsTokenResult).td = function () {
|
|
2248
2296
|
return this.error;
|
|
2249
2297
|
};
|
|
2250
|
-
protoOf(WsTokenResult).
|
|
2298
|
+
protoOf(WsTokenResult).s2l = function (tokens, error) {
|
|
2251
2299
|
return new WsTokenResult(tokens, error);
|
|
2252
2300
|
};
|
|
2253
2301
|
protoOf(WsTokenResult).copy = function (tokens, error, $super) {
|
|
2254
2302
|
tokens = tokens === VOID ? this.tokens : tokens;
|
|
2255
2303
|
error = error === VOID ? this.error : error;
|
|
2256
|
-
return this.
|
|
2304
|
+
return this.s2l(tokens, error);
|
|
2257
2305
|
};
|
|
2258
2306
|
protoOf(WsTokenResult).toString = function () {
|
|
2259
2307
|
return 'WsTokenResult(tokens=' + toString_0(this.tokens) + ', error=' + toString_0(this.error) + ')';
|
|
@@ -2298,12 +2346,12 @@ protoOf(WsTokens).hashCode = function () {
|
|
|
2298
2346
|
protoOf(WsTokens).sd = function () {
|
|
2299
2347
|
return this.value;
|
|
2300
2348
|
};
|
|
2301
|
-
protoOf(WsTokens).
|
|
2349
|
+
protoOf(WsTokens).t2l = function (value) {
|
|
2302
2350
|
return new WsTokens(value);
|
|
2303
2351
|
};
|
|
2304
2352
|
protoOf(WsTokens).copy = function (value, $super) {
|
|
2305
2353
|
value = value === VOID ? this.value : value;
|
|
2306
|
-
return this.
|
|
2354
|
+
return this.t2l(value);
|
|
2307
2355
|
};
|
|
2308
2356
|
protoOf(WsTokens).toString = function () {
|
|
2309
2357
|
return 'WsTokens(value=' + toString(this.value) + ')';
|
|
@@ -2314,13 +2362,13 @@ function WsToken(type, value, coordinates) {
|
|
|
2314
2362
|
this.value = value;
|
|
2315
2363
|
this.coordinates = coordinates;
|
|
2316
2364
|
}
|
|
2317
|
-
protoOf(WsToken).
|
|
2365
|
+
protoOf(WsToken).c1l = function () {
|
|
2318
2366
|
return this.type;
|
|
2319
2367
|
};
|
|
2320
2368
|
protoOf(WsToken).b1 = function () {
|
|
2321
2369
|
return this.value;
|
|
2322
2370
|
};
|
|
2323
|
-
protoOf(WsToken).
|
|
2371
|
+
protoOf(WsToken).u2l = function () {
|
|
2324
2372
|
return this.coordinates;
|
|
2325
2373
|
};
|
|
2326
2374
|
protoOf(WsToken).sd = function () {
|
|
@@ -2332,14 +2380,14 @@ protoOf(WsToken).td = function () {
|
|
|
2332
2380
|
protoOf(WsToken).uh = function () {
|
|
2333
2381
|
return this.coordinates;
|
|
2334
2382
|
};
|
|
2335
|
-
protoOf(WsToken).
|
|
2383
|
+
protoOf(WsToken).v2l = function (type, value, coordinates) {
|
|
2336
2384
|
return new WsToken(type, value, coordinates);
|
|
2337
2385
|
};
|
|
2338
2386
|
protoOf(WsToken).copy = function (type, value, coordinates, $super) {
|
|
2339
2387
|
type = type === VOID ? this.type : type;
|
|
2340
2388
|
value = value === VOID ? this.value : value;
|
|
2341
2389
|
coordinates = coordinates === VOID ? this.coordinates : coordinates;
|
|
2342
|
-
return this.
|
|
2390
|
+
return this.v2l(type, value, coordinates);
|
|
2343
2391
|
};
|
|
2344
2392
|
protoOf(WsToken).toString = function () {
|
|
2345
2393
|
return 'WsToken(type=' + this.type + ', value=' + this.value + ', coordinates=' + this.coordinates.toString() + ')';
|
|
@@ -2372,13 +2420,13 @@ function WsCoordinates(line, position, idxAndLength) {
|
|
|
2372
2420
|
this.position = position;
|
|
2373
2421
|
this.idxAndLength = idxAndLength;
|
|
2374
2422
|
}
|
|
2375
|
-
protoOf(WsCoordinates).
|
|
2423
|
+
protoOf(WsCoordinates).w2l = function () {
|
|
2376
2424
|
return this.line;
|
|
2377
2425
|
};
|
|
2378
|
-
protoOf(WsCoordinates).
|
|
2426
|
+
protoOf(WsCoordinates).x2l = function () {
|
|
2379
2427
|
return this.position;
|
|
2380
2428
|
};
|
|
2381
|
-
protoOf(WsCoordinates).
|
|
2429
|
+
protoOf(WsCoordinates).y2l = function () {
|
|
2382
2430
|
return this.idxAndLength;
|
|
2383
2431
|
};
|
|
2384
2432
|
protoOf(WsCoordinates).sd = function () {
|
|
@@ -2390,14 +2438,14 @@ protoOf(WsCoordinates).td = function () {
|
|
|
2390
2438
|
protoOf(WsCoordinates).uh = function () {
|
|
2391
2439
|
return this.idxAndLength;
|
|
2392
2440
|
};
|
|
2393
|
-
protoOf(WsCoordinates).
|
|
2441
|
+
protoOf(WsCoordinates).z2l = function (line, position, idxAndLength) {
|
|
2394
2442
|
return new WsCoordinates(line, position, idxAndLength);
|
|
2395
2443
|
};
|
|
2396
2444
|
protoOf(WsCoordinates).copy = function (line, position, idxAndLength, $super) {
|
|
2397
2445
|
line = line === VOID ? this.line : line;
|
|
2398
2446
|
position = position === VOID ? this.position : position;
|
|
2399
2447
|
idxAndLength = idxAndLength === VOID ? this.idxAndLength : idxAndLength;
|
|
2400
|
-
return this.
|
|
2448
|
+
return this.z2l(line, position, idxAndLength);
|
|
2401
2449
|
};
|
|
2402
2450
|
protoOf(WsCoordinates).toString = function () {
|
|
2403
2451
|
return 'WsCoordinates(line=' + this.line + ', position=' + this.position + ', idxAndLength=' + this.idxAndLength.toString() + ')';
|
|
@@ -2428,7 +2476,7 @@ function WsIndex(idx, length) {
|
|
|
2428
2476
|
this.idx = idx;
|
|
2429
2477
|
this.length = length;
|
|
2430
2478
|
}
|
|
2431
|
-
protoOf(WsIndex).
|
|
2479
|
+
protoOf(WsIndex).a2m = function () {
|
|
2432
2480
|
return this.idx;
|
|
2433
2481
|
};
|
|
2434
2482
|
protoOf(WsIndex).a = function () {
|
|
@@ -2440,13 +2488,13 @@ protoOf(WsIndex).sd = function () {
|
|
|
2440
2488
|
protoOf(WsIndex).td = function () {
|
|
2441
2489
|
return this.length;
|
|
2442
2490
|
};
|
|
2443
|
-
protoOf(WsIndex).
|
|
2491
|
+
protoOf(WsIndex).b2m = function (idx, length) {
|
|
2444
2492
|
return new WsIndex(idx, length);
|
|
2445
2493
|
};
|
|
2446
2494
|
protoOf(WsIndex).copy = function (idx, length, $super) {
|
|
2447
2495
|
idx = idx === VOID ? this.idx : idx;
|
|
2448
2496
|
length = length === VOID ? this.length : length;
|
|
2449
|
-
return this.
|
|
2497
|
+
return this.b2m(idx, length);
|
|
2450
2498
|
};
|
|
2451
2499
|
protoOf(WsIndex).toString = function () {
|
|
2452
2500
|
return 'WsIndex(idx=' + this.idx + ', length=' + this.length + ')';
|
|
@@ -2469,13 +2517,13 @@ protoOf(WsIndex).equals = function (other) {
|
|
|
2469
2517
|
return true;
|
|
2470
2518
|
};
|
|
2471
2519
|
function produce_18(_this__u8e3s4) {
|
|
2472
|
-
return new WsToken(name(_this__u8e3s4.
|
|
2520
|
+
return new WsToken(name(_this__u8e3s4.d26_1), _this__u8e3s4.c26_1, produce_19(_this__u8e3s4.e26_1));
|
|
2473
2521
|
}
|
|
2474
2522
|
function produce_19(_this__u8e3s4) {
|
|
2475
|
-
return new WsCoordinates(_this__u8e3s4.
|
|
2523
|
+
return new WsCoordinates(_this__u8e3s4.f26_1, _this__u8e3s4.g26_1, produce_20(_this__u8e3s4.h26_1));
|
|
2476
2524
|
}
|
|
2477
2525
|
function produce_20(_this__u8e3s4) {
|
|
2478
|
-
return new WsIndex(_this__u8e3s4.
|
|
2526
|
+
return new WsIndex(_this__u8e3s4.e29_1, _this__u8e3s4.f29_1);
|
|
2479
2527
|
}
|
|
2480
2528
|
function WsError(line, position, index, length, value) {
|
|
2481
2529
|
this.line = line;
|
|
@@ -2484,13 +2532,13 @@ function WsError(line, position, index, length, value) {
|
|
|
2484
2532
|
this.length = length;
|
|
2485
2533
|
this.value = value;
|
|
2486
2534
|
}
|
|
2487
|
-
protoOf(WsError).
|
|
2535
|
+
protoOf(WsError).w2l = function () {
|
|
2488
2536
|
return this.line;
|
|
2489
2537
|
};
|
|
2490
|
-
protoOf(WsError).
|
|
2538
|
+
protoOf(WsError).x2l = function () {
|
|
2491
2539
|
return this.position;
|
|
2492
2540
|
};
|
|
2493
|
-
protoOf(WsError).
|
|
2541
|
+
protoOf(WsError).c2m = function () {
|
|
2494
2542
|
return this.index;
|
|
2495
2543
|
};
|
|
2496
2544
|
protoOf(WsError).a = function () {
|
|
@@ -2508,13 +2556,13 @@ protoOf(WsError).td = function () {
|
|
|
2508
2556
|
protoOf(WsError).uh = function () {
|
|
2509
2557
|
return this.index;
|
|
2510
2558
|
};
|
|
2511
|
-
protoOf(WsError).
|
|
2559
|
+
protoOf(WsError).e2k = function () {
|
|
2512
2560
|
return this.length;
|
|
2513
2561
|
};
|
|
2514
|
-
protoOf(WsError).
|
|
2562
|
+
protoOf(WsError).f2k = function () {
|
|
2515
2563
|
return this.value;
|
|
2516
2564
|
};
|
|
2517
|
-
protoOf(WsError).
|
|
2565
|
+
protoOf(WsError).d2m = function (line, position, index, length, value) {
|
|
2518
2566
|
return new WsError(line, position, index, length, value);
|
|
2519
2567
|
};
|
|
2520
2568
|
protoOf(WsError).copy = function (line, position, index, length, value, $super) {
|
|
@@ -2523,7 +2571,7 @@ protoOf(WsError).copy = function (line, position, index, length, value, $super)
|
|
|
2523
2571
|
index = index === VOID ? this.index : index;
|
|
2524
2572
|
length = length === VOID ? this.length : length;
|
|
2525
2573
|
value = value === VOID ? this.value : value;
|
|
2526
|
-
return this.
|
|
2574
|
+
return this.d2m(line, position, index, length, value);
|
|
2527
2575
|
};
|
|
2528
2576
|
protoOf(WsError).toString = function () {
|
|
2529
2577
|
return 'WsError(line=' + this.line + ', position=' + this.position + ', index=' + this.index + ', length=' + this.length + ', value=' + this.value + ')';
|
|
@@ -2555,44 +2603,44 @@ protoOf(WsError).equals = function (other) {
|
|
|
2555
2603
|
return true;
|
|
2556
2604
|
};
|
|
2557
2605
|
function produce_21(_this__u8e3s4) {
|
|
2558
|
-
return new WsError(_this__u8e3s4.
|
|
2606
|
+
return new WsError(_this__u8e3s4.k26_1.f26_1, _this__u8e3s4.k26_1.g26_1, _this__u8e3s4.k26_1.h26_1.e29_1 - _this__u8e3s4.k26_1.h26_1.f29_1 | 0, _this__u8e3s4.k26_1.h26_1.f29_1, _this__u8e3s4.r1());
|
|
2559
2607
|
}
|
|
2560
2608
|
//region block: post-declaration
|
|
2561
2609
|
defineProp(protoOf(WsType), 'identifier', function () {
|
|
2562
|
-
return this.
|
|
2610
|
+
return this.f25();
|
|
2563
2611
|
});
|
|
2564
2612
|
defineProp(protoOf(WsType), 'comment', function () {
|
|
2565
|
-
return this.
|
|
2613
|
+
return this.q2j();
|
|
2566
2614
|
});
|
|
2567
2615
|
defineProp(protoOf(WsEndpoint), 'identifier', function () {
|
|
2568
|
-
return this.
|
|
2616
|
+
return this.f25();
|
|
2569
2617
|
});
|
|
2570
2618
|
defineProp(protoOf(WsEndpoint), 'comment', function () {
|
|
2571
|
-
return this.
|
|
2619
|
+
return this.q2j();
|
|
2572
2620
|
});
|
|
2573
2621
|
defineProp(protoOf(WsEnum), 'identifier', function () {
|
|
2574
|
-
return this.
|
|
2622
|
+
return this.f25();
|
|
2575
2623
|
});
|
|
2576
2624
|
defineProp(protoOf(WsEnum), 'comment', function () {
|
|
2577
|
-
return this.
|
|
2625
|
+
return this.q2j();
|
|
2578
2626
|
});
|
|
2579
2627
|
defineProp(protoOf(WsUnion), 'identifier', function () {
|
|
2580
|
-
return this.
|
|
2628
|
+
return this.f25();
|
|
2581
2629
|
});
|
|
2582
2630
|
defineProp(protoOf(WsUnion), 'comment', function () {
|
|
2583
|
-
return this.
|
|
2631
|
+
return this.q2j();
|
|
2584
2632
|
});
|
|
2585
2633
|
defineProp(protoOf(WsChannel), 'identifier', function () {
|
|
2586
|
-
return this.
|
|
2634
|
+
return this.f25();
|
|
2587
2635
|
});
|
|
2588
2636
|
defineProp(protoOf(WsChannel), 'comment', function () {
|
|
2589
|
-
return this.
|
|
2637
|
+
return this.q2j();
|
|
2590
2638
|
});
|
|
2591
2639
|
defineProp(protoOf(WsRefined), 'identifier', function () {
|
|
2592
|
-
return this.
|
|
2640
|
+
return this.f25();
|
|
2593
2641
|
});
|
|
2594
2642
|
defineProp(protoOf(WsRefined), 'comment', function () {
|
|
2595
|
-
return this.
|
|
2643
|
+
return this.q2j();
|
|
2596
2644
|
});
|
|
2597
2645
|
defineProp(protoOf(WsMethod), 'name', protoOf(WsMethod).s2);
|
|
2598
2646
|
defineProp(protoOf(WsMethod), 'ordinal', protoOf(WsMethod).t2);
|
|
@@ -2632,7 +2680,9 @@ WsPrimitiveType.values = values_0;
|
|
|
2632
2680
|
WsPrimitiveType.valueOf = valueOf_0;
|
|
2633
2681
|
defineProp(WsPrimitiveType, 'String', WsPrimitiveType_String_getInstance);
|
|
2634
2682
|
defineProp(WsPrimitiveType, 'Integer', WsPrimitiveType_Integer_getInstance);
|
|
2683
|
+
defineProp(WsPrimitiveType, 'Integer32', WsPrimitiveType_Integer32_getInstance);
|
|
2635
2684
|
defineProp(WsPrimitiveType, 'Number', WsPrimitiveType_Number_getInstance);
|
|
2685
|
+
defineProp(WsPrimitiveType, 'Number32', WsPrimitiveType_Number32_getInstance);
|
|
2636
2686
|
defineProp(WsPrimitiveType, 'Boolean', WsPrimitiveType_Boolean_getInstance);
|
|
2637
2687
|
defineProp(WsPrimitiveType, 'Bytes', WsPrimitiveType_Bytes_getInstance);
|
|
2638
2688
|
export {
|