@flock/wirespec 0.16.7 → 0.16.8

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.
Files changed (30) hide show
  1. package/clikt-clikt.mjs +1172 -1172
  2. package/colormath-root-colormath.mjs +425 -425
  3. package/kotlin-kotlin-stdlib.mjs +31 -31
  4. package/kotlin-kotlin-stdlib.mjs.map +1 -1
  5. package/kotlin-rgxgen.mjs +1767 -1767
  6. package/kotlinx-io-kotlinx-io-core.mjs +380 -380
  7. package/markdown.mjs +1864 -1864
  8. package/mordant-mordant.mjs +1638 -1638
  9. package/package.json +1 -1
  10. package/wirespec-src-compiler-core.mjs +1908 -1928
  11. package/wirespec-src-compiler-core.mjs.map +1 -1
  12. package/wirespec-src-compiler-emitters-java.mjs +697 -609
  13. package/wirespec-src-compiler-emitters-java.mjs.map +1 -1
  14. package/wirespec-src-compiler-emitters-kotlin.mjs +627 -577
  15. package/wirespec-src-compiler-emitters-kotlin.mjs.map +1 -1
  16. package/wirespec-src-compiler-emitters-python.mjs +789 -739
  17. package/wirespec-src-compiler-emitters-python.mjs.map +1 -1
  18. package/wirespec-src-compiler-emitters-typescript.mjs +288 -284
  19. package/wirespec-src-compiler-emitters-typescript.mjs.map +1 -1
  20. package/wirespec-src-compiler-emitters-wirespec.mjs +258 -222
  21. package/wirespec-src-compiler-emitters-wirespec.mjs.map +1 -1
  22. package/wirespec-src-compiler-lib.mjs +310 -310
  23. package/wirespec-src-converter-avro.mjs +372 -347
  24. package/wirespec-src-converter-avro.mjs.map +1 -1
  25. package/wirespec-src-converter-openapi.mjs +507 -499
  26. package/wirespec-src-converter-openapi.mjs.map +1 -1
  27. package/wirespec-src-plugin-arguments.mjs +136 -136
  28. package/wirespec-src-plugin-cli.mjs +75 -75
  29. package/wirespec-src-plugin-npm.mjs +15 -15
  30. package/wirespec-src-tools-generator.mjs +24 -24
