@flock/wirespec 0.18.1-RC.2 → 0.18.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/clikt-clikt-mordant.mjs +79 -79
- package/clikt-clikt.mjs +1265 -1265
- package/clikt-clikt.mjs.map +1 -1
- package/colormath-root-colormath.mjs +433 -433
- package/kotlin-kotlin-stdlib.mjs +29 -23
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlin-openapi-bindings.mjs +5407 -5405
- package/kotlin-openapi-bindings.mjs.map +1 -1
- package/kotlin-rgxgen.mjs +1760 -1760
- package/kotlinx-io-kotlinx-io-core.mjs +404 -404
- package/kotlinx-serialization-kotlinx-serialization-core.mjs +1701 -1701
- package/kotlinx-serialization-kotlinx-serialization-json.mjs +1320 -1319
- package/kotlinx-serialization-kotlinx-serialization-json.mjs.map +1 -1
- package/mordant-mordant.mjs +1198 -1198
- package/package.json +1 -1
- package/wirespec-fetch.mjs +13 -19
- package/wirespec-src-compiler-core.mjs +193 -206
- package/wirespec-src-compiler-core.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-java.mjs +718 -784
- package/wirespec-src-compiler-emitters-java.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-kotlin.mjs +357 -464
- package/wirespec-src-compiler-emitters-kotlin.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-python.mjs +628 -757
- package/wirespec-src-compiler-emitters-python.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-rust.mjs +1582 -1708
- package/wirespec-src-compiler-emitters-rust.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-scala.mjs +680 -635
- package/wirespec-src-compiler-emitters-scala.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-typescript.mjs +627 -610
- package/wirespec-src-compiler-emitters-typescript.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-wirespec.mjs +40 -40
- package/wirespec-src-compiler-emitters-wirespec.mjs.map +1 -1
- package/wirespec-src-compiler-ir.mjs +5428 -6057
- package/wirespec-src-compiler-ir.mjs.map +1 -1
- package/wirespec-src-compiler-lib.mjs +279 -279
- package/wirespec-src-converter-avro.mjs +559 -559
- package/wirespec-src-converter-avro.mjs.map +1 -1
- package/wirespec-src-converter-openapi.mjs +802 -404
- package/wirespec-src-converter-openapi.mjs.map +1 -1
- package/wirespec-src-plugin-arguments.mjs +144 -144
- package/wirespec-src-plugin-cli.mjs +87 -87
- package/wirespec-src-plugin-npm.mjs +44 -25
- package/wirespec-src-plugin-npm.mjs.map +1 -1
- package/wirespec-src-tools-generator.mjs +13 -13
|
@@ -134,18 +134,18 @@ function WsNode() {
|
|
|
134
134
|
function WsAST(modules) {
|
|
135
135
|
this.modules = modules;
|
|
136
136
|
}
|
|
137
|
-
protoOf(WsAST).
|
|
137
|
+
protoOf(WsAST).iv = function () {
|
|
138
138
|
return this.modules;
|
|
139
139
|
};
|
|
140
140
|
protoOf(WsAST).ne = function () {
|
|
141
141
|
return this.modules;
|
|
142
142
|
};
|
|
143
|
-
protoOf(WsAST).
|
|
143
|
+
protoOf(WsAST).jv = 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.
|
|
148
|
+
return $super === VOID ? this.jv(modules) : $super.jv.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).
|
|
168
|
+
protoOf(WsModule).kv = function () {
|
|
169
169
|
return this.statements;
|
|
170
170
|
};
|
|
171
171
|
protoOf(WsModule).ne = function () {
|
|
172
172
|
return this.statements;
|
|
173
173
|
};
|
|
174
|
-
protoOf(WsModule).
|
|
174
|
+
protoOf(WsModule).lv = 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.
|
|
179
|
+
return $super === VOID ? this.lv(statements) : $super.lv.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.
|
|
200
|
-
this.
|
|
199
|
+
this.nv_1 = identifier;
|
|
200
|
+
this.ov_1 = comment;
|
|
201
201
|
this.shape = shape;
|
|
202
202
|
}
|
|
203
203
|
protoOf(WsType).vq = function () {
|
|
204
|
-
return this.
|
|
204
|
+
return this.nv_1;
|
|
205
205
|
};
|
|
206
|
-
protoOf(WsType).
|
|
207
|
-
return this.
|
|
206
|
+
protoOf(WsType).mv = function () {
|
|
207
|
+
return this.ov_1;
|
|
208
208
|
};
|
|
209
|
-
protoOf(WsType).
|
|
209
|
+
protoOf(WsType).pv = function () {
|
|
210
210
|
return this.shape;
|
|
211
211
|
};
|
|
212
212
|
protoOf(WsType).ne = function () {
|
|
213
|
-
return this.
|
|
213
|
+
return this.nv_1;
|
|
214
214
|
};
|
|
215
215
|
protoOf(WsType).oe = function () {
|
|
216
|
-
return this.
|
|
216
|
+
return this.ov_1;
|
|
217
217
|
};
|
|
218
218
|
protoOf(WsType).oj = function () {
|
|
219
219
|
return this.shape;
|
|
220
220
|
};
|
|
221
|
-
protoOf(WsType).
|
|
221
|
+
protoOf(WsType).qv = 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.
|
|
226
|
-
comment = comment === VOID ? this.
|
|
225
|
+
identifier = identifier === VOID ? this.nv_1 : identifier;
|
|
226
|
+
comment = comment === VOID ? this.ov_1 : comment;
|
|
227
227
|
shape = shape === VOID ? this.shape : shape;
|
|
228
|
-
return $super === VOID ? this.
|
|
228
|
+
return $super === VOID ? this.qv(identifier, comment, shape) : $super.qv.call(this, identifier, comment, shape);
|
|
229
229
|
};
|
|
230
230
|
protoOf(WsType).toString = function () {
|
|
231
|
-
return 'WsType(identifier=' + this.
|
|
231
|
+
return 'WsType(identifier=' + this.nv_1 + ', comment=' + this.ov_1 + ', shape=' + this.shape.toString() + ')';
|
|
232
232
|
};
|
|
233
233
|
protoOf(WsType).hashCode = function () {
|
|
234
|
-
var result = getStringHashCode(this.
|
|
235
|
-
result = imul(result, 31) + (this.
|
|
234
|
+
var result = getStringHashCode(this.nv_1);
|
|
235
|
+
result = imul(result, 31) + (this.ov_1 == null ? 0 : getStringHashCode(this.ov_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.
|
|
244
|
+
if (!(this.nv_1 === other.nv_1))
|
|
245
245
|
return false;
|
|
246
|
-
if (!(this.
|
|
246
|
+
if (!(this.ov_1 == other.ov_1))
|
|
247
247
|
return false;
|
|
248
248
|
if (!this.shape.equals(other.shape))
|
|
249
249
|
return false;
|
|
@@ -258,12 +258,12 @@ protoOf(WsShape).l1 = function () {
|
|
|
258
258
|
protoOf(WsShape).ne = function () {
|
|
259
259
|
return this.value;
|
|
260
260
|
};
|
|
261
|
-
protoOf(WsShape).
|
|
261
|
+
protoOf(WsShape).rv = 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.
|
|
266
|
+
return $super === VOID ? this.rv(value) : $super.rv.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.
|
|
285
|
-
this.
|
|
284
|
+
this.sv_1 = identifier;
|
|
285
|
+
this.tv_1 = comment;
|
|
286
286
|
this.method = method;
|
|
287
287
|
this.path = path;
|
|
288
288
|
this.queries = queries;
|
|
@@ -291,73 +291,73 @@ function WsEndpoint(identifier, comment, method, path, queries, headers, request
|
|
|
291
291
|
this.responses = responses;
|
|
292
292
|
}
|
|
293
293
|
protoOf(WsEndpoint).vq = function () {
|
|
294
|
-
return this.
|
|
294
|
+
return this.sv_1;
|
|
295
295
|
};
|
|
296
|
-
protoOf(WsEndpoint).
|
|
297
|
-
return this.
|
|
296
|
+
protoOf(WsEndpoint).mv = function () {
|
|
297
|
+
return this.tv_1;
|
|
298
298
|
};
|
|
299
|
-
protoOf(WsEndpoint).
|
|
299
|
+
protoOf(WsEndpoint).uv = function () {
|
|
300
300
|
return this.method;
|
|
301
301
|
};
|
|
302
|
-
protoOf(WsEndpoint).
|
|
302
|
+
protoOf(WsEndpoint).vv = function () {
|
|
303
303
|
return this.path;
|
|
304
304
|
};
|
|
305
|
-
protoOf(WsEndpoint).
|
|
305
|
+
protoOf(WsEndpoint).wv = function () {
|
|
306
306
|
return this.queries;
|
|
307
307
|
};
|
|
308
|
-
protoOf(WsEndpoint).
|
|
308
|
+
protoOf(WsEndpoint).xv = function () {
|
|
309
309
|
return this.headers;
|
|
310
310
|
};
|
|
311
|
-
protoOf(WsEndpoint).
|
|
311
|
+
protoOf(WsEndpoint).yv = function () {
|
|
312
312
|
return this.requests;
|
|
313
313
|
};
|
|
314
|
-
protoOf(WsEndpoint).
|
|
314
|
+
protoOf(WsEndpoint).zv = function () {
|
|
315
315
|
return this.responses;
|
|
316
316
|
};
|
|
317
317
|
protoOf(WsEndpoint).ne = function () {
|
|
318
|
-
return this.
|
|
318
|
+
return this.sv_1;
|
|
319
319
|
};
|
|
320
320
|
protoOf(WsEndpoint).oe = function () {
|
|
321
|
-
return this.
|
|
321
|
+
return this.tv_1;
|
|
322
322
|
};
|
|
323
323
|
protoOf(WsEndpoint).oj = function () {
|
|
324
324
|
return this.method;
|
|
325
325
|
};
|
|
326
|
-
protoOf(WsEndpoint).
|
|
326
|
+
protoOf(WsEndpoint).aw = function () {
|
|
327
327
|
return this.path;
|
|
328
328
|
};
|
|
329
|
-
protoOf(WsEndpoint).
|
|
329
|
+
protoOf(WsEndpoint).bw = function () {
|
|
330
330
|
return this.queries;
|
|
331
331
|
};
|
|
332
|
-
protoOf(WsEndpoint).
|
|
332
|
+
protoOf(WsEndpoint).cw = function () {
|
|
333
333
|
return this.headers;
|
|
334
334
|
};
|
|
335
|
-
protoOf(WsEndpoint).
|
|
335
|
+
protoOf(WsEndpoint).dw = function () {
|
|
336
336
|
return this.requests;
|
|
337
337
|
};
|
|
338
|
-
protoOf(WsEndpoint).
|
|
338
|
+
protoOf(WsEndpoint).ew = function () {
|
|
339
339
|
return this.responses;
|
|
340
340
|
};
|
|
341
|
-
protoOf(WsEndpoint).
|
|
341
|
+
protoOf(WsEndpoint).fw = function (identifier, comment, method, path, queries, headers, requests, responses) {
|
|
342
342
|
return new WsEndpoint(identifier, comment, method, path, queries, headers, requests, responses);
|
|
343
343
|
};
|
|
344
344
|
protoOf(WsEndpoint).copy = function (identifier, comment, method, path, queries, headers, requests, responses, $super) {
|
|
345
|
-
identifier = identifier === VOID ? this.
|
|
346
|
-
comment = comment === VOID ? this.
|
|
345
|
+
identifier = identifier === VOID ? this.sv_1 : identifier;
|
|
346
|
+
comment = comment === VOID ? this.tv_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.
|
|
353
|
+
return $super === VOID ? this.fw(identifier, comment, method, path, queries, headers, requests, responses) : $super.fw.call(this, identifier, comment, method, path, queries, headers, requests, responses);
|
|
354
354
|
};
|
|
355
355
|
protoOf(WsEndpoint).toString = function () {
|
|
356
|
-
return 'WsEndpoint(identifier=' + this.
|
|
356
|
+
return 'WsEndpoint(identifier=' + this.sv_1 + ', comment=' + this.tv_1 + ', method=' + this.method.toString() + ', path=' + toString(this.path) + ', queries=' + toString(this.queries) + ', headers=' + toString(this.headers) + ', requests=' + toString(this.requests) + ', responses=' + toString(this.responses) + ')';
|
|
357
357
|
};
|
|
358
358
|
protoOf(WsEndpoint).hashCode = function () {
|
|
359
|
-
var result = getStringHashCode(this.
|
|
360
|
-
result = imul(result, 31) + (this.
|
|
359
|
+
var result = getStringHashCode(this.sv_1);
|
|
360
|
+
result = imul(result, 31) + (this.tv_1 == null ? 0 : getStringHashCode(this.tv_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.
|
|
374
|
+
if (!(this.sv_1 === other.sv_1))
|
|
375
375
|
return false;
|
|
376
|
-
if (!(this.
|
|
376
|
+
if (!(this.tv_1 == other.tv_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.
|
|
394
|
-
this.
|
|
393
|
+
this.gw_1 = identifier;
|
|
394
|
+
this.hw_1 = comment;
|
|
395
395
|
this.entries = entries;
|
|
396
396
|
}
|
|
397
397
|
protoOf(WsEnum).vq = function () {
|
|
398
|
-
return this.
|
|
398
|
+
return this.gw_1;
|
|
399
399
|
};
|
|
400
|
-
protoOf(WsEnum).
|
|
401
|
-
return this.
|
|
400
|
+
protoOf(WsEnum).mv = function () {
|
|
401
|
+
return this.hw_1;
|
|
402
402
|
};
|
|
403
403
|
protoOf(WsEnum).j1 = function () {
|
|
404
404
|
return this.entries;
|
|
405
405
|
};
|
|
406
406
|
protoOf(WsEnum).ne = function () {
|
|
407
|
-
return this.
|
|
407
|
+
return this.gw_1;
|
|
408
408
|
};
|
|
409
409
|
protoOf(WsEnum).oe = function () {
|
|
410
|
-
return this.
|
|
410
|
+
return this.hw_1;
|
|
411
411
|
};
|
|
412
412
|
protoOf(WsEnum).oj = function () {
|
|
413
413
|
return this.entries;
|
|
414
414
|
};
|
|
415
|
-
protoOf(WsEnum).
|
|
415
|
+
protoOf(WsEnum).iw = 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.
|
|
420
|
-
comment = comment === VOID ? this.
|
|
419
|
+
identifier = identifier === VOID ? this.gw_1 : identifier;
|
|
420
|
+
comment = comment === VOID ? this.hw_1 : comment;
|
|
421
421
|
entries = entries === VOID ? this.entries : entries;
|
|
422
|
-
return $super === VOID ? this.
|
|
422
|
+
return $super === VOID ? this.iw(identifier, comment, entries) : $super.iw.call(this, identifier, comment, entries);
|
|
423
423
|
};
|
|
424
424
|
protoOf(WsEnum).toString = function () {
|
|
425
|
-
return 'WsEnum(identifier=' + this.
|
|
425
|
+
return 'WsEnum(identifier=' + this.gw_1 + ', comment=' + this.hw_1 + ', entries=' + toString(this.entries) + ')';
|
|
426
426
|
};
|
|
427
427
|
protoOf(WsEnum).hashCode = function () {
|
|
428
|
-
var result = getStringHashCode(this.
|
|
429
|
-
result = imul(result, 31) + (this.
|
|
428
|
+
var result = getStringHashCode(this.gw_1);
|
|
429
|
+
result = imul(result, 31) + (this.hw_1 == null ? 0 : getStringHashCode(this.hw_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.
|
|
438
|
+
if (!(this.gw_1 === other.gw_1))
|
|
439
439
|
return false;
|
|
440
|
-
if (!(this.
|
|
440
|
+
if (!(this.hw_1 == other.hw_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.
|
|
448
|
-
this.
|
|
447
|
+
this.jw_1 = identifier;
|
|
448
|
+
this.kw_1 = comment;
|
|
449
449
|
this.entries = entries;
|
|
450
450
|
}
|
|
451
451
|
protoOf(WsUnion).vq = function () {
|
|
452
|
-
return this.
|
|
452
|
+
return this.jw_1;
|
|
453
453
|
};
|
|
454
|
-
protoOf(WsUnion).
|
|
455
|
-
return this.
|
|
454
|
+
protoOf(WsUnion).mv = function () {
|
|
455
|
+
return this.kw_1;
|
|
456
456
|
};
|
|
457
457
|
protoOf(WsUnion).j1 = function () {
|
|
458
458
|
return this.entries;
|
|
459
459
|
};
|
|
460
460
|
protoOf(WsUnion).ne = function () {
|
|
461
|
-
return this.
|
|
461
|
+
return this.jw_1;
|
|
462
462
|
};
|
|
463
463
|
protoOf(WsUnion).oe = function () {
|
|
464
|
-
return this.
|
|
464
|
+
return this.kw_1;
|
|
465
465
|
};
|
|
466
466
|
protoOf(WsUnion).oj = function () {
|
|
467
467
|
return this.entries;
|
|
468
468
|
};
|
|
469
|
-
protoOf(WsUnion).
|
|
469
|
+
protoOf(WsUnion).lw = 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.
|
|
474
|
-
comment = comment === VOID ? this.
|
|
473
|
+
identifier = identifier === VOID ? this.jw_1 : identifier;
|
|
474
|
+
comment = comment === VOID ? this.kw_1 : comment;
|
|
475
475
|
entries = entries === VOID ? this.entries : entries;
|
|
476
|
-
return $super === VOID ? this.
|
|
476
|
+
return $super === VOID ? this.lw(identifier, comment, entries) : $super.lw.call(this, identifier, comment, entries);
|
|
477
477
|
};
|
|
478
478
|
protoOf(WsUnion).toString = function () {
|
|
479
|
-
return 'WsUnion(identifier=' + this.
|
|
479
|
+
return 'WsUnion(identifier=' + this.jw_1 + ', comment=' + this.kw_1 + ', entries=' + toString(this.entries) + ')';
|
|
480
480
|
};
|
|
481
481
|
protoOf(WsUnion).hashCode = function () {
|
|
482
|
-
var result = getStringHashCode(this.
|
|
483
|
-
result = imul(result, 31) + (this.
|
|
482
|
+
var result = getStringHashCode(this.jw_1);
|
|
483
|
+
result = imul(result, 31) + (this.kw_1 == null ? 0 : getStringHashCode(this.kw_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.
|
|
492
|
+
if (!(this.jw_1 === other.jw_1))
|
|
493
493
|
return false;
|
|
494
|
-
if (!(this.
|
|
494
|
+
if (!(this.kw_1 == other.kw_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.
|
|
502
|
-
this.
|
|
501
|
+
this.mw_1 = identifier;
|
|
502
|
+
this.nw_1 = comment;
|
|
503
503
|
this.reference = reference;
|
|
504
504
|
}
|
|
505
505
|
protoOf(WsChannel).vq = function () {
|
|
506
|
-
return this.
|
|
506
|
+
return this.mw_1;
|
|
507
507
|
};
|
|
508
|
-
protoOf(WsChannel).
|
|
509
|
-
return this.
|
|
508
|
+
protoOf(WsChannel).mv = function () {
|
|
509
|
+
return this.nw_1;
|
|
510
510
|
};
|
|
511
|
-
protoOf(WsChannel).
|
|
511
|
+
protoOf(WsChannel).ow = function () {
|
|
512
512
|
return this.reference;
|
|
513
513
|
};
|
|
514
514
|
protoOf(WsChannel).ne = function () {
|
|
515
|
-
return this.
|
|
515
|
+
return this.mw_1;
|
|
516
516
|
};
|
|
517
517
|
protoOf(WsChannel).oe = function () {
|
|
518
|
-
return this.
|
|
518
|
+
return this.nw_1;
|
|
519
519
|
};
|
|
520
520
|
protoOf(WsChannel).oj = function () {
|
|
521
521
|
return this.reference;
|
|
522
522
|
};
|
|
523
|
-
protoOf(WsChannel).
|
|
523
|
+
protoOf(WsChannel).pw = 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.
|
|
528
|
-
comment = comment === VOID ? this.
|
|
527
|
+
identifier = identifier === VOID ? this.mw_1 : identifier;
|
|
528
|
+
comment = comment === VOID ? this.nw_1 : comment;
|
|
529
529
|
reference = reference === VOID ? this.reference : reference;
|
|
530
|
-
return $super === VOID ? this.
|
|
530
|
+
return $super === VOID ? this.pw(identifier, comment, reference) : $super.pw.call(this, identifier, comment, reference);
|
|
531
531
|
};
|
|
532
532
|
protoOf(WsChannel).toString = function () {
|
|
533
|
-
return 'WsChannel(identifier=' + this.
|
|
533
|
+
return 'WsChannel(identifier=' + this.mw_1 + ', comment=' + this.nw_1 + ', reference=' + toString(this.reference) + ')';
|
|
534
534
|
};
|
|
535
535
|
protoOf(WsChannel).hashCode = function () {
|
|
536
|
-
var result = getStringHashCode(this.
|
|
537
|
-
result = imul(result, 31) + (this.
|
|
536
|
+
var result = getStringHashCode(this.mw_1);
|
|
537
|
+
result = imul(result, 31) + (this.nw_1 == null ? 0 : getStringHashCode(this.nw_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.
|
|
546
|
+
if (!(this.mw_1 === other.mw_1))
|
|
547
547
|
return false;
|
|
548
|
-
if (!(this.
|
|
548
|
+
if (!(this.nw_1 == other.nw_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.
|
|
556
|
-
this.
|
|
555
|
+
this.qw_1 = identifier;
|
|
556
|
+
this.rw_1 = comment;
|
|
557
557
|
this.reference = reference;
|
|
558
558
|
}
|
|
559
559
|
protoOf(WsRefined).vq = function () {
|
|
560
|
-
return this.
|
|
560
|
+
return this.qw_1;
|
|
561
561
|
};
|
|
562
|
-
protoOf(WsRefined).
|
|
563
|
-
return this.
|
|
562
|
+
protoOf(WsRefined).mv = function () {
|
|
563
|
+
return this.rw_1;
|
|
564
564
|
};
|
|
565
|
-
protoOf(WsRefined).
|
|
565
|
+
protoOf(WsRefined).ow = function () {
|
|
566
566
|
return this.reference;
|
|
567
567
|
};
|
|
568
568
|
protoOf(WsRefined).ne = function () {
|
|
569
|
-
return this.
|
|
569
|
+
return this.qw_1;
|
|
570
570
|
};
|
|
571
571
|
protoOf(WsRefined).oe = function () {
|
|
572
|
-
return this.
|
|
572
|
+
return this.rw_1;
|
|
573
573
|
};
|
|
574
574
|
protoOf(WsRefined).oj = function () {
|
|
575
575
|
return this.reference;
|
|
576
576
|
};
|
|
577
|
-
protoOf(WsRefined).
|
|
577
|
+
protoOf(WsRefined).pw = 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.
|
|
582
|
-
comment = comment === VOID ? this.
|
|
581
|
+
identifier = identifier === VOID ? this.qw_1 : identifier;
|
|
582
|
+
comment = comment === VOID ? this.rw_1 : comment;
|
|
583
583
|
reference = reference === VOID ? this.reference : reference;
|
|
584
|
-
return $super === VOID ? this.
|
|
584
|
+
return $super === VOID ? this.pw(identifier, comment, reference) : $super.pw.call(this, identifier, comment, reference);
|
|
585
585
|
};
|
|
586
586
|
protoOf(WsRefined).toString = function () {
|
|
587
|
-
return 'WsRefined(identifier=' + this.
|
|
587
|
+
return 'WsRefined(identifier=' + this.qw_1 + ', comment=' + this.rw_1 + ', reference=' + toString(this.reference) + ')';
|
|
588
588
|
};
|
|
589
589
|
protoOf(WsRefined).hashCode = function () {
|
|
590
|
-
var result = getStringHashCode(this.
|
|
591
|
-
result = imul(result, 31) + (this.
|
|
590
|
+
var result = getStringHashCode(this.qw_1);
|
|
591
|
+
result = imul(result, 31) + (this.rw_1 == null ? 0 : getStringHashCode(this.rw_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.
|
|
600
|
+
if (!(this.qw_1 === other.qw_1))
|
|
601
601
|
return false;
|
|
602
|
-
if (!(this.
|
|
602
|
+
if (!(this.rw_1 == other.rw_1))
|
|
603
603
|
return false;
|
|
604
604
|
if (!equals(this.reference, other.reference))
|
|
605
605
|
return false;
|
|
@@ -668,12 +668,12 @@ protoOf(WsLiteral).l1 = function () {
|
|
|
668
668
|
protoOf(WsLiteral).ne = function () {
|
|
669
669
|
return this.value;
|
|
670
670
|
};
|
|
671
|
-
protoOf(WsLiteral).
|
|
671
|
+
protoOf(WsLiteral).uw = 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.
|
|
676
|
+
return $super === VOID ? this.uw(value) : $super.uw.call(this, value);
|
|
677
677
|
};
|
|
678
678
|
protoOf(WsLiteral).toString = function () {
|
|
679
679
|
return 'WsLiteral(value=' + this.value + ')';
|
|
@@ -697,7 +697,7 @@ function WsParam(identifier, reference) {
|
|
|
697
697
|
protoOf(WsParam).vq = function () {
|
|
698
698
|
return this.identifier;
|
|
699
699
|
};
|
|
700
|
-
protoOf(WsParam).
|
|
700
|
+
protoOf(WsParam).ow = function () {
|
|
701
701
|
return this.reference;
|
|
702
702
|
};
|
|
703
703
|
protoOf(WsParam).ne = function () {
|
|
@@ -706,13 +706,13 @@ protoOf(WsParam).ne = function () {
|
|
|
706
706
|
protoOf(WsParam).oe = function () {
|
|
707
707
|
return this.reference;
|
|
708
708
|
};
|
|
709
|
-
protoOf(WsParam).
|
|
709
|
+
protoOf(WsParam).vw = 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.
|
|
715
|
+
return $super === VOID ? this.vw(identifier, reference) : $super.vw.call(this, identifier, reference);
|
|
716
716
|
};
|
|
717
717
|
protoOf(WsParam).toString = function () {
|
|
718
718
|
return 'WsParam(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
|
|
@@ -742,12 +742,12 @@ protoOf(Shape_0).l1 = function () {
|
|
|
742
742
|
protoOf(Shape_0).ne = function () {
|
|
743
743
|
return this.value;
|
|
744
744
|
};
|
|
745
|
-
protoOf(Shape_0).
|
|
745
|
+
protoOf(Shape_0).rv = 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.
|
|
750
|
+
return $super === VOID ? this.rv(value) : $super.rv.call(this, value);
|
|
751
751
|
};
|
|
752
752
|
protoOf(Shape_0).toString = function () {
|
|
753
753
|
return 'Shape(value=' + toString(this.value) + ')';
|
|
@@ -771,7 +771,7 @@ function WsField(identifier, reference) {
|
|
|
771
771
|
protoOf(WsField).vq = function () {
|
|
772
772
|
return this.identifier;
|
|
773
773
|
};
|
|
774
|
-
protoOf(WsField).
|
|
774
|
+
protoOf(WsField).ow = function () {
|
|
775
775
|
return this.reference;
|
|
776
776
|
};
|
|
777
777
|
protoOf(WsField).ne = function () {
|
|
@@ -780,13 +780,13 @@ protoOf(WsField).ne = function () {
|
|
|
780
780
|
protoOf(WsField).oe = function () {
|
|
781
781
|
return this.reference;
|
|
782
782
|
};
|
|
783
|
-
protoOf(WsField).
|
|
783
|
+
protoOf(WsField).vw = 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.
|
|
789
|
+
return $super === VOID ? this.vw(identifier, reference) : $super.vw.call(this, identifier, reference);
|
|
790
790
|
};
|
|
791
791
|
protoOf(WsField).toString = function () {
|
|
792
792
|
return 'WsField(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
|
|
@@ -818,12 +818,12 @@ protoOf(WsClassIdentifier).l1 = function () {
|
|
|
818
818
|
protoOf(WsClassIdentifier).ne = function () {
|
|
819
819
|
return this.value;
|
|
820
820
|
};
|
|
821
|
-
protoOf(WsClassIdentifier).
|
|
821
|
+
protoOf(WsClassIdentifier).uw = 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.
|
|
826
|
+
return $super === VOID ? this.uw(value) : $super.uw.call(this, value);
|
|
827
827
|
};
|
|
828
828
|
protoOf(WsClassIdentifier).toString = function () {
|
|
829
829
|
return 'WsClassIdentifier(value=' + this.value + ')';
|
|
@@ -849,12 +849,12 @@ protoOf(WsFieldIdentifier).l1 = function () {
|
|
|
849
849
|
protoOf(WsFieldIdentifier).ne = function () {
|
|
850
850
|
return this.value;
|
|
851
851
|
};
|
|
852
|
-
protoOf(WsFieldIdentifier).
|
|
852
|
+
protoOf(WsFieldIdentifier).uw = 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.
|
|
857
|
+
return $super === VOID ? this.uw(value) : $super.uw.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.
|
|
877
|
+
this.ww_1 = isNullable;
|
|
878
878
|
}
|
|
879
|
-
protoOf(WsAny).
|
|
880
|
-
return this.
|
|
879
|
+
protoOf(WsAny).cu = function () {
|
|
880
|
+
return this.ww_1;
|
|
881
881
|
};
|
|
882
882
|
protoOf(WsAny).ne = function () {
|
|
883
|
-
return this.
|
|
883
|
+
return this.ww_1;
|
|
884
884
|
};
|
|
885
|
-
protoOf(WsAny).
|
|
885
|
+
protoOf(WsAny).du = function (isNullable) {
|
|
886
886
|
return new WsAny(isNullable);
|
|
887
887
|
};
|
|
888
888
|
protoOf(WsAny).copy = function (isNullable, $super) {
|
|
889
|
-
isNullable = isNullable === VOID ? this.
|
|
890
|
-
return $super === VOID ? this.
|
|
889
|
+
isNullable = isNullable === VOID ? this.ww_1 : isNullable;
|
|
890
|
+
return $super === VOID ? this.du(isNullable) : $super.du.call(this, isNullable);
|
|
891
891
|
};
|
|
892
892
|
protoOf(WsAny).toString = function () {
|
|
893
|
-
return 'WsAny(isNullable=' + this.
|
|
893
|
+
return 'WsAny(isNullable=' + this.ww_1 + ')';
|
|
894
894
|
};
|
|
895
895
|
protoOf(WsAny).hashCode = function () {
|
|
896
|
-
return getBooleanHashCode(this.
|
|
896
|
+
return getBooleanHashCode(this.ww_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.
|
|
903
|
+
if (!(this.ww_1 === other.ww_1))
|
|
904
904
|
return false;
|
|
905
905
|
return true;
|
|
906
906
|
};
|
|
907
907
|
function WsUnit(isNullable) {
|
|
908
|
-
this.
|
|
908
|
+
this.xw_1 = isNullable;
|
|
909
909
|
}
|
|
910
|
-
protoOf(WsUnit).
|
|
911
|
-
return this.
|
|
910
|
+
protoOf(WsUnit).cu = function () {
|
|
911
|
+
return this.xw_1;
|
|
912
912
|
};
|
|
913
913
|
protoOf(WsUnit).ne = function () {
|
|
914
|
-
return this.
|
|
914
|
+
return this.xw_1;
|
|
915
915
|
};
|
|
916
|
-
protoOf(WsUnit).
|
|
916
|
+
protoOf(WsUnit).du = function (isNullable) {
|
|
917
917
|
return new WsUnit(isNullable);
|
|
918
918
|
};
|
|
919
919
|
protoOf(WsUnit).copy = function (isNullable, $super) {
|
|
920
|
-
isNullable = isNullable === VOID ? this.
|
|
921
|
-
return $super === VOID ? this.
|
|
920
|
+
isNullable = isNullable === VOID ? this.xw_1 : isNullable;
|
|
921
|
+
return $super === VOID ? this.du(isNullable) : $super.du.call(this, isNullable);
|
|
922
922
|
};
|
|
923
923
|
protoOf(WsUnit).toString = function () {
|
|
924
|
-
return 'WsUnit(isNullable=' + this.
|
|
924
|
+
return 'WsUnit(isNullable=' + this.xw_1 + ')';
|
|
925
925
|
};
|
|
926
926
|
protoOf(WsUnit).hashCode = function () {
|
|
927
|
-
return getBooleanHashCode(this.
|
|
927
|
+
return getBooleanHashCode(this.xw_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.
|
|
934
|
+
if (!(this.xw_1 === other.xw_1))
|
|
935
935
|
return false;
|
|
936
936
|
return true;
|
|
937
937
|
};
|
|
938
938
|
function WsIterable(reference, isNullable) {
|
|
939
939
|
this.reference = reference;
|
|
940
|
-
this.
|
|
940
|
+
this.yw_1 = isNullable;
|
|
941
941
|
}
|
|
942
|
-
protoOf(WsIterable).
|
|
942
|
+
protoOf(WsIterable).ow = function () {
|
|
943
943
|
return this.reference;
|
|
944
944
|
};
|
|
945
|
-
protoOf(WsIterable).
|
|
946
|
-
return this.
|
|
945
|
+
protoOf(WsIterable).cu = function () {
|
|
946
|
+
return this.yw_1;
|
|
947
947
|
};
|
|
948
948
|
protoOf(WsIterable).ne = function () {
|
|
949
949
|
return this.reference;
|
|
950
950
|
};
|
|
951
951
|
protoOf(WsIterable).oe = function () {
|
|
952
|
-
return this.
|
|
952
|
+
return this.yw_1;
|
|
953
953
|
};
|
|
954
|
-
protoOf(WsIterable).
|
|
954
|
+
protoOf(WsIterable).zw = 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.
|
|
960
|
-
return $super === VOID ? this.
|
|
959
|
+
isNullable = isNullable === VOID ? this.yw_1 : isNullable;
|
|
960
|
+
return $super === VOID ? this.zw(reference, isNullable) : $super.zw.call(this, reference, isNullable);
|
|
961
961
|
};
|
|
962
962
|
protoOf(WsIterable).toString = function () {
|
|
963
|
-
return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.
|
|
963
|
+
return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.yw_1 + ')';
|
|
964
964
|
};
|
|
965
965
|
protoOf(WsIterable).hashCode = function () {
|
|
966
966
|
var result = hashCode(this.reference);
|
|
967
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
967
|
+
result = imul(result, 31) + getBooleanHashCode(this.yw_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.
|
|
977
|
+
if (!(this.yw_1 === other.yw_1))
|
|
978
978
|
return false;
|
|
979
979
|
return true;
|
|
980
980
|
};
|
|
981
981
|
function WsDict(reference, isNullable) {
|
|
982
982
|
this.reference = reference;
|
|
983
|
-
this.
|
|
983
|
+
this.ax_1 = isNullable;
|
|
984
984
|
}
|
|
985
|
-
protoOf(WsDict).
|
|
985
|
+
protoOf(WsDict).ow = function () {
|
|
986
986
|
return this.reference;
|
|
987
987
|
};
|
|
988
|
-
protoOf(WsDict).
|
|
989
|
-
return this.
|
|
988
|
+
protoOf(WsDict).cu = function () {
|
|
989
|
+
return this.ax_1;
|
|
990
990
|
};
|
|
991
991
|
protoOf(WsDict).ne = function () {
|
|
992
992
|
return this.reference;
|
|
993
993
|
};
|
|
994
994
|
protoOf(WsDict).oe = function () {
|
|
995
|
-
return this.
|
|
995
|
+
return this.ax_1;
|
|
996
996
|
};
|
|
997
|
-
protoOf(WsDict).
|
|
997
|
+
protoOf(WsDict).zw = 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.
|
|
1003
|
-
return $super === VOID ? this.
|
|
1002
|
+
isNullable = isNullable === VOID ? this.ax_1 : isNullable;
|
|
1003
|
+
return $super === VOID ? this.zw(reference, isNullable) : $super.zw.call(this, reference, isNullable);
|
|
1004
1004
|
};
|
|
1005
1005
|
protoOf(WsDict).toString = function () {
|
|
1006
|
-
return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.
|
|
1006
|
+
return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.ax_1 + ')';
|
|
1007
1007
|
};
|
|
1008
1008
|
protoOf(WsDict).hashCode = function () {
|
|
1009
1009
|
var result = hashCode(this.reference);
|
|
1010
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1010
|
+
result = imul(result, 31) + getBooleanHashCode(this.ax_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.
|
|
1020
|
+
if (!(this.ax_1 === other.ax_1))
|
|
1021
1021
|
return false;
|
|
1022
1022
|
return true;
|
|
1023
1023
|
};
|
|
1024
1024
|
function WsCustom(value, isNullable) {
|
|
1025
1025
|
this.value = value;
|
|
1026
|
-
this.
|
|
1026
|
+
this.bx_1 = isNullable;
|
|
1027
1027
|
}
|
|
1028
1028
|
protoOf(WsCustom).l1 = function () {
|
|
1029
1029
|
return this.value;
|
|
1030
1030
|
};
|
|
1031
|
-
protoOf(WsCustom).
|
|
1032
|
-
return this.
|
|
1031
|
+
protoOf(WsCustom).cu = function () {
|
|
1032
|
+
return this.bx_1;
|
|
1033
1033
|
};
|
|
1034
1034
|
protoOf(WsCustom).ne = function () {
|
|
1035
1035
|
return this.value;
|
|
1036
1036
|
};
|
|
1037
1037
|
protoOf(WsCustom).oe = function () {
|
|
1038
|
-
return this.
|
|
1038
|
+
return this.bx_1;
|
|
1039
1039
|
};
|
|
1040
|
-
protoOf(WsCustom).
|
|
1040
|
+
protoOf(WsCustom).mu = 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.
|
|
1046
|
-
return $super === VOID ? this.
|
|
1045
|
+
isNullable = isNullable === VOID ? this.bx_1 : isNullable;
|
|
1046
|
+
return $super === VOID ? this.mu(value, isNullable) : $super.mu.call(this, value, isNullable);
|
|
1047
1047
|
};
|
|
1048
1048
|
protoOf(WsCustom).toString = function () {
|
|
1049
|
-
return 'WsCustom(value=' + this.value + ', isNullable=' + this.
|
|
1049
|
+
return 'WsCustom(value=' + this.value + ', isNullable=' + this.bx_1 + ')';
|
|
1050
1050
|
};
|
|
1051
1051
|
protoOf(WsCustom).hashCode = function () {
|
|
1052
1052
|
var result = getStringHashCode(this.value);
|
|
1053
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1053
|
+
result = imul(result, 31) + getBooleanHashCode(this.bx_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.
|
|
1063
|
+
if (!(this.bx_1 === other.bx_1))
|
|
1064
1064
|
return false;
|
|
1065
1065
|
return true;
|
|
1066
1066
|
};
|
|
1067
1067
|
function WsPrimitive(type, isNullable) {
|
|
1068
1068
|
this.type = type;
|
|
1069
|
-
this.
|
|
1069
|
+
this.cx_1 = isNullable;
|
|
1070
1070
|
}
|
|
1071
|
-
protoOf(WsPrimitive).
|
|
1071
|
+
protoOf(WsPrimitive).dx = function () {
|
|
1072
1072
|
return this.type;
|
|
1073
1073
|
};
|
|
1074
|
-
protoOf(WsPrimitive).
|
|
1075
|
-
return this.
|
|
1074
|
+
protoOf(WsPrimitive).cu = function () {
|
|
1075
|
+
return this.cx_1;
|
|
1076
1076
|
};
|
|
1077
1077
|
protoOf(WsPrimitive).ne = function () {
|
|
1078
1078
|
return this.type;
|
|
1079
1079
|
};
|
|
1080
1080
|
protoOf(WsPrimitive).oe = function () {
|
|
1081
|
-
return this.
|
|
1081
|
+
return this.cx_1;
|
|
1082
1082
|
};
|
|
1083
|
-
protoOf(WsPrimitive).
|
|
1083
|
+
protoOf(WsPrimitive).ex = 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.
|
|
1089
|
-
return $super === VOID ? this.
|
|
1088
|
+
isNullable = isNullable === VOID ? this.cx_1 : isNullable;
|
|
1089
|
+
return $super === VOID ? this.ex(type, isNullable) : $super.ex.call(this, type, isNullable);
|
|
1090
1090
|
};
|
|
1091
1091
|
protoOf(WsPrimitive).toString = function () {
|
|
1092
|
-
return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.
|
|
1092
|
+
return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.cx_1 + ')';
|
|
1093
1093
|
};
|
|
1094
1094
|
protoOf(WsPrimitive).hashCode = function () {
|
|
1095
1095
|
var result = this.type.hashCode();
|
|
1096
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1096
|
+
result = imul(result, 31) + getBooleanHashCode(this.cx_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.
|
|
1106
|
+
if (!(this.cx_1 === other.cx_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).
|
|
1161
|
+
protoOf(WsRequest).hx = function () {
|
|
1162
1162
|
return this.content;
|
|
1163
1163
|
};
|
|
1164
1164
|
protoOf(WsRequest).ne = function () {
|
|
1165
1165
|
return this.content;
|
|
1166
1166
|
};
|
|
1167
|
-
protoOf(WsRequest).
|
|
1167
|
+
protoOf(WsRequest).ix = 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.
|
|
1172
|
+
return $super === VOID ? this.ix(content) : $super.ix.call(this, content);
|
|
1173
1173
|
};
|
|
1174
1174
|
protoOf(WsRequest).toString = function () {
|
|
1175
1175
|
return 'WsRequest(content=' + toString_0(this.content) + ')';
|
|
@@ -1191,13 +1191,13 @@ function WsResponse(status, headers, content) {
|
|
|
1191
1191
|
this.headers = headers;
|
|
1192
1192
|
this.content = content;
|
|
1193
1193
|
}
|
|
1194
|
-
protoOf(WsResponse).
|
|
1194
|
+
protoOf(WsResponse).jx = function () {
|
|
1195
1195
|
return this.status;
|
|
1196
1196
|
};
|
|
1197
|
-
protoOf(WsResponse).
|
|
1197
|
+
protoOf(WsResponse).xv = function () {
|
|
1198
1198
|
return this.headers;
|
|
1199
1199
|
};
|
|
1200
|
-
protoOf(WsResponse).
|
|
1200
|
+
protoOf(WsResponse).hx = function () {
|
|
1201
1201
|
return this.content;
|
|
1202
1202
|
};
|
|
1203
1203
|
protoOf(WsResponse).ne = function () {
|
|
@@ -1209,14 +1209,14 @@ protoOf(WsResponse).oe = function () {
|
|
|
1209
1209
|
protoOf(WsResponse).oj = function () {
|
|
1210
1210
|
return this.content;
|
|
1211
1211
|
};
|
|
1212
|
-
protoOf(WsResponse).
|
|
1212
|
+
protoOf(WsResponse).kx = 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.
|
|
1219
|
+
return $super === VOID ? this.kx(status, headers, content) : $super.kx.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,13 +1246,13 @@ function WsContent(type, reference, isNullable) {
|
|
|
1246
1246
|
this.reference = reference;
|
|
1247
1247
|
this.isNullable = isNullable;
|
|
1248
1248
|
}
|
|
1249
|
-
protoOf(WsContent).
|
|
1249
|
+
protoOf(WsContent).dx = function () {
|
|
1250
1250
|
return this.type;
|
|
1251
1251
|
};
|
|
1252
|
-
protoOf(WsContent).
|
|
1252
|
+
protoOf(WsContent).ow = function () {
|
|
1253
1253
|
return this.reference;
|
|
1254
1254
|
};
|
|
1255
|
-
protoOf(WsContent).
|
|
1255
|
+
protoOf(WsContent).cu = function () {
|
|
1256
1256
|
return this.isNullable;
|
|
1257
1257
|
};
|
|
1258
1258
|
protoOf(WsContent).ne = function () {
|
|
@@ -1264,14 +1264,14 @@ protoOf(WsContent).oe = function () {
|
|
|
1264
1264
|
protoOf(WsContent).oj = function () {
|
|
1265
1265
|
return this.isNullable;
|
|
1266
1266
|
};
|
|
1267
|
-
protoOf(WsContent).
|
|
1267
|
+
protoOf(WsContent).lx = 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.
|
|
1274
|
+
return $super === VOID ? this.lx(type, reference, isNullable) : $super.lx.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 + ')';
|
|
@@ -1508,16 +1508,16 @@ 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.
|
|
1511
|
+
tmp = new WsAny(_this__u8e3s4.au_1);
|
|
1512
1512
|
} else {
|
|
1513
1513
|
if (_this__u8e3s4 instanceof Unit) {
|
|
1514
|
-
tmp = new WsUnit(_this__u8e3s4.
|
|
1514
|
+
tmp = new WsUnit(_this__u8e3s4.fu_1);
|
|
1515
1515
|
} else {
|
|
1516
1516
|
if (_this__u8e3s4 instanceof Custom) {
|
|
1517
|
-
tmp = new WsCustom(_this__u8e3s4.
|
|
1517
|
+
tmp = new WsCustom(_this__u8e3s4.ku_1, _this__u8e3s4.lu_1);
|
|
1518
1518
|
} else {
|
|
1519
1519
|
if (_this__u8e3s4 instanceof Primitive) {
|
|
1520
|
-
tmp = new WsPrimitive(produce_11(_this__u8e3s4.
|
|
1520
|
+
tmp = new WsPrimitive(produce_11(_this__u8e3s4.ou_1), _this__u8e3s4.pu_1);
|
|
1521
1521
|
} else {
|
|
1522
1522
|
if (_this__u8e3s4 instanceof Dict) {
|
|
1523
1523
|
tmp = new WsDict(produce_6(_this__u8e3s4.co_1), _this__u8e3s4.do_1);
|
|
@@ -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.
|
|
1570
|
+
switch (_this__u8e3s4.st_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.
|
|
1585
|
+
switch (_this__u8e3s4.vt_1.b3_1) {
|
|
1586
1586
|
case 0:
|
|
1587
1587
|
tmp_1 = WsPrimitiveType_Number32_getInstance();
|
|
1588
1588
|
break;
|
|
@@ -1713,7 +1713,7 @@ 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.
|
|
1716
|
+
var tmp0_safe_receiver = _this__u8e3s4.tv_1;
|
|
1717
1717
|
var tmp;
|
|
1718
1718
|
if (tmp0_safe_receiver == null) {
|
|
1719
1719
|
tmp = null;
|
|
@@ -1723,7 +1723,7 @@ function consume_2(_this__u8e3s4) {
|
|
|
1723
1723
|
}
|
|
1724
1724
|
var tmp_0 = tmp;
|
|
1725
1725
|
var tmp_1 = emptyList();
|
|
1726
|
-
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.
|
|
1726
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.sv_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,7 +1792,7 @@ 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.
|
|
1795
|
+
var tmp0_safe_receiver = _this__u8e3s4.hw_1;
|
|
1796
1796
|
var tmp;
|
|
1797
1797
|
if (tmp0_safe_receiver == null) {
|
|
1798
1798
|
tmp = null;
|
|
@@ -1800,10 +1800,10 @@ function consume_3(_this__u8e3s4) {
|
|
|
1800
1800
|
// Inline function 'kotlin.let' call
|
|
1801
1801
|
tmp = Companion_instance.ss(tmp0_safe_receiver);
|
|
1802
1802
|
}
|
|
1803
|
-
return new Enum_0(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.
|
|
1803
|
+
return new Enum_0(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.gw_1), toSet(_this__u8e3s4.entries));
|
|
1804
1804
|
}
|
|
1805
1805
|
function consume_4(_this__u8e3s4) {
|
|
1806
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1806
|
+
var tmp0_safe_receiver = _this__u8e3s4.rw_1;
|
|
1807
1807
|
var tmp;
|
|
1808
1808
|
if (tmp0_safe_receiver == null) {
|
|
1809
1809
|
tmp = null;
|
|
@@ -1813,7 +1813,7 @@ function consume_4(_this__u8e3s4) {
|
|
|
1813
1813
|
}
|
|
1814
1814
|
var tmp_0 = tmp;
|
|
1815
1815
|
var tmp_1 = emptyList();
|
|
1816
|
-
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.
|
|
1816
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.qw_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,7 +1826,7 @@ 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.
|
|
1829
|
+
var tmp0_safe_receiver = _this__u8e3s4.ov_1;
|
|
1830
1830
|
var tmp;
|
|
1831
1831
|
if (tmp0_safe_receiver == null) {
|
|
1832
1832
|
tmp = null;
|
|
@@ -1836,7 +1836,7 @@ function consume_5(_this__u8e3s4) {
|
|
|
1836
1836
|
}
|
|
1837
1837
|
var tmp_0 = tmp;
|
|
1838
1838
|
var tmp_1 = emptyList();
|
|
1839
|
-
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.
|
|
1839
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.nv_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,7 +1852,7 @@ 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.
|
|
1855
|
+
var tmp0_safe_receiver = _this__u8e3s4.kw_1;
|
|
1856
1856
|
var tmp;
|
|
1857
1857
|
if (tmp0_safe_receiver == null) {
|
|
1858
1858
|
tmp = null;
|
|
@@ -1862,7 +1862,7 @@ function consume_6(_this__u8e3s4) {
|
|
|
1862
1862
|
}
|
|
1863
1863
|
var tmp_0 = tmp;
|
|
1864
1864
|
var tmp_1 = emptyList();
|
|
1865
|
-
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.
|
|
1865
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.jw_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,7 +1878,7 @@ 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.
|
|
1881
|
+
var tmp0_safe_receiver = _this__u8e3s4.nw_1;
|
|
1882
1882
|
var tmp;
|
|
1883
1883
|
if (tmp0_safe_receiver == null) {
|
|
1884
1884
|
tmp = null;
|
|
@@ -1886,7 +1886,7 @@ function consume_7(_this__u8e3s4) {
|
|
|
1886
1886
|
// Inline function 'kotlin.let' call
|
|
1887
1887
|
tmp = Companion_instance.ss(tmp0_safe_receiver);
|
|
1888
1888
|
}
|
|
1889
|
-
return new Channel(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.
|
|
1889
|
+
return new Channel(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.mw_1), consume_13(_this__u8e3s4.reference));
|
|
1890
1890
|
}
|
|
1891
1891
|
function consume_8(_this__u8e3s4) {
|
|
1892
1892
|
var tmp;
|
|
@@ -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.
|
|
1967
|
+
tmp = new Any(_this__u8e3s4.ww_1);
|
|
1968
1968
|
} else {
|
|
1969
1969
|
if (_this__u8e3s4 instanceof WsUnit) {
|
|
1970
|
-
tmp = new Unit(_this__u8e3s4.
|
|
1970
|
+
tmp = new Unit(_this__u8e3s4.xw_1);
|
|
1971
1971
|
} else {
|
|
1972
1972
|
if (_this__u8e3s4 instanceof WsCustom) {
|
|
1973
|
-
tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.
|
|
1973
|
+
tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.bx_1);
|
|
1974
1974
|
} else {
|
|
1975
1975
|
if (_this__u8e3s4 instanceof WsPrimitive) {
|
|
1976
|
-
tmp = new Primitive(consume_16(_this__u8e3s4.type), _this__u8e3s4.
|
|
1976
|
+
tmp = new Primitive(consume_16(_this__u8e3s4.type), _this__u8e3s4.cx_1);
|
|
1977
1977
|
} else {
|
|
1978
1978
|
if (_this__u8e3s4 instanceof WsDict) {
|
|
1979
|
-
tmp = new Dict(consume_13(_this__u8e3s4.reference), _this__u8e3s4.
|
|
1979
|
+
tmp = new Dict(consume_13(_this__u8e3s4.reference), _this__u8e3s4.ax_1);
|
|
1980
1980
|
} else {
|
|
1981
1981
|
if (_this__u8e3s4 instanceof WsIterable) {
|
|
1982
|
-
tmp = new Iterable(consume_13(_this__u8e3s4.reference), _this__u8e3s4.
|
|
1982
|
+
tmp = new Iterable(consume_13(_this__u8e3s4.reference), _this__u8e3s4.yw_1);
|
|
1983
1983
|
} else {
|
|
1984
1984
|
noWhenBranchMatchedException();
|
|
1985
1985
|
}
|
|
@@ -2099,10 +2099,10 @@ function WsCompilationResult(result, errors) {
|
|
|
2099
2099
|
this.result = result;
|
|
2100
2100
|
this.errors = errors;
|
|
2101
2101
|
}
|
|
2102
|
-
protoOf(WsCompilationResult).
|
|
2102
|
+
protoOf(WsCompilationResult).mx = function () {
|
|
2103
2103
|
return this.result;
|
|
2104
2104
|
};
|
|
2105
|
-
protoOf(WsCompilationResult).
|
|
2105
|
+
protoOf(WsCompilationResult).nx = function () {
|
|
2106
2106
|
return this.errors;
|
|
2107
2107
|
};
|
|
2108
2108
|
function WsCompiled(value) {
|
|
@@ -2127,10 +2127,10 @@ function WsParseResult(result, errors) {
|
|
|
2127
2127
|
this.result = result;
|
|
2128
2128
|
this.errors = errors;
|
|
2129
2129
|
}
|
|
2130
|
-
protoOf(WsParseResult).
|
|
2130
|
+
protoOf(WsParseResult).mx = function () {
|
|
2131
2131
|
return this.result;
|
|
2132
2132
|
};
|
|
2133
|
-
protoOf(WsParseResult).
|
|
2133
|
+
protoOf(WsParseResult).nx = function () {
|
|
2134
2134
|
return this.errors;
|
|
2135
2135
|
};
|
|
2136
2136
|
function WsStringResult(result, errors) {
|
|
@@ -2139,20 +2139,20 @@ function WsStringResult(result, errors) {
|
|
|
2139
2139
|
this.result = result;
|
|
2140
2140
|
this.errors = errors;
|
|
2141
2141
|
}
|
|
2142
|
-
protoOf(WsStringResult).
|
|
2142
|
+
protoOf(WsStringResult).mx = function () {
|
|
2143
2143
|
return this.result;
|
|
2144
2144
|
};
|
|
2145
|
-
protoOf(WsStringResult).
|
|
2145
|
+
protoOf(WsStringResult).nx = 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).
|
|
2152
|
+
protoOf(WsEmitted).ox = function () {
|
|
2153
2153
|
return this.file;
|
|
2154
2154
|
};
|
|
2155
|
-
protoOf(WsEmitted).
|
|
2155
|
+
protoOf(WsEmitted).mx = function () {
|
|
2156
2156
|
return this.result;
|
|
2157
2157
|
};
|
|
2158
2158
|
function produce_15(_this__u8e3s4) {
|
|
@@ -2222,10 +2222,10 @@ function WsTokenResult(tokens, error) {
|
|
|
2222
2222
|
this.tokens = tokens;
|
|
2223
2223
|
this.error = error;
|
|
2224
2224
|
}
|
|
2225
|
-
protoOf(WsTokenResult).
|
|
2225
|
+
protoOf(WsTokenResult).px = function () {
|
|
2226
2226
|
return this.tokens;
|
|
2227
2227
|
};
|
|
2228
|
-
protoOf(WsTokenResult).
|
|
2228
|
+
protoOf(WsTokenResult).qx = function () {
|
|
2229
2229
|
return this.error;
|
|
2230
2230
|
};
|
|
2231
2231
|
protoOf(WsTokenResult).ne = function () {
|
|
@@ -2234,13 +2234,13 @@ protoOf(WsTokenResult).ne = function () {
|
|
|
2234
2234
|
protoOf(WsTokenResult).oe = function () {
|
|
2235
2235
|
return this.error;
|
|
2236
2236
|
};
|
|
2237
|
-
protoOf(WsTokenResult).
|
|
2237
|
+
protoOf(WsTokenResult).rx = 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.
|
|
2243
|
+
return $super === VOID ? this.rx(tokens, error) : $super.rx.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) + ')';
|
|
@@ -2284,12 +2284,12 @@ protoOf(WsTokens).hashCode = function () {
|
|
|
2284
2284
|
protoOf(WsTokens).ne = function () {
|
|
2285
2285
|
return this.value;
|
|
2286
2286
|
};
|
|
2287
|
-
protoOf(WsTokens).
|
|
2287
|
+
protoOf(WsTokens).sx = 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.
|
|
2292
|
+
return $super === VOID ? this.sx(value) : $super.sx.call(this, value);
|
|
2293
2293
|
};
|
|
2294
2294
|
protoOf(WsTokens).toString = function () {
|
|
2295
2295
|
return 'WsTokens(value=' + toString(this.value) + ')';
|
|
@@ -2300,13 +2300,13 @@ function WsToken(type, value, coordinates) {
|
|
|
2300
2300
|
this.value = value;
|
|
2301
2301
|
this.coordinates = coordinates;
|
|
2302
2302
|
}
|
|
2303
|
-
protoOf(WsToken).
|
|
2303
|
+
protoOf(WsToken).dx = function () {
|
|
2304
2304
|
return this.type;
|
|
2305
2305
|
};
|
|
2306
2306
|
protoOf(WsToken).l1 = function () {
|
|
2307
2307
|
return this.value;
|
|
2308
2308
|
};
|
|
2309
|
-
protoOf(WsToken).
|
|
2309
|
+
protoOf(WsToken).tx = function () {
|
|
2310
2310
|
return this.coordinates;
|
|
2311
2311
|
};
|
|
2312
2312
|
protoOf(WsToken).ne = function () {
|
|
@@ -2318,14 +2318,14 @@ protoOf(WsToken).oe = function () {
|
|
|
2318
2318
|
protoOf(WsToken).oj = function () {
|
|
2319
2319
|
return this.coordinates;
|
|
2320
2320
|
};
|
|
2321
|
-
protoOf(WsToken).
|
|
2321
|
+
protoOf(WsToken).ux = 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.
|
|
2328
|
+
return $super === VOID ? this.ux(type, value, coordinates) : $super.ux.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,13 +2357,13 @@ function WsCoordinates(line, position, idxAndLength) {
|
|
|
2357
2357
|
this.position = position;
|
|
2358
2358
|
this.idxAndLength = idxAndLength;
|
|
2359
2359
|
}
|
|
2360
|
-
protoOf(WsCoordinates).
|
|
2360
|
+
protoOf(WsCoordinates).vx = function () {
|
|
2361
2361
|
return this.line;
|
|
2362
2362
|
};
|
|
2363
|
-
protoOf(WsCoordinates).
|
|
2363
|
+
protoOf(WsCoordinates).wx = function () {
|
|
2364
2364
|
return this.position;
|
|
2365
2365
|
};
|
|
2366
|
-
protoOf(WsCoordinates).
|
|
2366
|
+
protoOf(WsCoordinates).xx = function () {
|
|
2367
2367
|
return this.idxAndLength;
|
|
2368
2368
|
};
|
|
2369
2369
|
protoOf(WsCoordinates).ne = function () {
|
|
@@ -2375,14 +2375,14 @@ protoOf(WsCoordinates).oe = function () {
|
|
|
2375
2375
|
protoOf(WsCoordinates).oj = function () {
|
|
2376
2376
|
return this.idxAndLength;
|
|
2377
2377
|
};
|
|
2378
|
-
protoOf(WsCoordinates).
|
|
2378
|
+
protoOf(WsCoordinates).yx = 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.
|
|
2385
|
+
return $super === VOID ? this.yx(line, position, idxAndLength) : $super.yx.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,7 +2412,7 @@ function WsIndex(idx, length) {
|
|
|
2412
2412
|
this.idx = idx;
|
|
2413
2413
|
this.length = length;
|
|
2414
2414
|
}
|
|
2415
|
-
protoOf(WsIndex).
|
|
2415
|
+
protoOf(WsIndex).zx = function () {
|
|
2416
2416
|
return this.idx;
|
|
2417
2417
|
};
|
|
2418
2418
|
protoOf(WsIndex).a = function () {
|
|
@@ -2424,13 +2424,13 @@ protoOf(WsIndex).ne = function () {
|
|
|
2424
2424
|
protoOf(WsIndex).oe = function () {
|
|
2425
2425
|
return this.length;
|
|
2426
2426
|
};
|
|
2427
|
-
protoOf(WsIndex).
|
|
2427
|
+
protoOf(WsIndex).ay = 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.
|
|
2433
|
+
return $super === VOID ? this.ay(idx, length) : $super.ay.call(this, idx, length);
|
|
2434
2434
|
};
|
|
2435
2435
|
protoOf(WsIndex).toString = function () {
|
|
2436
2436
|
return 'WsIndex(idx=' + this.idx + ', length=' + this.length + ')';
|
|
@@ -2458,7 +2458,7 @@ function produce_19(_this__u8e3s4) {
|
|
|
2458
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.
|
|
2461
|
+
return new WsIndex(_this__u8e3s4.wu_1, _this__u8e3s4.xu_1);
|
|
2462
2462
|
}
|
|
2463
2463
|
function WsError(line, position, index, length, value) {
|
|
2464
2464
|
this.line = line;
|
|
@@ -2467,13 +2467,13 @@ function WsError(line, position, index, length, value) {
|
|
|
2467
2467
|
this.length = length;
|
|
2468
2468
|
this.value = value;
|
|
2469
2469
|
}
|
|
2470
|
-
protoOf(WsError).
|
|
2470
|
+
protoOf(WsError).vx = function () {
|
|
2471
2471
|
return this.line;
|
|
2472
2472
|
};
|
|
2473
|
-
protoOf(WsError).
|
|
2473
|
+
protoOf(WsError).wx = function () {
|
|
2474
2474
|
return this.position;
|
|
2475
2475
|
};
|
|
2476
|
-
protoOf(WsError).
|
|
2476
|
+
protoOf(WsError).by = function () {
|
|
2477
2477
|
return this.index;
|
|
2478
2478
|
};
|
|
2479
2479
|
protoOf(WsError).a = function () {
|
|
@@ -2491,13 +2491,13 @@ protoOf(WsError).oe = function () {
|
|
|
2491
2491
|
protoOf(WsError).oj = function () {
|
|
2492
2492
|
return this.index;
|
|
2493
2493
|
};
|
|
2494
|
-
protoOf(WsError).
|
|
2494
|
+
protoOf(WsError).aw = function () {
|
|
2495
2495
|
return this.length;
|
|
2496
2496
|
};
|
|
2497
|
-
protoOf(WsError).
|
|
2497
|
+
protoOf(WsError).bw = function () {
|
|
2498
2498
|
return this.value;
|
|
2499
2499
|
};
|
|
2500
|
-
protoOf(WsError).
|
|
2500
|
+
protoOf(WsError).cy = 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.
|
|
2509
|
+
return $super === VOID ? this.cy(line, position, index, length, value) : $super.cy.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,64 +2537,64 @@ protoOf(WsError).equals = function (other) {
|
|
|
2537
2537
|
return true;
|
|
2538
2538
|
};
|
|
2539
2539
|
function produce_21(_this__u8e3s4) {
|
|
2540
|
-
return new WsError(_this__u8e3s4.zr_1.ur_1, _this__u8e3s4.zr_1.vr_1, _this__u8e3s4.zr_1.wr_1.
|
|
2540
|
+
return new WsError(_this__u8e3s4.zr_1.ur_1, _this__u8e3s4.zr_1.vr_1, _this__u8e3s4.zr_1.wr_1.wu_1 - _this__u8e3s4.zr_1.wr_1.xu_1 | 0, _this__u8e3s4.zr_1.wr_1.xu_1, _this__u8e3s4.e());
|
|
2541
2541
|
}
|
|
2542
2542
|
//region block: post-declaration
|
|
2543
2543
|
defineProp(protoOf(WsType), 'identifier', function () {
|
|
2544
2544
|
return this.vq();
|
|
2545
2545
|
});
|
|
2546
2546
|
defineProp(protoOf(WsType), 'comment', function () {
|
|
2547
|
-
return this.
|
|
2547
|
+
return this.mv();
|
|
2548
2548
|
});
|
|
2549
2549
|
defineProp(protoOf(WsEndpoint), 'identifier', function () {
|
|
2550
2550
|
return this.vq();
|
|
2551
2551
|
});
|
|
2552
2552
|
defineProp(protoOf(WsEndpoint), 'comment', function () {
|
|
2553
|
-
return this.
|
|
2553
|
+
return this.mv();
|
|
2554
2554
|
});
|
|
2555
2555
|
defineProp(protoOf(WsEnum), 'identifier', function () {
|
|
2556
2556
|
return this.vq();
|
|
2557
2557
|
});
|
|
2558
2558
|
defineProp(protoOf(WsEnum), 'comment', function () {
|
|
2559
|
-
return this.
|
|
2559
|
+
return this.mv();
|
|
2560
2560
|
});
|
|
2561
2561
|
defineProp(protoOf(WsUnion), 'identifier', function () {
|
|
2562
2562
|
return this.vq();
|
|
2563
2563
|
});
|
|
2564
2564
|
defineProp(protoOf(WsUnion), 'comment', function () {
|
|
2565
|
-
return this.
|
|
2565
|
+
return this.mv();
|
|
2566
2566
|
});
|
|
2567
2567
|
defineProp(protoOf(WsChannel), 'identifier', function () {
|
|
2568
2568
|
return this.vq();
|
|
2569
2569
|
});
|
|
2570
2570
|
defineProp(protoOf(WsChannel), 'comment', function () {
|
|
2571
|
-
return this.
|
|
2571
|
+
return this.mv();
|
|
2572
2572
|
});
|
|
2573
2573
|
defineProp(protoOf(WsRefined), 'identifier', function () {
|
|
2574
2574
|
return this.vq();
|
|
2575
2575
|
});
|
|
2576
2576
|
defineProp(protoOf(WsRefined), 'comment', function () {
|
|
2577
|
-
return this.
|
|
2577
|
+
return this.mv();
|
|
2578
2578
|
});
|
|
2579
2579
|
defineProp(protoOf(WsMethod), 'name', protoOf(WsMethod).m);
|
|
2580
2580
|
defineProp(protoOf(WsMethod), 'ordinal', protoOf(WsMethod).c3);
|
|
2581
2581
|
defineProp(protoOf(WsAny), 'isNullable', function () {
|
|
2582
|
-
return this.
|
|
2582
|
+
return this.cu();
|
|
2583
2583
|
});
|
|
2584
2584
|
defineProp(protoOf(WsUnit), 'isNullable', function () {
|
|
2585
|
-
return this.
|
|
2585
|
+
return this.cu();
|
|
2586
2586
|
});
|
|
2587
2587
|
defineProp(protoOf(WsIterable), 'isNullable', function () {
|
|
2588
|
-
return this.
|
|
2588
|
+
return this.cu();
|
|
2589
2589
|
});
|
|
2590
2590
|
defineProp(protoOf(WsDict), 'isNullable', function () {
|
|
2591
|
-
return this.
|
|
2591
|
+
return this.cu();
|
|
2592
2592
|
});
|
|
2593
2593
|
defineProp(protoOf(WsCustom), 'isNullable', function () {
|
|
2594
|
-
return this.
|
|
2594
|
+
return this.cu();
|
|
2595
2595
|
});
|
|
2596
2596
|
defineProp(protoOf(WsPrimitive), 'isNullable', function () {
|
|
2597
|
-
return this.
|
|
2597
|
+
return this.cu();
|
|
2598
2598
|
});
|
|
2599
2599
|
defineProp(protoOf(WsPrimitiveType), 'name', protoOf(WsPrimitiveType).m);
|
|
2600
2600
|
defineProp(protoOf(WsPrimitiveType), 'ordinal', protoOf(WsPrimitiveType).c3);
|