@flock/wirespec 0.18.0-RC.1 → 0.18.1-RC.2

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 (42) hide show
  1. package/arrow-arrow-atomic.mjs +12 -12
  2. package/arrow-arrow-core.mjs +152 -158
  3. package/arrow-arrow-core.mjs.map +1 -1
  4. package/clikt-clikt-mordant.mjs +80 -80
  5. package/clikt-clikt.mjs +1442 -1442
  6. package/clikt-clikt.mjs.map +1 -1
  7. package/colormath-root-colormath.mjs +439 -439
  8. package/kotlin-kotlin-stdlib.mjs +1067 -1131
  9. package/kotlin-kotlin-stdlib.mjs.map +1 -1
  10. package/kotlin-openapi-bindings.mjs +4857 -4857
  11. package/kotlin-rgxgen.mjs +1793 -1793
  12. package/kotlinx-io-kotlinx-io-core.mjs +415 -415
  13. package/kotlinx-serialization-kotlinx-serialization-core.mjs +1752 -1752
  14. package/kotlinx-serialization-kotlinx-serialization-json.mjs +1348 -1356
  15. package/kotlinx-serialization-kotlinx-serialization-json.mjs.map +1 -1
  16. package/mordant-mordant.mjs +1303 -1311
  17. package/mordant-mordant.mjs.map +1 -1
  18. package/package.json +1 -1
  19. package/wirespec-src-compiler-core.mjs +1527 -1527
  20. package/wirespec-src-compiler-emitters-java.mjs +477 -451
  21. package/wirespec-src-compiler-emitters-java.mjs.map +1 -1
  22. package/wirespec-src-compiler-emitters-kotlin.mjs +413 -408
  23. package/wirespec-src-compiler-emitters-kotlin.mjs.map +1 -1
  24. package/wirespec-src-compiler-emitters-python.mjs +379 -378
  25. package/wirespec-src-compiler-emitters-python.mjs.map +1 -1
  26. package/wirespec-src-compiler-emitters-rust.mjs +939 -725
  27. package/wirespec-src-compiler-emitters-rust.mjs.map +1 -1
  28. package/wirespec-src-compiler-emitters-scala.mjs +225 -233
  29. package/wirespec-src-compiler-emitters-scala.mjs.map +1 -1
  30. package/wirespec-src-compiler-emitters-typescript.mjs +558 -589
  31. package/wirespec-src-compiler-emitters-typescript.mjs.map +1 -1
  32. package/wirespec-src-compiler-emitters-wirespec.mjs +82 -82
  33. package/wirespec-src-compiler-emitters-wirespec.mjs.map +1 -1
  34. package/wirespec-src-compiler-ir.mjs +3738 -3708
  35. package/wirespec-src-compiler-ir.mjs.map +1 -1
  36. package/wirespec-src-compiler-lib.mjs +418 -418
  37. package/wirespec-src-converter-avro.mjs +506 -506
  38. package/wirespec-src-converter-openapi.mjs +684 -684
  39. package/wirespec-src-plugin-arguments.mjs +181 -181
  40. package/wirespec-src-plugin-cli.mjs +106 -106
  41. package/wirespec-src-plugin-npm.mjs +36 -36
  42. package/wirespec-src-tools-generator.mjs +34 -34