@@ -128,18 +128,18 @@ function WsNode() {
128
128
  function WsAST(modules) {
129
129
  this.modules = modules;
130
130
  }
131
- protoOf(WsAST).o2k = function () {
131
+ protoOf(WsAST).a2k = function () {
132
132
  return this.modules;
133
133
  };
134
134
  protoOf(WsAST).sd = function () {
135
135
  return this.modules;
136
136
  };
137
- protoOf(WsAST).p2k = function (modules) {
137
+ protoOf(WsAST).b2k = function (modules) {
138
138
  return new WsAST(modules);
139
139
  };
140
140
  protoOf(WsAST).copy = function (modules, $super) {
141
141
  modules = modules === VOID ? this.modules : modules;
142
- return this.p2k(modules);
142
+ return this.b2k(modules);
143
143
  };
144
144
  protoOf(WsAST).toString = function () {
145
145
  return 'WsAST(modules=' + toString(this.modules) + ')';
@@ -160,18 +160,18 @@ protoOf(WsAST).equals = function (other) {
160
160
  function WsModule(statements) {
161
161
  this.statements = statements;
162
162
  }
163
- protoOf(WsModule).q2k = function () {
163
+ protoOf(WsModule).c2k = function () {
164
164
  return this.statements;
165
165
  };
166
166
  protoOf(WsModule).sd = function () {
167
167
  return this.statements;
168
168
  };
169
- protoOf(WsModule).r2k = function (statements) {
169
+ protoOf(WsModule).d2k = function (statements) {
170
170
  return new WsModule(statements);
171
171
  };
172
172
  protoOf(WsModule).copy = function (statements, $super) {
173
173
  statements = statements === VOID ? this.statements : statements;
174
- return this.r2k(statements);
174
+ return this.d2k(statements);
175
175
  };
176
176
  protoOf(WsModule).toString = function () {
177
177
  return 'WsModule(statements=' + toString(this.statements) + ')';
@@ -192,43 +192,43 @@ protoOf(WsModule).equals = function (other) {
192
192
  function WsDefinition() {
193
193
  }
194
194
  function WsType(identifier, comment, shape) {
195
- this.t2k_1 = identifier;
196
- this.u2k_1 = comment;
195
+ this.f2k_1 = identifier;
196
+ this.g2k_1 = comment;
197
197
  this.shape = shape;
198
198
  }
199
- protoOf(WsType).m24 = function () {
200
- return this.t2k_1;
199
+ protoOf(WsType).d26 = function () {
200
+ return this.f2k_1;
201
201
  };
202
- protoOf(WsType).s2k = function () {
203
- return this.u2k_1;
202
+ protoOf(WsType).e2k = function () {
203
+ return this.g2k_1;
204
204
  };
205
- protoOf(WsType).v2k = function () {
205
+ protoOf(WsType).h2k = function () {
206
206
  return this.shape;
207
207
  };
208
208
  protoOf(WsType).sd = function () {
209
- return this.t2k_1;
209
+ return this.f2k_1;
210
210
  };
211
211
  protoOf(WsType).td = function () {
212
- return this.u2k_1;
212
+ return this.g2k_1;
213
213
  };
214
214
  protoOf(WsType).uh = function () {
215
215
  return this.shape;
216
216
  };
217
- protoOf(WsType).w2k = function (identifier, comment, shape) {
217
+ protoOf(WsType).i2k = function (identifier, comment, shape) {
218
218
  return new WsType(identifier, comment, shape);
219
219
  };
220
220
  protoOf(WsType).copy = function (identifier, comment, shape, $super) {
221
- identifier = identifier === VOID ? this.t2k_1 : identifier;
222
- comment = comment === VOID ? this.u2k_1 : comment;
221
+ identifier = identifier === VOID ? this.f2k_1 : identifier;
222
+ comment = comment === VOID ? this.g2k_1 : comment;
223
223
  shape = shape === VOID ? this.shape : shape;
224
- return this.w2k(identifier, comment, shape);
224
+ return this.i2k(identifier, comment, shape);
225
225
  };
226
226
  protoOf(WsType).toString = function () {
227
- return 'WsType(identifier=' + this.t2k_1 + ', comment=' + this.u2k_1 + ', shape=' + this.shape.toString() + ')';
227
+ return 'WsType(identifier=' + this.f2k_1 + ', comment=' + this.g2k_1 + ', shape=' + this.shape.toString() + ')';
228
228
  };
229
229
  protoOf(WsType).hashCode = function () {
230
- var result = getStringHashCode(this.t2k_1);
231
- result = imul(result, 31) + (this.u2k_1 == null ? 0 : getStringHashCode(this.u2k_1)) | 0;
230
+ var result = getStringHashCode(this.f2k_1);
231
+ result = imul(result, 31) + (this.g2k_1 == null ? 0 : getStringHashCode(this.g2k_1)) | 0;
232
232
  result = imul(result, 31) + this.shape.hashCode() | 0;
233
233
  return result;
234
234
  };
@@ -238,9 +238,9 @@ protoOf(WsType).equals = function (other) {
238
238
  if (!(other instanceof WsType))
239
239
  return false;
240
240
  var tmp0_other_with_cast = other instanceof WsType ? other : THROW_CCE();
241
- if (!(this.t2k_1 === tmp0_other_with_cast.t2k_1))
241
+ if (!(this.f2k_1 === tmp0_other_with_cast.f2k_1))
242
242
  return false;
243
- if (!(this.u2k_1 == tmp0_other_with_cast.u2k_1))
243
+ if (!(this.g2k_1 == tmp0_other_with_cast.g2k_1))
244
244
  return false;
245
245
  if (!this.shape.equals(tmp0_other_with_cast.shape))
246
246
  return false;
@@ -255,12 +255,12 @@ protoOf(WsShape).b1 = function () {
255
255
  protoOf(WsShape).sd = function () {
256
256
  return this.value;
257
257
  };
258
- protoOf(WsShape).x2k = function (value) {
258
+ protoOf(WsShape).j2k = function (value) {
259
259
  return new WsShape(value);
260
260
  };
261
261
  protoOf(WsShape).copy = function (value, $super) {
262
262
  value = value === VOID ? this.value : value;
263
- return this.x2k(value);
263
+ return this.j2k(value);
264
264
  };
265
265
  protoOf(WsShape).toString = function () {
266
266
  return 'WsShape(value=' + toString(this.value) + ')';
@@ -279,8 +279,8 @@ protoOf(WsShape).equals = function (other) {
279
279
  return true;
280
280
  };
281
281
  function WsEndpoint(identifier, comment, method, path, queries, headers, requests, responses) {
282
- this.y2k_1 = identifier;
283
- this.z2k_1 = comment;
282
+ this.k2k_1 = identifier;
283
+ this.l2k_1 = comment;
284
284
  this.method = method;
285
285
  this.path = path;
286
286
  this.queries = queries;
@@ -288,74 +288,74 @@ function WsEndpoint(identifier, comment, method, path, queries, headers, request
288
288
  this.requests = requests;
289
289
  this.responses = responses;
290
290
  }
291
- protoOf(WsEndpoint).m24 = function () {
292
- return this.y2k_1;
291
+ protoOf(WsEndpoint).d26 = function () {
292
+ return this.k2k_1;
293
293
  };
294
- protoOf(WsEndpoint).s2k = function () {
295
- return this.z2k_1;
294
+ protoOf(WsEndpoint).e2k = function () {
295
+ return this.l2k_1;
296
296
  };
297
- protoOf(WsEndpoint).a2l = function () {
297
+ protoOf(WsEndpoint).m2k = function () {
298
298
  return this.method;
299
299
  };
300
- protoOf(WsEndpoint).b2l = function () {
300
+ protoOf(WsEndpoint).n2k = function () {
301
301
  return this.path;
302
302
  };
303
- protoOf(WsEndpoint).c2l = function () {
303
+ protoOf(WsEndpoint).o2k = function () {
304
304
  return this.queries;
305
305
  };
306
- protoOf(WsEndpoint).d2l = function () {
306
+ protoOf(WsEndpoint).p2k = function () {
307
307
  return this.headers;
308
308
  };
309
- protoOf(WsEndpoint).e2l = function () {
309
+ protoOf(WsEndpoint).q2k = function () {
310
310
  return this.requests;
311
311
  };
312
- protoOf(WsEndpoint).f2l = function () {
312
+ protoOf(WsEndpoint).r2k = function () {
313
313
  return this.responses;
314
314
  };
315
315
  protoOf(WsEndpoint).sd = function () {
316
- return this.y2k_1;
316
+ return this.k2k_1;
317
317
  };
318
318
  protoOf(WsEndpoint).td = function () {
319
- return this.z2k_1;
319
+ return this.l2k_1;
320
320
  };
321
321
  protoOf(WsEndpoint).uh = function () {
322
322
  return this.method;
323
323
  };
324
- protoOf(WsEndpoint).g2l = function () {
324
+ protoOf(WsEndpoint).s2k = function () {
325
325
  return this.path;
326
326
  };
327
- protoOf(WsEndpoint).h2l = function () {
327
+ protoOf(WsEndpoint).t2k = function () {
328
328
  return this.queries;
329
329
  };
330
- protoOf(WsEndpoint).i2l = function () {
330
+ protoOf(WsEndpoint).u2k = function () {
331
331
  return this.headers;
332
332
  };
333
- protoOf(WsEndpoint).j2l = function () {
333
+ protoOf(WsEndpoint).v2k = function () {
334
334
  return this.requests;
335
335
  };
336
- protoOf(WsEndpoint).k2l = function () {
336
+ protoOf(WsEndpoint).w2k = function () {
337
337
  return this.responses;
338
338
  };
339
- protoOf(WsEndpoint).l2l = function (identifier, comment, method, path, queries, headers, requests, responses) {
339
+ protoOf(WsEndpoint).x2k = function (identifier, comment, method, path, queries, headers, requests, responses) {
340
340
  return new WsEndpoint(identifier, comment, method, path, queries, headers, requests, responses);
341
341
  };
342
342
  protoOf(WsEndpoint).copy = function (identifier, comment, method, path, queries, headers, requests, responses, $super) {
343
- identifier = identifier === VOID ? this.y2k_1 : identifier;
344
- comment = comment === VOID ? this.z2k_1 : comment;
343
+ identifier = identifier === VOID ? this.k2k_1 : identifier;
344
+ comment = comment === VOID ? this.l2k_1 : comment;
345
345
  method = method === VOID ? this.method : method;
346
346
  path = path === VOID ? this.path : path;
347
347
  queries = queries === VOID ? this.queries : queries;
348
348
  headers = headers === VOID ? this.headers : headers;
349
349
  requests = requests === VOID ? this.requests : requests;
350
350
  responses = responses === VOID ? this.responses : responses;
351
- return this.l2l(identifier, comment, method, path, queries, headers, requests, responses);
351
+ return this.x2k(identifier, comment, method, path, queries, headers, requests, responses);
352
352
  };
353
353
  protoOf(WsEndpoint).toString = function () {
354
- return 'WsEndpoint(identifier=' + this.y2k_1 + ', comment=' + this.z2k_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) + ')';
354
+ return 'WsEndpoint(identifier=' + this.k2k_1 + ', comment=' + this.l2k_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) + ')';
355
355
  };
356
356
  protoOf(WsEndpoint).hashCode = function () {
357
- var result = getStringHashCode(this.y2k_1);
358
- result = imul(result, 31) + (this.z2k_1 == null ? 0 : getStringHashCode(this.z2k_1)) | 0;
357
+ var result = getStringHashCode(this.k2k_1);
358
+ result = imul(result, 31) + (this.l2k_1 == null ? 0 : getStringHashCode(this.l2k_1)) | 0;
359
359
  result = imul(result, 31) + this.method.hashCode() | 0;
360
360
  result = imul(result, 31) + hashCode(this.path) | 0;
361
361
  result = imul(result, 31) + hashCode(this.queries) | 0;
@@ -370,9 +370,9 @@ protoOf(WsEndpoint).equals = function (other) {
370
370
  if (!(other instanceof WsEndpoint))
371
371
  return false;
372
372
  var tmp0_other_with_cast = other instanceof WsEndpoint ? other : THROW_CCE();
373
- if (!(this.y2k_1 === tmp0_other_with_cast.y2k_1))
373
+ if (!(this.k2k_1 === tmp0_other_with_cast.k2k_1))
374
374
  return false;
375
- if (!(this.z2k_1 == tmp0_other_with_cast.z2k_1))
375
+ if (!(this.l2k_1 == tmp0_other_with_cast.l2k_1))
376
376
  return false;
377
377
  if (!this.method.equals(tmp0_other_with_cast.method))
378
378
  return false;
@@ -389,43 +389,43 @@ protoOf(WsEndpoint).equals = function (other) {
389
389
  return true;
390
390
  };
391
391
  function WsEnum(identifier, comment, entries) {
392
- this.m2l_1 = identifier;
393
- this.n2l_1 = comment;
392
+ this.y2k_1 = identifier;
393
+ this.z2k_1 = comment;
394
394
  this.entries = entries;
395
395
  }
396
- protoOf(WsEnum).m24 = function () {
397
- return this.m2l_1;
396
+ protoOf(WsEnum).d26 = function () {
397
+ return this.y2k_1;
398
398
  };
399
- protoOf(WsEnum).s2k = function () {
400
- return this.n2l_1;
399
+ protoOf(WsEnum).e2k = function () {
400
+ return this.z2k_1;
401
401
  };
402
402
  protoOf(WsEnum).z = function () {
403
403
  return this.entries;
404
404
  };
405
405
  protoOf(WsEnum).sd = function () {
406
- return this.m2l_1;
406
+ return this.y2k_1;
407
407
  };
408
408
  protoOf(WsEnum).td = function () {
409
- return this.n2l_1;
409
+ return this.z2k_1;
410
410
  };
411
411
  protoOf(WsEnum).uh = function () {
412
412
  return this.entries;
413
413
  };
414
- protoOf(WsEnum).o2l = function (identifier, comment, entries) {
414
+ protoOf(WsEnum).a2l = function (identifier, comment, entries) {
415
415
  return new WsEnum(identifier, comment, entries);
416
416
  };
417
417
  protoOf(WsEnum).copy = function (identifier, comment, entries, $super) {
418
- identifier = identifier === VOID ? this.m2l_1 : identifier;
419
- comment = comment === VOID ? this.n2l_1 : comment;
418
+ identifier = identifier === VOID ? this.y2k_1 : identifier;
419
+ comment = comment === VOID ? this.z2k_1 : comment;
420
420
  entries = entries === VOID ? this.entries : entries;
421
- return this.o2l(identifier, comment, entries);
421
+ return this.a2l(identifier, comment, entries);
422
422
  };
423
423
  protoOf(WsEnum).toString = function () {
424
- return 'WsEnum(identifier=' + this.m2l_1 + ', comment=' + this.n2l_1 + ', entries=' + toString(this.entries) + ')';
424
+ return 'WsEnum(identifier=' + this.y2k_1 + ', comment=' + this.z2k_1 + ', entries=' + toString(this.entries) + ')';
425
425
  };
426
426
  protoOf(WsEnum).hashCode = function () {
427
- var result = getStringHashCode(this.m2l_1);
428
- result = imul(result, 31) + (this.n2l_1 == null ? 0 : getStringHashCode(this.n2l_1)) | 0;
427
+ var result = getStringHashCode(this.y2k_1);
428
+ result = imul(result, 31) + (this.z2k_1 == null ? 0 : getStringHashCode(this.z2k_1)) | 0;
429
429
  result = imul(result, 31) + hashCode(this.entries) | 0;
430
430
  return result;
431
431
  };
@@ -435,52 +435,52 @@ protoOf(WsEnum).equals = function (other) {
435
435
  if (!(other instanceof WsEnum))
436
436
  return false;
437
437
  var tmp0_other_with_cast = other instanceof WsEnum ? other : THROW_CCE();
438
- if (!(this.m2l_1 === tmp0_other_with_cast.m2l_1))
438
+ if (!(this.y2k_1 === tmp0_other_with_cast.y2k_1))
439
439
  return false;
440
- if (!(this.n2l_1 == tmp0_other_with_cast.n2l_1))
440
+ if (!(this.z2k_1 == tmp0_other_with_cast.z2k_1))
441
441
  return false;
442
442
  if (!equals(this.entries, tmp0_other_with_cast.entries))
443
443
  return false;
444
444
  return true;
445
445
  };
446
446
  function WsUnion(identifier, comment, entries) {
447
- this.p2l_1 = identifier;
448
- this.q2l_1 = comment;
447
+ this.b2l_1 = identifier;
448
+ this.c2l_1 = comment;
449
449
  this.entries = entries;
450
450
  }
451
- protoOf(WsUnion).m24 = function () {
452
- return this.p2l_1;
451
+ protoOf(WsUnion).d26 = function () {
452
+ return this.b2l_1;
453
453
  };
454
- protoOf(WsUnion).s2k = function () {
455
- return this.q2l_1;
454
+ protoOf(WsUnion).e2k = function () {
455
+ return this.c2l_1;
456
456
  };
457
457
  protoOf(WsUnion).z = function () {
458
458
  return this.entries;
459
459
  };
460
460
  protoOf(WsUnion).sd = function () {
461
- return this.p2l_1;
461
+ return this.b2l_1;
462
462
  };
463
463
  protoOf(WsUnion).td = function () {
464
- return this.q2l_1;
464
+ return this.c2l_1;
465
465
  };
466
466
  protoOf(WsUnion).uh = function () {
467
467
  return this.entries;
468
468
  };
469
- protoOf(WsUnion).r2l = function (identifier, comment, entries) {
469
+ protoOf(WsUnion).d2l = function (identifier, comment, entries) {
470
470
  return new WsUnion(identifier, comment, entries);
471
471
  };
472
472
  protoOf(WsUnion).copy = function (identifier, comment, entries, $super) {
473
- identifier = identifier === VOID ? this.p2l_1 : identifier;
474
- comment = comment === VOID ? this.q2l_1 : comment;
473
+ identifier = identifier === VOID ? this.b2l_1 : identifier;
474
+ comment = comment === VOID ? this.c2l_1 : comment;
475
475
  entries = entries === VOID ? this.entries : entries;
476
- return this.r2l(identifier, comment, entries);
476
+ return this.d2l(identifier, comment, entries);
477
477
  };
478
478
  protoOf(WsUnion).toString = function () {
479
- return 'WsUnion(identifier=' + this.p2l_1 + ', comment=' + this.q2l_1 + ', entries=' + toString(this.entries) + ')';
479
+ return 'WsUnion(identifier=' + this.b2l_1 + ', comment=' + this.c2l_1 + ', entries=' + toString(this.entries) + ')';
480
480
  };
481
481
  protoOf(WsUnion).hashCode = function () {
482
- var result = getStringHashCode(this.p2l_1);
483
- result = imul(result, 31) + (this.q2l_1 == null ? 0 : getStringHashCode(this.q2l_1)) | 0;
482
+ var result = getStringHashCode(this.b2l_1);
483
+ result = imul(result, 31) + (this.c2l_1 == null ? 0 : getStringHashCode(this.c2l_1)) | 0;
484
484
  result = imul(result, 31) + hashCode(this.entries) | 0;
485
485
  return result;
486
486
  };
@@ -490,52 +490,52 @@ protoOf(WsUnion).equals = function (other) {
490
490
  if (!(other instanceof WsUnion))
491
491
  return false;
492
492
  var tmp0_other_with_cast = other instanceof WsUnion ? other : THROW_CCE();
493
- if (!(this.p2l_1 === tmp0_other_with_cast.p2l_1))
493
+ if (!(this.b2l_1 === tmp0_other_with_cast.b2l_1))
494
494
  return false;
495
- if (!(this.q2l_1 == tmp0_other_with_cast.q2l_1))
495
+ if (!(this.c2l_1 == tmp0_other_with_cast.c2l_1))
496
496
  return false;
497
497
  if (!equals(this.entries, tmp0_other_with_cast.entries))
498
498
  return false;
499
499
  return true;
500
500
  };
501
501
  function WsChannel(identifier, comment, reference) {
502
- this.s2l_1 = identifier;
503
- this.t2l_1 = comment;
502
+ this.e2l_1 = identifier;
503
+ this.f2l_1 = comment;
504
504
  this.reference = reference;
505
505
  }
506
- protoOf(WsChannel).m24 = function () {
507
- return this.s2l_1;
506
+ protoOf(WsChannel).d26 = function () {
507
+ return this.e2l_1;
508
508
  };
509
- protoOf(WsChannel).s2k = function () {
510
- return this.t2l_1;
509
+ protoOf(WsChannel).e2k = function () {
510
+ return this.f2l_1;
511
511
  };
512
- protoOf(WsChannel).u2l = function () {
512
+ protoOf(WsChannel).g2l = function () {
513
513
  return this.reference;
514
514
  };
515
515
  protoOf(WsChannel).sd = function () {
516
- return this.s2l_1;
516
+ return this.e2l_1;
517
517
  };
518
518
  protoOf(WsChannel).td = function () {
519
- return this.t2l_1;
519
+ return this.f2l_1;
520
520
  };
521
521
  protoOf(WsChannel).uh = function () {
522
522
  return this.reference;
523
523
  };
524
- protoOf(WsChannel).v2l = function (identifier, comment, reference) {
524
+ protoOf(WsChannel).h2l = function (identifier, comment, reference) {
525
525
  return new WsChannel(identifier, comment, reference);
526
526
  };
527
527
  protoOf(WsChannel).copy = function (identifier, comment, reference, $super) {
528
- identifier = identifier === VOID ? this.s2l_1 : identifier;
529
- comment = comment === VOID ? this.t2l_1 : comment;
528
+ identifier = identifier === VOID ? this.e2l_1 : identifier;
529
+ comment = comment === VOID ? this.f2l_1 : comment;
530
530
  reference = reference === VOID ? this.reference : reference;
531
- return this.v2l(identifier, comment, reference);
531
+ return this.h2l(identifier, comment, reference);
532
532
  };
533
533
  protoOf(WsChannel).toString = function () {
534
- return 'WsChannel(identifier=' + this.s2l_1 + ', comment=' + this.t2l_1 + ', reference=' + toString(this.reference) + ')';
534
+ return 'WsChannel(identifier=' + this.e2l_1 + ', comment=' + this.f2l_1 + ', reference=' + toString(this.reference) + ')';
535
535
  };
536
536
  protoOf(WsChannel).hashCode = function () {
537
- var result = getStringHashCode(this.s2l_1);
538
- result = imul(result, 31) + (this.t2l_1 == null ? 0 : getStringHashCode(this.t2l_1)) | 0;
537
+ var result = getStringHashCode(this.e2l_1);
538
+ result = imul(result, 31) + (this.f2l_1 == null ? 0 : getStringHashCode(this.f2l_1)) | 0;
539
539
  result = imul(result, 31) + hashCode(this.reference) | 0;
540
540
  return result;
541
541
  };
@@ -545,52 +545,52 @@ protoOf(WsChannel).equals = function (other) {
545
545
  if (!(other instanceof WsChannel))
546
546
  return false;
547
547
  var tmp0_other_with_cast = other instanceof WsChannel ? other : THROW_CCE();
548
- if (!(this.s2l_1 === tmp0_other_with_cast.s2l_1))
548
+ if (!(this.e2l_1 === tmp0_other_with_cast.e2l_1))
549
549
  return false;
550
- if (!(this.t2l_1 == tmp0_other_with_cast.t2l_1))
550
+ if (!(this.f2l_1 == tmp0_other_with_cast.f2l_1))
551
551
  return false;
552
552
  if (!equals(this.reference, tmp0_other_with_cast.reference))
553
553
  return false;
554
554
  return true;
555
555
  };
556
556
  function WsRefined(identifier, comment, reference) {
557
- this.w2l_1 = identifier;
558
- this.x2l_1 = comment;
557
+ this.i2l_1 = identifier;
558
+ this.j2l_1 = comment;
559
559
  this.reference = reference;
560
560
  }
561
- protoOf(WsRefined).m24 = function () {
562
- return this.w2l_1;
561
+ protoOf(WsRefined).d26 = function () {
562
+ return this.i2l_1;
563
563
  };
564
- protoOf(WsRefined).s2k = function () {
565
- return this.x2l_1;
564
+ protoOf(WsRefined).e2k = function () {
565
+ return this.j2l_1;
566
566
  };
567
- protoOf(WsRefined).u2l = function () {
567
+ protoOf(WsRefined).g2l = function () {
568
568
  return this.reference;
569
569
  };
570
570
  protoOf(WsRefined).sd = function () {
571
- return this.w2l_1;
571
+ return this.i2l_1;
572
572
  };
573
573
  protoOf(WsRefined).td = function () {
574
- return this.x2l_1;
574
+ return this.j2l_1;
575
575
  };
576
576
  protoOf(WsRefined).uh = function () {
577
577
  return this.reference;
578
578
  };
579
- protoOf(WsRefined).v2l = function (identifier, comment, reference) {
579
+ protoOf(WsRefined).h2l = function (identifier, comment, reference) {
580
580
  return new WsRefined(identifier, comment, reference);
581
581
  };
582
582
  protoOf(WsRefined).copy = function (identifier, comment, reference, $super) {
583
- identifier = identifier === VOID ? this.w2l_1 : identifier;
584
- comment = comment === VOID ? this.x2l_1 : comment;
583
+ identifier = identifier === VOID ? this.i2l_1 : identifier;
584
+ comment = comment === VOID ? this.j2l_1 : comment;
585
585
  reference = reference === VOID ? this.reference : reference;
586
- return this.v2l(identifier, comment, reference);
586
+ return this.h2l(identifier, comment, reference);
587
587
  };
588
588
  protoOf(WsRefined).toString = function () {
589
- return 'WsRefined(identifier=' + this.w2l_1 + ', comment=' + this.x2l_1 + ', reference=' + toString(this.reference) + ')';
589
+ return 'WsRefined(identifier=' + this.i2l_1 + ', comment=' + this.j2l_1 + ', reference=' + toString(this.reference) + ')';
590
590
  };
591
591
  protoOf(WsRefined).hashCode = function () {
592
- var result = getStringHashCode(this.w2l_1);
593
- result = imul(result, 31) + (this.x2l_1 == null ? 0 : getStringHashCode(this.x2l_1)) | 0;
592
+ var result = getStringHashCode(this.i2l_1);
593
+ result = imul(result, 31) + (this.j2l_1 == null ? 0 : getStringHashCode(this.j2l_1)) | 0;
594
594
  result = imul(result, 31) + hashCode(this.reference) | 0;
595
595
  return result;
596
596
  };
@@ -600,9 +600,9 @@ protoOf(WsRefined).equals = function (other) {
600
600
  if (!(other instanceof WsRefined))
601
601
  return false;
602
602
  var tmp0_other_with_cast = other instanceof WsRefined ? other : THROW_CCE();
603
- if (!(this.w2l_1 === tmp0_other_with_cast.w2l_1))
603
+ if (!(this.i2l_1 === tmp0_other_with_cast.i2l_1))
604
604
  return false;
605
- if (!(this.x2l_1 == tmp0_other_with_cast.x2l_1))
605
+ if (!(this.j2l_1 == tmp0_other_with_cast.j2l_1))
606
606
  return false;
607
607
  if (!equals(this.reference, tmp0_other_with_cast.reference))
608
608
  return false;
@@ -671,12 +671,12 @@ protoOf(WsLiteral).b1 = function () {
671
671
  protoOf(WsLiteral).sd = function () {
672
672
  return this.value;
673
673
  };
674
- protoOf(WsLiteral).a2m = function (value) {
674
+ protoOf(WsLiteral).m2l = function (value) {
675
675
  return new WsLiteral(value);
676
676
  };
677
677
  protoOf(WsLiteral).copy = function (value, $super) {
678
678
  value = value === VOID ? this.value : value;
679
- return this.a2m(value);
679
+ return this.m2l(value);
680
680
  };
681
681
  protoOf(WsLiteral).toString = function () {
682
682
  return 'WsLiteral(value=' + this.value + ')';
@@ -698,10 +698,10 @@ function WsParam(identifier, reference) {
698
698
  this.identifier = identifier;
699
699
  this.reference = reference;
700
700
  }
701
- protoOf(WsParam).m24 = function () {
701
+ protoOf(WsParam).d26 = function () {
702
702
  return this.identifier;
703
703
  };
704
- protoOf(WsParam).u2l = function () {
704
+ protoOf(WsParam).g2l = function () {
705
705
  return this.reference;
706
706
  };
707
707
  protoOf(WsParam).sd = function () {
@@ -710,13 +710,13 @@ protoOf(WsParam).sd = function () {
710
710
  protoOf(WsParam).td = function () {
711
711
  return this.reference;
712
712
  };
713
- protoOf(WsParam).b2m = function (identifier, reference) {
713
+ protoOf(WsParam).n2l = function (identifier, reference) {
714
714
  return new WsParam(identifier, reference);
715
715
  };
716
716
  protoOf(WsParam).copy = function (identifier, reference, $super) {
717
717
  identifier = identifier === VOID ? this.identifier : identifier;
718
718
  reference = reference === VOID ? this.reference : reference;
719
- return this.b2m(identifier, reference);
719
+ return this.n2l(identifier, reference);
720
720
  };
721
721
  protoOf(WsParam).toString = function () {
722
722
  return 'WsParam(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
@@ -747,12 +747,12 @@ protoOf(Shape_0).b1 = function () {
747
747
  protoOf(Shape_0).sd = function () {
748
748
  return this.value;
749
749
  };
750
- protoOf(Shape_0).x2k = function (value) {
750
+ protoOf(Shape_0).j2k = function (value) {
751
751
  return new Shape_0(value);
752
752
  };
753
753
  protoOf(Shape_0).copy = function (value, $super) {
754
754
  value = value === VOID ? this.value : value;
755
- return this.x2k(value);
755
+ return this.j2k(value);
756
756
  };
757
757
  protoOf(Shape_0).toString = function () {
758
758
  return 'Shape(value=' + toString(this.value) + ')';
@@ -774,10 +774,10 @@ function WsField(identifier, reference) {
774
774
  this.identifier = identifier;
775
775
  this.reference = reference;
776
776
  }
777
- protoOf(WsField).m24 = function () {
777
+ protoOf(WsField).d26 = function () {
778
778
  return this.identifier;
779
779
  };
780
- protoOf(WsField).u2l = function () {
780
+ protoOf(WsField).g2l = function () {
781
781
  return this.reference;
782
782
  };
783
783
  protoOf(WsField).sd = function () {
@@ -786,13 +786,13 @@ protoOf(WsField).sd = function () {
786
786
  protoOf(WsField).td = function () {
787
787
  return this.reference;
788
788
  };
789
- protoOf(WsField).b2m = function (identifier, reference) {
789
+ protoOf(WsField).n2l = function (identifier, reference) {
790
790
  return new WsField(identifier, reference);
791
791
  };
792
792
  protoOf(WsField).copy = function (identifier, reference, $super) {
793
793
  identifier = identifier === VOID ? this.identifier : identifier;
794
794
  reference = reference === VOID ? this.reference : reference;
795
- return this.b2m(identifier, reference);
795
+ return this.n2l(identifier, reference);
796
796
  };
797
797
  protoOf(WsField).toString = function () {
798
798
  return 'WsField(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
@@ -825,12 +825,12 @@ protoOf(WsClassIdentifier).b1 = function () {
825
825
  protoOf(WsClassIdentifier).sd = function () {
826
826
  return this.value;
827
827
  };
828
- protoOf(WsClassIdentifier).a2m = function (value) {
828
+ protoOf(WsClassIdentifier).m2l = function (value) {
829
829
  return new WsClassIdentifier(value);
830
830
  };
831
831
  protoOf(WsClassIdentifier).copy = function (value, $super) {
832
832
  value = value === VOID ? this.value : value;
833
- return this.a2m(value);
833
+ return this.m2l(value);
834
834
  };
835
835
  protoOf(WsClassIdentifier).toString = function () {
836
836
  return 'WsClassIdentifier(value=' + this.value + ')';
@@ -857,12 +857,12 @@ protoOf(WsFieldIdentifier).b1 = function () {
857
857
  protoOf(WsFieldIdentifier).sd = function () {
858
858
  return this.value;
859
859
  };
860
- protoOf(WsFieldIdentifier).a2m = function (value) {
860
+ protoOf(WsFieldIdentifier).m2l = function (value) {
861
861
  return new WsFieldIdentifier(value);
862
862
  };
863
863
  protoOf(WsFieldIdentifier).copy = function (value, $super) {
864
864
  value = value === VOID ? this.value : value;
865
- return this.a2m(value);
865
+ return this.m2l(value);
866
866
  };
867
867
  protoOf(WsFieldIdentifier).toString = function () {
868
868
  return 'WsFieldIdentifier(value=' + this.value + ')';
@@ -883,26 +883,26 @@ protoOf(WsFieldIdentifier).equals = function (other) {
883
883
  function WsReference() {
884
884
  }
885
885
  function WsAny(isNullable) {
886
- this.c2m_1 = isNullable;
886
+ this.o2l_1 = isNullable;
887
887
  }
888
888
  protoOf(WsAny).hm = function () {
889
- return this.c2m_1;
889
+ return this.o2l_1;
890
890
  };
891
891
  protoOf(WsAny).sd = function () {
892
- return this.c2m_1;
892
+ return this.o2l_1;
893
893
  };
894
- protoOf(WsAny).a29 = function (isNullable) {
894
+ protoOf(WsAny).p28 = function (isNullable) {
895
895
  return new WsAny(isNullable);
896
896
  };
897
897
  protoOf(WsAny).copy = function (isNullable, $super) {
898
- isNullable = isNullable === VOID ? this.c2m_1 : isNullable;
899
- return this.a29(isNullable);
898
+ isNullable = isNullable === VOID ? this.o2l_1 : isNullable;
899
+ return this.p28(isNullable);
900
900
  };
901
901
  protoOf(WsAny).toString = function () {
902
- return 'WsAny(isNullable=' + this.c2m_1 + ')';
902
+ return 'WsAny(isNullable=' + this.o2l_1 + ')';
903
903
  };
904
904
  protoOf(WsAny).hashCode = function () {
905
- return getBooleanHashCode(this.c2m_1);
905
+ return getBooleanHashCode(this.o2l_1);
906
906
  };
907
907
  protoOf(WsAny).equals = function (other) {
908
908
  if (this === other)
@@ -910,31 +910,31 @@ protoOf(WsAny).equals = function (other) {
910
910
  if (!(other instanceof WsAny))
911
911
  return false;
912
912
  var tmp0_other_with_cast = other instanceof WsAny ? other : THROW_CCE();
913
- if (!(this.c2m_1 === tmp0_other_with_cast.c2m_1))
913
+ if (!(this.o2l_1 === tmp0_other_with_cast.o2l_1))
914
914
  return false;
915
915
  return true;
916
916
  };
917
917
  function WsUnit(isNullable) {
918
- this.d2m_1 = isNullable;
918
+ this.p2l_1 = isNullable;
919
919
  }
920
920
  protoOf(WsUnit).hm = function () {
921
- return this.d2m_1;
921
+ return this.p2l_1;
922
922
  };
923
923
  protoOf(WsUnit).sd = function () {
924
- return this.d2m_1;
924
+ return this.p2l_1;
925
925
  };
926
- protoOf(WsUnit).a29 = function (isNullable) {
926
+ protoOf(WsUnit).p28 = function (isNullable) {
927
927
  return new WsUnit(isNullable);
928
928
  };
929
929
  protoOf(WsUnit).copy = function (isNullable, $super) {
930
- isNullable = isNullable === VOID ? this.d2m_1 : isNullable;
931
- return this.a29(isNullable);
930
+ isNullable = isNullable === VOID ? this.p2l_1 : isNullable;
931
+ return this.p28(isNullable);
932
932
  };
933
933
  protoOf(WsUnit).toString = function () {
934
- return 'WsUnit(isNullable=' + this.d2m_1 + ')';
934
+ return 'WsUnit(isNullable=' + this.p2l_1 + ')';
935
935
  };
936
936
  protoOf(WsUnit).hashCode = function () {
937
- return getBooleanHashCode(this.d2m_1);
937
+ return getBooleanHashCode(this.p2l_1);
938
938
  };
939
939
  protoOf(WsUnit).equals = function (other) {
940
940
  if (this === other)
@@ -942,40 +942,40 @@ protoOf(WsUnit).equals = function (other) {
942
942
  if (!(other instanceof WsUnit))
943
943
  return false;
944
944
  var tmp0_other_with_cast = other instanceof WsUnit ? other : THROW_CCE();
945
- if (!(this.d2m_1 === tmp0_other_with_cast.d2m_1))
945
+ if (!(this.p2l_1 === tmp0_other_with_cast.p2l_1))
946
946
  return false;
947
947
  return true;
948
948
  };
949
949
  function WsIterable(reference, isNullable) {
950
950
  this.reference = reference;
951
- this.e2m_1 = isNullable;
951
+ this.q2l_1 = isNullable;
952
952
  }
953
- protoOf(WsIterable).u2l = function () {
953
+ protoOf(WsIterable).g2l = function () {
954
954
  return this.reference;
955
955
  };
956
956
  protoOf(WsIterable).hm = function () {
957
- return this.e2m_1;
957
+ return this.q2l_1;
958
958
  };
959
959
  protoOf(WsIterable).sd = function () {
960
960
  return this.reference;
961
961
  };
962
962
  protoOf(WsIterable).td = function () {
963
- return this.e2m_1;
963
+ return this.q2l_1;
964
964
  };
965
- protoOf(WsIterable).f2m = function (reference, isNullable) {
965
+ protoOf(WsIterable).r2l = function (reference, isNullable) {
966
966
  return new WsIterable(reference, isNullable);
967
967
  };
968
968
  protoOf(WsIterable).copy = function (reference, isNullable, $super) {
969
969
  reference = reference === VOID ? this.reference : reference;
970
- isNullable = isNullable === VOID ? this.e2m_1 : isNullable;
971
- return this.f2m(reference, isNullable);
970
+ isNullable = isNullable === VOID ? this.q2l_1 : isNullable;
971
+ return this.r2l(reference, isNullable);
972
972
  };
973
973
  protoOf(WsIterable).toString = function () {
974
- return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.e2m_1 + ')';
974
+ return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.q2l_1 + ')';
975
975
  };
976
976
  protoOf(WsIterable).hashCode = function () {
977
977
  var result = hashCode(this.reference);
978
- result = imul(result, 31) + getBooleanHashCode(this.e2m_1) | 0;
978
+ result = imul(result, 31) + getBooleanHashCode(this.q2l_1) | 0;
979
979
  return result;
980
980
  };
981
981
  protoOf(WsIterable).equals = function (other) {
@@ -986,40 +986,40 @@ protoOf(WsIterable).equals = function (other) {
986
986
  var tmp0_other_with_cast = other instanceof WsIterable ? other : THROW_CCE();
987
987
  if (!equals(this.reference, tmp0_other_with_cast.reference))
988
988
  return false;
989
- if (!(this.e2m_1 === tmp0_other_with_cast.e2m_1))
989
+ if (!(this.q2l_1 === tmp0_other_with_cast.q2l_1))
990
990
  return false;
991
991
  return true;
992
992
  };
993
993
  function WsDict(reference, isNullable) {
994
994
  this.reference = reference;
995
- this.g2m_1 = isNullable;
995
+ this.s2l_1 = isNullable;
996
996
  }
997
- protoOf(WsDict).u2l = function () {
997
+ protoOf(WsDict).g2l = function () {
998
998
  return this.reference;
999
999
  };
1000
1000
  protoOf(WsDict).hm = function () {
1001
- return this.g2m_1;
1001
+ return this.s2l_1;
1002
1002
  };
1003
1003
  protoOf(WsDict).sd = function () {
1004
1004
  return this.reference;
1005
1005
  };
1006
1006
  protoOf(WsDict).td = function () {
1007
- return this.g2m_1;
1007
+ return this.s2l_1;
1008
1008
  };
1009
- protoOf(WsDict).f2m = function (reference, isNullable) {
1009
+ protoOf(WsDict).r2l = function (reference, isNullable) {
1010
1010
  return new WsDict(reference, isNullable);
1011
1011
  };
1012
1012
  protoOf(WsDict).copy = function (reference, isNullable, $super) {
1013
1013
  reference = reference === VOID ? this.reference : reference;
1014
- isNullable = isNullable === VOID ? this.g2m_1 : isNullable;
1015
- return this.f2m(reference, isNullable);
1014
+ isNullable = isNullable === VOID ? this.s2l_1 : isNullable;
1015
+ return this.r2l(reference, isNullable);
1016
1016
  };
1017
1017
  protoOf(WsDict).toString = function () {
1018
- return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.g2m_1 + ')';
1018
+ return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.s2l_1 + ')';
1019
1019
  };
1020
1020
  protoOf(WsDict).hashCode = function () {
1021
1021
  var result = hashCode(this.reference);
1022
- result = imul(result, 31) + getBooleanHashCode(this.g2m_1) | 0;
1022
+ result = imul(result, 31) + getBooleanHashCode(this.s2l_1) | 0;
1023
1023
  return result;
1024
1024
  };
1025
1025
  protoOf(WsDict).equals = function (other) {
@@ -1030,40 +1030,40 @@ protoOf(WsDict).equals = function (other) {
1030
1030
  var tmp0_other_with_cast = other instanceof WsDict ? other : THROW_CCE();
1031
1031
  if (!equals(this.reference, tmp0_other_with_cast.reference))
1032
1032
  return false;
1033
- if (!(this.g2m_1 === tmp0_other_with_cast.g2m_1))
1033
+ if (!(this.s2l_1 === tmp0_other_with_cast.s2l_1))
1034
1034
  return false;
1035
1035
  return true;
1036
1036
  };
1037
1037
  function WsCustom(value, isNullable) {
1038
1038
  this.value = value;
1039
- this.h2m_1 = isNullable;
1039
+ this.t2l_1 = isNullable;
1040
1040
  }
1041
1041
  protoOf(WsCustom).b1 = function () {
1042
1042
  return this.value;
1043
1043
  };
1044
1044
  protoOf(WsCustom).hm = function () {
1045
- return this.h2m_1;
1045
+ return this.t2l_1;
1046
1046
  };
1047
1047
  protoOf(WsCustom).sd = function () {
1048
1048
  return this.value;
1049
1049
  };
1050
1050
  protoOf(WsCustom).td = function () {
1051
- return this.h2m_1;
1051
+ return this.t2l_1;
1052
1052
  };
1053
- protoOf(WsCustom).j29 = function (value, isNullable) {
1053
+ protoOf(WsCustom).y28 = function (value, isNullable) {
1054
1054
  return new WsCustom(value, isNullable);
1055
1055
  };
1056
1056
  protoOf(WsCustom).copy = function (value, isNullable, $super) {
1057
1057
  value = value === VOID ? this.value : value;
1058
- isNullable = isNullable === VOID ? this.h2m_1 : isNullable;
1059
- return this.j29(value, isNullable);
1058
+ isNullable = isNullable === VOID ? this.t2l_1 : isNullable;
1059
+ return this.y28(value, isNullable);
1060
1060
  };
1061
1061
  protoOf(WsCustom).toString = function () {
1062
- return 'WsCustom(value=' + this.value + ', isNullable=' + this.h2m_1 + ')';
1062
+ return 'WsCustom(value=' + this.value + ', isNullable=' + this.t2l_1 + ')';
1063
1063
  };
1064
1064
  protoOf(WsCustom).hashCode = function () {
1065
1065
  var result = getStringHashCode(this.value);
1066
- result = imul(result, 31) + getBooleanHashCode(this.h2m_1) | 0;
1066
+ result = imul(result, 31) + getBooleanHashCode(this.t2l_1) | 0;
1067
1067
  return result;
1068
1068
  };
1069
1069
  protoOf(WsCustom).equals = function (other) {
@@ -1074,40 +1074,40 @@ protoOf(WsCustom).equals = function (other) {
1074
1074
  var tmp0_other_with_cast = other instanceof WsCustom ? other : THROW_CCE();
1075
1075
  if (!(this.value === tmp0_other_with_cast.value))
1076
1076
  return false;
1077
- if (!(this.h2m_1 === tmp0_other_with_cast.h2m_1))
1077
+ if (!(this.t2l_1 === tmp0_other_with_cast.t2l_1))
1078
1078
  return false;
1079
1079
  return true;
1080
1080
  };
1081
1081
  function WsPrimitive(type, isNullable) {
1082
1082
  this.type = type;
1083
- this.i2m_1 = isNullable;
1083
+ this.u2l_1 = isNullable;
1084
1084
  }
1085
1085
  protoOf(WsPrimitive).t1j = function () {
1086
1086
  return this.type;
1087
1087
  };
1088
1088
  protoOf(WsPrimitive).hm = function () {
1089
- return this.i2m_1;
1089
+ return this.u2l_1;
1090
1090
  };
1091
1091
  protoOf(WsPrimitive).sd = function () {
1092
1092
  return this.type;
1093
1093
  };
1094
1094
  protoOf(WsPrimitive).td = function () {
1095
- return this.i2m_1;
1095
+ return this.u2l_1;
1096
1096
  };
1097
- protoOf(WsPrimitive).j2m = function (type, isNullable) {
1097
+ protoOf(WsPrimitive).v2l = function (type, isNullable) {
1098
1098
  return new WsPrimitive(type, isNullable);
1099
1099
  };
1100
1100
  protoOf(WsPrimitive).copy = function (type, isNullable, $super) {
1101
1101
  type = type === VOID ? this.type : type;
1102
- isNullable = isNullable === VOID ? this.i2m_1 : isNullable;
1103
- return this.j2m(type, isNullable);
1102
+ isNullable = isNullable === VOID ? this.u2l_1 : isNullable;
1103
+ return this.v2l(type, isNullable);
1104
1104
  };
1105
1105
  protoOf(WsPrimitive).toString = function () {
1106
- return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.i2m_1 + ')';
1106
+ return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.u2l_1 + ')';
1107
1107
  };
1108
1108
  protoOf(WsPrimitive).hashCode = function () {
1109
1109
  var result = this.type.hashCode();
1110
- result = imul(result, 31) + getBooleanHashCode(this.i2m_1) | 0;
1110
+ result = imul(result, 31) + getBooleanHashCode(this.u2l_1) | 0;
1111
1111
  return result;
1112
1112
  };
1113
1113
  protoOf(WsPrimitive).equals = function (other) {
@@ -1118,7 +1118,7 @@ protoOf(WsPrimitive).equals = function (other) {
1118
1118
  var tmp0_other_with_cast = other instanceof WsPrimitive ? other : THROW_CCE();
1119
1119
  if (!this.type.equals(tmp0_other_with_cast.type))
1120
1120
  return false;
1121
- if (!(this.i2m_1 === tmp0_other_with_cast.i2m_1))
1121
+ if (!(this.u2l_1 === tmp0_other_with_cast.u2l_1))
1122
1122
  return false;
1123
1123
  return true;
1124
1124
  };
@@ -1171,12 +1171,12 @@ protoOf(WsRequest).o17 = function () {
1171
1171
  protoOf(WsRequest).sd = function () {
1172
1172
  return this.content;
1173
1173
  };
1174
- protoOf(WsRequest).m2m = function (content) {
1174
+ protoOf(WsRequest).y2l = function (content) {
1175
1175
  return new WsRequest(content);
1176
1176
  };
1177
1177
  protoOf(WsRequest).copy = function (content, $super) {
1178
1178
  content = content === VOID ? this.content : content;
1179
- return this.m2m(content);
1179
+ return this.y2l(content);
1180
1180
  };
1181
1181
  protoOf(WsRequest).toString = function () {
1182
1182
  return 'WsRequest(content=' + toString_0(this.content) + ')';
@@ -1199,10 +1199,10 @@ function WsResponse(status, headers, content) {
1199
1199
  this.headers = headers;
1200
1200
  this.content = content;
1201
1201
  }
1202
- protoOf(WsResponse).n2m = function () {
1202
+ protoOf(WsResponse).z2l = function () {
1203
1203
  return this.status;
1204
1204
  };
1205
- protoOf(WsResponse).d2l = function () {
1205
+ protoOf(WsResponse).p2k = function () {
1206
1206
  return this.headers;
1207
1207
  };
1208
1208
  protoOf(WsResponse).o17 = function () {
@@ -1217,14 +1217,14 @@ protoOf(WsResponse).td = function () {
1217
1217
  protoOf(WsResponse).uh = function () {
1218
1218
  return this.content;
1219
1219
  };
1220
- protoOf(WsResponse).o2m = function (status, headers, content) {
1220
+ protoOf(WsResponse).a2m = function (status, headers, content) {
1221
1221
  return new WsResponse(status, headers, content);
1222
1222
  };
1223
1223
  protoOf(WsResponse).copy = function (status, headers, content, $super) {
1224
1224
  status = status === VOID ? this.status : status;
1225
1225
  headers = headers === VOID ? this.headers : headers;
1226
1226
  content = content === VOID ? this.content : content;
1227
- return this.o2m(status, headers, content);
1227
+ return this.a2m(status, headers, content);
1228
1228
  };
1229
1229
  protoOf(WsResponse).toString = function () {
1230
1230
  return 'WsResponse(status=' + this.status + ', headers=' + toString(this.headers) + ', content=' + toString_0(this.content) + ')';
@@ -1258,7 +1258,7 @@ function WsContent(type, reference, isNullable) {
1258
1258
  protoOf(WsContent).t1j = function () {
1259
1259
  return this.type;
1260
1260
  };
1261
- protoOf(WsContent).u2l = function () {
1261
+ protoOf(WsContent).g2l = function () {
1262
1262
  return this.reference;
1263
1263
  };
1264
1264
  protoOf(WsContent).hm = function () {
@@ -1273,14 +1273,14 @@ protoOf(WsContent).td = function () {
1273
1273
  protoOf(WsContent).uh = function () {
1274
1274
  return this.isNullable;
1275
1275
  };
1276
- protoOf(WsContent).p2m = function (type, reference, isNullable) {
1276
+ protoOf(WsContent).b2m = function (type, reference, isNullable) {
1277
1277
  return new WsContent(type, reference, isNullable);
1278
1278
  };
1279
1279
  protoOf(WsContent).copy = function (type, reference, isNullable, $super) {
1280
1280
  type = type === VOID ? this.type : type;
1281
1281
  reference = reference === VOID ? this.reference : reference;
1282
1282
  isNullable = isNullable === VOID ? this.isNullable : isNullable;
1283
- return this.p2m(type, reference, isNullable);
1283
+ return this.b2m(type, reference, isNullable);
1284
1284
  };
1285
1285
  protoOf(WsContent).toString = function () {
1286
1286
  return 'WsContent(type=' + this.type + ', reference=' + toString(this.reference) + ', isNullable=' + this.isNullable + ')';
@@ -1308,8 +1308,8 @@ protoOf(WsContent).equals = function (other) {
1308
1308
  function produce(_this__u8e3s4) {
1309
1309
  var tmp;
1310
1310
  if (_this__u8e3s4 instanceof Type) {
1311
- var tmp_0 = _this__u8e3s4.q25_1.b1();
1312
- var tmp1_safe_receiver = _this__u8e3s4.p25_1;
1311
+ var tmp_0 = _this__u8e3s4.h24_1.b1();
1312
+ var tmp1_safe_receiver = _this__u8e3s4.g24_1;
1313
1313
  var tmp_1;
1314
1314
  var tmp_2 = tmp1_safe_receiver;
1315
1315
  if ((tmp_2 == null ? null : new Comment(tmp_2)) == null) {
@@ -1317,11 +1317,11 @@ function produce(_this__u8e3s4) {
1317
1317
  } else {
1318
1318
  tmp_1 = _Comment___get_value__impl__8r3pla(tmp1_safe_receiver);
1319
1319
  }
1320
- tmp = new WsType(tmp_0, tmp_1, produce_1(_this__u8e3s4.r25_1));
1320
+ tmp = new WsType(tmp_0, tmp_1, produce_1(_this__u8e3s4.i24_1));
1321
1321
  } else {
1322
1322
  if (_this__u8e3s4 instanceof Endpoint) {
1323
- var tmp_3 = _this__u8e3s4.h25_1.b1();
1324
- var tmp2_safe_receiver = _this__u8e3s4.g25_1;
1323
+ var tmp_3 = _this__u8e3s4.o24_1.b1();
1324
+ var tmp2_safe_receiver = _this__u8e3s4.n24_1;
1325
1325
  var tmp_4;
1326
1326
  var tmp_5 = tmp2_safe_receiver;
1327
1327
  if ((tmp_5 == null ? null : new Comment(tmp_5)) == null) {
@@ -1329,11 +1329,11 @@ function produce(_this__u8e3s4) {
1329
1329
  } else {
1330
1330
  tmp_4 = _Comment___get_value__impl__8r3pla(tmp2_safe_receiver);
1331
1331
  }
1332
- tmp = new WsEndpoint(tmp_3, tmp_4, produce_2(_this__u8e3s4.i25_1), produce_3(_this__u8e3s4.j25_1), produce_4(_this__u8e3s4.k25_1), produce_4(_this__u8e3s4.l25_1), produce_5(_this__u8e3s4.m25_1), produce_6(_this__u8e3s4.n25_1));
1332
+ tmp = new WsEndpoint(tmp_3, tmp_4, produce_2(_this__u8e3s4.p24_1), produce_3(_this__u8e3s4.q24_1), produce_4(_this__u8e3s4.r24_1), produce_4(_this__u8e3s4.s24_1), produce_5(_this__u8e3s4.t24_1), produce_6(_this__u8e3s4.u24_1));
1333
1333
  } else {
1334
1334
  if (_this__u8e3s4 instanceof Enum_0) {
1335
- var tmp_6 = _this__u8e3s4.d25_1.b1();
1336
- var tmp3_safe_receiver = _this__u8e3s4.c25_1;
1335
+ var tmp_6 = _this__u8e3s4.n26_1.b1();
1336
+ var tmp3_safe_receiver = _this__u8e3s4.m26_1;
1337
1337
  var tmp_7;
1338
1338
  var tmp_8 = tmp3_safe_receiver;
1339
1339
  if ((tmp_8 == null ? null : new Comment(tmp_8)) == null) {
@@ -1343,13 +1343,13 @@ function produce(_this__u8e3s4) {
1343
1343
  }
1344
1344
  var tmp_9 = tmp_7;
1345
1345
  // Inline function 'kotlin.collections.toTypedArray' call
1346
- var this_0 = _this__u8e3s4.e25_1;
1346
+ var this_0 = _this__u8e3s4.o26_1;
1347
1347
  var tmp$ret$0 = copyToArray(this_0);
1348
1348
  tmp = new WsEnum(tmp_6, tmp_9, tmp$ret$0);
1349
1349
  } else {
1350
1350
  if (_this__u8e3s4 instanceof Refined) {
1351
- var tmp_10 = _this__u8e3s4.z24_1.b1();
1352
- var tmp4_safe_receiver = _this__u8e3s4.y24_1;
1351
+ var tmp_10 = _this__u8e3s4.j26_1.b1();
1352
+ var tmp4_safe_receiver = _this__u8e3s4.i26_1;
1353
1353
  var tmp_11;
1354
1354
  var tmp_12 = tmp4_safe_receiver;
1355
1355
  if ((tmp_12 == null ? null : new Comment(tmp_12)) == null) {
@@ -1357,11 +1357,11 @@ function produce(_this__u8e3s4) {
1357
1357
  } else {
1358
1358
  tmp_11 = _Comment___get_value__impl__8r3pla(tmp4_safe_receiver);
1359
1359
  }
1360
- tmp = new WsRefined(tmp_10, tmp_11, produce_7(_this__u8e3s4.a25_1));
1360
+ tmp = new WsRefined(tmp_10, tmp_11, produce_7(_this__u8e3s4.k26_1));
1361
1361
  } else {
1362
1362
  if (_this__u8e3s4 instanceof Union) {
1363
- var tmp_13 = _this__u8e3s4.v24_1.b1();
1364
- var tmp5_safe_receiver = _this__u8e3s4.u24_1;
1363
+ var tmp_13 = _this__u8e3s4.d24_1.b1();
1364
+ var tmp5_safe_receiver = _this__u8e3s4.c24_1;
1365
1365
  var tmp_14;
1366
1366
  var tmp_15 = tmp5_safe_receiver;
1367
1367
  if ((tmp_15 == null ? null : new Comment(tmp_15)) == null) {
@@ -1372,7 +1372,7 @@ function produce(_this__u8e3s4) {
1372
1372
  var tmp_16 = tmp_14;
1373
1373
  // Inline function 'kotlin.collections.toTypedArray' call
1374
1374
  // Inline function 'kotlin.collections.map' call
1375
- var this_1 = _this__u8e3s4.w24_1;
1375
+ var this_1 = _this__u8e3s4.e24_1;
1376
1376
  // Inline function 'kotlin.collections.mapTo' call
1377
1377
  var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_1, 10));
1378
1378
  var tmp0_iterator = this_1.g();
@@ -1386,8 +1386,8 @@ function produce(_this__u8e3s4) {
1386
1386
  tmp = new WsUnion(tmp_13, tmp_16, tmp$ret$4);
1387
1387
  } else {
1388
1388
  if (_this__u8e3s4 instanceof Channel) {
1389
- var tmp_17 = _this__u8e3s4.q24_1.b1();
1390
- var tmp6_safe_receiver = _this__u8e3s4.p24_1;
1389
+ var tmp_17 = _this__u8e3s4.a24_1.b1();
1390
+ var tmp6_safe_receiver = _this__u8e3s4.z23_1;
1391
1391
  var tmp_18;
1392
1392
  var tmp_19 = tmp6_safe_receiver;
1393
1393
  if ((tmp_19 == null ? null : new Comment(tmp_19)) == null) {
@@ -1395,7 +1395,7 @@ function produce(_this__u8e3s4) {
1395
1395
  } else {
1396
1396
  tmp_18 = _Comment___get_value__impl__8r3pla(tmp6_safe_receiver);
1397
1397
  }
1398
- tmp = new WsChannel(tmp_17, tmp_18, produce_7(_this__u8e3s4.r24_1));
1398
+ tmp = new WsChannel(tmp_17, tmp_18, produce_7(_this__u8e3s4.b24_1));
1399
1399
  } else {
1400
1400
  noWhenBranchMatchedException();
1401
1401
  }
@@ -1409,7 +1409,7 @@ function produce(_this__u8e3s4) {
1409
1409
  function produce_0(_this__u8e3s4) {
1410
1410
  // Inline function 'kotlin.collections.toTypedArray' call
1411
1411
  // Inline function 'arrow.core.NonEmptyList.map' call
1412
- var this_0 = _this__u8e3s4.f24_1;
1412
+ var this_0 = _this__u8e3s4.k25_1;
1413
1413
  // Inline function 'community.flock.wirespec.compiler.lib.produce.<anonymous>' call
1414
1414
  var it = this_0.jk_1;
1415
1415
  var tmp = produce_8(it);
@@ -1447,7 +1447,7 @@ function consume(_this__u8e3s4) {
1447
1447
  function produce_1(_this__u8e3s4) {
1448
1448
  // Inline function 'kotlin.collections.toTypedArray' call
1449
1449
  // Inline function 'kotlin.collections.map' call
1450
- var this_0 = _this__u8e3s4.u26_1;
1450
+ var this_0 = _this__u8e3s4.f24_1;
1451
1451
  // Inline function 'kotlin.collections.mapTo' call
1452
1452
  var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_0, 10));
1453
1453
  var tmp0_iterator = this_0.g();
@@ -1504,10 +1504,10 @@ function produce_3(_this__u8e3s4) {
1504
1504
  // Inline function 'community.flock.wirespec.compiler.lib.produce.<anonymous>' call
1505
1505
  var tmp;
1506
1506
  if (item instanceof Literal) {
1507
- tmp = new WsLiteral(item.q26_1);
1507
+ tmp = new WsLiteral(item.q25_1);
1508
1508
  } else {
1509
1509
  if (item instanceof Param) {
1510
- tmp = new WsParam(produce_10(item.o26_1), produce_7(item.p26_1));
1510
+ tmp = new WsParam(produce_10(item.v24_1), produce_7(item.w24_1));
1511
1511
  } else {
1512
1512
  noWhenBranchMatchedException();
1513
1513
  }
@@ -1562,16 +1562,16 @@ function produce_6(_this__u8e3s4) {
1562
1562
  function produce_7(_this__u8e3s4) {
1563
1563
  var tmp;
1564
1564
  if (_this__u8e3s4 instanceof Any) {
1565
- tmp = new WsAny(_this__u8e3s4.y28_1);
1565
+ tmp = new WsAny(_this__u8e3s4.n28_1);
1566
1566
  } else {
1567
1567
  if (_this__u8e3s4 instanceof Unit) {
1568
- tmp = new WsUnit(_this__u8e3s4.c29_1);
1568
+ tmp = new WsUnit(_this__u8e3s4.r28_1);
1569
1569
  } else {
1570
1570
  if (_this__u8e3s4 instanceof Custom) {
1571
- tmp = new WsCustom(_this__u8e3s4.h29_1, _this__u8e3s4.i29_1);
1571
+ tmp = new WsCustom(_this__u8e3s4.w28_1, _this__u8e3s4.x28_1);
1572
1572
  } else {
1573
1573
  if (_this__u8e3s4 instanceof Primitive) {
1574
- tmp = new WsPrimitive(produce_13(_this__u8e3s4.l29_1), _this__u8e3s4.m29_1);
1574
+ tmp = new WsPrimitive(produce_13(_this__u8e3s4.a29_1), _this__u8e3s4.b29_1);
1575
1575
  } else {
1576
1576
  if (_this__u8e3s4 instanceof Dict) {
1577
1577
  tmp = new WsDict(produce_7(_this__u8e3s4.r23_1), _this__u8e3s4.s23_1);
@@ -1591,7 +1591,7 @@ function produce_7(_this__u8e3s4) {
1591
1591
  function produce_8(_this__u8e3s4) {
1592
1592
  // Inline function 'kotlin.collections.toTypedArray' call
1593
1593
  // Inline function 'arrow.core.NonEmptyList.map' call
1594
- var this_0 = _this__u8e3s4.d24_1;
1594
+ var this_0 = _this__u8e3s4.m25_1;
1595
1595
  // Inline function 'community.flock.wirespec.compiler.lib.produce.<anonymous>' call
1596
1596
  var it = this_0.jk_1;
1597
1597
  var tmp = produce(it);
@@ -1640,19 +1640,19 @@ function consume_0(_this__u8e3s4) {
1640
1640
  return tmp;
1641
1641
  }
1642
1642
  function produce_9(_this__u8e3s4) {
1643
- return new WsField(produce_10(_this__u8e3s4.v26_1), produce_7(_this__u8e3s4.w26_1));
1643
+ return new WsField(produce_10(_this__u8e3s4.l24_1), produce_7(_this__u8e3s4.m24_1));
1644
1644
  }
1645
1645
  function produce_10(_this__u8e3s4) {
1646
1646
  return new WsFieldIdentifier(_this__u8e3s4.b1());
1647
1647
  }
1648
1648
  function produce_11(_this__u8e3s4) {
1649
- var tmp0_safe_receiver = _this__u8e3s4.x26_1;
1649
+ var tmp0_safe_receiver = _this__u8e3s4.x24_1;
1650
1650
  return new WsRequest(tmp0_safe_receiver == null ? null : produce_14(tmp0_safe_receiver));
1651
1651
  }
1652
1652
  function produce_12(_this__u8e3s4) {
1653
1653
  // Inline function 'kotlin.collections.toTypedArray' call
1654
1654
  // Inline function 'kotlin.collections.map' call
1655
- var this_0 = _this__u8e3s4.s26_1;
1655
+ var this_0 = _this__u8e3s4.b25_1;
1656
1656
  // Inline function 'kotlin.collections.mapTo' call
1657
1657
  var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_0, 10));
1658
1658
  var tmp0_iterator = this_0.g();
@@ -1663,8 +1663,8 @@ function produce_12(_this__u8e3s4) {
1663
1663
  destination.e(tmp$ret$0);
1664
1664
  }
1665
1665
  var tmp = copyToArray(destination);
1666
- var tmp0_safe_receiver = _this__u8e3s4.t26_1;
1667
- return new WsResponse(_this__u8e3s4.r26_1, tmp, tmp0_safe_receiver == null ? null : produce_14(tmp0_safe_receiver));
1666
+ var tmp0_safe_receiver = _this__u8e3s4.c25_1;
1667
+ return new WsResponse(_this__u8e3s4.a25_1, tmp, tmp0_safe_receiver == null ? null : produce_14(tmp0_safe_receiver));
1668
1668
  }
1669
1669
  function produce_13(_this__u8e3s4) {
1670
1670
  var tmp;
@@ -1692,7 +1692,7 @@ function produce_13(_this__u8e3s4) {
1692
1692
  return tmp;
1693
1693
  }
1694
1694
  function consume_1(_this__u8e3s4) {
1695
- var tmp0_safe_receiver = _this__u8e3s4.z2k_1;
1695
+ var tmp0_safe_receiver = _this__u8e3s4.l2k_1;
1696
1696
  var tmp;
1697
1697
  if (tmp0_safe_receiver == null) {
1698
1698
  tmp = null;
@@ -1700,10 +1700,10 @@ function consume_1(_this__u8e3s4) {
1700
1700
  // Inline function 'kotlin.let' call
1701
1701
  // Inline function 'kotlin.contracts.contract' call
1702
1702
  // Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
1703
- tmp = Companion_instance.f28(tmp0_safe_receiver);
1703
+ tmp = Companion_instance.u27(tmp0_safe_receiver);
1704
1704
  }
1705
1705
  var tmp_0 = tmp;
1706
- var tmp_1 = new DefinitionIdentifier(_this__u8e3s4.y2k_1);
1706
+ var tmp_1 = new DefinitionIdentifier(_this__u8e3s4.k2k_1);
1707
1707
  var tmp_2 = consume_7(_this__u8e3s4.method);
1708
1708
  // Inline function 'kotlin.collections.map' call
1709
1709
  var this_0 = _this__u8e3s4.path;
@@ -1777,8 +1777,8 @@ function consume_1(_this__u8e3s4) {
1777
1777
  return new Endpoint(tmp_0, tmp_1, tmp_2, tmp_3, tmp_4, tmp_5, tmp_6, destination_3);
1778
1778
  }
1779
1779
  function consume_2(_this__u8e3s4) {
1780
- var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.m2l_1);
1781
- var tmp0_safe_receiver = _this__u8e3s4.n2l_1;
1780
+ var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.y2k_1);
1781
+ var tmp0_safe_receiver = _this__u8e3s4.z2k_1;
1782
1782
  var tmp;
1783
1783
  if (tmp0_safe_receiver == null) {
1784
1784
  tmp = null;
@@ -1786,15 +1786,15 @@ function consume_2(_this__u8e3s4) {
1786
1786
  // Inline function 'kotlin.let' call
1787
1787
  // Inline function 'kotlin.contracts.contract' call
1788
1788
  // Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
1789
- tmp = Companion_instance.f28(tmp0_safe_receiver);
1789
+ tmp = Companion_instance.u27(tmp0_safe_receiver);
1790
1790
  }
1791
1791
  var tmp2_comment = tmp;
1792
1792
  var tmp3_entries = toSet(_this__u8e3s4.entries);
1793
1793
  return new Enum_0(tmp2_comment, tmp1_identifier, tmp3_entries);
1794
1794
  }
1795
1795
  function consume_3(_this__u8e3s4) {
1796
- var tmp2_identifier = new DefinitionIdentifier(_this__u8e3s4.w2l_1);
1797
- var tmp0_safe_receiver = _this__u8e3s4.x2l_1;
1796
+ var tmp2_identifier = new DefinitionIdentifier(_this__u8e3s4.i2l_1);
1797
+ var tmp0_safe_receiver = _this__u8e3s4.j2l_1;
1798
1798
  var tmp;
1799
1799
  if (tmp0_safe_receiver == null) {
1800
1800
  tmp = null;
@@ -1802,7 +1802,7 @@ function consume_3(_this__u8e3s4) {
1802
1802
  // Inline function 'kotlin.let' call
1803
1803
  // Inline function 'kotlin.contracts.contract' call
1804
1804
  // Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
1805
- tmp = Companion_instance.f28(tmp0_safe_receiver);
1805
+ tmp = Companion_instance.u27(tmp0_safe_receiver);
1806
1806
  }
1807
1807
  var tmp3_comment = tmp;
1808
1808
  var tmp_0 = consume_12(_this__u8e3s4.reference);
@@ -1818,8 +1818,8 @@ function consume_3(_this__u8e3s4) {
1818
1818
  return new Refined(tmp3_comment, tmp2_identifier, tmp4_reference);
1819
1819
  }
1820
1820
  function consume_4(_this__u8e3s4) {
1821
- var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.t2k_1);
1822
- var tmp0_safe_receiver = _this__u8e3s4.u2k_1;
1821
+ var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.f2k_1);
1822
+ var tmp0_safe_receiver = _this__u8e3s4.g2k_1;
1823
1823
  var tmp;
1824
1824
  if (tmp0_safe_receiver == null) {
1825
1825
  tmp = null;
@@ -1827,7 +1827,7 @@ function consume_4(_this__u8e3s4) {
1827
1827
  // Inline function 'kotlin.let' call
1828
1828
  // Inline function 'kotlin.contracts.contract' call
1829
1829
  // Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
1830
- tmp = Companion_instance.f28(tmp0_safe_receiver);
1830
+ tmp = Companion_instance.u27(tmp0_safe_receiver);
1831
1831
  }
1832
1832
  var tmp2_comment = tmp;
1833
1833
  // Inline function 'kotlin.collections.map' call
@@ -1848,8 +1848,8 @@ function consume_4(_this__u8e3s4) {
1848
1848
  return new Type(tmp2_comment, tmp1_identifier, tmp3_shape, tmp4_extends);
1849
1849
  }
1850
1850
  function consume_5(_this__u8e3s4) {
1851
- var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.p2l_1);
1852
- var tmp0_safe_receiver = _this__u8e3s4.q2l_1;
1851
+ var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.b2l_1);
1852
+ var tmp0_safe_receiver = _this__u8e3s4.c2l_1;
1853
1853
  var tmp;
1854
1854
  if (tmp0_safe_receiver == null) {
1855
1855
  tmp = null;
@@ -1857,7 +1857,7 @@ function consume_5(_this__u8e3s4) {
1857
1857
  // Inline function 'kotlin.let' call
1858
1858
  // Inline function 'kotlin.contracts.contract' call
1859
1859
  // Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
1860
- tmp = Companion_instance.f28(tmp0_safe_receiver);
1860
+ tmp = Companion_instance.u27(tmp0_safe_receiver);
1861
1861
  }
1862
1862
  var tmp2_comment = tmp;
1863
1863
  // Inline function 'kotlin.collections.map' call
@@ -1877,8 +1877,8 @@ function consume_5(_this__u8e3s4) {
1877
1877
  return new Union(tmp2_comment, tmp1_identifier, tmp3_entries);
1878
1878
  }
1879
1879
  function consume_6(_this__u8e3s4) {
1880
- var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.s2l_1);
1881
- var tmp0_safe_receiver = _this__u8e3s4.t2l_1;
1880
+ var tmp1_identifier = new DefinitionIdentifier(_this__u8e3s4.e2l_1);
1881
+ var tmp0_safe_receiver = _this__u8e3s4.f2l_1;
1882
1882
  var tmp;
1883
1883
  if (tmp0_safe_receiver == null) {
1884
1884
  tmp = null;
@@ -1886,14 +1886,14 @@ function consume_6(_this__u8e3s4) {
1886
1886
  // Inline function 'kotlin.let' call
1887
1887
  // Inline function 'kotlin.contracts.contract' call
1888
1888
  // Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
1889
- tmp = Companion_instance.f28(tmp0_safe_receiver);
1889
+ tmp = Companion_instance.u27(tmp0_safe_receiver);
1890
1890
  }
1891
1891
  var tmp2_comment = tmp;
1892
1892
  var tmp3_reference = consume_12(_this__u8e3s4.reference);
1893
1893
  return new Channel(tmp2_comment, tmp1_identifier, tmp3_reference);
1894
1894
  }
1895
1895
  function produce_14(_this__u8e3s4) {
1896
- return new WsContent(_this__u8e3s4.y26_1, produce_7(_this__u8e3s4.z26_1));
1896
+ return new WsContent(_this__u8e3s4.y24_1, produce_7(_this__u8e3s4.z24_1));
1897
1897
  }
1898
1898
  function consume_7(_this__u8e3s4) {
1899
1899
  var tmp;
@@ -1969,22 +1969,22 @@ function consume_11(_this__u8e3s4) {
1969
1969
  function consume_12(_this__u8e3s4) {
1970
1970
  var tmp;
1971
1971
  if (_this__u8e3s4 instanceof WsAny) {
1972
- tmp = new Any(_this__u8e3s4.c2m_1);
1972
+ tmp = new Any(_this__u8e3s4.o2l_1);
1973
1973
  } else {
1974
1974
  if (_this__u8e3s4 instanceof WsUnit) {
1975
- tmp = new Unit(_this__u8e3s4.d2m_1);
1975
+ tmp = new Unit(_this__u8e3s4.p2l_1);
1976
1976
  } else {
1977
1977
  if (_this__u8e3s4 instanceof WsCustom) {
1978
- tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.h2m_1);
1978
+ tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.t2l_1);
1979
1979
  } else {
1980
1980
  if (_this__u8e3s4 instanceof WsPrimitive) {
1981
- tmp = new Primitive(consume_15(_this__u8e3s4.type), _this__u8e3s4.i2m_1);
1981
+ tmp = new Primitive(consume_15(_this__u8e3s4.type), _this__u8e3s4.u2l_1);
1982
1982
  } else {
1983
1983
  if (_this__u8e3s4 instanceof WsDict) {
1984
- tmp = new Dict(consume_12(_this__u8e3s4.reference), _this__u8e3s4.g2m_1);
1984
+ tmp = new Dict(consume_12(_this__u8e3s4.reference), _this__u8e3s4.s2l_1);
1985
1985
  } else {
1986
1986
  if (_this__u8e3s4 instanceof WsIterable) {
1987
- tmp = new Iterable(consume_12(_this__u8e3s4.reference), _this__u8e3s4.e2m_1);
1987
+ tmp = new Iterable(consume_12(_this__u8e3s4.reference), _this__u8e3s4.q2l_1);
1988
1988
  } else {
1989
1989
  noWhenBranchMatchedException();
1990
1990
  }
@@ -2090,10 +2090,10 @@ function WsCompilationResult(result, errors) {
2090
2090
  this.result = result;
2091
2091
  this.errors = errors;
2092
2092
  }
2093
- protoOf(WsCompilationResult).q2m = function () {
2093
+ protoOf(WsCompilationResult).c2m = function () {
2094
2094
  return this.result;
2095
2095
  };
2096
- protoOf(WsCompilationResult).r2m = function () {
2096
+ protoOf(WsCompilationResult).d2m = function () {
2097
2097
  return this.errors;
2098
2098
  };
2099
2099
  function WsCompiled(value) {
@@ -2118,10 +2118,10 @@ function WsParseResult(result, errors) {
2118
2118
  this.result = result;
2119
2119
  this.errors = errors;
2120
2120
  }
2121
- protoOf(WsParseResult).q2m = function () {
2121
+ protoOf(WsParseResult).c2m = function () {
2122
2122
  return this.result;
2123
2123
  };
2124
- protoOf(WsParseResult).r2m = function () {
2124
+ protoOf(WsParseResult).d2m = function () {
2125
2125
  return this.errors;
2126
2126
  };
2127
2127
  function WsStringResult(result, errors) {
@@ -2130,20 +2130,20 @@ function WsStringResult(result, errors) {
2130
2130
  this.result = result;
2131
2131
  this.errors = errors;
2132
2132
  }
2133
- protoOf(WsStringResult).q2m = function () {
2133
+ protoOf(WsStringResult).c2m = function () {
2134
2134
  return this.result;
2135
2135
  };
2136
- protoOf(WsStringResult).r2m = function () {
2136
+ protoOf(WsStringResult).d2m = function () {
2137
2137
  return this.errors;
2138
2138
  };
2139
2139
  function WsEmitted(file, result) {
2140
2140
  this.file = file;
2141
2141
  this.result = result;
2142
2142
  }
2143
- protoOf(WsEmitted).s2m = function () {
2143
+ protoOf(WsEmitted).e2m = function () {
2144
2144
  return this.file;
2145
2145
  };
2146
- protoOf(WsEmitted).q2m = function () {
2146
+ protoOf(WsEmitted).c2m = function () {
2147
2147
  return this.result;
2148
2148
  };
2149
2149
  function produce_15(_this__u8e3s4) {
@@ -2219,10 +2219,10 @@ function WsTokenResult(tokens, error) {
2219
2219
  this.tokens = tokens;
2220
2220
  this.error = error;
2221
2221
  }
2222
- protoOf(WsTokenResult).t2m = function () {
2222
+ protoOf(WsTokenResult).f2m = function () {
2223
2223
  return this.tokens;
2224
2224
  };
2225
- protoOf(WsTokenResult).c2k = function () {
2225
+ protoOf(WsTokenResult).o2j = function () {
2226
2226
  return this.error;
2227
2227
  };
2228
2228
  protoOf(WsTokenResult).sd = function () {
@@ -2231,13 +2231,13 @@ protoOf(WsTokenResult).sd = function () {
2231
2231
  protoOf(WsTokenResult).td = function () {
2232
2232
  return this.error;
2233
2233
  };
2234
- protoOf(WsTokenResult).u2m = function (tokens, error) {
2234
+ protoOf(WsTokenResult).g2m = function (tokens, error) {
2235
2235
  return new WsTokenResult(tokens, error);
2236
2236
  };
2237
2237
  protoOf(WsTokenResult).copy = function (tokens, error, $super) {
2238
2238
  tokens = tokens === VOID ? this.tokens : tokens;
2239
2239
  error = error === VOID ? this.error : error;
2240
- return this.u2m(tokens, error);
2240
+ return this.g2m(tokens, error);
2241
2241
  };
2242
2242
  protoOf(WsTokenResult).toString = function () {
2243
2243
  return 'WsTokenResult(tokens=' + toString_0(this.tokens) + ', error=' + toString_0(this.error) + ')';
@@ -2282,12 +2282,12 @@ protoOf(WsTokens).hashCode = function () {
2282
2282
  protoOf(WsTokens).sd = function () {
2283
2283
  return this.value;
2284
2284
  };
2285
- protoOf(WsTokens).v2m = function (value) {
2285
+ protoOf(WsTokens).h2m = function (value) {
2286
2286
  return new WsTokens(value);
2287
2287
  };
2288
2288
  protoOf(WsTokens).copy = function (value, $super) {
2289
2289
  value = value === VOID ? this.value : value;
2290
- return this.v2m(value);
2290
+ return this.h2m(value);
2291
2291
  };
2292
2292
  protoOf(WsTokens).toString = function () {
2293
2293
  return 'WsTokens(value=' + toString(this.value) + ')';
@@ -2304,7 +2304,7 @@ protoOf(WsToken).t1j = function () {
2304
2304
  protoOf(WsToken).b1 = function () {
2305
2305
  return this.value;
2306
2306
  };
2307
- protoOf(WsToken).w2m = function () {
2307
+ protoOf(WsToken).i2m = function () {
2308
2308
  return this.coordinates;
2309
2309
  };
2310
2310
  protoOf(WsToken).sd = function () {
@@ -2316,14 +2316,14 @@ protoOf(WsToken).td = function () {
2316
2316
  protoOf(WsToken).uh = function () {
2317
2317
  return this.coordinates;
2318
2318
  };
2319
- protoOf(WsToken).x2m = function (type, value, coordinates) {
2319
+ protoOf(WsToken).j2m = function (type, value, coordinates) {
2320
2320
  return new WsToken(type, value, coordinates);
2321
2321
  };
2322
2322
  protoOf(WsToken).copy = function (type, value, coordinates, $super) {
2323
2323
  type = type === VOID ? this.type : type;
2324
2324
  value = value === VOID ? this.value : value;
2325
2325
  coordinates = coordinates === VOID ? this.coordinates : coordinates;
2326
- return this.x2m(type, value, coordinates);
2326
+ return this.j2m(type, value, coordinates);
2327
2327
  };
2328
2328
  protoOf(WsToken).toString = function () {
2329
2329
  return 'WsToken(type=' + this.type + ', value=' + this.value + ', coordinates=' + this.coordinates.toString() + ')';
@@ -2356,13 +2356,13 @@ function WsCoordinates(line, position, idxAndLength) {
2356
2356
  this.position = position;
2357
2357
  this.idxAndLength = idxAndLength;
2358
2358
  }
2359
- protoOf(WsCoordinates).y2m = function () {
2359
+ protoOf(WsCoordinates).k2m = function () {
2360
2360
  return this.line;
2361
2361
  };
2362
- protoOf(WsCoordinates).z2m = function () {
2362
+ protoOf(WsCoordinates).l2m = function () {
2363
2363
  return this.position;
2364
2364
  };
2365
- protoOf(WsCoordinates).a2n = function () {
2365
+ protoOf(WsCoordinates).m2m = function () {
2366
2366
  return this.idxAndLength;
2367
2367
  };
2368
2368
  protoOf(WsCoordinates).sd = function () {
@@ -2374,14 +2374,14 @@ protoOf(WsCoordinates).td = function () {
2374
2374
  protoOf(WsCoordinates).uh = function () {
2375
2375
  return this.idxAndLength;
2376
2376
  };
2377
- protoOf(WsCoordinates).b2n = function (line, position, idxAndLength) {
2377
+ protoOf(WsCoordinates).n2m = function (line, position, idxAndLength) {
2378
2378
  return new WsCoordinates(line, position, idxAndLength);
2379
2379
  };
2380
2380
  protoOf(WsCoordinates).copy = function (line, position, idxAndLength, $super) {
2381
2381
  line = line === VOID ? this.line : line;
2382
2382
  position = position === VOID ? this.position : position;
2383
2383
  idxAndLength = idxAndLength === VOID ? this.idxAndLength : idxAndLength;
2384
- return this.b2n(line, position, idxAndLength);
2384
+ return this.n2m(line, position, idxAndLength);
2385
2385
  };
2386
2386
  protoOf(WsCoordinates).toString = function () {
2387
2387
  return 'WsCoordinates(line=' + this.line + ', position=' + this.position + ', idxAndLength=' + this.idxAndLength.toString() + ')';
@@ -2412,7 +2412,7 @@ function WsIndex(idx, length) {
2412
2412
  this.idx = idx;
2413
2413
  this.length = length;
2414
2414
  }
2415
- protoOf(WsIndex).c2n = function () {
2415
+ protoOf(WsIndex).o2m = function () {
2416
2416
  return this.idx;
2417
2417
  };
2418
2418
  protoOf(WsIndex).a = function () {
@@ -2424,13 +2424,13 @@ protoOf(WsIndex).sd = function () {
2424
2424
  protoOf(WsIndex).td = function () {
2425
2425
  return this.length;
2426
2426
  };
2427
- protoOf(WsIndex).d2n = function (idx, length) {
2427
+ protoOf(WsIndex).p2m = function (idx, length) {
2428
2428
  return new WsIndex(idx, length);
2429
2429
  };
2430
2430
  protoOf(WsIndex).copy = function (idx, length, $super) {
2431
2431
  idx = idx === VOID ? this.idx : idx;
2432
2432
  length = length === VOID ? this.length : length;
2433
- return this.d2n(idx, length);
2433
+ return this.p2m(idx, length);
2434
2434
  };
2435
2435
  protoOf(WsIndex).toString = function () {
2436
2436
  return 'WsIndex(idx=' + this.idx + ', length=' + this.length + ')';
@@ -2453,13 +2453,13 @@ protoOf(WsIndex).equals = function (other) {
2453
2453
  return true;
2454
2454
  };
2455
2455
  function produce_18(_this__u8e3s4) {
2456
- return new WsToken(name(_this__u8e3s4.k27_1), _this__u8e3s4.j27_1, produce_19(_this__u8e3s4.l27_1));
2456
+ return new WsToken(name(_this__u8e3s4.z26_1), _this__u8e3s4.y26_1, produce_19(_this__u8e3s4.a27_1));
2457
2457
  }
2458
2458
  function produce_19(_this__u8e3s4) {
2459
- return new WsCoordinates(_this__u8e3s4.m27_1, _this__u8e3s4.n27_1, produce_20(_this__u8e3s4.o27_1));
2459
+ return new WsCoordinates(_this__u8e3s4.b27_1, _this__u8e3s4.c27_1, produce_20(_this__u8e3s4.d27_1));
2460
2460
  }
2461
2461
  function produce_20(_this__u8e3s4) {
2462
- return new WsIndex(_this__u8e3s4.a2a_1, _this__u8e3s4.b2a_1);
2462
+ return new WsIndex(_this__u8e3s4.p29_1, _this__u8e3s4.q29_1);
2463
2463
  }
2464
2464
  function WsError(line, position, index, length, value) {
2465
2465
  this.line = line;
@@ -2468,13 +2468,13 @@ function WsError(line, position, index, length, value) {
2468
2468
  this.length = length;
2469
2469
  this.value = value;
2470
2470
  }
2471
- protoOf(WsError).y2m = function () {
2471
+ protoOf(WsError).k2m = function () {
2472
2472
  return this.line;
2473
2473
  };
2474
- protoOf(WsError).z2m = function () {
2474
+ protoOf(WsError).l2m = function () {
2475
2475
  return this.position;
2476
2476
  };
2477
- protoOf(WsError).e2n = function () {
2477
+ protoOf(WsError).q2m = function () {
2478
2478
  return this.index;
2479
2479
  };
2480
2480
  protoOf(WsError).a = function () {
@@ -2492,13 +2492,13 @@ protoOf(WsError).td = function () {
2492
2492
  protoOf(WsError).uh = function () {
2493
2493
  return this.index;
2494
2494
  };
2495
- protoOf(WsError).g2l = function () {
2495
+ protoOf(WsError).s2k = function () {
2496
2496
  return this.length;
2497
2497
  };
2498
- protoOf(WsError).h2l = function () {
2498
+ protoOf(WsError).t2k = function () {
2499
2499
  return this.value;
2500
2500
  };
2501
- protoOf(WsError).f2n = function (line, position, index, length, value) {
2501
+ protoOf(WsError).r2m = function (line, position, index, length, value) {
2502
2502
  return new WsError(line, position, index, length, value);
2503
2503
  };
2504
2504
  protoOf(WsError).copy = function (line, position, index, length, value, $super) {
@@ -2507,7 +2507,7 @@ protoOf(WsError).copy = function (line, position, index, length, value, $super)
2507
2507
  index = index === VOID ? this.index : index;
2508
2508
  length = length === VOID ? this.length : length;
2509
2509
  value = value === VOID ? this.value : value;
2510
- return this.f2n(line, position, index, length, value);
2510
+ return this.r2m(line, position, index, length, value);
2511
2511
  };
2512
2512
  protoOf(WsError).toString = function () {
2513
2513
  return 'WsError(line=' + this.line + ', position=' + this.position + ', index=' + this.index + ', length=' + this.length + ', value=' + this.value + ')';
@@ -2539,44 +2539,44 @@ protoOf(WsError).equals = function (other) {
2539
2539
  return true;
2540
2540
  };
2541
2541
  function produce_21(_this__u8e3s4) {
2542
- return new WsError(_this__u8e3s4.q27_1.m27_1, _this__u8e3s4.q27_1.n27_1, _this__u8e3s4.q27_1.o27_1.a2a_1 - _this__u8e3s4.q27_1.o27_1.b2a_1 | 0, _this__u8e3s4.q27_1.o27_1.b2a_1, _this__u8e3s4.r1());
2542
+ return new WsError(_this__u8e3s4.f27_1.b27_1, _this__u8e3s4.f27_1.c27_1, _this__u8e3s4.f27_1.d27_1.p29_1 - _this__u8e3s4.f27_1.d27_1.q29_1 | 0, _this__u8e3s4.f27_1.d27_1.q29_1, _this__u8e3s4.r1());
2543
2543
  }
2544
2544
  //region block: post-declaration
2545
2545
  defineProp(protoOf(WsType), 'identifier', function () {
2546
- return this.m24();
2546
+ return this.d26();
2547
2547
  });
2548
2548
  defineProp(protoOf(WsType), 'comment', function () {
2549
- return this.s2k();
2549
+ return this.e2k();
2550
2550
  });
2551
2551
  defineProp(protoOf(WsEndpoint), 'identifier', function () {
2552
- return this.m24();
2552
+ return this.d26();
2553
2553
  });
2554
2554
  defineProp(protoOf(WsEndpoint), 'comment', function () {
2555
- return this.s2k();
2555
+ return this.e2k();
2556
2556
  });
2557
2557
  defineProp(protoOf(WsEnum), 'identifier', function () {
2558
- return this.m24();
2558
+ return this.d26();
2559
2559
  });
2560
2560
  defineProp(protoOf(WsEnum), 'comment', function () {
2561
- return this.s2k();
2561
+ return this.e2k();
2562
2562
  });
2563
2563
  defineProp(protoOf(WsUnion), 'identifier', function () {
2564
- return this.m24();
2564
+ return this.d26();
2565
2565
  });
2566
2566
  defineProp(protoOf(WsUnion), 'comment', function () {
2567
- return this.s2k();
2567
+ return this.e2k();
2568
2568
  });
2569
2569
  defineProp(protoOf(WsChannel), 'identifier', function () {
2570
- return this.m24();
2570
+ return this.d26();
2571
2571
  });
2572
2572
  defineProp(protoOf(WsChannel), 'comment', function () {
2573
- return this.s2k();
2573
+ return this.e2k();
2574
2574
  });
2575
2575
  defineProp(protoOf(WsRefined), 'identifier', function () {
2576
- return this.m24();
2576
+ return this.d26();
2577
2577
  });
2578
2578
  defineProp(protoOf(WsRefined), 'comment', function () {
2579
- return this.s2k();
2579
+ return this.e2k();
2580
2580
  });
2581
2581
  defineProp(protoOf(WsMethod), 'name', protoOf(WsMethod).s2);
2582
2582
  defineProp(protoOf(WsMethod), 'ordinal', protoOf(WsMethod).t2);