@@ -134,18 +134,18 @@ function WsNode() {
134
134
  function WsAST(modules) {
135
135
  this.modules = modules;
136
136
  }
137
- protoOf(WsAST).lv = function () {
137
+ protoOf(WsAST).jv = function () {
138
138
  return this.modules;
139
139
  };
140
- protoOf(WsAST).oe = function () {
140
+ protoOf(WsAST).ne = function () {
141
141
  return this.modules;
142
142
  };
143
- protoOf(WsAST).mv = function (modules) {
143
+ protoOf(WsAST).kv = function (modules) {
144
144
  return new WsAST(modules);
145
145
  };
146
146
  protoOf(WsAST).copy = function (modules, $super) {
147
147
  modules = modules === VOID ? this.modules : modules;
148
- return $super === VOID ? this.mv(modules) : $super.mv.call(this, modules);
148
+ return $super === VOID ? this.kv(modules) : $super.kv.call(this, modules);
149
149
  };
150
150
  protoOf(WsAST).toString = function () {
151
151
  return 'WsAST(modules=' + toString(this.modules) + ')';
@@ -165,18 +165,18 @@ protoOf(WsAST).equals = function (other) {
165
165
  function WsModule(statements) {
166
166
  this.statements = statements;
167
167
  }
168
- protoOf(WsModule).nv = function () {
168
+ protoOf(WsModule).lv = function () {
169
169
  return this.statements;
170
170
  };
171
- protoOf(WsModule).oe = function () {
171
+ protoOf(WsModule).ne = function () {
172
172
  return this.statements;
173
173
  };
174
- protoOf(WsModule).ov = function (statements) {
174
+ protoOf(WsModule).mv = function (statements) {
175
175
  return new WsModule(statements);
176
176
  };
177
177
  protoOf(WsModule).copy = function (statements, $super) {
178
178
  statements = statements === VOID ? this.statements : statements;
179
- return $super === VOID ? this.ov(statements) : $super.ov.call(this, statements);
179
+ return $super === VOID ? this.mv(statements) : $super.mv.call(this, statements);
180
180
  };
181
181
  protoOf(WsModule).toString = function () {
182
182
  return 'WsModule(statements=' + toString(this.statements) + ')';
@@ -196,43 +196,43 @@ protoOf(WsModule).equals = function (other) {
196
196
  function WsDefinition() {
197
197
  }
198
198
  function WsType(identifier, comment, shape) {
199
- this.qv_1 = identifier;
200
- this.rv_1 = comment;
199
+ this.ov_1 = identifier;
200
+ this.pv_1 = comment;
201
201
  this.shape = shape;
202
202
  }
203
- protoOf(WsType).xq = function () {
204
- return this.qv_1;
203
+ protoOf(WsType).vq = function () {
204
+ return this.ov_1;
205
205
  };
206
- protoOf(WsType).pv = function () {
207
- return this.rv_1;
206
+ protoOf(WsType).nv = function () {
207
+ return this.pv_1;
208
208
  };
209
- protoOf(WsType).sv = function () {
209
+ protoOf(WsType).qv = function () {
210
210
  return this.shape;
211
211
  };
212
- protoOf(WsType).oe = function () {
213
- return this.qv_1;
212
+ protoOf(WsType).ne = function () {
213
+ return this.ov_1;
214
214
  };
215
- protoOf(WsType).pe = function () {
216
- return this.rv_1;
215
+ protoOf(WsType).oe = function () {
216
+ return this.pv_1;
217
217
  };
218
- protoOf(WsType).qj = function () {
218
+ protoOf(WsType).oj = function () {
219
219
  return this.shape;
220
220
  };
221
- protoOf(WsType).tv = function (identifier, comment, shape) {
221
+ protoOf(WsType).rv = function (identifier, comment, shape) {
222
222
  return new WsType(identifier, comment, shape);
223
223
  };
224
224
  protoOf(WsType).copy = function (identifier, comment, shape, $super) {
225
- identifier = identifier === VOID ? this.qv_1 : identifier;
226
- comment = comment === VOID ? this.rv_1 : comment;
225
+ identifier = identifier === VOID ? this.ov_1 : identifier;
226
+ comment = comment === VOID ? this.pv_1 : comment;
227
227
  shape = shape === VOID ? this.shape : shape;
228
- return $super === VOID ? this.tv(identifier, comment, shape) : $super.tv.call(this, identifier, comment, shape);
228
+ return $super === VOID ? this.rv(identifier, comment, shape) : $super.rv.call(this, identifier, comment, shape);
229
229
  };
230
230
  protoOf(WsType).toString = function () {
231
- return 'WsType(identifier=' + this.qv_1 + ', comment=' + this.rv_1 + ', shape=' + this.shape.toString() + ')';
231
+ return 'WsType(identifier=' + this.ov_1 + ', comment=' + this.pv_1 + ', shape=' + this.shape.toString() + ')';
232
232
  };
233
233
  protoOf(WsType).hashCode = function () {
234
- var result = getStringHashCode(this.qv_1);
235
- result = imul(result, 31) + (this.rv_1 == null ? 0 : getStringHashCode(this.rv_1)) | 0;
234
+ var result = getStringHashCode(this.ov_1);
235
+ result = imul(result, 31) + (this.pv_1 == null ? 0 : getStringHashCode(this.pv_1)) | 0;
236
236
  result = imul(result, 31) + this.shape.hashCode() | 0;
237
237
  return result;
238
238
  };
@@ -241,9 +241,9 @@ protoOf(WsType).equals = function (other) {
241
241
  return true;
242
242
  if (!(other instanceof WsType))
243
243
  return false;
244
- if (!(this.qv_1 === other.qv_1))
244
+ if (!(this.ov_1 === other.ov_1))
245
245
  return false;
246
- if (!(this.rv_1 == other.rv_1))
246
+ if (!(this.pv_1 == other.pv_1))
247
247
  return false;
248
248
  if (!this.shape.equals(other.shape))
249
249
  return false;
@@ -252,18 +252,18 @@ protoOf(WsType).equals = function (other) {
252
252
  function WsShape(value) {
253
253
  this.value = value;
254
254
  }
255
- protoOf(WsShape).n1 = function () {
255
+ protoOf(WsShape).l1 = function () {
256
256
  return this.value;
257
257
  };
258
- protoOf(WsShape).oe = function () {
258
+ protoOf(WsShape).ne = function () {
259
259
  return this.value;
260
260
  };
261
- protoOf(WsShape).uv = function (value) {
261
+ protoOf(WsShape).sv = function (value) {
262
262
  return new WsShape(value);
263
263
  };
264
264
  protoOf(WsShape).copy = function (value, $super) {
265
265
  value = value === VOID ? this.value : value;
266
- return $super === VOID ? this.uv(value) : $super.uv.call(this, value);
266
+ return $super === VOID ? this.sv(value) : $super.sv.call(this, value);
267
267
  };
268
268
  protoOf(WsShape).toString = function () {
269
269
  return 'WsShape(value=' + toString(this.value) + ')';
@@ -281,8 +281,8 @@ protoOf(WsShape).equals = function (other) {
281
281
  return true;
282
282
  };
283
283
  function WsEndpoint(identifier, comment, method, path, queries, headers, requests, responses) {
284
- this.vv_1 = identifier;
285
- this.wv_1 = comment;
284
+ this.tv_1 = identifier;
285
+ this.uv_1 = comment;
286
286
  this.method = method;
287
287
  this.path = path;
288
288
  this.queries = queries;
@@ -290,74 +290,74 @@ function WsEndpoint(identifier, comment, method, path, queries, headers, request
290
290
  this.requests = requests;
291
291
  this.responses = responses;
292
292
  }
293
- protoOf(WsEndpoint).xq = function () {
294
- return this.vv_1;
293
+ protoOf(WsEndpoint).vq = function () {
294
+ return this.tv_1;
295
295
  };
296
- protoOf(WsEndpoint).pv = function () {
297
- return this.wv_1;
296
+ protoOf(WsEndpoint).nv = function () {
297
+ return this.uv_1;
298
298
  };
299
- protoOf(WsEndpoint).xv = function () {
299
+ protoOf(WsEndpoint).vv = function () {
300
300
  return this.method;
301
301
  };
302
- protoOf(WsEndpoint).yv = function () {
302
+ protoOf(WsEndpoint).wv = function () {
303
303
  return this.path;
304
304
  };
305
- protoOf(WsEndpoint).zv = function () {
305
+ protoOf(WsEndpoint).xv = function () {
306
306
  return this.queries;
307
307
  };
308
- protoOf(WsEndpoint).aw = function () {
308
+ protoOf(WsEndpoint).yv = function () {
309
309
  return this.headers;
310
310
  };
311
- protoOf(WsEndpoint).bw = function () {
311
+ protoOf(WsEndpoint).zv = function () {
312
312
  return this.requests;
313
313
  };
314
- protoOf(WsEndpoint).cw = function () {
314
+ protoOf(WsEndpoint).aw = function () {
315
315
  return this.responses;
316
316
  };
317
- protoOf(WsEndpoint).oe = function () {
318
- return this.vv_1;
317
+ protoOf(WsEndpoint).ne = function () {
318
+ return this.tv_1;
319
319
  };
320
- protoOf(WsEndpoint).pe = function () {
321
- return this.wv_1;
320
+ protoOf(WsEndpoint).oe = function () {
321
+ return this.uv_1;
322
322
  };
323
- protoOf(WsEndpoint).qj = function () {
323
+ protoOf(WsEndpoint).oj = function () {
324
324
  return this.method;
325
325
  };
326
- protoOf(WsEndpoint).dw = function () {
326
+ protoOf(WsEndpoint).bw = function () {
327
327
  return this.path;
328
328
  };
329
- protoOf(WsEndpoint).ew = function () {
329
+ protoOf(WsEndpoint).cw = function () {
330
330
  return this.queries;
331
331
  };
332
- protoOf(WsEndpoint).fw = function () {
332
+ protoOf(WsEndpoint).dw = function () {
333
333
  return this.headers;
334
334
  };
335
- protoOf(WsEndpoint).gw = function () {
335
+ protoOf(WsEndpoint).ew = function () {
336
336
  return this.requests;
337
337
  };
338
- protoOf(WsEndpoint).hw = function () {
338
+ protoOf(WsEndpoint).fw = function () {
339
339
  return this.responses;
340
340
  };
341
- protoOf(WsEndpoint).iw = function (identifier, comment, method, path, queries, headers, requests, responses) {
341
+ protoOf(WsEndpoint).gw = function (identifier, comment, method, path, queries, headers, requests, responses) {
342
342
  return new WsEndpoint(identifier, comment, method, path, queries, headers, requests, responses);
343
343
  };
344
344
  protoOf(WsEndpoint).copy = function (identifier, comment, method, path, queries, headers, requests, responses, $super) {
345
- identifier = identifier === VOID ? this.vv_1 : identifier;
346
- comment = comment === VOID ? this.wv_1 : comment;
345
+ identifier = identifier === VOID ? this.tv_1 : identifier;
346
+ comment = comment === VOID ? this.uv_1 : comment;
347
347
  method = method === VOID ? this.method : method;
348
348
  path = path === VOID ? this.path : path;
349
349
  queries = queries === VOID ? this.queries : queries;
350
350
  headers = headers === VOID ? this.headers : headers;
351
351
  requests = requests === VOID ? this.requests : requests;
352
352
  responses = responses === VOID ? this.responses : responses;
353
- return $super === VOID ? this.iw(identifier, comment, method, path, queries, headers, requests, responses) : $super.iw.call(this, identifier, comment, method, path, queries, headers, requests, responses);
353
+ return $super === VOID ? this.gw(identifier, comment, method, path, queries, headers, requests, responses) : $super.gw.call(this, identifier, comment, method, path, queries, headers, requests, responses);
354
354
  };
355
355
  protoOf(WsEndpoint).toString = function () {
356
- return 'WsEndpoint(identifier=' + this.vv_1 + ', comment=' + this.wv_1 + ', method=' + this.method.toString() + ', path=' + toString(this.path) + ', queries=' + toString(this.queries) + ', headers=' + toString(this.headers) + ', requests=' + toString(this.requests) + ', responses=' + toString(this.responses) + ')';
356
+ return 'WsEndpoint(identifier=' + this.tv_1 + ', comment=' + this.uv_1 + ', method=' + this.method.toString() + ', path=' + toString(this.path) + ', queries=' + toString(this.queries) + ', headers=' + toString(this.headers) + ', requests=' + toString(this.requests) + ', responses=' + toString(this.responses) + ')';
357
357
  };
358
358
  protoOf(WsEndpoint).hashCode = function () {
359
- var result = getStringHashCode(this.vv_1);
360
- result = imul(result, 31) + (this.wv_1 == null ? 0 : getStringHashCode(this.wv_1)) | 0;
359
+ var result = getStringHashCode(this.tv_1);
360
+ result = imul(result, 31) + (this.uv_1 == null ? 0 : getStringHashCode(this.uv_1)) | 0;
361
361
  result = imul(result, 31) + this.method.hashCode() | 0;
362
362
  result = imul(result, 31) + hashCode(this.path) | 0;
363
363
  result = imul(result, 31) + hashCode(this.queries) | 0;
@@ -371,9 +371,9 @@ protoOf(WsEndpoint).equals = function (other) {
371
371
  return true;
372
372
  if (!(other instanceof WsEndpoint))
373
373
  return false;
374
- if (!(this.vv_1 === other.vv_1))
374
+ if (!(this.tv_1 === other.tv_1))
375
375
  return false;
376
- if (!(this.wv_1 == other.wv_1))
376
+ if (!(this.uv_1 == other.uv_1))
377
377
  return false;
378
378
  if (!this.method.equals(other.method))
379
379
  return false;
@@ -390,43 +390,43 @@ protoOf(WsEndpoint).equals = function (other) {
390
390
  return true;
391
391
  };
392
392
  function WsEnum(identifier, comment, entries) {
393
- this.jw_1 = identifier;
394
- this.kw_1 = comment;
393
+ this.hw_1 = identifier;
394
+ this.iw_1 = comment;
395
395
  this.entries = entries;
396
396
  }
397
- protoOf(WsEnum).xq = function () {
398
- return this.jw_1;
397
+ protoOf(WsEnum).vq = function () {
398
+ return this.hw_1;
399
399
  };
400
- protoOf(WsEnum).pv = function () {
401
- return this.kw_1;
400
+ protoOf(WsEnum).nv = function () {
401
+ return this.iw_1;
402
402
  };
403
- protoOf(WsEnum).l1 = function () {
403
+ protoOf(WsEnum).j1 = function () {
404
404
  return this.entries;
405
405
  };
406
- protoOf(WsEnum).oe = function () {
407
- return this.jw_1;
406
+ protoOf(WsEnum).ne = function () {
407
+ return this.hw_1;
408
408
  };
409
- protoOf(WsEnum).pe = function () {
410
- return this.kw_1;
409
+ protoOf(WsEnum).oe = function () {
410
+ return this.iw_1;
411
411
  };
412
- protoOf(WsEnum).qj = function () {
412
+ protoOf(WsEnum).oj = function () {
413
413
  return this.entries;
414
414
  };
415
- protoOf(WsEnum).lw = function (identifier, comment, entries) {
415
+ protoOf(WsEnum).jw = function (identifier, comment, entries) {
416
416
  return new WsEnum(identifier, comment, entries);
417
417
  };
418
418
  protoOf(WsEnum).copy = function (identifier, comment, entries, $super) {
419
- identifier = identifier === VOID ? this.jw_1 : identifier;
420
- comment = comment === VOID ? this.kw_1 : comment;
419
+ identifier = identifier === VOID ? this.hw_1 : identifier;
420
+ comment = comment === VOID ? this.iw_1 : comment;
421
421
  entries = entries === VOID ? this.entries : entries;
422
- return $super === VOID ? this.lw(identifier, comment, entries) : $super.lw.call(this, identifier, comment, entries);
422
+ return $super === VOID ? this.jw(identifier, comment, entries) : $super.jw.call(this, identifier, comment, entries);
423
423
  };
424
424
  protoOf(WsEnum).toString = function () {
425
- return 'WsEnum(identifier=' + this.jw_1 + ', comment=' + this.kw_1 + ', entries=' + toString(this.entries) + ')';
425
+ return 'WsEnum(identifier=' + this.hw_1 + ', comment=' + this.iw_1 + ', entries=' + toString(this.entries) + ')';
426
426
  };
427
427
  protoOf(WsEnum).hashCode = function () {
428
- var result = getStringHashCode(this.jw_1);
429
- result = imul(result, 31) + (this.kw_1 == null ? 0 : getStringHashCode(this.kw_1)) | 0;
428
+ var result = getStringHashCode(this.hw_1);
429
+ result = imul(result, 31) + (this.iw_1 == null ? 0 : getStringHashCode(this.iw_1)) | 0;
430
430
  result = imul(result, 31) + hashCode(this.entries) | 0;
431
431
  return result;
432
432
  };
@@ -435,52 +435,52 @@ protoOf(WsEnum).equals = function (other) {
435
435
  return true;
436
436
  if (!(other instanceof WsEnum))
437
437
  return false;
438
- if (!(this.jw_1 === other.jw_1))
438
+ if (!(this.hw_1 === other.hw_1))
439
439
  return false;
440
- if (!(this.kw_1 == other.kw_1))
440
+ if (!(this.iw_1 == other.iw_1))
441
441
  return false;
442
442
  if (!equals(this.entries, other.entries))
443
443
  return false;
444
444
  return true;
445
445
  };
446
446
  function WsUnion(identifier, comment, entries) {
447
- this.mw_1 = identifier;
448
- this.nw_1 = comment;
447
+ this.kw_1 = identifier;
448
+ this.lw_1 = comment;
449
449
  this.entries = entries;
450
450
  }
451
- protoOf(WsUnion).xq = function () {
452
- return this.mw_1;
451
+ protoOf(WsUnion).vq = function () {
452
+ return this.kw_1;
453
453
  };
454
- protoOf(WsUnion).pv = function () {
455
- return this.nw_1;
454
+ protoOf(WsUnion).nv = function () {
455
+ return this.lw_1;
456
456
  };
457
- protoOf(WsUnion).l1 = function () {
457
+ protoOf(WsUnion).j1 = function () {
458
458
  return this.entries;
459
459
  };
460
- protoOf(WsUnion).oe = function () {
461
- return this.mw_1;
460
+ protoOf(WsUnion).ne = function () {
461
+ return this.kw_1;
462
462
  };
463
- protoOf(WsUnion).pe = function () {
464
- return this.nw_1;
463
+ protoOf(WsUnion).oe = function () {
464
+ return this.lw_1;
465
465
  };
466
- protoOf(WsUnion).qj = function () {
466
+ protoOf(WsUnion).oj = function () {
467
467
  return this.entries;
468
468
  };
469
- protoOf(WsUnion).ow = function (identifier, comment, entries) {
469
+ protoOf(WsUnion).mw = 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.mw_1 : identifier;
474
- comment = comment === VOID ? this.nw_1 : comment;
473
+ identifier = identifier === VOID ? this.kw_1 : identifier;
474
+ comment = comment === VOID ? this.lw_1 : comment;
475
475
  entries = entries === VOID ? this.entries : entries;
476
- return $super === VOID ? this.ow(identifier, comment, entries) : $super.ow.call(this, identifier, comment, entries);
476
+ return $super === VOID ? this.mw(identifier, comment, entries) : $super.mw.call(this, identifier, comment, entries);
477
477
  };
478
478
  protoOf(WsUnion).toString = function () {
479
- return 'WsUnion(identifier=' + this.mw_1 + ', comment=' + this.nw_1 + ', entries=' + toString(this.entries) + ')';
479
+ return 'WsUnion(identifier=' + this.kw_1 + ', comment=' + this.lw_1 + ', entries=' + toString(this.entries) + ')';
480
480
  };
481
481
  protoOf(WsUnion).hashCode = function () {
482
- var result = getStringHashCode(this.mw_1);
483
- result = imul(result, 31) + (this.nw_1 == null ? 0 : getStringHashCode(this.nw_1)) | 0;
482
+ var result = getStringHashCode(this.kw_1);
483
+ result = imul(result, 31) + (this.lw_1 == null ? 0 : getStringHashCode(this.lw_1)) | 0;
484
484
  result = imul(result, 31) + hashCode(this.entries) | 0;
485
485
  return result;
486
486
  };
@@ -489,52 +489,52 @@ protoOf(WsUnion).equals = function (other) {
489
489
  return true;
490
490
  if (!(other instanceof WsUnion))
491
491
  return false;
492
- if (!(this.mw_1 === other.mw_1))
492
+ if (!(this.kw_1 === other.kw_1))
493
493
  return false;
494
- if (!(this.nw_1 == other.nw_1))
494
+ if (!(this.lw_1 == other.lw_1))
495
495
  return false;
496
496
  if (!equals(this.entries, other.entries))
497
497
  return false;
498
498
  return true;
499
499
  };
500
500
  function WsChannel(identifier, comment, reference) {
501
- this.pw_1 = identifier;
502
- this.qw_1 = comment;
501
+ this.nw_1 = identifier;
502
+ this.ow_1 = comment;
503
503
  this.reference = reference;
504
504
  }
505
- protoOf(WsChannel).xq = function () {
506
- return this.pw_1;
505
+ protoOf(WsChannel).vq = function () {
506
+ return this.nw_1;
507
507
  };
508
- protoOf(WsChannel).pv = function () {
509
- return this.qw_1;
508
+ protoOf(WsChannel).nv = function () {
509
+ return this.ow_1;
510
510
  };
511
- protoOf(WsChannel).rw = function () {
511
+ protoOf(WsChannel).pw = function () {
512
512
  return this.reference;
513
513
  };
514
- protoOf(WsChannel).oe = function () {
515
- return this.pw_1;
514
+ protoOf(WsChannel).ne = function () {
515
+ return this.nw_1;
516
516
  };
517
- protoOf(WsChannel).pe = function () {
518
- return this.qw_1;
517
+ protoOf(WsChannel).oe = function () {
518
+ return this.ow_1;
519
519
  };
520
- protoOf(WsChannel).qj = function () {
520
+ protoOf(WsChannel).oj = function () {
521
521
  return this.reference;
522
522
  };
523
- protoOf(WsChannel).sw = function (identifier, comment, reference) {
523
+ protoOf(WsChannel).qw = function (identifier, comment, reference) {
524
524
  return new WsChannel(identifier, comment, reference);
525
525
  };
526
526
  protoOf(WsChannel).copy = function (identifier, comment, reference, $super) {
527
- identifier = identifier === VOID ? this.pw_1 : identifier;
528
- comment = comment === VOID ? this.qw_1 : comment;
527
+ identifier = identifier === VOID ? this.nw_1 : identifier;
528
+ comment = comment === VOID ? this.ow_1 : comment;
529
529
  reference = reference === VOID ? this.reference : reference;
530
- return $super === VOID ? this.sw(identifier, comment, reference) : $super.sw.call(this, identifier, comment, reference);
530
+ return $super === VOID ? this.qw(identifier, comment, reference) : $super.qw.call(this, identifier, comment, reference);
531
531
  };
532
532
  protoOf(WsChannel).toString = function () {
533
- return 'WsChannel(identifier=' + this.pw_1 + ', comment=' + this.qw_1 + ', reference=' + toString(this.reference) + ')';
533
+ return 'WsChannel(identifier=' + this.nw_1 + ', comment=' + this.ow_1 + ', reference=' + toString(this.reference) + ')';
534
534
  };
535
535
  protoOf(WsChannel).hashCode = function () {
536
- var result = getStringHashCode(this.pw_1);
537
- result = imul(result, 31) + (this.qw_1 == null ? 0 : getStringHashCode(this.qw_1)) | 0;
536
+ var result = getStringHashCode(this.nw_1);
537
+ result = imul(result, 31) + (this.ow_1 == null ? 0 : getStringHashCode(this.ow_1)) | 0;
538
538
  result = imul(result, 31) + hashCode(this.reference) | 0;
539
539
  return result;
540
540
  };
@@ -543,52 +543,52 @@ protoOf(WsChannel).equals = function (other) {
543
543
  return true;
544
544
  if (!(other instanceof WsChannel))
545
545
  return false;
546
- if (!(this.pw_1 === other.pw_1))
546
+ if (!(this.nw_1 === other.nw_1))
547
547
  return false;
548
- if (!(this.qw_1 == other.qw_1))
548
+ if (!(this.ow_1 == other.ow_1))
549
549
  return false;
550
550
  if (!equals(this.reference, other.reference))
551
551
  return false;
552
552
  return true;
553
553
  };
554
554
  function WsRefined(identifier, comment, reference) {
555
- this.tw_1 = identifier;
556
- this.uw_1 = comment;
555
+ this.rw_1 = identifier;
556
+ this.sw_1 = comment;
557
557
  this.reference = reference;
558
558
  }
559
- protoOf(WsRefined).xq = function () {
560
- return this.tw_1;
559
+ protoOf(WsRefined).vq = function () {
560
+ return this.rw_1;
561
561
  };
562
- protoOf(WsRefined).pv = function () {
563
- return this.uw_1;
562
+ protoOf(WsRefined).nv = function () {
563
+ return this.sw_1;
564
564
  };
565
- protoOf(WsRefined).rw = function () {
565
+ protoOf(WsRefined).pw = function () {
566
566
  return this.reference;
567
567
  };
568
- protoOf(WsRefined).oe = function () {
569
- return this.tw_1;
568
+ protoOf(WsRefined).ne = function () {
569
+ return this.rw_1;
570
570
  };
571
- protoOf(WsRefined).pe = function () {
572
- return this.uw_1;
571
+ protoOf(WsRefined).oe = function () {
572
+ return this.sw_1;
573
573
  };
574
- protoOf(WsRefined).qj = function () {
574
+ protoOf(WsRefined).oj = function () {
575
575
  return this.reference;
576
576
  };
577
- protoOf(WsRefined).sw = function (identifier, comment, reference) {
577
+ protoOf(WsRefined).qw = function (identifier, comment, reference) {
578
578
  return new WsRefined(identifier, comment, reference);
579
579
  };
580
580
  protoOf(WsRefined).copy = function (identifier, comment, reference, $super) {
581
- identifier = identifier === VOID ? this.tw_1 : identifier;
582
- comment = comment === VOID ? this.uw_1 : comment;
581
+ identifier = identifier === VOID ? this.rw_1 : identifier;
582
+ comment = comment === VOID ? this.sw_1 : comment;
583
583
  reference = reference === VOID ? this.reference : reference;
584
- return $super === VOID ? this.sw(identifier, comment, reference) : $super.sw.call(this, identifier, comment, reference);
584
+ return $super === VOID ? this.qw(identifier, comment, reference) : $super.qw.call(this, identifier, comment, reference);
585
585
  };
586
586
  protoOf(WsRefined).toString = function () {
587
- return 'WsRefined(identifier=' + this.tw_1 + ', comment=' + this.uw_1 + ', reference=' + toString(this.reference) + ')';
587
+ return 'WsRefined(identifier=' + this.rw_1 + ', comment=' + this.sw_1 + ', reference=' + toString(this.reference) + ')';
588
588
  };
589
589
  protoOf(WsRefined).hashCode = function () {
590
- var result = getStringHashCode(this.tw_1);
591
- result = imul(result, 31) + (this.uw_1 == null ? 0 : getStringHashCode(this.uw_1)) | 0;
590
+ var result = getStringHashCode(this.rw_1);
591
+ result = imul(result, 31) + (this.sw_1 == null ? 0 : getStringHashCode(this.sw_1)) | 0;
592
592
  result = imul(result, 31) + hashCode(this.reference) | 0;
593
593
  return result;
594
594
  };
@@ -597,9 +597,9 @@ protoOf(WsRefined).equals = function (other) {
597
597
  return true;
598
598
  if (!(other instanceof WsRefined))
599
599
  return false;
600
- if (!(this.tw_1 === other.tw_1))
600
+ if (!(this.rw_1 === other.rw_1))
601
601
  return false;
602
- if (!(this.uw_1 == other.uw_1))
602
+ if (!(this.sw_1 == other.sw_1))
603
603
  return false;
604
604
  if (!equals(this.reference, other.reference))
605
605
  return false;
@@ -662,18 +662,18 @@ function WsSegment() {
662
662
  function WsLiteral(value) {
663
663
  this.value = value;
664
664
  }
665
- protoOf(WsLiteral).n1 = function () {
665
+ protoOf(WsLiteral).l1 = function () {
666
666
  return this.value;
667
667
  };
668
- protoOf(WsLiteral).oe = function () {
668
+ protoOf(WsLiteral).ne = function () {
669
669
  return this.value;
670
670
  };
671
- protoOf(WsLiteral).xw = function (value) {
671
+ protoOf(WsLiteral).vw = function (value) {
672
672
  return new WsLiteral(value);
673
673
  };
674
674
  protoOf(WsLiteral).copy = function (value, $super) {
675
675
  value = value === VOID ? this.value : value;
676
- return $super === VOID ? this.xw(value) : $super.xw.call(this, value);
676
+ return $super === VOID ? this.vw(value) : $super.vw.call(this, value);
677
677
  };
678
678
  protoOf(WsLiteral).toString = function () {
679
679
  return 'WsLiteral(value=' + this.value + ')';
@@ -694,25 +694,25 @@ function WsParam(identifier, reference) {
694
694
  this.identifier = identifier;
695
695
  this.reference = reference;
696
696
  }
697
- protoOf(WsParam).xq = function () {
697
+ protoOf(WsParam).vq = function () {
698
698
  return this.identifier;
699
699
  };
700
- protoOf(WsParam).rw = function () {
700
+ protoOf(WsParam).pw = function () {
701
701
  return this.reference;
702
702
  };
703
- protoOf(WsParam).oe = function () {
703
+ protoOf(WsParam).ne = function () {
704
704
  return this.identifier;
705
705
  };
706
- protoOf(WsParam).pe = function () {
706
+ protoOf(WsParam).oe = function () {
707
707
  return this.reference;
708
708
  };
709
- protoOf(WsParam).yw = function (identifier, reference) {
709
+ protoOf(WsParam).ww = function (identifier, reference) {
710
710
  return new WsParam(identifier, reference);
711
711
  };
712
712
  protoOf(WsParam).copy = function (identifier, reference, $super) {
713
713
  identifier = identifier === VOID ? this.identifier : identifier;
714
714
  reference = reference === VOID ? this.reference : reference;
715
- return $super === VOID ? this.yw(identifier, reference) : $super.yw.call(this, identifier, reference);
715
+ return $super === VOID ? this.ww(identifier, reference) : $super.ww.call(this, identifier, reference);
716
716
  };
717
717
  protoOf(WsParam).toString = function () {
718
718
  return 'WsParam(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
@@ -736,18 +736,18 @@ protoOf(WsParam).equals = function (other) {
736
736
  function Shape_0(value) {
737
737
  this.value = value;
738
738
  }
739
- protoOf(Shape_0).n1 = function () {
739
+ protoOf(Shape_0).l1 = function () {
740
740
  return this.value;
741
741
  };
742
- protoOf(Shape_0).oe = function () {
742
+ protoOf(Shape_0).ne = function () {
743
743
  return this.value;
744
744
  };
745
- protoOf(Shape_0).uv = function (value) {
745
+ protoOf(Shape_0).sv = function (value) {
746
746
  return new Shape_0(value);
747
747
  };
748
748
  protoOf(Shape_0).copy = function (value, $super) {
749
749
  value = value === VOID ? this.value : value;
750
- return $super === VOID ? this.uv(value) : $super.uv.call(this, value);
750
+ return $super === VOID ? this.sv(value) : $super.sv.call(this, value);
751
751
  };
752
752
  protoOf(Shape_0).toString = function () {
753
753
  return 'Shape(value=' + toString(this.value) + ')';
@@ -768,25 +768,25 @@ function WsField(identifier, reference) {
768
768
  this.identifier = identifier;
769
769
  this.reference = reference;
770
770
  }
771
- protoOf(WsField).xq = function () {
771
+ protoOf(WsField).vq = function () {
772
772
  return this.identifier;
773
773
  };
774
- protoOf(WsField).rw = function () {
774
+ protoOf(WsField).pw = function () {
775
775
  return this.reference;
776
776
  };
777
- protoOf(WsField).oe = function () {
777
+ protoOf(WsField).ne = function () {
778
778
  return this.identifier;
779
779
  };
780
- protoOf(WsField).pe = function () {
780
+ protoOf(WsField).oe = function () {
781
781
  return this.reference;
782
782
  };
783
- protoOf(WsField).yw = function (identifier, reference) {
783
+ protoOf(WsField).ww = function (identifier, reference) {
784
784
  return new WsField(identifier, reference);
785
785
  };
786
786
  protoOf(WsField).copy = function (identifier, reference, $super) {
787
787
  identifier = identifier === VOID ? this.identifier : identifier;
788
788
  reference = reference === VOID ? this.reference : reference;
789
- return $super === VOID ? this.yw(identifier, reference) : $super.yw.call(this, identifier, reference);
789
+ return $super === VOID ? this.ww(identifier, reference) : $super.ww.call(this, identifier, reference);
790
790
  };
791
791
  protoOf(WsField).toString = function () {
792
792
  return 'WsField(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
@@ -812,18 +812,18 @@ function WsIdentifier() {
812
812
  function WsClassIdentifier(value) {
813
813
  this.value = value;
814
814
  }
815
- protoOf(WsClassIdentifier).n1 = function () {
815
+ protoOf(WsClassIdentifier).l1 = function () {
816
816
  return this.value;
817
817
  };
818
- protoOf(WsClassIdentifier).oe = function () {
818
+ protoOf(WsClassIdentifier).ne = function () {
819
819
  return this.value;
820
820
  };
821
- protoOf(WsClassIdentifier).xw = function (value) {
821
+ protoOf(WsClassIdentifier).vw = function (value) {
822
822
  return new WsClassIdentifier(value);
823
823
  };
824
824
  protoOf(WsClassIdentifier).copy = function (value, $super) {
825
825
  value = value === VOID ? this.value : value;
826
- return $super === VOID ? this.xw(value) : $super.xw.call(this, value);
826
+ return $super === VOID ? this.vw(value) : $super.vw.call(this, value);
827
827
  };
828
828
  protoOf(WsClassIdentifier).toString = function () {
829
829
  return 'WsClassIdentifier(value=' + this.value + ')';
@@ -843,18 +843,18 @@ protoOf(WsClassIdentifier).equals = function (other) {
843
843
  function WsFieldIdentifier(value) {
844
844
  this.value = value;
845
845
  }
846
- protoOf(WsFieldIdentifier).n1 = function () {
846
+ protoOf(WsFieldIdentifier).l1 = function () {
847
847
  return this.value;
848
848
  };
849
- protoOf(WsFieldIdentifier).oe = function () {
849
+ protoOf(WsFieldIdentifier).ne = function () {
850
850
  return this.value;
851
851
  };
852
- protoOf(WsFieldIdentifier).xw = function (value) {
852
+ protoOf(WsFieldIdentifier).vw = function (value) {
853
853
  return new WsFieldIdentifier(value);
854
854
  };
855
855
  protoOf(WsFieldIdentifier).copy = function (value, $super) {
856
856
  value = value === VOID ? this.value : value;
857
- return $super === VOID ? this.xw(value) : $super.xw.call(this, value);
857
+ return $super === VOID ? this.vw(value) : $super.vw.call(this, value);
858
858
  };
859
859
  protoOf(WsFieldIdentifier).toString = function () {
860
860
  return 'WsFieldIdentifier(value=' + this.value + ')';
@@ -874,97 +874,97 @@ protoOf(WsFieldIdentifier).equals = function (other) {
874
874
  function WsReference() {
875
875
  }
876
876
  function WsAny(isNullable) {
877
- this.zw_1 = isNullable;
877
+ this.xw_1 = isNullable;
878
878
  }
879
- protoOf(WsAny).fu = function () {
880
- return this.zw_1;
879
+ protoOf(WsAny).du = function () {
880
+ return this.xw_1;
881
881
  };
882
- protoOf(WsAny).oe = function () {
883
- return this.zw_1;
882
+ protoOf(WsAny).ne = function () {
883
+ return this.xw_1;
884
884
  };
885
- protoOf(WsAny).gu = function (isNullable) {
885
+ protoOf(WsAny).eu = function (isNullable) {
886
886
  return new WsAny(isNullable);
887
887
  };
888
888
  protoOf(WsAny).copy = function (isNullable, $super) {
889
- isNullable = isNullable === VOID ? this.zw_1 : isNullable;
890
- return $super === VOID ? this.gu(isNullable) : $super.gu.call(this, isNullable);
889
+ isNullable = isNullable === VOID ? this.xw_1 : isNullable;
890
+ return $super === VOID ? this.eu(isNullable) : $super.eu.call(this, isNullable);
891
891
  };
892
892
  protoOf(WsAny).toString = function () {
893
- return 'WsAny(isNullable=' + this.zw_1 + ')';
893
+ return 'WsAny(isNullable=' + this.xw_1 + ')';
894
894
  };
895
895
  protoOf(WsAny).hashCode = function () {
896
- return getBooleanHashCode(this.zw_1);
896
+ return getBooleanHashCode(this.xw_1);
897
897
  };
898
898
  protoOf(WsAny).equals = function (other) {
899
899
  if (this === other)
900
900
  return true;
901
901
  if (!(other instanceof WsAny))
902
902
  return false;
903
- if (!(this.zw_1 === other.zw_1))
903
+ if (!(this.xw_1 === other.xw_1))
904
904
  return false;
905
905
  return true;
906
906
  };
907
907
  function WsUnit(isNullable) {
908
- this.ax_1 = isNullable;
908
+ this.yw_1 = isNullable;
909
909
  }
910
- protoOf(WsUnit).fu = function () {
911
- return this.ax_1;
910
+ protoOf(WsUnit).du = function () {
911
+ return this.yw_1;
912
912
  };
913
- protoOf(WsUnit).oe = function () {
914
- return this.ax_1;
913
+ protoOf(WsUnit).ne = function () {
914
+ return this.yw_1;
915
915
  };
916
- protoOf(WsUnit).gu = function (isNullable) {
916
+ protoOf(WsUnit).eu = function (isNullable) {
917
917
  return new WsUnit(isNullable);
918
918
  };
919
919
  protoOf(WsUnit).copy = function (isNullable, $super) {
920
- isNullable = isNullable === VOID ? this.ax_1 : isNullable;
921
- return $super === VOID ? this.gu(isNullable) : $super.gu.call(this, isNullable);
920
+ isNullable = isNullable === VOID ? this.yw_1 : isNullable;
921
+ return $super === VOID ? this.eu(isNullable) : $super.eu.call(this, isNullable);
922
922
  };
923
923
  protoOf(WsUnit).toString = function () {
924
- return 'WsUnit(isNullable=' + this.ax_1 + ')';
924
+ return 'WsUnit(isNullable=' + this.yw_1 + ')';
925
925
  };
926
926
  protoOf(WsUnit).hashCode = function () {
927
- return getBooleanHashCode(this.ax_1);
927
+ return getBooleanHashCode(this.yw_1);
928
928
  };
929
929
  protoOf(WsUnit).equals = function (other) {
930
930
  if (this === other)
931
931
  return true;
932
932
  if (!(other instanceof WsUnit))
933
933
  return false;
934
- if (!(this.ax_1 === other.ax_1))
934
+ if (!(this.yw_1 === other.yw_1))
935
935
  return false;
936
936
  return true;
937
937
  };
938
938
  function WsIterable(reference, isNullable) {
939
939
  this.reference = reference;
940
- this.bx_1 = isNullable;
940
+ this.zw_1 = isNullable;
941
941
  }
942
- protoOf(WsIterable).rw = function () {
942
+ protoOf(WsIterable).pw = function () {
943
943
  return this.reference;
944
944
  };
945
- protoOf(WsIterable).fu = function () {
946
- return this.bx_1;
945
+ protoOf(WsIterable).du = function () {
946
+ return this.zw_1;
947
947
  };
948
- protoOf(WsIterable).oe = function () {
948
+ protoOf(WsIterable).ne = function () {
949
949
  return this.reference;
950
950
  };
951
- protoOf(WsIterable).pe = function () {
952
- return this.bx_1;
951
+ protoOf(WsIterable).oe = function () {
952
+ return this.zw_1;
953
953
  };
954
- protoOf(WsIterable).cx = function (reference, isNullable) {
954
+ protoOf(WsIterable).ax = function (reference, isNullable) {
955
955
  return new WsIterable(reference, isNullable);
956
956
  };
957
957
  protoOf(WsIterable).copy = function (reference, isNullable, $super) {
958
958
  reference = reference === VOID ? this.reference : reference;
959
- isNullable = isNullable === VOID ? this.bx_1 : isNullable;
960
- return $super === VOID ? this.cx(reference, isNullable) : $super.cx.call(this, reference, isNullable);
959
+ isNullable = isNullable === VOID ? this.zw_1 : isNullable;
960
+ return $super === VOID ? this.ax(reference, isNullable) : $super.ax.call(this, reference, isNullable);
961
961
  };
962
962
  protoOf(WsIterable).toString = function () {
963
- return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.bx_1 + ')';
963
+ return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.zw_1 + ')';
964
964
  };
965
965
  protoOf(WsIterable).hashCode = function () {
966
966
  var result = hashCode(this.reference);
967
- result = imul(result, 31) + getBooleanHashCode(this.bx_1) | 0;
967
+ result = imul(result, 31) + getBooleanHashCode(this.zw_1) | 0;
968
968
  return result;
969
969
  };
970
970
  protoOf(WsIterable).equals = function (other) {
@@ -974,40 +974,40 @@ protoOf(WsIterable).equals = function (other) {
974
974
  return false;
975
975
  if (!equals(this.reference, other.reference))
976
976
  return false;
977
- if (!(this.bx_1 === other.bx_1))
977
+ if (!(this.zw_1 === other.zw_1))
978
978
  return false;
979
979
  return true;
980
980
  };
981
981
  function WsDict(reference, isNullable) {
982
982
  this.reference = reference;
983
- this.dx_1 = isNullable;
983
+ this.bx_1 = isNullable;
984
984
  }
985
- protoOf(WsDict).rw = function () {
985
+ protoOf(WsDict).pw = function () {
986
986
  return this.reference;
987
987
  };
988
- protoOf(WsDict).fu = function () {
989
- return this.dx_1;
988
+ protoOf(WsDict).du = function () {
989
+ return this.bx_1;
990
990
  };
991
- protoOf(WsDict).oe = function () {
991
+ protoOf(WsDict).ne = function () {
992
992
  return this.reference;
993
993
  };
994
- protoOf(WsDict).pe = function () {
995
- return this.dx_1;
994
+ protoOf(WsDict).oe = function () {
995
+ return this.bx_1;
996
996
  };
997
- protoOf(WsDict).cx = function (reference, isNullable) {
997
+ protoOf(WsDict).ax = function (reference, isNullable) {
998
998
  return new WsDict(reference, isNullable);
999
999
  };
1000
1000
  protoOf(WsDict).copy = function (reference, isNullable, $super) {
1001
1001
  reference = reference === VOID ? this.reference : reference;
1002
- isNullable = isNullable === VOID ? this.dx_1 : isNullable;
1003
- return $super === VOID ? this.cx(reference, isNullable) : $super.cx.call(this, reference, isNullable);
1002
+ isNullable = isNullable === VOID ? this.bx_1 : isNullable;
1003
+ return $super === VOID ? this.ax(reference, isNullable) : $super.ax.call(this, reference, isNullable);
1004
1004
  };
1005
1005
  protoOf(WsDict).toString = function () {
1006
- return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.dx_1 + ')';
1006
+ return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.bx_1 + ')';
1007
1007
  };
1008
1008
  protoOf(WsDict).hashCode = function () {
1009
1009
  var result = hashCode(this.reference);
1010
- result = imul(result, 31) + getBooleanHashCode(this.dx_1) | 0;
1010
+ result = imul(result, 31) + getBooleanHashCode(this.bx_1) | 0;
1011
1011
  return result;
1012
1012
  };
1013
1013
  protoOf(WsDict).equals = function (other) {
@@ -1017,40 +1017,40 @@ protoOf(WsDict).equals = function (other) {
1017
1017
  return false;
1018
1018
  if (!equals(this.reference, other.reference))
1019
1019
  return false;
1020
- if (!(this.dx_1 === other.dx_1))
1020
+ if (!(this.bx_1 === other.bx_1))
1021
1021
  return false;
1022
1022
  return true;
1023
1023
  };
1024
1024
  function WsCustom(value, isNullable) {
1025
1025
  this.value = value;
1026
- this.ex_1 = isNullable;
1026
+ this.cx_1 = isNullable;
1027
1027
  }
1028
- protoOf(WsCustom).n1 = function () {
1028
+ protoOf(WsCustom).l1 = function () {
1029
1029
  return this.value;
1030
1030
  };
1031
- protoOf(WsCustom).fu = function () {
1032
- return this.ex_1;
1031
+ protoOf(WsCustom).du = function () {
1032
+ return this.cx_1;
1033
1033
  };
1034
- protoOf(WsCustom).oe = function () {
1034
+ protoOf(WsCustom).ne = function () {
1035
1035
  return this.value;
1036
1036
  };
1037
- protoOf(WsCustom).pe = function () {
1038
- return this.ex_1;
1037
+ protoOf(WsCustom).oe = function () {
1038
+ return this.cx_1;
1039
1039
  };
1040
- protoOf(WsCustom).pu = function (value, isNullable) {
1040
+ protoOf(WsCustom).nu = function (value, isNullable) {
1041
1041
  return new WsCustom(value, isNullable);
1042
1042
  };
1043
1043
  protoOf(WsCustom).copy = function (value, isNullable, $super) {
1044
1044
  value = value === VOID ? this.value : value;
1045
- isNullable = isNullable === VOID ? this.ex_1 : isNullable;
1046
- return $super === VOID ? this.pu(value, isNullable) : $super.pu.call(this, value, isNullable);
1045
+ isNullable = isNullable === VOID ? this.cx_1 : isNullable;
1046
+ return $super === VOID ? this.nu(value, isNullable) : $super.nu.call(this, value, isNullable);
1047
1047
  };
1048
1048
  protoOf(WsCustom).toString = function () {
1049
- return 'WsCustom(value=' + this.value + ', isNullable=' + this.ex_1 + ')';
1049
+ return 'WsCustom(value=' + this.value + ', isNullable=' + this.cx_1 + ')';
1050
1050
  };
1051
1051
  protoOf(WsCustom).hashCode = function () {
1052
1052
  var result = getStringHashCode(this.value);
1053
- result = imul(result, 31) + getBooleanHashCode(this.ex_1) | 0;
1053
+ result = imul(result, 31) + getBooleanHashCode(this.cx_1) | 0;
1054
1054
  return result;
1055
1055
  };
1056
1056
  protoOf(WsCustom).equals = function (other) {
@@ -1060,40 +1060,40 @@ protoOf(WsCustom).equals = function (other) {
1060
1060
  return false;
1061
1061
  if (!(this.value === other.value))
1062
1062
  return false;
1063
- if (!(this.ex_1 === other.ex_1))
1063
+ if (!(this.cx_1 === other.cx_1))
1064
1064
  return false;
1065
1065
  return true;
1066
1066
  };
1067
1067
  function WsPrimitive(type, isNullable) {
1068
1068
  this.type = type;
1069
- this.fx_1 = isNullable;
1069
+ this.dx_1 = isNullable;
1070
1070
  }
1071
- protoOf(WsPrimitive).gx = function () {
1071
+ protoOf(WsPrimitive).ex = function () {
1072
1072
  return this.type;
1073
1073
  };
1074
- protoOf(WsPrimitive).fu = function () {
1075
- return this.fx_1;
1074
+ protoOf(WsPrimitive).du = function () {
1075
+ return this.dx_1;
1076
1076
  };
1077
- protoOf(WsPrimitive).oe = function () {
1077
+ protoOf(WsPrimitive).ne = function () {
1078
1078
  return this.type;
1079
1079
  };
1080
- protoOf(WsPrimitive).pe = function () {
1081
- return this.fx_1;
1080
+ protoOf(WsPrimitive).oe = function () {
1081
+ return this.dx_1;
1082
1082
  };
1083
- protoOf(WsPrimitive).hx = function (type, isNullable) {
1083
+ protoOf(WsPrimitive).fx = function (type, isNullable) {
1084
1084
  return new WsPrimitive(type, isNullable);
1085
1085
  };
1086
1086
  protoOf(WsPrimitive).copy = function (type, isNullable, $super) {
1087
1087
  type = type === VOID ? this.type : type;
1088
- isNullable = isNullable === VOID ? this.fx_1 : isNullable;
1089
- return $super === VOID ? this.hx(type, isNullable) : $super.hx.call(this, type, isNullable);
1088
+ isNullable = isNullable === VOID ? this.dx_1 : isNullable;
1089
+ return $super === VOID ? this.fx(type, isNullable) : $super.fx.call(this, type, isNullable);
1090
1090
  };
1091
1091
  protoOf(WsPrimitive).toString = function () {
1092
- return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.fx_1 + ')';
1092
+ return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.dx_1 + ')';
1093
1093
  };
1094
1094
  protoOf(WsPrimitive).hashCode = function () {
1095
1095
  var result = this.type.hashCode();
1096
- result = imul(result, 31) + getBooleanHashCode(this.fx_1) | 0;
1096
+ result = imul(result, 31) + getBooleanHashCode(this.dx_1) | 0;
1097
1097
  return result;
1098
1098
  };
1099
1099
  protoOf(WsPrimitive).equals = function (other) {
@@ -1103,7 +1103,7 @@ protoOf(WsPrimitive).equals = function (other) {
1103
1103
  return false;
1104
1104
  if (!this.type.equals(other.type))
1105
1105
  return false;
1106
- if (!(this.fx_1 === other.fx_1))
1106
+ if (!(this.dx_1 === other.dx_1))
1107
1107
  return false;
1108
1108
  return true;
1109
1109
  };
@@ -1158,18 +1158,18 @@ function WsPrimitiveType(name, ordinal) {
1158
1158
  function WsRequest(content) {
1159
1159
  this.content = content;
1160
1160
  }
1161
- protoOf(WsRequest).kx = function () {
1161
+ protoOf(WsRequest).ix = function () {
1162
1162
  return this.content;
1163
1163
  };
1164
- protoOf(WsRequest).oe = function () {
1164
+ protoOf(WsRequest).ne = function () {
1165
1165
  return this.content;
1166
1166
  };
1167
- protoOf(WsRequest).lx = function (content) {
1167
+ protoOf(WsRequest).jx = function (content) {
1168
1168
  return new WsRequest(content);
1169
1169
  };
1170
1170
  protoOf(WsRequest).copy = function (content, $super) {
1171
1171
  content = content === VOID ? this.content : content;
1172
- return $super === VOID ? this.lx(content) : $super.lx.call(this, content);
1172
+ return $super === VOID ? this.jx(content) : $super.jx.call(this, content);
1173
1173
  };
1174
1174
  protoOf(WsRequest).toString = function () {
1175
1175
  return 'WsRequest(content=' + toString_0(this.content) + ')';
@@ -1191,32 +1191,32 @@ function WsResponse(status, headers, content) {
1191
1191
  this.headers = headers;
1192
1192
  this.content = content;
1193
1193
  }
1194
- protoOf(WsResponse).mx = function () {
1194
+ protoOf(WsResponse).kx = function () {
1195
1195
  return this.status;
1196
1196
  };
1197
- protoOf(WsResponse).aw = function () {
1197
+ protoOf(WsResponse).yv = function () {
1198
1198
  return this.headers;
1199
1199
  };
1200
- protoOf(WsResponse).kx = function () {
1200
+ protoOf(WsResponse).ix = function () {
1201
1201
  return this.content;
1202
1202
  };
1203
- protoOf(WsResponse).oe = function () {
1203
+ protoOf(WsResponse).ne = function () {
1204
1204
  return this.status;
1205
1205
  };
1206
- protoOf(WsResponse).pe = function () {
1206
+ protoOf(WsResponse).oe = function () {
1207
1207
  return this.headers;
1208
1208
  };
1209
- protoOf(WsResponse).qj = function () {
1209
+ protoOf(WsResponse).oj = function () {
1210
1210
  return this.content;
1211
1211
  };
1212
- protoOf(WsResponse).nx = function (status, headers, content) {
1212
+ protoOf(WsResponse).lx = function (status, headers, content) {
1213
1213
  return new WsResponse(status, headers, content);
1214
1214
  };
1215
1215
  protoOf(WsResponse).copy = function (status, headers, content, $super) {
1216
1216
  status = status === VOID ? this.status : status;
1217
1217
  headers = headers === VOID ? this.headers : headers;
1218
1218
  content = content === VOID ? this.content : content;
1219
- return $super === VOID ? this.nx(status, headers, content) : $super.nx.call(this, status, headers, content);
1219
+ return $super === VOID ? this.lx(status, headers, content) : $super.lx.call(this, status, headers, content);
1220
1220
  };
1221
1221
  protoOf(WsResponse).toString = function () {
1222
1222
  return 'WsResponse(status=' + this.status + ', headers=' + toString(this.headers) + ', content=' + toString_0(this.content) + ')';
@@ -1246,32 +1246,32 @@ function WsContent(type, reference, isNullable) {
1246
1246
  this.reference = reference;
1247
1247
  this.isNullable = isNullable;
1248
1248
  }
1249
- protoOf(WsContent).gx = function () {
1249
+ protoOf(WsContent).ex = function () {
1250
1250
  return this.type;
1251
1251
  };
1252
- protoOf(WsContent).rw = function () {
1252
+ protoOf(WsContent).pw = function () {
1253
1253
  return this.reference;
1254
1254
  };
1255
- protoOf(WsContent).fu = function () {
1255
+ protoOf(WsContent).du = function () {
1256
1256
  return this.isNullable;
1257
1257
  };
1258
- protoOf(WsContent).oe = function () {
1258
+ protoOf(WsContent).ne = function () {
1259
1259
  return this.type;
1260
1260
  };
1261
- protoOf(WsContent).pe = function () {
1261
+ protoOf(WsContent).oe = function () {
1262
1262
  return this.reference;
1263
1263
  };
1264
- protoOf(WsContent).qj = function () {
1264
+ protoOf(WsContent).oj = function () {
1265
1265
  return this.isNullable;
1266
1266
  };
1267
- protoOf(WsContent).ox = function (type, reference, isNullable) {
1267
+ protoOf(WsContent).mx = function (type, reference, isNullable) {
1268
1268
  return new WsContent(type, reference, isNullable);
1269
1269
  };
1270
1270
  protoOf(WsContent).copy = function (type, reference, isNullable, $super) {
1271
1271
  type = type === VOID ? this.type : type;
1272
1272
  reference = reference === VOID ? this.reference : reference;
1273
1273
  isNullable = isNullable === VOID ? this.isNullable : isNullable;
1274
- return $super === VOID ? this.ox(type, reference, isNullable) : $super.ox.call(this, type, reference, isNullable);
1274
+ return $super === VOID ? this.mx(type, reference, isNullable) : $super.mx.call(this, type, reference, isNullable);
1275
1275
  };
1276
1276
  protoOf(WsContent).toString = function () {
1277
1277
  return 'WsContent(type=' + this.type + ', reference=' + toString(this.reference) + ', isNullable=' + this.isNullable + ')';
@@ -1298,8 +1298,8 @@ protoOf(WsContent).equals = function (other) {
1298
1298
  function produce(_this__u8e3s4) {
1299
1299
  var tmp;
1300
1300
  if (_this__u8e3s4 instanceof Type) {
1301
- var tmp_0 = _this__u8e3s4.xo_1.n1();
1302
- var tmp1_safe_receiver = _this__u8e3s4.vo_1;
1301
+ var tmp_0 = _this__u8e3s4.vo_1.l1();
1302
+ var tmp1_safe_receiver = _this__u8e3s4.to_1;
1303
1303
  var tmp_1;
1304
1304
  var tmp_2 = tmp1_safe_receiver;
1305
1305
  if ((tmp_2 == null ? null : new Comment(tmp_2)) == null) {
@@ -1307,11 +1307,11 @@ function produce(_this__u8e3s4) {
1307
1307
  } else {
1308
1308
  tmp_1 = _Comment___get_value__impl__8r3pla(tmp1_safe_receiver);
1309
1309
  }
1310
- tmp = new WsType(tmp_0, tmp_1, produce_0(_this__u8e3s4.yo_1));
1310
+ tmp = new WsType(tmp_0, tmp_1, produce_0(_this__u8e3s4.wo_1));
1311
1311
  } else {
1312
1312
  if (_this__u8e3s4 instanceof Endpoint) {
1313
- var tmp_3 = _this__u8e3s4.gp_1.n1();
1314
- var tmp2_safe_receiver = _this__u8e3s4.ep_1;
1313
+ var tmp_3 = _this__u8e3s4.ep_1.l1();
1314
+ var tmp2_safe_receiver = _this__u8e3s4.cp_1;
1315
1315
  var tmp_4;
1316
1316
  var tmp_5 = tmp2_safe_receiver;
1317
1317
  if ((tmp_5 == null ? null : new Comment(tmp_5)) == null) {
@@ -1319,11 +1319,11 @@ function produce(_this__u8e3s4) {
1319
1319
  } else {
1320
1320
  tmp_4 = _Comment___get_value__impl__8r3pla(tmp2_safe_receiver);
1321
1321
  }
1322
- tmp = new WsEndpoint(tmp_3, tmp_4, produce_1(_this__u8e3s4.hp_1), produce_2(_this__u8e3s4.ip_1), produce_3(_this__u8e3s4.jp_1), produce_3(_this__u8e3s4.kp_1), produce_4(_this__u8e3s4.lp_1), produce_5(_this__u8e3s4.mp_1));
1322
+ tmp = new WsEndpoint(tmp_3, tmp_4, produce_1(_this__u8e3s4.fp_1), produce_2(_this__u8e3s4.gp_1), produce_3(_this__u8e3s4.hp_1), produce_3(_this__u8e3s4.ip_1), produce_4(_this__u8e3s4.jp_1), produce_5(_this__u8e3s4.kp_1));
1323
1323
  } else {
1324
1324
  if (_this__u8e3s4 instanceof Enum_0) {
1325
- var tmp_6 = _this__u8e3s4.ir_1.n1();
1326
- var tmp3_safe_receiver = _this__u8e3s4.gr_1;
1325
+ var tmp_6 = _this__u8e3s4.gr_1.l1();
1326
+ var tmp3_safe_receiver = _this__u8e3s4.er_1;
1327
1327
  var tmp_7;
1328
1328
  var tmp_8 = tmp3_safe_receiver;
1329
1329
  if ((tmp_8 == null ? null : new Comment(tmp_8)) == null) {
@@ -1333,13 +1333,13 @@ function produce(_this__u8e3s4) {
1333
1333
  }
1334
1334
  var tmp_9 = tmp_7;
1335
1335
  // Inline function 'kotlin.collections.toTypedArray' call
1336
- var this_0 = _this__u8e3s4.jr_1;
1336
+ var this_0 = _this__u8e3s4.hr_1;
1337
1337
  var tmp$ret$0 = copyToArray(this_0);
1338
1338
  tmp = new WsEnum(tmp_6, tmp_9, tmp$ret$0);
1339
1339
  } else {
1340
1340
  if (_this__u8e3s4 instanceof Refined) {
1341
- var tmp_10 = _this__u8e3s4.dr_1.n1();
1342
- var tmp4_safe_receiver = _this__u8e3s4.br_1;
1341
+ var tmp_10 = _this__u8e3s4.br_1.l1();
1342
+ var tmp4_safe_receiver = _this__u8e3s4.zq_1;
1343
1343
  var tmp_11;
1344
1344
  var tmp_12 = tmp4_safe_receiver;
1345
1345
  if ((tmp_12 == null ? null : new Comment(tmp_12)) == null) {
@@ -1347,11 +1347,11 @@ function produce(_this__u8e3s4) {
1347
1347
  } else {
1348
1348
  tmp_11 = _Comment___get_value__impl__8r3pla(tmp4_safe_receiver);
1349
1349
  }
1350
- tmp = new WsRefined(tmp_10, tmp_11, produce_6(_this__u8e3s4.er_1));
1350
+ tmp = new WsRefined(tmp_10, tmp_11, produce_6(_this__u8e3s4.cr_1));
1351
1351
  } else {
1352
1352
  if (_this__u8e3s4 instanceof Union) {
1353
- var tmp_13 = _this__u8e3s4.so_1.n1();
1354
- var tmp5_safe_receiver = _this__u8e3s4.qo_1;
1353
+ var tmp_13 = _this__u8e3s4.qo_1.l1();
1354
+ var tmp5_safe_receiver = _this__u8e3s4.oo_1;
1355
1355
  var tmp_14;
1356
1356
  var tmp_15 = tmp5_safe_receiver;
1357
1357
  if ((tmp_15 == null ? null : new Comment(tmp_15)) == null) {
@@ -1361,7 +1361,7 @@ function produce(_this__u8e3s4) {
1361
1361
  }
1362
1362
  var tmp_16 = tmp_14;
1363
1363
  // Inline function 'kotlin.collections.map' call
1364
- var this_1 = _this__u8e3s4.to_1;
1364
+ var this_1 = _this__u8e3s4.ro_1;
1365
1365
  // Inline function 'kotlin.collections.mapTo' call
1366
1366
  var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_1, 10));
1367
1367
  var _iterator__ex2g4s = this_1.t();
@@ -1375,8 +1375,8 @@ function produce(_this__u8e3s4) {
1375
1375
  tmp = new WsUnion(tmp_13, tmp_16, tmp$ret$4);
1376
1376
  } else {
1377
1377
  if (_this__u8e3s4 instanceof Channel) {
1378
- var tmp_17 = _this__u8e3s4.oo_1.n1();
1379
- var tmp6_safe_receiver = _this__u8e3s4.mo_1;
1378
+ var tmp_17 = _this__u8e3s4.mo_1.l1();
1379
+ var tmp6_safe_receiver = _this__u8e3s4.ko_1;
1380
1380
  var tmp_18;
1381
1381
  var tmp_19 = tmp6_safe_receiver;
1382
1382
  if ((tmp_19 == null ? null : new Comment(tmp_19)) == null) {
@@ -1384,7 +1384,7 @@ function produce(_this__u8e3s4) {
1384
1384
  } else {
1385
1385
  tmp_18 = _Comment___get_value__impl__8r3pla(tmp6_safe_receiver);
1386
1386
  }
1387
- tmp = new WsChannel(tmp_17, tmp_18, produce_6(_this__u8e3s4.po_1));
1387
+ tmp = new WsChannel(tmp_17, tmp_18, produce_6(_this__u8e3s4.no_1));
1388
1388
  } else {
1389
1389
  noWhenBranchMatchedException();
1390
1390
  }
@@ -1397,7 +1397,7 @@ function produce(_this__u8e3s4) {
1397
1397
  }
1398
1398
  function produce_0(_this__u8e3s4) {
1399
1399
  // Inline function 'kotlin.collections.map' call
1400
- var this_0 = _this__u8e3s4.uo_1;
1400
+ var this_0 = _this__u8e3s4.so_1;
1401
1401
  // Inline function 'kotlin.collections.mapTo' call
1402
1402
  var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_0, 10));
1403
1403
  var _iterator__ex2g4s = this_0.t();
@@ -1412,7 +1412,7 @@ function produce_0(_this__u8e3s4) {
1412
1412
  }
1413
1413
  function produce_1(_this__u8e3s4) {
1414
1414
  var tmp;
1415
- switch (_this__u8e3s4.c3_1) {
1415
+ switch (_this__u8e3s4.b3_1) {
1416
1416
  case 0:
1417
1417
  tmp = WsMethod_GET_getInstance();
1418
1418
  break;
@@ -1452,10 +1452,10 @@ function produce_2(_this__u8e3s4) {
1452
1452
  var item = _iterator__ex2g4s.v();
1453
1453
  var tmp;
1454
1454
  if (item instanceof Literal) {
1455
- tmp = new WsLiteral(item.jq_1);
1455
+ tmp = new WsLiteral(item.hq_1);
1456
1456
  } else {
1457
1457
  if (item instanceof Param) {
1458
- tmp = new WsParam(produce_8(item.np_1), produce_6(item.op_1));
1458
+ tmp = new WsParam(produce_8(item.lp_1), produce_6(item.mp_1));
1459
1459
  } else {
1460
1460
  noWhenBranchMatchedException();
1461
1461
  }
@@ -1508,22 +1508,22 @@ function produce_5(_this__u8e3s4) {
1508
1508
  function produce_6(_this__u8e3s4) {
1509
1509
  var tmp;
1510
1510
  if (_this__u8e3s4 instanceof Any) {
1511
- tmp = new WsAny(_this__u8e3s4.du_1);
1511
+ tmp = new WsAny(_this__u8e3s4.bu_1);
1512
1512
  } else {
1513
1513
  if (_this__u8e3s4 instanceof Unit) {
1514
- tmp = new WsUnit(_this__u8e3s4.iu_1);
1514
+ tmp = new WsUnit(_this__u8e3s4.gu_1);
1515
1515
  } else {
1516
1516
  if (_this__u8e3s4 instanceof Custom) {
1517
- tmp = new WsCustom(_this__u8e3s4.nu_1, _this__u8e3s4.ou_1);
1517
+ tmp = new WsCustom(_this__u8e3s4.lu_1, _this__u8e3s4.mu_1);
1518
1518
  } else {
1519
1519
  if (_this__u8e3s4 instanceof Primitive) {
1520
- tmp = new WsPrimitive(produce_11(_this__u8e3s4.ru_1), _this__u8e3s4.su_1);
1520
+ tmp = new WsPrimitive(produce_11(_this__u8e3s4.pu_1), _this__u8e3s4.qu_1);
1521
1521
  } else {
1522
1522
  if (_this__u8e3s4 instanceof Dict) {
1523
- tmp = new WsDict(produce_6(_this__u8e3s4.eo_1), _this__u8e3s4.fo_1);
1523
+ tmp = new WsDict(produce_6(_this__u8e3s4.co_1), _this__u8e3s4.do_1);
1524
1524
  } else {
1525
1525
  if (_this__u8e3s4 instanceof Iterable) {
1526
- tmp = new WsIterable(produce_6(_this__u8e3s4.bo_1), _this__u8e3s4.co_1);
1526
+ tmp = new WsIterable(produce_6(_this__u8e3s4.zn_1), _this__u8e3s4.ao_1);
1527
1527
  } else {
1528
1528
  noWhenBranchMatchedException();
1529
1529
  }
@@ -1535,18 +1535,18 @@ function produce_6(_this__u8e3s4) {
1535
1535
  return tmp;
1536
1536
  }
1537
1537
  function produce_7(_this__u8e3s4) {
1538
- return new WsField(produce_8(_this__u8e3s4.cp_1), produce_6(_this__u8e3s4.dp_1));
1538
+ return new WsField(produce_8(_this__u8e3s4.ap_1), produce_6(_this__u8e3s4.bp_1));
1539
1539
  }
1540
1540
  function produce_8(_this__u8e3s4) {
1541
- return new WsFieldIdentifier(_this__u8e3s4.n1());
1541
+ return new WsFieldIdentifier(_this__u8e3s4.l1());
1542
1542
  }
1543
1543
  function produce_9(_this__u8e3s4) {
1544
- var tmp0_safe_receiver = _this__u8e3s4.pp_1;
1544
+ var tmp0_safe_receiver = _this__u8e3s4.np_1;
1545
1545
  return new WsRequest(tmp0_safe_receiver == null ? null : produce_12(tmp0_safe_receiver));
1546
1546
  }
1547
1547
  function produce_10(_this__u8e3s4) {
1548
1548
  // Inline function 'kotlin.collections.map' call
1549
- var this_0 = _this__u8e3s4.tp_1;
1549
+ var this_0 = _this__u8e3s4.rp_1;
1550
1550
  // Inline function 'kotlin.collections.mapTo' call
1551
1551
  var destination = ArrayList_init_$Create$(collectionSizeOrDefault(this_0, 10));
1552
1552
  var _iterator__ex2g4s = this_0.t();
@@ -1557,8 +1557,8 @@ function produce_10(_this__u8e3s4) {
1557
1557
  }
1558
1558
  // Inline function 'kotlin.collections.toTypedArray' call
1559
1559
  var tmp = copyToArray(destination);
1560
- var tmp0_safe_receiver = _this__u8e3s4.up_1;
1561
- return new WsResponse(_this__u8e3s4.sp_1, tmp, tmp0_safe_receiver == null ? null : produce_12(tmp0_safe_receiver));
1560
+ var tmp0_safe_receiver = _this__u8e3s4.sp_1;
1561
+ return new WsResponse(_this__u8e3s4.qp_1, tmp, tmp0_safe_receiver == null ? null : produce_12(tmp0_safe_receiver));
1562
1562
  }
1563
1563
  function produce_11(_this__u8e3s4) {
1564
1564
  var tmp;
@@ -1567,7 +1567,7 @@ function produce_11(_this__u8e3s4) {
1567
1567
  } else {
1568
1568
  if (_this__u8e3s4 instanceof Integer) {
1569
1569
  var tmp_0;
1570
- switch (_this__u8e3s4.vt_1.c3_1) {
1570
+ switch (_this__u8e3s4.tt_1.b3_1) {
1571
1571
  case 0:
1572
1572
  tmp_0 = WsPrimitiveType_Integer32_getInstance();
1573
1573
  break;
@@ -1582,7 +1582,7 @@ function produce_11(_this__u8e3s4) {
1582
1582
  } else {
1583
1583
  if (_this__u8e3s4 instanceof Number_0) {
1584
1584
  var tmp_1;
1585
- switch (_this__u8e3s4.yt_1.c3_1) {
1585
+ switch (_this__u8e3s4.wt_1.b3_1) {
1586
1586
  case 0:
1587
1587
  tmp_1 = WsPrimitiveType_Number32_getInstance();
1588
1588
  break;
@@ -1610,11 +1610,11 @@ function produce_11(_this__u8e3s4) {
1610
1610
  return tmp;
1611
1611
  }
1612
1612
  function produce_12(_this__u8e3s4) {
1613
- return new WsContent(_this__u8e3s4.qp_1, produce_6(_this__u8e3s4.rp_1));
1613
+ return new WsContent(_this__u8e3s4.op_1, produce_6(_this__u8e3s4.pp_1));
1614
1614
  }
1615
1615
  function produce_13(_this__u8e3s4) {
1616
1616
  // Inline function 'arrow.core.NonEmptyList.map' call
1617
- var this_0 = _this__u8e3s4.dq_1;
1617
+ var this_0 = _this__u8e3s4.bq_1;
1618
1618
  // Inline function 'kotlin.collections.map' call
1619
1619
  var this_1 = _NonEmptyList___get_all__impl__pmf509(this_0);
1620
1620
  // Inline function 'kotlin.collections.mapTo' call
@@ -1645,11 +1645,11 @@ function consume(_this__u8e3s4) {
1645
1645
  destination.x(tmp$ret$0);
1646
1646
  }
1647
1647
  var tmp = toNonEmptyListOrNull(destination);
1648
- return new Root(ensureNotNull(tmp == null ? null : new NonEmptyList(tmp)).am_1);
1648
+ return new Root(ensureNotNull(tmp == null ? null : new NonEmptyList(tmp)).yl_1);
1649
1649
  }
1650
1650
  function produce_14(_this__u8e3s4) {
1651
1651
  // Inline function 'arrow.core.NonEmptyList.map' call
1652
- var this_0 = _this__u8e3s4.fq_1;
1652
+ var this_0 = _this__u8e3s4.dq_1;
1653
1653
  // Inline function 'kotlin.collections.map' call
1654
1654
  var this_1 = _NonEmptyList___get_all__impl__pmf509(this_0);
1655
1655
  // Inline function 'kotlin.collections.mapTo' call
@@ -1681,7 +1681,7 @@ function consume_0(_this__u8e3s4) {
1681
1681
  destination.x(tmp$ret$0);
1682
1682
  }
1683
1683
  var tmp_0 = toNonEmptyListOrNull(destination);
1684
- return new Module(tmp, ensureNotNull(tmp_0 == null ? null : new NonEmptyList(tmp_0)).am_1);
1684
+ return new Module(tmp, ensureNotNull(tmp_0 == null ? null : new NonEmptyList(tmp_0)).yl_1);
1685
1685
  }
1686
1686
  function consume_1(_this__u8e3s4) {
1687
1687
  var tmp;
@@ -1713,17 +1713,17 @@ function consume_1(_this__u8e3s4) {
1713
1713
  return tmp;
1714
1714
  }
1715
1715
  function consume_2(_this__u8e3s4) {
1716
- var tmp0_safe_receiver = _this__u8e3s4.wv_1;
1716
+ var tmp0_safe_receiver = _this__u8e3s4.uv_1;
1717
1717
  var tmp;
1718
1718
  if (tmp0_safe_receiver == null) {
1719
1719
  tmp = null;
1720
1720
  } else {
1721
1721
  // Inline function 'kotlin.let' call
1722
- tmp = Companion_instance.us(tmp0_safe_receiver);
1722
+ tmp = Companion_instance.ss(tmp0_safe_receiver);
1723
1723
  }
1724
1724
  var tmp_0 = tmp;
1725
1725
  var tmp_1 = emptyList();
1726
- var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.vv_1);
1726
+ var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.tv_1);
1727
1727
  var tmp_3 = consume_8(_this__u8e3s4.method);
1728
1728
  // Inline function 'kotlin.collections.map' call
1729
1729
  var this_0 = _this__u8e3s4.path;
@@ -1792,28 +1792,28 @@ function consume_2(_this__u8e3s4) {
1792
1792
  return new Endpoint(tmp_0, tmp_1, tmp_2, tmp_3, tmp_4, tmp_5, tmp_6, tmp_7, destination_3);
1793
1793
  }
1794
1794
  function consume_3(_this__u8e3s4) {
1795
- var tmp0_safe_receiver = _this__u8e3s4.kw_1;
1795
+ var tmp0_safe_receiver = _this__u8e3s4.iw_1;
1796
1796
  var tmp;
1797
1797
  if (tmp0_safe_receiver == null) {
1798
1798
  tmp = null;
1799
1799
  } else {
1800
1800
  // Inline function 'kotlin.let' call
1801
- tmp = Companion_instance.us(tmp0_safe_receiver);
1801
+ tmp = Companion_instance.ss(tmp0_safe_receiver);
1802
1802
  }
1803
- return new Enum_0(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.jw_1), toSet(_this__u8e3s4.entries));
1803
+ return new Enum_0(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.hw_1), toSet(_this__u8e3s4.entries));
1804
1804
  }
1805
1805
  function consume_4(_this__u8e3s4) {
1806
- var tmp0_safe_receiver = _this__u8e3s4.uw_1;
1806
+ var tmp0_safe_receiver = _this__u8e3s4.sw_1;
1807
1807
  var tmp;
1808
1808
  if (tmp0_safe_receiver == null) {
1809
1809
  tmp = null;
1810
1810
  } else {
1811
1811
  // Inline function 'kotlin.let' call
1812
- tmp = Companion_instance.us(tmp0_safe_receiver);
1812
+ tmp = Companion_instance.ss(tmp0_safe_receiver);
1813
1813
  }
1814
1814
  var tmp_0 = tmp;
1815
1815
  var tmp_1 = emptyList();
1816
- var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.tw_1);
1816
+ var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.rw_1);
1817
1817
  var tmp_3 = consume_13(_this__u8e3s4.reference);
1818
1818
  var tmp1_elvis_lhs = tmp_3 instanceof Primitive ? tmp_3 : null;
1819
1819
  var tmp_4;
@@ -1826,17 +1826,17 @@ function consume_4(_this__u8e3s4) {
1826
1826
  return new Refined(tmp_0, tmp_1, tmp_2, tmp_4);
1827
1827
  }
1828
1828
  function consume_5(_this__u8e3s4) {
1829
- var tmp0_safe_receiver = _this__u8e3s4.rv_1;
1829
+ var tmp0_safe_receiver = _this__u8e3s4.pv_1;
1830
1830
  var tmp;
1831
1831
  if (tmp0_safe_receiver == null) {
1832
1832
  tmp = null;
1833
1833
  } else {
1834
1834
  // Inline function 'kotlin.let' call
1835
- tmp = Companion_instance.us(tmp0_safe_receiver);
1835
+ tmp = Companion_instance.ss(tmp0_safe_receiver);
1836
1836
  }
1837
1837
  var tmp_0 = tmp;
1838
1838
  var tmp_1 = emptyList();
1839
- var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.qv_1);
1839
+ var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.ov_1);
1840
1840
  // Inline function 'kotlin.collections.map' call
1841
1841
  var this_0 = _this__u8e3s4.shape.value;
1842
1842
  // Inline function 'kotlin.collections.mapTo' call
@@ -1852,17 +1852,17 @@ function consume_5(_this__u8e3s4) {
1852
1852
  return new Type(tmp_0, tmp_1, tmp_2, new Shape(destination), emptyList());
1853
1853
  }
1854
1854
  function consume_6(_this__u8e3s4) {
1855
- var tmp0_safe_receiver = _this__u8e3s4.nw_1;
1855
+ var tmp0_safe_receiver = _this__u8e3s4.lw_1;
1856
1856
  var tmp;
1857
1857
  if (tmp0_safe_receiver == null) {
1858
1858
  tmp = null;
1859
1859
  } else {
1860
1860
  // Inline function 'kotlin.let' call
1861
- tmp = Companion_instance.us(tmp0_safe_receiver);
1861
+ tmp = Companion_instance.ss(tmp0_safe_receiver);
1862
1862
  }
1863
1863
  var tmp_0 = tmp;
1864
1864
  var tmp_1 = emptyList();
1865
- var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.mw_1);
1865
+ var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.kw_1);
1866
1866
  // Inline function 'kotlin.collections.map' call
1867
1867
  var this_0 = _this__u8e3s4.entries;
1868
1868
  // Inline function 'kotlin.collections.mapTo' call
@@ -1878,19 +1878,19 @@ function consume_6(_this__u8e3s4) {
1878
1878
  return new Union(tmp_0, tmp_1, tmp_2, toSet_0(destination));
1879
1879
  }
1880
1880
  function consume_7(_this__u8e3s4) {
1881
- var tmp0_safe_receiver = _this__u8e3s4.qw_1;
1881
+ var tmp0_safe_receiver = _this__u8e3s4.ow_1;
1882
1882
  var tmp;
1883
1883
  if (tmp0_safe_receiver == null) {
1884
1884
  tmp = null;
1885
1885
  } else {
1886
1886
  // Inline function 'kotlin.let' call
1887
- tmp = Companion_instance.us(tmp0_safe_receiver);
1887
+ tmp = Companion_instance.ss(tmp0_safe_receiver);
1888
1888
  }
1889
- return new Channel(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.pw_1), consume_13(_this__u8e3s4.reference));
1889
+ return new Channel(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.nw_1), consume_13(_this__u8e3s4.reference));
1890
1890
  }
1891
1891
  function consume_8(_this__u8e3s4) {
1892
1892
  var tmp;
1893
- switch (_this__u8e3s4.c3_1) {
1893
+ switch (_this__u8e3s4.b3_1) {
1894
1894
  case 0:
1895
1895
  tmp = Method_GET_getInstance();
1896
1896
  break;
@@ -1964,22 +1964,22 @@ function consume_12(_this__u8e3s4) {
1964
1964
  function consume_13(_this__u8e3s4) {
1965
1965
  var tmp;
1966
1966
  if (_this__u8e3s4 instanceof WsAny) {
1967
- tmp = new Any(_this__u8e3s4.zw_1);
1967
+ tmp = new Any(_this__u8e3s4.xw_1);
1968
1968
  } else {
1969
1969
  if (_this__u8e3s4 instanceof WsUnit) {
1970
- tmp = new Unit(_this__u8e3s4.ax_1);
1970
+ tmp = new Unit(_this__u8e3s4.yw_1);
1971
1971
  } else {
1972
1972
  if (_this__u8e3s4 instanceof WsCustom) {
1973
- tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.ex_1);
1973
+ tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.cx_1);
1974
1974
  } else {
1975
1975
  if (_this__u8e3s4 instanceof WsPrimitive) {
1976
- tmp = new Primitive(consume_16(_this__u8e3s4.type), _this__u8e3s4.fx_1);
1976
+ tmp = new Primitive(consume_16(_this__u8e3s4.type), _this__u8e3s4.dx_1);
1977
1977
  } else {
1978
1978
  if (_this__u8e3s4 instanceof WsDict) {
1979
- tmp = new Dict(consume_13(_this__u8e3s4.reference), _this__u8e3s4.dx_1);
1979
+ tmp = new Dict(consume_13(_this__u8e3s4.reference), _this__u8e3s4.bx_1);
1980
1980
  } else {
1981
1981
  if (_this__u8e3s4 instanceof WsIterable) {
1982
- tmp = new Iterable(consume_13(_this__u8e3s4.reference), _this__u8e3s4.bx_1);
1982
+ tmp = new Iterable(consume_13(_this__u8e3s4.reference), _this__u8e3s4.zw_1);
1983
1983
  } else {
1984
1984
  noWhenBranchMatchedException();
1985
1985
  }
@@ -1998,7 +1998,7 @@ function consume_15(_this__u8e3s4) {
1998
1998
  }
1999
1999
  function consume_16(_this__u8e3s4) {
2000
2000
  var tmp;
2001
- switch (_this__u8e3s4.c3_1) {
2001
+ switch (_this__u8e3s4.b3_1) {
2002
2002
  case 0:
2003
2003
  tmp = new String_0(null);
2004
2004
  break;
@@ -2099,16 +2099,16 @@ function WsCompilationResult(result, errors) {
2099
2099
  this.result = result;
2100
2100
  this.errors = errors;
2101
2101
  }
2102
- protoOf(WsCompilationResult).px = function () {
2102
+ protoOf(WsCompilationResult).nx = function () {
2103
2103
  return this.result;
2104
2104
  };
2105
- protoOf(WsCompilationResult).qx = function () {
2105
+ protoOf(WsCompilationResult).ox = function () {
2106
2106
  return this.errors;
2107
2107
  };
2108
2108
  function WsCompiled(value) {
2109
2109
  this.value = value;
2110
2110
  }
2111
- protoOf(WsCompiled).n1 = function () {
2111
+ protoOf(WsCompiled).l1 = function () {
2112
2112
  return this.value;
2113
2113
  };
2114
2114
  function WsCompiledFile(name, value) {
@@ -2118,7 +2118,7 @@ function WsCompiledFile(name, value) {
2118
2118
  protoOf(WsCompiledFile).m = function () {
2119
2119
  return this.name;
2120
2120
  };
2121
- protoOf(WsCompiledFile).n1 = function () {
2121
+ protoOf(WsCompiledFile).l1 = function () {
2122
2122
  return this.value;
2123
2123
  };
2124
2124
  function WsParseResult(result, errors) {
@@ -2127,10 +2127,10 @@ function WsParseResult(result, errors) {
2127
2127
  this.result = result;
2128
2128
  this.errors = errors;
2129
2129
  }
2130
- protoOf(WsParseResult).px = function () {
2130
+ protoOf(WsParseResult).nx = function () {
2131
2131
  return this.result;
2132
2132
  };
2133
- protoOf(WsParseResult).qx = function () {
2133
+ protoOf(WsParseResult).ox = function () {
2134
2134
  return this.errors;
2135
2135
  };
2136
2136
  function WsStringResult(result, errors) {
@@ -2139,27 +2139,27 @@ function WsStringResult(result, errors) {
2139
2139
  this.result = result;
2140
2140
  this.errors = errors;
2141
2141
  }
2142
- protoOf(WsStringResult).px = function () {
2142
+ protoOf(WsStringResult).nx = function () {
2143
2143
  return this.result;
2144
2144
  };
2145
- protoOf(WsStringResult).qx = function () {
2145
+ protoOf(WsStringResult).ox = function () {
2146
2146
  return this.errors;
2147
2147
  };
2148
2148
  function WsEmitted(file, result) {
2149
2149
  this.file = file;
2150
2150
  this.result = result;
2151
2151
  }
2152
- protoOf(WsEmitted).rx = function () {
2152
+ protoOf(WsEmitted).px = function () {
2153
2153
  return this.file;
2154
2154
  };
2155
- protoOf(WsEmitted).px = function () {
2155
+ protoOf(WsEmitted).nx = function () {
2156
2156
  return this.result;
2157
2157
  };
2158
2158
  function produce_15(_this__u8e3s4) {
2159
2159
  var tmp;
2160
2160
  if (_this__u8e3s4 instanceof Left) {
2161
2161
  // Inline function 'arrow.core.NonEmptyList.map' call
2162
- var this_0 = _this__u8e3s4.pl_1.am_1;
2162
+ var this_0 = _this__u8e3s4.nl_1.yl_1;
2163
2163
  // Inline function 'kotlin.collections.map' call
2164
2164
  var this_1 = _NonEmptyList___get_all__impl__pmf509(this_0);
2165
2165
  // Inline function 'kotlin.collections.mapTo' call
@@ -2177,7 +2177,7 @@ function produce_15(_this__u8e3s4) {
2177
2177
  tmp = new WsParseResult(VOID, tmp$ret$4);
2178
2178
  } else {
2179
2179
  if (_this__u8e3s4 instanceof Right) {
2180
- tmp = new WsParseResult(produce_13(_this__u8e3s4.rl_1));
2180
+ tmp = new WsParseResult(produce_13(_this__u8e3s4.pl_1));
2181
2181
  } else {
2182
2182
  noWhenBranchMatchedException();
2183
2183
  }
@@ -2188,7 +2188,7 @@ function produce_16(_this__u8e3s4) {
2188
2188
  var tmp;
2189
2189
  if (_this__u8e3s4 instanceof Left) {
2190
2190
  // Inline function 'arrow.core.NonEmptyList.map' call
2191
- var this_0 = _this__u8e3s4.pl_1.am_1;
2191
+ var this_0 = _this__u8e3s4.nl_1.yl_1;
2192
2192
  // Inline function 'kotlin.collections.map' call
2193
2193
  var this_1 = _NonEmptyList___get_all__impl__pmf509(this_0);
2194
2194
  // Inline function 'kotlin.collections.mapTo' call
@@ -2206,7 +2206,7 @@ function produce_16(_this__u8e3s4) {
2206
2206
  tmp = new WsStringResult(VOID, tmp$ret$4);
2207
2207
  } else {
2208
2208
  if (_this__u8e3s4 instanceof Right) {
2209
- tmp = new WsStringResult(_this__u8e3s4.rl_1);
2209
+ tmp = new WsStringResult(_this__u8e3s4.pl_1);
2210
2210
  } else {
2211
2211
  noWhenBranchMatchedException();
2212
2212
  }
@@ -2214,7 +2214,7 @@ function produce_16(_this__u8e3s4) {
2214
2214
  return tmp;
2215
2215
  }
2216
2216
  function produce_17(_this__u8e3s4) {
2217
- return new WsEmitted(_this__u8e3s4.ko_1, _this__u8e3s4.lo_1);
2217
+ return new WsEmitted(_this__u8e3s4.io_1, _this__u8e3s4.jo_1);
2218
2218
  }
2219
2219
  function WsTokenResult(tokens, error) {
2220
2220
  tokens = tokens === VOID ? null : tokens;
@@ -2222,25 +2222,25 @@ function WsTokenResult(tokens, error) {
2222
2222
  this.tokens = tokens;
2223
2223
  this.error = error;
2224
2224
  }
2225
- protoOf(WsTokenResult).sx = function () {
2225
+ protoOf(WsTokenResult).qx = function () {
2226
2226
  return this.tokens;
2227
2227
  };
2228
- protoOf(WsTokenResult).tx = function () {
2228
+ protoOf(WsTokenResult).rx = function () {
2229
2229
  return this.error;
2230
2230
  };
2231
- protoOf(WsTokenResult).oe = function () {
2231
+ protoOf(WsTokenResult).ne = function () {
2232
2232
  return this.tokens;
2233
2233
  };
2234
- protoOf(WsTokenResult).pe = function () {
2234
+ protoOf(WsTokenResult).oe = function () {
2235
2235
  return this.error;
2236
2236
  };
2237
- protoOf(WsTokenResult).ux = function (tokens, error) {
2237
+ protoOf(WsTokenResult).sx = function (tokens, error) {
2238
2238
  return new WsTokenResult(tokens, error);
2239
2239
  };
2240
2240
  protoOf(WsTokenResult).copy = function (tokens, error, $super) {
2241
2241
  tokens = tokens === VOID ? this.tokens : tokens;
2242
2242
  error = error === VOID ? this.error : error;
2243
- return $super === VOID ? this.ux(tokens, error) : $super.ux.call(this, tokens, error);
2243
+ return $super === VOID ? this.sx(tokens, error) : $super.sx.call(this, tokens, error);
2244
2244
  };
2245
2245
  protoOf(WsTokenResult).toString = function () {
2246
2246
  return 'WsTokenResult(tokens=' + toString_0(this.tokens) + ', error=' + toString_0(this.error) + ')';
@@ -2264,7 +2264,7 @@ protoOf(WsTokenResult).equals = function (other) {
2264
2264
  function WsTokens(value) {
2265
2265
  this.value = value;
2266
2266
  }
2267
- protoOf(WsTokens).n1 = function () {
2267
+ protoOf(WsTokens).l1 = function () {
2268
2268
  return this.value;
2269
2269
  };
2270
2270
  protoOf(WsTokens).equals = function (other) {
@@ -2281,15 +2281,15 @@ protoOf(WsTokens).equals = function (other) {
2281
2281
  protoOf(WsTokens).hashCode = function () {
2282
2282
  return contentHashCode(this.value);
2283
2283
  };
2284
- protoOf(WsTokens).oe = function () {
2284
+ protoOf(WsTokens).ne = function () {
2285
2285
  return this.value;
2286
2286
  };
2287
- protoOf(WsTokens).vx = function (value) {
2287
+ protoOf(WsTokens).tx = function (value) {
2288
2288
  return new WsTokens(value);
2289
2289
  };
2290
2290
  protoOf(WsTokens).copy = function (value, $super) {
2291
2291
  value = value === VOID ? this.value : value;
2292
- return $super === VOID ? this.vx(value) : $super.vx.call(this, value);
2292
+ return $super === VOID ? this.tx(value) : $super.tx.call(this, value);
2293
2293
  };
2294
2294
  protoOf(WsTokens).toString = function () {
2295
2295
  return 'WsTokens(value=' + toString(this.value) + ')';
@@ -2300,32 +2300,32 @@ function WsToken(type, value, coordinates) {
2300
2300
  this.value = value;
2301
2301
  this.coordinates = coordinates;
2302
2302
  }
2303
- protoOf(WsToken).gx = function () {
2303
+ protoOf(WsToken).ex = function () {
2304
2304
  return this.type;
2305
2305
  };
2306
- protoOf(WsToken).n1 = function () {
2306
+ protoOf(WsToken).l1 = function () {
2307
2307
  return this.value;
2308
2308
  };
2309
- protoOf(WsToken).wx = function () {
2309
+ protoOf(WsToken).ux = function () {
2310
2310
  return this.coordinates;
2311
2311
  };
2312
- protoOf(WsToken).oe = function () {
2312
+ protoOf(WsToken).ne = function () {
2313
2313
  return this.type;
2314
2314
  };
2315
- protoOf(WsToken).pe = function () {
2315
+ protoOf(WsToken).oe = function () {
2316
2316
  return this.value;
2317
2317
  };
2318
- protoOf(WsToken).qj = function () {
2318
+ protoOf(WsToken).oj = function () {
2319
2319
  return this.coordinates;
2320
2320
  };
2321
- protoOf(WsToken).xx = function (type, value, coordinates) {
2321
+ protoOf(WsToken).vx = function (type, value, coordinates) {
2322
2322
  return new WsToken(type, value, coordinates);
2323
2323
  };
2324
2324
  protoOf(WsToken).copy = function (type, value, coordinates, $super) {
2325
2325
  type = type === VOID ? this.type : type;
2326
2326
  value = value === VOID ? this.value : value;
2327
2327
  coordinates = coordinates === VOID ? this.coordinates : coordinates;
2328
- return $super === VOID ? this.xx(type, value, coordinates) : $super.xx.call(this, type, value, coordinates);
2328
+ return $super === VOID ? this.vx(type, value, coordinates) : $super.vx.call(this, type, value, coordinates);
2329
2329
  };
2330
2330
  protoOf(WsToken).toString = function () {
2331
2331
  return 'WsToken(type=' + this.type + ', value=' + this.value + ', coordinates=' + this.coordinates.toString() + ')';
@@ -2357,32 +2357,32 @@ function WsCoordinates(line, position, idxAndLength) {
2357
2357
  this.position = position;
2358
2358
  this.idxAndLength = idxAndLength;
2359
2359
  }
2360
- protoOf(WsCoordinates).yx = function () {
2360
+ protoOf(WsCoordinates).wx = function () {
2361
2361
  return this.line;
2362
2362
  };
2363
- protoOf(WsCoordinates).zx = function () {
2363
+ protoOf(WsCoordinates).xx = function () {
2364
2364
  return this.position;
2365
2365
  };
2366
- protoOf(WsCoordinates).ay = function () {
2366
+ protoOf(WsCoordinates).yx = function () {
2367
2367
  return this.idxAndLength;
2368
2368
  };
2369
- protoOf(WsCoordinates).oe = function () {
2369
+ protoOf(WsCoordinates).ne = function () {
2370
2370
  return this.line;
2371
2371
  };
2372
- protoOf(WsCoordinates).pe = function () {
2372
+ protoOf(WsCoordinates).oe = function () {
2373
2373
  return this.position;
2374
2374
  };
2375
- protoOf(WsCoordinates).qj = function () {
2375
+ protoOf(WsCoordinates).oj = function () {
2376
2376
  return this.idxAndLength;
2377
2377
  };
2378
- protoOf(WsCoordinates).by = function (line, position, idxAndLength) {
2378
+ protoOf(WsCoordinates).zx = function (line, position, idxAndLength) {
2379
2379
  return new WsCoordinates(line, position, idxAndLength);
2380
2380
  };
2381
2381
  protoOf(WsCoordinates).copy = function (line, position, idxAndLength, $super) {
2382
2382
  line = line === VOID ? this.line : line;
2383
2383
  position = position === VOID ? this.position : position;
2384
2384
  idxAndLength = idxAndLength === VOID ? this.idxAndLength : idxAndLength;
2385
- return $super === VOID ? this.by(line, position, idxAndLength) : $super.by.call(this, line, position, idxAndLength);
2385
+ return $super === VOID ? this.zx(line, position, idxAndLength) : $super.zx.call(this, line, position, idxAndLength);
2386
2386
  };
2387
2387
  protoOf(WsCoordinates).toString = function () {
2388
2388
  return 'WsCoordinates(line=' + this.line + ', position=' + this.position + ', idxAndLength=' + this.idxAndLength.toString() + ')';
@@ -2412,25 +2412,25 @@ function WsIndex(idx, length) {
2412
2412
  this.idx = idx;
2413
2413
  this.length = length;
2414
2414
  }
2415
- protoOf(WsIndex).cy = function () {
2415
+ protoOf(WsIndex).ay = function () {
2416
2416
  return this.idx;
2417
2417
  };
2418
2418
  protoOf(WsIndex).a = function () {
2419
2419
  return this.length;
2420
2420
  };
2421
- protoOf(WsIndex).oe = function () {
2421
+ protoOf(WsIndex).ne = function () {
2422
2422
  return this.idx;
2423
2423
  };
2424
- protoOf(WsIndex).pe = function () {
2424
+ protoOf(WsIndex).oe = function () {
2425
2425
  return this.length;
2426
2426
  };
2427
- protoOf(WsIndex).dy = function (idx, length) {
2427
+ protoOf(WsIndex).by = 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 $super === VOID ? this.dy(idx, length) : $super.dy.call(this, idx, length);
2433
+ return $super === VOID ? this.by(idx, length) : $super.by.call(this, idx, length);
2434
2434
  };
2435
2435
  protoOf(WsIndex).toString = function () {
2436
2436
  return 'WsIndex(idx=' + this.idx + ', length=' + this.length + ')';
@@ -2452,13 +2452,13 @@ protoOf(WsIndex).equals = function (other) {
2452
2452
  return true;
2453
2453
  };
2454
2454
  function produce_18(_this__u8e3s4) {
2455
- return new WsToken(name(_this__u8e3s4.ur_1), _this__u8e3s4.tr_1, produce_19(_this__u8e3s4.vr_1));
2455
+ return new WsToken(name(_this__u8e3s4.sr_1), _this__u8e3s4.rr_1, produce_19(_this__u8e3s4.tr_1));
2456
2456
  }
2457
2457
  function produce_19(_this__u8e3s4) {
2458
- return new WsCoordinates(_this__u8e3s4.wr_1, _this__u8e3s4.xr_1, produce_20(_this__u8e3s4.yr_1));
2458
+ return new WsCoordinates(_this__u8e3s4.ur_1, _this__u8e3s4.vr_1, produce_20(_this__u8e3s4.wr_1));
2459
2459
  }
2460
2460
  function produce_20(_this__u8e3s4) {
2461
- return new WsIndex(_this__u8e3s4.zu_1, _this__u8e3s4.av_1);
2461
+ return new WsIndex(_this__u8e3s4.xu_1, _this__u8e3s4.yu_1);
2462
2462
  }
2463
2463
  function WsError(line, position, index, length, value) {
2464
2464
  this.line = line;
@@ -2467,37 +2467,37 @@ function WsError(line, position, index, length, value) {
2467
2467
  this.length = length;
2468
2468
  this.value = value;
2469
2469
  }
2470
- protoOf(WsError).yx = function () {
2470
+ protoOf(WsError).wx = function () {
2471
2471
  return this.line;
2472
2472
  };
2473
- protoOf(WsError).zx = function () {
2473
+ protoOf(WsError).xx = function () {
2474
2474
  return this.position;
2475
2475
  };
2476
- protoOf(WsError).ey = function () {
2476
+ protoOf(WsError).cy = function () {
2477
2477
  return this.index;
2478
2478
  };
2479
2479
  protoOf(WsError).a = function () {
2480
2480
  return this.length;
2481
2481
  };
2482
- protoOf(WsError).n1 = function () {
2482
+ protoOf(WsError).l1 = function () {
2483
2483
  return this.value;
2484
2484
  };
2485
- protoOf(WsError).oe = function () {
2485
+ protoOf(WsError).ne = function () {
2486
2486
  return this.line;
2487
2487
  };
2488
- protoOf(WsError).pe = function () {
2488
+ protoOf(WsError).oe = function () {
2489
2489
  return this.position;
2490
2490
  };
2491
- protoOf(WsError).qj = function () {
2491
+ protoOf(WsError).oj = function () {
2492
2492
  return this.index;
2493
2493
  };
2494
- protoOf(WsError).dw = function () {
2494
+ protoOf(WsError).bw = function () {
2495
2495
  return this.length;
2496
2496
  };
2497
- protoOf(WsError).ew = function () {
2497
+ protoOf(WsError).cw = function () {
2498
2498
  return this.value;
2499
2499
  };
2500
- protoOf(WsError).fy = function (line, position, index, length, value) {
2500
+ protoOf(WsError).dy = function (line, position, index, length, value) {
2501
2501
  return new WsError(line, position, index, length, value);
2502
2502
  };
2503
2503
  protoOf(WsError).copy = function (line, position, index, length, value, $super) {
@@ -2506,7 +2506,7 @@ protoOf(WsError).copy = function (line, position, index, length, value, $super)
2506
2506
  index = index === VOID ? this.index : index;
2507
2507
  length = length === VOID ? this.length : length;
2508
2508
  value = value === VOID ? this.value : value;
2509
- return $super === VOID ? this.fy(line, position, index, length, value) : $super.fy.call(this, line, position, index, length, value);
2509
+ return $super === VOID ? this.dy(line, position, index, length, value) : $super.dy.call(this, line, position, index, length, value);
2510
2510
  };
2511
2511
  protoOf(WsError).toString = function () {
2512
2512
  return 'WsError(line=' + this.line + ', position=' + this.position + ', index=' + this.index + ', length=' + this.length + ', value=' + this.value + ')';
@@ -2537,67 +2537,67 @@ protoOf(WsError).equals = function (other) {
2537
2537
  return true;
2538
2538
  };
2539
2539
  function produce_21(_this__u8e3s4) {
2540
- return new WsError(_this__u8e3s4.bs_1.wr_1, _this__u8e3s4.bs_1.xr_1, _this__u8e3s4.bs_1.yr_1.zu_1 - _this__u8e3s4.bs_1.yr_1.av_1 | 0, _this__u8e3s4.bs_1.yr_1.av_1, _this__u8e3s4.e());
2540
+ return new WsError(_this__u8e3s4.zr_1.ur_1, _this__u8e3s4.zr_1.vr_1, _this__u8e3s4.zr_1.wr_1.xu_1 - _this__u8e3s4.zr_1.wr_1.yu_1 | 0, _this__u8e3s4.zr_1.wr_1.yu_1, _this__u8e3s4.e());
2541
2541
  }
2542
2542
  //region block: post-declaration
2543
2543
  defineProp(protoOf(WsType), 'identifier', function () {
2544
- return this.xq();
2544
+ return this.vq();
2545
2545
  });
2546
2546
  defineProp(protoOf(WsType), 'comment', function () {
2547
- return this.pv();
2547
+ return this.nv();
2548
2548
  });
2549
2549
  defineProp(protoOf(WsEndpoint), 'identifier', function () {
2550
- return this.xq();
2550
+ return this.vq();
2551
2551
  });
2552
2552
  defineProp(protoOf(WsEndpoint), 'comment', function () {
2553
- return this.pv();
2553
+ return this.nv();
2554
2554
  });
2555
2555
  defineProp(protoOf(WsEnum), 'identifier', function () {
2556
- return this.xq();
2556
+ return this.vq();
2557
2557
  });
2558
2558
  defineProp(protoOf(WsEnum), 'comment', function () {
2559
- return this.pv();
2559
+ return this.nv();
2560
2560
  });
2561
2561
  defineProp(protoOf(WsUnion), 'identifier', function () {
2562
- return this.xq();
2562
+ return this.vq();
2563
2563
  });
2564
2564
  defineProp(protoOf(WsUnion), 'comment', function () {
2565
- return this.pv();
2565
+ return this.nv();
2566
2566
  });
2567
2567
  defineProp(protoOf(WsChannel), 'identifier', function () {
2568
- return this.xq();
2568
+ return this.vq();
2569
2569
  });
2570
2570
  defineProp(protoOf(WsChannel), 'comment', function () {
2571
- return this.pv();
2571
+ return this.nv();
2572
2572
  });
2573
2573
  defineProp(protoOf(WsRefined), 'identifier', function () {
2574
- return this.xq();
2574
+ return this.vq();
2575
2575
  });
2576
2576
  defineProp(protoOf(WsRefined), 'comment', function () {
2577
- return this.pv();
2577
+ return this.nv();
2578
2578
  });
2579
2579
  defineProp(protoOf(WsMethod), 'name', protoOf(WsMethod).m);
2580
- defineProp(protoOf(WsMethod), 'ordinal', protoOf(WsMethod).d3);
2580
+ defineProp(protoOf(WsMethod), 'ordinal', protoOf(WsMethod).c3);
2581
2581
  defineProp(protoOf(WsAny), 'isNullable', function () {
2582
- return this.fu();
2582
+ return this.du();
2583
2583
  });
2584
2584
  defineProp(protoOf(WsUnit), 'isNullable', function () {
2585
- return this.fu();
2585
+ return this.du();
2586
2586
  });
2587
2587
  defineProp(protoOf(WsIterable), 'isNullable', function () {
2588
- return this.fu();
2588
+ return this.du();
2589
2589
  });
2590
2590
  defineProp(protoOf(WsDict), 'isNullable', function () {
2591
- return this.fu();
2591
+ return this.du();
2592
2592
  });
2593
2593
  defineProp(protoOf(WsCustom), 'isNullable', function () {
2594
- return this.fu();
2594
+ return this.du();
2595
2595
  });
2596
2596
  defineProp(protoOf(WsPrimitive), 'isNullable', function () {
2597
- return this.fu();
2597
+ return this.du();
2598
2598
  });
2599
2599
  defineProp(protoOf(WsPrimitiveType), 'name', protoOf(WsPrimitiveType).m);
2600
- defineProp(protoOf(WsPrimitiveType), 'ordinal', protoOf(WsPrimitiveType).d3);
2600
+ defineProp(protoOf(WsPrimitiveType), 'ordinal', protoOf(WsPrimitiveType).c3);
2601
2601
  //endregion
2602
2602
  //region block: exports
2603
2603
  WsMethod.values = values;