@flock/wirespec 0.17.16 → 0.17.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/clikt-clikt.mjs +1152 -1152
- package/colormath-root-colormath.mjs +424 -424
- package/kotlin-kotlin-stdlib.mjs +11 -11
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlin-openapi-bindings.mjs +1 -0
- package/kotlin-rgxgen.mjs +1763 -1763
- package/kotlinx-io-kotlinx-io-core.mjs +377 -377
- package/markdown.mjs +1833 -1833
- package/mordant-mordant.mjs +1605 -1605
- package/package.json +1 -1
- package/wirespec-src-compiler-core.mjs +25 -13
- package/wirespec-src-compiler-core.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-java.mjs +118 -84
- package/wirespec-src-compiler-emitters-java.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-kotlin.mjs +156 -126
- package/wirespec-src-compiler-emitters-kotlin.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-python.mjs +169 -139
- package/wirespec-src-compiler-emitters-python.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-typescript.mjs +89 -85
- package/wirespec-src-compiler-emitters-typescript.mjs.map +1 -1
- package/wirespec-src-compiler-emitters-wirespec.mjs +33 -33
- package/wirespec-src-compiler-emitters-wirespec.mjs.map +1 -1
- package/wirespec-src-compiler-lib.mjs +246 -246
- package/wirespec-src-converter-avro.mjs +265 -265
- package/wirespec-src-converter-openapi.mjs +76 -75
- package/wirespec-src-converter-openapi.mjs.map +1 -1
- package/wirespec-src-plugin-arguments.mjs +132 -132
- package/wirespec-src-plugin-cli.mjs +66 -66
- package/wirespec-src-plugin-npm.mjs +10 -10
- package/wirespec-src-tools-generator.mjs +2 -2
|
@@ -132,18 +132,18 @@ function WsNode() {
|
|
|
132
132
|
function WsAST(modules) {
|
|
133
133
|
this.modules = modules;
|
|
134
134
|
}
|
|
135
|
-
protoOf(WsAST).
|
|
135
|
+
protoOf(WsAST).u2j = function () {
|
|
136
136
|
return this.modules;
|
|
137
137
|
};
|
|
138
138
|
protoOf(WsAST).sd = function () {
|
|
139
139
|
return this.modules;
|
|
140
140
|
};
|
|
141
|
-
protoOf(WsAST).
|
|
141
|
+
protoOf(WsAST).v2j = function (modules) {
|
|
142
142
|
return new WsAST(modules);
|
|
143
143
|
};
|
|
144
144
|
protoOf(WsAST).copy = function (modules, $super) {
|
|
145
145
|
modules = modules === VOID ? this.modules : modules;
|
|
146
|
-
return this.
|
|
146
|
+
return this.v2j(modules);
|
|
147
147
|
};
|
|
148
148
|
protoOf(WsAST).toString = function () {
|
|
149
149
|
return 'WsAST(modules=' + toString(this.modules) + ')';
|
|
@@ -164,18 +164,18 @@ protoOf(WsAST).equals = function (other) {
|
|
|
164
164
|
function WsModule(statements) {
|
|
165
165
|
this.statements = statements;
|
|
166
166
|
}
|
|
167
|
-
protoOf(WsModule).
|
|
167
|
+
protoOf(WsModule).w2j = function () {
|
|
168
168
|
return this.statements;
|
|
169
169
|
};
|
|
170
170
|
protoOf(WsModule).sd = function () {
|
|
171
171
|
return this.statements;
|
|
172
172
|
};
|
|
173
|
-
protoOf(WsModule).
|
|
173
|
+
protoOf(WsModule).x2j = function (statements) {
|
|
174
174
|
return new WsModule(statements);
|
|
175
175
|
};
|
|
176
176
|
protoOf(WsModule).copy = function (statements, $super) {
|
|
177
177
|
statements = statements === VOID ? this.statements : statements;
|
|
178
|
-
return this.
|
|
178
|
+
return this.x2j(statements);
|
|
179
179
|
};
|
|
180
180
|
protoOf(WsModule).toString = function () {
|
|
181
181
|
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.z2j_1 = identifier;
|
|
200
|
+
this.a2k_1 = comment;
|
|
201
201
|
this.shape = shape;
|
|
202
202
|
}
|
|
203
203
|
protoOf(WsType).x25 = function () {
|
|
204
|
-
return this.
|
|
205
|
-
};
|
|
206
|
-
protoOf(WsType).v2j = function () {
|
|
207
|
-
return this.x2j_1;
|
|
204
|
+
return this.z2j_1;
|
|
208
205
|
};
|
|
209
206
|
protoOf(WsType).y2j = function () {
|
|
207
|
+
return this.a2k_1;
|
|
208
|
+
};
|
|
209
|
+
protoOf(WsType).b2k = function () {
|
|
210
210
|
return this.shape;
|
|
211
211
|
};
|
|
212
212
|
protoOf(WsType).sd = function () {
|
|
213
|
-
return this.
|
|
213
|
+
return this.z2j_1;
|
|
214
214
|
};
|
|
215
215
|
protoOf(WsType).td = function () {
|
|
216
|
-
return this.
|
|
216
|
+
return this.a2k_1;
|
|
217
217
|
};
|
|
218
218
|
protoOf(WsType).uh = function () {
|
|
219
219
|
return this.shape;
|
|
220
220
|
};
|
|
221
|
-
protoOf(WsType).
|
|
221
|
+
protoOf(WsType).c2k = 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.z2j_1 : identifier;
|
|
226
|
+
comment = comment === VOID ? this.a2k_1 : comment;
|
|
227
227
|
shape = shape === VOID ? this.shape : shape;
|
|
228
|
-
return this.
|
|
228
|
+
return this.c2k(identifier, comment, shape);
|
|
229
229
|
};
|
|
230
230
|
protoOf(WsType).toString = function () {
|
|
231
|
-
return 'WsType(identifier=' + this.
|
|
231
|
+
return 'WsType(identifier=' + this.z2j_1 + ', comment=' + this.a2k_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.z2j_1);
|
|
235
|
+
result = imul(result, 31) + (this.a2k_1 == null ? 0 : getStringHashCode(this.a2k_1)) | 0;
|
|
236
236
|
result = imul(result, 31) + this.shape.hashCode() | 0;
|
|
237
237
|
return result;
|
|
238
238
|
};
|
|
@@ -242,9 +242,9 @@ protoOf(WsType).equals = function (other) {
|
|
|
242
242
|
if (!(other instanceof WsType))
|
|
243
243
|
return false;
|
|
244
244
|
var tmp0_other_with_cast = other instanceof WsType ? other : THROW_CCE();
|
|
245
|
-
if (!(this.
|
|
245
|
+
if (!(this.z2j_1 === tmp0_other_with_cast.z2j_1))
|
|
246
246
|
return false;
|
|
247
|
-
if (!(this.
|
|
247
|
+
if (!(this.a2k_1 == tmp0_other_with_cast.a2k_1))
|
|
248
248
|
return false;
|
|
249
249
|
if (!this.shape.equals(tmp0_other_with_cast.shape))
|
|
250
250
|
return false;
|
|
@@ -259,12 +259,12 @@ protoOf(WsShape).b1 = function () {
|
|
|
259
259
|
protoOf(WsShape).sd = function () {
|
|
260
260
|
return this.value;
|
|
261
261
|
};
|
|
262
|
-
protoOf(WsShape).
|
|
262
|
+
protoOf(WsShape).d2k = function (value) {
|
|
263
263
|
return new WsShape(value);
|
|
264
264
|
};
|
|
265
265
|
protoOf(WsShape).copy = function (value, $super) {
|
|
266
266
|
value = value === VOID ? this.value : value;
|
|
267
|
-
return this.
|
|
267
|
+
return this.d2k(value);
|
|
268
268
|
};
|
|
269
269
|
protoOf(WsShape).toString = function () {
|
|
270
270
|
return 'WsShape(value=' + toString(this.value) + ')';
|
|
@@ -283,8 +283,8 @@ protoOf(WsShape).equals = function (other) {
|
|
|
283
283
|
return true;
|
|
284
284
|
};
|
|
285
285
|
function WsEndpoint(identifier, comment, method, path, queries, headers, requests, responses) {
|
|
286
|
-
this.
|
|
287
|
-
this.
|
|
286
|
+
this.e2k_1 = identifier;
|
|
287
|
+
this.f2k_1 = comment;
|
|
288
288
|
this.method = method;
|
|
289
289
|
this.path = path;
|
|
290
290
|
this.queries = queries;
|
|
@@ -293,73 +293,73 @@ function WsEndpoint(identifier, comment, method, path, queries, headers, request
|
|
|
293
293
|
this.responses = responses;
|
|
294
294
|
}
|
|
295
295
|
protoOf(WsEndpoint).x25 = function () {
|
|
296
|
-
return this.
|
|
296
|
+
return this.e2k_1;
|
|
297
297
|
};
|
|
298
|
-
protoOf(WsEndpoint).
|
|
299
|
-
return this.
|
|
298
|
+
protoOf(WsEndpoint).y2j = function () {
|
|
299
|
+
return this.f2k_1;
|
|
300
300
|
};
|
|
301
|
-
protoOf(WsEndpoint).
|
|
301
|
+
protoOf(WsEndpoint).g2k = function () {
|
|
302
302
|
return this.method;
|
|
303
303
|
};
|
|
304
|
-
protoOf(WsEndpoint).
|
|
304
|
+
protoOf(WsEndpoint).h2k = function () {
|
|
305
305
|
return this.path;
|
|
306
306
|
};
|
|
307
|
-
protoOf(WsEndpoint).
|
|
307
|
+
protoOf(WsEndpoint).i2k = function () {
|
|
308
308
|
return this.queries;
|
|
309
309
|
};
|
|
310
|
-
protoOf(WsEndpoint).
|
|
310
|
+
protoOf(WsEndpoint).j2k = function () {
|
|
311
311
|
return this.headers;
|
|
312
312
|
};
|
|
313
|
-
protoOf(WsEndpoint).
|
|
313
|
+
protoOf(WsEndpoint).k2k = function () {
|
|
314
314
|
return this.requests;
|
|
315
315
|
};
|
|
316
316
|
protoOf(WsEndpoint).v1n = function () {
|
|
317
317
|
return this.responses;
|
|
318
318
|
};
|
|
319
319
|
protoOf(WsEndpoint).sd = function () {
|
|
320
|
-
return this.
|
|
320
|
+
return this.e2k_1;
|
|
321
321
|
};
|
|
322
322
|
protoOf(WsEndpoint).td = function () {
|
|
323
|
-
return this.
|
|
323
|
+
return this.f2k_1;
|
|
324
324
|
};
|
|
325
325
|
protoOf(WsEndpoint).uh = function () {
|
|
326
326
|
return this.method;
|
|
327
327
|
};
|
|
328
|
-
protoOf(WsEndpoint).
|
|
328
|
+
protoOf(WsEndpoint).l2k = function () {
|
|
329
329
|
return this.path;
|
|
330
330
|
};
|
|
331
|
-
protoOf(WsEndpoint).
|
|
331
|
+
protoOf(WsEndpoint).m2k = function () {
|
|
332
332
|
return this.queries;
|
|
333
333
|
};
|
|
334
|
-
protoOf(WsEndpoint).
|
|
334
|
+
protoOf(WsEndpoint).n2k = function () {
|
|
335
335
|
return this.headers;
|
|
336
336
|
};
|
|
337
|
-
protoOf(WsEndpoint).
|
|
337
|
+
protoOf(WsEndpoint).o2k = function () {
|
|
338
338
|
return this.requests;
|
|
339
339
|
};
|
|
340
|
-
protoOf(WsEndpoint).
|
|
340
|
+
protoOf(WsEndpoint).p2k = function () {
|
|
341
341
|
return this.responses;
|
|
342
342
|
};
|
|
343
|
-
protoOf(WsEndpoint).
|
|
343
|
+
protoOf(WsEndpoint).q2k = function (identifier, comment, method, path, queries, headers, requests, responses) {
|
|
344
344
|
return new WsEndpoint(identifier, comment, method, path, queries, headers, requests, responses);
|
|
345
345
|
};
|
|
346
346
|
protoOf(WsEndpoint).copy = function (identifier, comment, method, path, queries, headers, requests, responses, $super) {
|
|
347
|
-
identifier = identifier === VOID ? this.
|
|
348
|
-
comment = comment === VOID ? this.
|
|
347
|
+
identifier = identifier === VOID ? this.e2k_1 : identifier;
|
|
348
|
+
comment = comment === VOID ? this.f2k_1 : comment;
|
|
349
349
|
method = method === VOID ? this.method : method;
|
|
350
350
|
path = path === VOID ? this.path : path;
|
|
351
351
|
queries = queries === VOID ? this.queries : queries;
|
|
352
352
|
headers = headers === VOID ? this.headers : headers;
|
|
353
353
|
requests = requests === VOID ? this.requests : requests;
|
|
354
354
|
responses = responses === VOID ? this.responses : responses;
|
|
355
|
-
return this.
|
|
355
|
+
return this.q2k(identifier, comment, method, path, queries, headers, requests, responses);
|
|
356
356
|
};
|
|
357
357
|
protoOf(WsEndpoint).toString = function () {
|
|
358
|
-
return 'WsEndpoint(identifier=' + this.
|
|
358
|
+
return 'WsEndpoint(identifier=' + this.e2k_1 + ', comment=' + this.f2k_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) + ')';
|
|
359
359
|
};
|
|
360
360
|
protoOf(WsEndpoint).hashCode = function () {
|
|
361
|
-
var result = getStringHashCode(this.
|
|
362
|
-
result = imul(result, 31) + (this.
|
|
361
|
+
var result = getStringHashCode(this.e2k_1);
|
|
362
|
+
result = imul(result, 31) + (this.f2k_1 == null ? 0 : getStringHashCode(this.f2k_1)) | 0;
|
|
363
363
|
result = imul(result, 31) + this.method.hashCode() | 0;
|
|
364
364
|
result = imul(result, 31) + hashCode(this.path) | 0;
|
|
365
365
|
result = imul(result, 31) + hashCode(this.queries) | 0;
|
|
@@ -374,9 +374,9 @@ protoOf(WsEndpoint).equals = function (other) {
|
|
|
374
374
|
if (!(other instanceof WsEndpoint))
|
|
375
375
|
return false;
|
|
376
376
|
var tmp0_other_with_cast = other instanceof WsEndpoint ? other : THROW_CCE();
|
|
377
|
-
if (!(this.
|
|
377
|
+
if (!(this.e2k_1 === tmp0_other_with_cast.e2k_1))
|
|
378
378
|
return false;
|
|
379
|
-
if (!(this.
|
|
379
|
+
if (!(this.f2k_1 == tmp0_other_with_cast.f2k_1))
|
|
380
380
|
return false;
|
|
381
381
|
if (!this.method.equals(tmp0_other_with_cast.method))
|
|
382
382
|
return false;
|
|
@@ -393,43 +393,43 @@ protoOf(WsEndpoint).equals = function (other) {
|
|
|
393
393
|
return true;
|
|
394
394
|
};
|
|
395
395
|
function WsEnum(identifier, comment, entries) {
|
|
396
|
-
this.
|
|
397
|
-
this.
|
|
396
|
+
this.r2k_1 = identifier;
|
|
397
|
+
this.s2k_1 = comment;
|
|
398
398
|
this.entries = entries;
|
|
399
399
|
}
|
|
400
400
|
protoOf(WsEnum).x25 = function () {
|
|
401
|
-
return this.
|
|
401
|
+
return this.r2k_1;
|
|
402
402
|
};
|
|
403
|
-
protoOf(WsEnum).
|
|
404
|
-
return this.
|
|
403
|
+
protoOf(WsEnum).y2j = function () {
|
|
404
|
+
return this.s2k_1;
|
|
405
405
|
};
|
|
406
406
|
protoOf(WsEnum).z = function () {
|
|
407
407
|
return this.entries;
|
|
408
408
|
};
|
|
409
409
|
protoOf(WsEnum).sd = function () {
|
|
410
|
-
return this.
|
|
410
|
+
return this.r2k_1;
|
|
411
411
|
};
|
|
412
412
|
protoOf(WsEnum).td = function () {
|
|
413
|
-
return this.
|
|
413
|
+
return this.s2k_1;
|
|
414
414
|
};
|
|
415
415
|
protoOf(WsEnum).uh = function () {
|
|
416
416
|
return this.entries;
|
|
417
417
|
};
|
|
418
|
-
protoOf(WsEnum).
|
|
418
|
+
protoOf(WsEnum).t2k = function (identifier, comment, entries) {
|
|
419
419
|
return new WsEnum(identifier, comment, entries);
|
|
420
420
|
};
|
|
421
421
|
protoOf(WsEnum).copy = function (identifier, comment, entries, $super) {
|
|
422
|
-
identifier = identifier === VOID ? this.
|
|
423
|
-
comment = comment === VOID ? this.
|
|
422
|
+
identifier = identifier === VOID ? this.r2k_1 : identifier;
|
|
423
|
+
comment = comment === VOID ? this.s2k_1 : comment;
|
|
424
424
|
entries = entries === VOID ? this.entries : entries;
|
|
425
|
-
return this.
|
|
425
|
+
return this.t2k(identifier, comment, entries);
|
|
426
426
|
};
|
|
427
427
|
protoOf(WsEnum).toString = function () {
|
|
428
|
-
return 'WsEnum(identifier=' + this.
|
|
428
|
+
return 'WsEnum(identifier=' + this.r2k_1 + ', comment=' + this.s2k_1 + ', entries=' + toString(this.entries) + ')';
|
|
429
429
|
};
|
|
430
430
|
protoOf(WsEnum).hashCode = function () {
|
|
431
|
-
var result = getStringHashCode(this.
|
|
432
|
-
result = imul(result, 31) + (this.
|
|
431
|
+
var result = getStringHashCode(this.r2k_1);
|
|
432
|
+
result = imul(result, 31) + (this.s2k_1 == null ? 0 : getStringHashCode(this.s2k_1)) | 0;
|
|
433
433
|
result = imul(result, 31) + hashCode(this.entries) | 0;
|
|
434
434
|
return result;
|
|
435
435
|
};
|
|
@@ -439,52 +439,52 @@ protoOf(WsEnum).equals = function (other) {
|
|
|
439
439
|
if (!(other instanceof WsEnum))
|
|
440
440
|
return false;
|
|
441
441
|
var tmp0_other_with_cast = other instanceof WsEnum ? other : THROW_CCE();
|
|
442
|
-
if (!(this.
|
|
442
|
+
if (!(this.r2k_1 === tmp0_other_with_cast.r2k_1))
|
|
443
443
|
return false;
|
|
444
|
-
if (!(this.
|
|
444
|
+
if (!(this.s2k_1 == tmp0_other_with_cast.s2k_1))
|
|
445
445
|
return false;
|
|
446
446
|
if (!equals(this.entries, tmp0_other_with_cast.entries))
|
|
447
447
|
return false;
|
|
448
448
|
return true;
|
|
449
449
|
};
|
|
450
450
|
function WsUnion(identifier, comment, entries) {
|
|
451
|
-
this.
|
|
452
|
-
this.
|
|
451
|
+
this.u2k_1 = identifier;
|
|
452
|
+
this.v2k_1 = comment;
|
|
453
453
|
this.entries = entries;
|
|
454
454
|
}
|
|
455
455
|
protoOf(WsUnion).x25 = function () {
|
|
456
|
-
return this.
|
|
456
|
+
return this.u2k_1;
|
|
457
457
|
};
|
|
458
|
-
protoOf(WsUnion).
|
|
459
|
-
return this.
|
|
458
|
+
protoOf(WsUnion).y2j = function () {
|
|
459
|
+
return this.v2k_1;
|
|
460
460
|
};
|
|
461
461
|
protoOf(WsUnion).z = function () {
|
|
462
462
|
return this.entries;
|
|
463
463
|
};
|
|
464
464
|
protoOf(WsUnion).sd = function () {
|
|
465
|
-
return this.
|
|
465
|
+
return this.u2k_1;
|
|
466
466
|
};
|
|
467
467
|
protoOf(WsUnion).td = function () {
|
|
468
|
-
return this.
|
|
468
|
+
return this.v2k_1;
|
|
469
469
|
};
|
|
470
470
|
protoOf(WsUnion).uh = function () {
|
|
471
471
|
return this.entries;
|
|
472
472
|
};
|
|
473
|
-
protoOf(WsUnion).
|
|
473
|
+
protoOf(WsUnion).w2k = function (identifier, comment, entries) {
|
|
474
474
|
return new WsUnion(identifier, comment, entries);
|
|
475
475
|
};
|
|
476
476
|
protoOf(WsUnion).copy = function (identifier, comment, entries, $super) {
|
|
477
|
-
identifier = identifier === VOID ? this.
|
|
478
|
-
comment = comment === VOID ? this.
|
|
477
|
+
identifier = identifier === VOID ? this.u2k_1 : identifier;
|
|
478
|
+
comment = comment === VOID ? this.v2k_1 : comment;
|
|
479
479
|
entries = entries === VOID ? this.entries : entries;
|
|
480
|
-
return this.
|
|
480
|
+
return this.w2k(identifier, comment, entries);
|
|
481
481
|
};
|
|
482
482
|
protoOf(WsUnion).toString = function () {
|
|
483
|
-
return 'WsUnion(identifier=' + this.
|
|
483
|
+
return 'WsUnion(identifier=' + this.u2k_1 + ', comment=' + this.v2k_1 + ', entries=' + toString(this.entries) + ')';
|
|
484
484
|
};
|
|
485
485
|
protoOf(WsUnion).hashCode = function () {
|
|
486
|
-
var result = getStringHashCode(this.
|
|
487
|
-
result = imul(result, 31) + (this.
|
|
486
|
+
var result = getStringHashCode(this.u2k_1);
|
|
487
|
+
result = imul(result, 31) + (this.v2k_1 == null ? 0 : getStringHashCode(this.v2k_1)) | 0;
|
|
488
488
|
result = imul(result, 31) + hashCode(this.entries) | 0;
|
|
489
489
|
return result;
|
|
490
490
|
};
|
|
@@ -494,52 +494,52 @@ protoOf(WsUnion).equals = function (other) {
|
|
|
494
494
|
if (!(other instanceof WsUnion))
|
|
495
495
|
return false;
|
|
496
496
|
var tmp0_other_with_cast = other instanceof WsUnion ? other : THROW_CCE();
|
|
497
|
-
if (!(this.
|
|
497
|
+
if (!(this.u2k_1 === tmp0_other_with_cast.u2k_1))
|
|
498
498
|
return false;
|
|
499
|
-
if (!(this.
|
|
499
|
+
if (!(this.v2k_1 == tmp0_other_with_cast.v2k_1))
|
|
500
500
|
return false;
|
|
501
501
|
if (!equals(this.entries, tmp0_other_with_cast.entries))
|
|
502
502
|
return false;
|
|
503
503
|
return true;
|
|
504
504
|
};
|
|
505
505
|
function WsChannel(identifier, comment, reference) {
|
|
506
|
-
this.
|
|
507
|
-
this.
|
|
506
|
+
this.x2k_1 = identifier;
|
|
507
|
+
this.y2k_1 = comment;
|
|
508
508
|
this.reference = reference;
|
|
509
509
|
}
|
|
510
510
|
protoOf(WsChannel).x25 = function () {
|
|
511
|
-
return this.
|
|
511
|
+
return this.x2k_1;
|
|
512
512
|
};
|
|
513
|
-
protoOf(WsChannel).
|
|
514
|
-
return this.
|
|
513
|
+
protoOf(WsChannel).y2j = function () {
|
|
514
|
+
return this.y2k_1;
|
|
515
515
|
};
|
|
516
|
-
protoOf(WsChannel).
|
|
516
|
+
protoOf(WsChannel).z2k = function () {
|
|
517
517
|
return this.reference;
|
|
518
518
|
};
|
|
519
519
|
protoOf(WsChannel).sd = function () {
|
|
520
|
-
return this.
|
|
520
|
+
return this.x2k_1;
|
|
521
521
|
};
|
|
522
522
|
protoOf(WsChannel).td = function () {
|
|
523
|
-
return this.
|
|
523
|
+
return this.y2k_1;
|
|
524
524
|
};
|
|
525
525
|
protoOf(WsChannel).uh = function () {
|
|
526
526
|
return this.reference;
|
|
527
527
|
};
|
|
528
|
-
protoOf(WsChannel).
|
|
528
|
+
protoOf(WsChannel).a2l = function (identifier, comment, reference) {
|
|
529
529
|
return new WsChannel(identifier, comment, reference);
|
|
530
530
|
};
|
|
531
531
|
protoOf(WsChannel).copy = function (identifier, comment, reference, $super) {
|
|
532
|
-
identifier = identifier === VOID ? this.
|
|
533
|
-
comment = comment === VOID ? this.
|
|
532
|
+
identifier = identifier === VOID ? this.x2k_1 : identifier;
|
|
533
|
+
comment = comment === VOID ? this.y2k_1 : comment;
|
|
534
534
|
reference = reference === VOID ? this.reference : reference;
|
|
535
|
-
return this.
|
|
535
|
+
return this.a2l(identifier, comment, reference);
|
|
536
536
|
};
|
|
537
537
|
protoOf(WsChannel).toString = function () {
|
|
538
|
-
return 'WsChannel(identifier=' + this.
|
|
538
|
+
return 'WsChannel(identifier=' + this.x2k_1 + ', comment=' + this.y2k_1 + ', reference=' + toString(this.reference) + ')';
|
|
539
539
|
};
|
|
540
540
|
protoOf(WsChannel).hashCode = function () {
|
|
541
|
-
var result = getStringHashCode(this.
|
|
542
|
-
result = imul(result, 31) + (this.
|
|
541
|
+
var result = getStringHashCode(this.x2k_1);
|
|
542
|
+
result = imul(result, 31) + (this.y2k_1 == null ? 0 : getStringHashCode(this.y2k_1)) | 0;
|
|
543
543
|
result = imul(result, 31) + hashCode(this.reference) | 0;
|
|
544
544
|
return result;
|
|
545
545
|
};
|
|
@@ -549,52 +549,52 @@ protoOf(WsChannel).equals = function (other) {
|
|
|
549
549
|
if (!(other instanceof WsChannel))
|
|
550
550
|
return false;
|
|
551
551
|
var tmp0_other_with_cast = other instanceof WsChannel ? other : THROW_CCE();
|
|
552
|
-
if (!(this.
|
|
552
|
+
if (!(this.x2k_1 === tmp0_other_with_cast.x2k_1))
|
|
553
553
|
return false;
|
|
554
|
-
if (!(this.
|
|
554
|
+
if (!(this.y2k_1 == tmp0_other_with_cast.y2k_1))
|
|
555
555
|
return false;
|
|
556
556
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
557
557
|
return false;
|
|
558
558
|
return true;
|
|
559
559
|
};
|
|
560
560
|
function WsRefined(identifier, comment, reference) {
|
|
561
|
-
this.
|
|
562
|
-
this.
|
|
561
|
+
this.b2l_1 = identifier;
|
|
562
|
+
this.c2l_1 = comment;
|
|
563
563
|
this.reference = reference;
|
|
564
564
|
}
|
|
565
565
|
protoOf(WsRefined).x25 = function () {
|
|
566
|
-
return this.
|
|
566
|
+
return this.b2l_1;
|
|
567
567
|
};
|
|
568
|
-
protoOf(WsRefined).
|
|
569
|
-
return this.
|
|
568
|
+
protoOf(WsRefined).y2j = function () {
|
|
569
|
+
return this.c2l_1;
|
|
570
570
|
};
|
|
571
|
-
protoOf(WsRefined).
|
|
571
|
+
protoOf(WsRefined).z2k = function () {
|
|
572
572
|
return this.reference;
|
|
573
573
|
};
|
|
574
574
|
protoOf(WsRefined).sd = function () {
|
|
575
|
-
return this.
|
|
575
|
+
return this.b2l_1;
|
|
576
576
|
};
|
|
577
577
|
protoOf(WsRefined).td = function () {
|
|
578
|
-
return this.
|
|
578
|
+
return this.c2l_1;
|
|
579
579
|
};
|
|
580
580
|
protoOf(WsRefined).uh = function () {
|
|
581
581
|
return this.reference;
|
|
582
582
|
};
|
|
583
|
-
protoOf(WsRefined).
|
|
583
|
+
protoOf(WsRefined).a2l = function (identifier, comment, reference) {
|
|
584
584
|
return new WsRefined(identifier, comment, reference);
|
|
585
585
|
};
|
|
586
586
|
protoOf(WsRefined).copy = function (identifier, comment, reference, $super) {
|
|
587
|
-
identifier = identifier === VOID ? this.
|
|
588
|
-
comment = comment === VOID ? this.
|
|
587
|
+
identifier = identifier === VOID ? this.b2l_1 : identifier;
|
|
588
|
+
comment = comment === VOID ? this.c2l_1 : comment;
|
|
589
589
|
reference = reference === VOID ? this.reference : reference;
|
|
590
|
-
return this.
|
|
590
|
+
return this.a2l(identifier, comment, reference);
|
|
591
591
|
};
|
|
592
592
|
protoOf(WsRefined).toString = function () {
|
|
593
|
-
return 'WsRefined(identifier=' + this.
|
|
593
|
+
return 'WsRefined(identifier=' + this.b2l_1 + ', comment=' + this.c2l_1 + ', reference=' + toString(this.reference) + ')';
|
|
594
594
|
};
|
|
595
595
|
protoOf(WsRefined).hashCode = function () {
|
|
596
|
-
var result = getStringHashCode(this.
|
|
597
|
-
result = imul(result, 31) + (this.
|
|
596
|
+
var result = getStringHashCode(this.b2l_1);
|
|
597
|
+
result = imul(result, 31) + (this.c2l_1 == null ? 0 : getStringHashCode(this.c2l_1)) | 0;
|
|
598
598
|
result = imul(result, 31) + hashCode(this.reference) | 0;
|
|
599
599
|
return result;
|
|
600
600
|
};
|
|
@@ -604,9 +604,9 @@ protoOf(WsRefined).equals = function (other) {
|
|
|
604
604
|
if (!(other instanceof WsRefined))
|
|
605
605
|
return false;
|
|
606
606
|
var tmp0_other_with_cast = other instanceof WsRefined ? other : THROW_CCE();
|
|
607
|
-
if (!(this.
|
|
607
|
+
if (!(this.b2l_1 === tmp0_other_with_cast.b2l_1))
|
|
608
608
|
return false;
|
|
609
|
-
if (!(this.
|
|
609
|
+
if (!(this.c2l_1 == tmp0_other_with_cast.c2l_1))
|
|
610
610
|
return false;
|
|
611
611
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
612
612
|
return false;
|
|
@@ -675,12 +675,12 @@ protoOf(WsLiteral).b1 = function () {
|
|
|
675
675
|
protoOf(WsLiteral).sd = function () {
|
|
676
676
|
return this.value;
|
|
677
677
|
};
|
|
678
|
-
protoOf(WsLiteral).
|
|
678
|
+
protoOf(WsLiteral).f2l = function (value) {
|
|
679
679
|
return new WsLiteral(value);
|
|
680
680
|
};
|
|
681
681
|
protoOf(WsLiteral).copy = function (value, $super) {
|
|
682
682
|
value = value === VOID ? this.value : value;
|
|
683
|
-
return this.
|
|
683
|
+
return this.f2l(value);
|
|
684
684
|
};
|
|
685
685
|
protoOf(WsLiteral).toString = function () {
|
|
686
686
|
return 'WsLiteral(value=' + this.value + ')';
|
|
@@ -705,7 +705,7 @@ function WsParam(identifier, reference) {
|
|
|
705
705
|
protoOf(WsParam).x25 = function () {
|
|
706
706
|
return this.identifier;
|
|
707
707
|
};
|
|
708
|
-
protoOf(WsParam).
|
|
708
|
+
protoOf(WsParam).z2k = function () {
|
|
709
709
|
return this.reference;
|
|
710
710
|
};
|
|
711
711
|
protoOf(WsParam).sd = function () {
|
|
@@ -714,13 +714,13 @@ protoOf(WsParam).sd = function () {
|
|
|
714
714
|
protoOf(WsParam).td = function () {
|
|
715
715
|
return this.reference;
|
|
716
716
|
};
|
|
717
|
-
protoOf(WsParam).
|
|
717
|
+
protoOf(WsParam).g2l = function (identifier, reference) {
|
|
718
718
|
return new WsParam(identifier, reference);
|
|
719
719
|
};
|
|
720
720
|
protoOf(WsParam).copy = function (identifier, reference, $super) {
|
|
721
721
|
identifier = identifier === VOID ? this.identifier : identifier;
|
|
722
722
|
reference = reference === VOID ? this.reference : reference;
|
|
723
|
-
return this.
|
|
723
|
+
return this.g2l(identifier, reference);
|
|
724
724
|
};
|
|
725
725
|
protoOf(WsParam).toString = function () {
|
|
726
726
|
return 'WsParam(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
|
|
@@ -751,12 +751,12 @@ protoOf(Shape_0).b1 = function () {
|
|
|
751
751
|
protoOf(Shape_0).sd = function () {
|
|
752
752
|
return this.value;
|
|
753
753
|
};
|
|
754
|
-
protoOf(Shape_0).
|
|
754
|
+
protoOf(Shape_0).d2k = function (value) {
|
|
755
755
|
return new Shape_0(value);
|
|
756
756
|
};
|
|
757
757
|
protoOf(Shape_0).copy = function (value, $super) {
|
|
758
758
|
value = value === VOID ? this.value : value;
|
|
759
|
-
return this.
|
|
759
|
+
return this.d2k(value);
|
|
760
760
|
};
|
|
761
761
|
protoOf(Shape_0).toString = function () {
|
|
762
762
|
return 'Shape(value=' + toString(this.value) + ')';
|
|
@@ -781,7 +781,7 @@ function WsField(identifier, reference) {
|
|
|
781
781
|
protoOf(WsField).x25 = function () {
|
|
782
782
|
return this.identifier;
|
|
783
783
|
};
|
|
784
|
-
protoOf(WsField).
|
|
784
|
+
protoOf(WsField).z2k = function () {
|
|
785
785
|
return this.reference;
|
|
786
786
|
};
|
|
787
787
|
protoOf(WsField).sd = function () {
|
|
@@ -790,13 +790,13 @@ protoOf(WsField).sd = function () {
|
|
|
790
790
|
protoOf(WsField).td = function () {
|
|
791
791
|
return this.reference;
|
|
792
792
|
};
|
|
793
|
-
protoOf(WsField).
|
|
793
|
+
protoOf(WsField).g2l = function (identifier, reference) {
|
|
794
794
|
return new WsField(identifier, reference);
|
|
795
795
|
};
|
|
796
796
|
protoOf(WsField).copy = function (identifier, reference, $super) {
|
|
797
797
|
identifier = identifier === VOID ? this.identifier : identifier;
|
|
798
798
|
reference = reference === VOID ? this.reference : reference;
|
|
799
|
-
return this.
|
|
799
|
+
return this.g2l(identifier, reference);
|
|
800
800
|
};
|
|
801
801
|
protoOf(WsField).toString = function () {
|
|
802
802
|
return 'WsField(identifier=' + this.identifier.toString() + ', reference=' + toString(this.reference) + ')';
|
|
@@ -829,12 +829,12 @@ protoOf(WsClassIdentifier).b1 = function () {
|
|
|
829
829
|
protoOf(WsClassIdentifier).sd = function () {
|
|
830
830
|
return this.value;
|
|
831
831
|
};
|
|
832
|
-
protoOf(WsClassIdentifier).
|
|
832
|
+
protoOf(WsClassIdentifier).f2l = function (value) {
|
|
833
833
|
return new WsClassIdentifier(value);
|
|
834
834
|
};
|
|
835
835
|
protoOf(WsClassIdentifier).copy = function (value, $super) {
|
|
836
836
|
value = value === VOID ? this.value : value;
|
|
837
|
-
return this.
|
|
837
|
+
return this.f2l(value);
|
|
838
838
|
};
|
|
839
839
|
protoOf(WsClassIdentifier).toString = function () {
|
|
840
840
|
return 'WsClassIdentifier(value=' + this.value + ')';
|
|
@@ -861,12 +861,12 @@ protoOf(WsFieldIdentifier).b1 = function () {
|
|
|
861
861
|
protoOf(WsFieldIdentifier).sd = function () {
|
|
862
862
|
return this.value;
|
|
863
863
|
};
|
|
864
|
-
protoOf(WsFieldIdentifier).
|
|
864
|
+
protoOf(WsFieldIdentifier).f2l = function (value) {
|
|
865
865
|
return new WsFieldIdentifier(value);
|
|
866
866
|
};
|
|
867
867
|
protoOf(WsFieldIdentifier).copy = function (value, $super) {
|
|
868
868
|
value = value === VOID ? this.value : value;
|
|
869
|
-
return this.
|
|
869
|
+
return this.f2l(value);
|
|
870
870
|
};
|
|
871
871
|
protoOf(WsFieldIdentifier).toString = function () {
|
|
872
872
|
return 'WsFieldIdentifier(value=' + this.value + ')';
|
|
@@ -887,26 +887,26 @@ protoOf(WsFieldIdentifier).equals = function (other) {
|
|
|
887
887
|
function WsReference() {
|
|
888
888
|
}
|
|
889
889
|
function WsAny(isNullable) {
|
|
890
|
-
this.
|
|
890
|
+
this.h2l_1 = isNullable;
|
|
891
891
|
}
|
|
892
892
|
protoOf(WsAny).jm = function () {
|
|
893
|
-
return this.
|
|
893
|
+
return this.h2l_1;
|
|
894
894
|
};
|
|
895
895
|
protoOf(WsAny).sd = function () {
|
|
896
|
-
return this.
|
|
896
|
+
return this.h2l_1;
|
|
897
897
|
};
|
|
898
898
|
protoOf(WsAny).c29 = function (isNullable) {
|
|
899
899
|
return new WsAny(isNullable);
|
|
900
900
|
};
|
|
901
901
|
protoOf(WsAny).copy = function (isNullable, $super) {
|
|
902
|
-
isNullable = isNullable === VOID ? this.
|
|
902
|
+
isNullable = isNullable === VOID ? this.h2l_1 : isNullable;
|
|
903
903
|
return this.c29(isNullable);
|
|
904
904
|
};
|
|
905
905
|
protoOf(WsAny).toString = function () {
|
|
906
|
-
return 'WsAny(isNullable=' + this.
|
|
906
|
+
return 'WsAny(isNullable=' + this.h2l_1 + ')';
|
|
907
907
|
};
|
|
908
908
|
protoOf(WsAny).hashCode = function () {
|
|
909
|
-
return getBooleanHashCode(this.
|
|
909
|
+
return getBooleanHashCode(this.h2l_1);
|
|
910
910
|
};
|
|
911
911
|
protoOf(WsAny).equals = function (other) {
|
|
912
912
|
if (this === other)
|
|
@@ -914,31 +914,31 @@ protoOf(WsAny).equals = function (other) {
|
|
|
914
914
|
if (!(other instanceof WsAny))
|
|
915
915
|
return false;
|
|
916
916
|
var tmp0_other_with_cast = other instanceof WsAny ? other : THROW_CCE();
|
|
917
|
-
if (!(this.
|
|
917
|
+
if (!(this.h2l_1 === tmp0_other_with_cast.h2l_1))
|
|
918
918
|
return false;
|
|
919
919
|
return true;
|
|
920
920
|
};
|
|
921
921
|
function WsUnit(isNullable) {
|
|
922
|
-
this.
|
|
922
|
+
this.i2l_1 = isNullable;
|
|
923
923
|
}
|
|
924
924
|
protoOf(WsUnit).jm = function () {
|
|
925
|
-
return this.
|
|
925
|
+
return this.i2l_1;
|
|
926
926
|
};
|
|
927
927
|
protoOf(WsUnit).sd = function () {
|
|
928
|
-
return this.
|
|
928
|
+
return this.i2l_1;
|
|
929
929
|
};
|
|
930
930
|
protoOf(WsUnit).c29 = function (isNullable) {
|
|
931
931
|
return new WsUnit(isNullable);
|
|
932
932
|
};
|
|
933
933
|
protoOf(WsUnit).copy = function (isNullable, $super) {
|
|
934
|
-
isNullable = isNullable === VOID ? this.
|
|
934
|
+
isNullable = isNullable === VOID ? this.i2l_1 : isNullable;
|
|
935
935
|
return this.c29(isNullable);
|
|
936
936
|
};
|
|
937
937
|
protoOf(WsUnit).toString = function () {
|
|
938
|
-
return 'WsUnit(isNullable=' + this.
|
|
938
|
+
return 'WsUnit(isNullable=' + this.i2l_1 + ')';
|
|
939
939
|
};
|
|
940
940
|
protoOf(WsUnit).hashCode = function () {
|
|
941
|
-
return getBooleanHashCode(this.
|
|
941
|
+
return getBooleanHashCode(this.i2l_1);
|
|
942
942
|
};
|
|
943
943
|
protoOf(WsUnit).equals = function (other) {
|
|
944
944
|
if (this === other)
|
|
@@ -946,40 +946,40 @@ protoOf(WsUnit).equals = function (other) {
|
|
|
946
946
|
if (!(other instanceof WsUnit))
|
|
947
947
|
return false;
|
|
948
948
|
var tmp0_other_with_cast = other instanceof WsUnit ? other : THROW_CCE();
|
|
949
|
-
if (!(this.
|
|
949
|
+
if (!(this.i2l_1 === tmp0_other_with_cast.i2l_1))
|
|
950
950
|
return false;
|
|
951
951
|
return true;
|
|
952
952
|
};
|
|
953
953
|
function WsIterable(reference, isNullable) {
|
|
954
954
|
this.reference = reference;
|
|
955
|
-
this.
|
|
955
|
+
this.j2l_1 = isNullable;
|
|
956
956
|
}
|
|
957
|
-
protoOf(WsIterable).
|
|
957
|
+
protoOf(WsIterable).z2k = function () {
|
|
958
958
|
return this.reference;
|
|
959
959
|
};
|
|
960
960
|
protoOf(WsIterable).jm = function () {
|
|
961
|
-
return this.
|
|
961
|
+
return this.j2l_1;
|
|
962
962
|
};
|
|
963
963
|
protoOf(WsIterable).sd = function () {
|
|
964
964
|
return this.reference;
|
|
965
965
|
};
|
|
966
966
|
protoOf(WsIterable).td = function () {
|
|
967
|
-
return this.
|
|
967
|
+
return this.j2l_1;
|
|
968
968
|
};
|
|
969
|
-
protoOf(WsIterable).
|
|
969
|
+
protoOf(WsIterable).k2l = function (reference, isNullable) {
|
|
970
970
|
return new WsIterable(reference, isNullable);
|
|
971
971
|
};
|
|
972
972
|
protoOf(WsIterable).copy = function (reference, isNullable, $super) {
|
|
973
973
|
reference = reference === VOID ? this.reference : reference;
|
|
974
|
-
isNullable = isNullable === VOID ? this.
|
|
975
|
-
return this.
|
|
974
|
+
isNullable = isNullable === VOID ? this.j2l_1 : isNullable;
|
|
975
|
+
return this.k2l(reference, isNullable);
|
|
976
976
|
};
|
|
977
977
|
protoOf(WsIterable).toString = function () {
|
|
978
|
-
return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.
|
|
978
|
+
return 'WsIterable(reference=' + toString(this.reference) + ', isNullable=' + this.j2l_1 + ')';
|
|
979
979
|
};
|
|
980
980
|
protoOf(WsIterable).hashCode = function () {
|
|
981
981
|
var result = hashCode(this.reference);
|
|
982
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
982
|
+
result = imul(result, 31) + getBooleanHashCode(this.j2l_1) | 0;
|
|
983
983
|
return result;
|
|
984
984
|
};
|
|
985
985
|
protoOf(WsIterable).equals = function (other) {
|
|
@@ -990,40 +990,40 @@ protoOf(WsIterable).equals = function (other) {
|
|
|
990
990
|
var tmp0_other_with_cast = other instanceof WsIterable ? other : THROW_CCE();
|
|
991
991
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
992
992
|
return false;
|
|
993
|
-
if (!(this.
|
|
993
|
+
if (!(this.j2l_1 === tmp0_other_with_cast.j2l_1))
|
|
994
994
|
return false;
|
|
995
995
|
return true;
|
|
996
996
|
};
|
|
997
997
|
function WsDict(reference, isNullable) {
|
|
998
998
|
this.reference = reference;
|
|
999
|
-
this.
|
|
999
|
+
this.l2l_1 = isNullable;
|
|
1000
1000
|
}
|
|
1001
|
-
protoOf(WsDict).
|
|
1001
|
+
protoOf(WsDict).z2k = function () {
|
|
1002
1002
|
return this.reference;
|
|
1003
1003
|
};
|
|
1004
1004
|
protoOf(WsDict).jm = function () {
|
|
1005
|
-
return this.
|
|
1005
|
+
return this.l2l_1;
|
|
1006
1006
|
};
|
|
1007
1007
|
protoOf(WsDict).sd = function () {
|
|
1008
1008
|
return this.reference;
|
|
1009
1009
|
};
|
|
1010
1010
|
protoOf(WsDict).td = function () {
|
|
1011
|
-
return this.
|
|
1011
|
+
return this.l2l_1;
|
|
1012
1012
|
};
|
|
1013
|
-
protoOf(WsDict).
|
|
1013
|
+
protoOf(WsDict).k2l = function (reference, isNullable) {
|
|
1014
1014
|
return new WsDict(reference, isNullable);
|
|
1015
1015
|
};
|
|
1016
1016
|
protoOf(WsDict).copy = function (reference, isNullable, $super) {
|
|
1017
1017
|
reference = reference === VOID ? this.reference : reference;
|
|
1018
|
-
isNullable = isNullable === VOID ? this.
|
|
1019
|
-
return this.
|
|
1018
|
+
isNullable = isNullable === VOID ? this.l2l_1 : isNullable;
|
|
1019
|
+
return this.k2l(reference, isNullable);
|
|
1020
1020
|
};
|
|
1021
1021
|
protoOf(WsDict).toString = function () {
|
|
1022
|
-
return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.
|
|
1022
|
+
return 'WsDict(reference=' + toString(this.reference) + ', isNullable=' + this.l2l_1 + ')';
|
|
1023
1023
|
};
|
|
1024
1024
|
protoOf(WsDict).hashCode = function () {
|
|
1025
1025
|
var result = hashCode(this.reference);
|
|
1026
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1026
|
+
result = imul(result, 31) + getBooleanHashCode(this.l2l_1) | 0;
|
|
1027
1027
|
return result;
|
|
1028
1028
|
};
|
|
1029
1029
|
protoOf(WsDict).equals = function (other) {
|
|
@@ -1034,40 +1034,40 @@ protoOf(WsDict).equals = function (other) {
|
|
|
1034
1034
|
var tmp0_other_with_cast = other instanceof WsDict ? other : THROW_CCE();
|
|
1035
1035
|
if (!equals(this.reference, tmp0_other_with_cast.reference))
|
|
1036
1036
|
return false;
|
|
1037
|
-
if (!(this.
|
|
1037
|
+
if (!(this.l2l_1 === tmp0_other_with_cast.l2l_1))
|
|
1038
1038
|
return false;
|
|
1039
1039
|
return true;
|
|
1040
1040
|
};
|
|
1041
1041
|
function WsCustom(value, isNullable) {
|
|
1042
1042
|
this.value = value;
|
|
1043
|
-
this.
|
|
1043
|
+
this.m2l_1 = isNullable;
|
|
1044
1044
|
}
|
|
1045
1045
|
protoOf(WsCustom).b1 = function () {
|
|
1046
1046
|
return this.value;
|
|
1047
1047
|
};
|
|
1048
1048
|
protoOf(WsCustom).jm = function () {
|
|
1049
|
-
return this.
|
|
1049
|
+
return this.m2l_1;
|
|
1050
1050
|
};
|
|
1051
1051
|
protoOf(WsCustom).sd = function () {
|
|
1052
1052
|
return this.value;
|
|
1053
1053
|
};
|
|
1054
1054
|
protoOf(WsCustom).td = function () {
|
|
1055
|
-
return this.
|
|
1055
|
+
return this.m2l_1;
|
|
1056
1056
|
};
|
|
1057
1057
|
protoOf(WsCustom).l29 = function (value, isNullable) {
|
|
1058
1058
|
return new WsCustom(value, isNullable);
|
|
1059
1059
|
};
|
|
1060
1060
|
protoOf(WsCustom).copy = function (value, isNullable, $super) {
|
|
1061
1061
|
value = value === VOID ? this.value : value;
|
|
1062
|
-
isNullable = isNullable === VOID ? this.
|
|
1062
|
+
isNullable = isNullable === VOID ? this.m2l_1 : isNullable;
|
|
1063
1063
|
return this.l29(value, isNullable);
|
|
1064
1064
|
};
|
|
1065
1065
|
protoOf(WsCustom).toString = function () {
|
|
1066
|
-
return 'WsCustom(value=' + this.value + ', isNullable=' + this.
|
|
1066
|
+
return 'WsCustom(value=' + this.value + ', isNullable=' + this.m2l_1 + ')';
|
|
1067
1067
|
};
|
|
1068
1068
|
protoOf(WsCustom).hashCode = function () {
|
|
1069
1069
|
var result = getStringHashCode(this.value);
|
|
1070
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1070
|
+
result = imul(result, 31) + getBooleanHashCode(this.m2l_1) | 0;
|
|
1071
1071
|
return result;
|
|
1072
1072
|
};
|
|
1073
1073
|
protoOf(WsCustom).equals = function (other) {
|
|
@@ -1078,40 +1078,40 @@ protoOf(WsCustom).equals = function (other) {
|
|
|
1078
1078
|
var tmp0_other_with_cast = other instanceof WsCustom ? other : THROW_CCE();
|
|
1079
1079
|
if (!(this.value === tmp0_other_with_cast.value))
|
|
1080
1080
|
return false;
|
|
1081
|
-
if (!(this.
|
|
1081
|
+
if (!(this.m2l_1 === tmp0_other_with_cast.m2l_1))
|
|
1082
1082
|
return false;
|
|
1083
1083
|
return true;
|
|
1084
1084
|
};
|
|
1085
1085
|
function WsPrimitive(type, isNullable) {
|
|
1086
1086
|
this.type = type;
|
|
1087
|
-
this.
|
|
1087
|
+
this.n2l_1 = isNullable;
|
|
1088
1088
|
}
|
|
1089
1089
|
protoOf(WsPrimitive).d1l = function () {
|
|
1090
1090
|
return this.type;
|
|
1091
1091
|
};
|
|
1092
1092
|
protoOf(WsPrimitive).jm = function () {
|
|
1093
|
-
return this.
|
|
1093
|
+
return this.n2l_1;
|
|
1094
1094
|
};
|
|
1095
1095
|
protoOf(WsPrimitive).sd = function () {
|
|
1096
1096
|
return this.type;
|
|
1097
1097
|
};
|
|
1098
1098
|
protoOf(WsPrimitive).td = function () {
|
|
1099
|
-
return this.
|
|
1099
|
+
return this.n2l_1;
|
|
1100
1100
|
};
|
|
1101
|
-
protoOf(WsPrimitive).
|
|
1101
|
+
protoOf(WsPrimitive).o2l = function (type, isNullable) {
|
|
1102
1102
|
return new WsPrimitive(type, isNullable);
|
|
1103
1103
|
};
|
|
1104
1104
|
protoOf(WsPrimitive).copy = function (type, isNullable, $super) {
|
|
1105
1105
|
type = type === VOID ? this.type : type;
|
|
1106
|
-
isNullable = isNullable === VOID ? this.
|
|
1107
|
-
return this.
|
|
1106
|
+
isNullable = isNullable === VOID ? this.n2l_1 : isNullable;
|
|
1107
|
+
return this.o2l(type, isNullable);
|
|
1108
1108
|
};
|
|
1109
1109
|
protoOf(WsPrimitive).toString = function () {
|
|
1110
|
-
return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.
|
|
1110
|
+
return 'WsPrimitive(type=' + this.type.toString() + ', isNullable=' + this.n2l_1 + ')';
|
|
1111
1111
|
};
|
|
1112
1112
|
protoOf(WsPrimitive).hashCode = function () {
|
|
1113
1113
|
var result = this.type.hashCode();
|
|
1114
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1114
|
+
result = imul(result, 31) + getBooleanHashCode(this.n2l_1) | 0;
|
|
1115
1115
|
return result;
|
|
1116
1116
|
};
|
|
1117
1117
|
protoOf(WsPrimitive).equals = function (other) {
|
|
@@ -1122,7 +1122,7 @@ protoOf(WsPrimitive).equals = function (other) {
|
|
|
1122
1122
|
var tmp0_other_with_cast = other instanceof WsPrimitive ? other : THROW_CCE();
|
|
1123
1123
|
if (!this.type.equals(tmp0_other_with_cast.type))
|
|
1124
1124
|
return false;
|
|
1125
|
-
if (!(this.
|
|
1125
|
+
if (!(this.n2l_1 === tmp0_other_with_cast.n2l_1))
|
|
1126
1126
|
return false;
|
|
1127
1127
|
return true;
|
|
1128
1128
|
};
|
|
@@ -1183,12 +1183,12 @@ protoOf(WsRequest).u17 = function () {
|
|
|
1183
1183
|
protoOf(WsRequest).sd = function () {
|
|
1184
1184
|
return this.content;
|
|
1185
1185
|
};
|
|
1186
|
-
protoOf(WsRequest).
|
|
1186
|
+
protoOf(WsRequest).r2l = function (content) {
|
|
1187
1187
|
return new WsRequest(content);
|
|
1188
1188
|
};
|
|
1189
1189
|
protoOf(WsRequest).copy = function (content, $super) {
|
|
1190
1190
|
content = content === VOID ? this.content : content;
|
|
1191
|
-
return this.
|
|
1191
|
+
return this.r2l(content);
|
|
1192
1192
|
};
|
|
1193
1193
|
protoOf(WsRequest).toString = function () {
|
|
1194
1194
|
return 'WsRequest(content=' + toString_0(this.content) + ')';
|
|
@@ -1211,10 +1211,10 @@ function WsResponse(status, headers, content) {
|
|
|
1211
1211
|
this.headers = headers;
|
|
1212
1212
|
this.content = content;
|
|
1213
1213
|
}
|
|
1214
|
-
protoOf(WsResponse).
|
|
1214
|
+
protoOf(WsResponse).s2l = function () {
|
|
1215
1215
|
return this.status;
|
|
1216
1216
|
};
|
|
1217
|
-
protoOf(WsResponse).
|
|
1217
|
+
protoOf(WsResponse).j2k = function () {
|
|
1218
1218
|
return this.headers;
|
|
1219
1219
|
};
|
|
1220
1220
|
protoOf(WsResponse).u17 = function () {
|
|
@@ -1229,14 +1229,14 @@ protoOf(WsResponse).td = function () {
|
|
|
1229
1229
|
protoOf(WsResponse).uh = function () {
|
|
1230
1230
|
return this.content;
|
|
1231
1231
|
};
|
|
1232
|
-
protoOf(WsResponse).
|
|
1232
|
+
protoOf(WsResponse).t2l = function (status, headers, content) {
|
|
1233
1233
|
return new WsResponse(status, headers, content);
|
|
1234
1234
|
};
|
|
1235
1235
|
protoOf(WsResponse).copy = function (status, headers, content, $super) {
|
|
1236
1236
|
status = status === VOID ? this.status : status;
|
|
1237
1237
|
headers = headers === VOID ? this.headers : headers;
|
|
1238
1238
|
content = content === VOID ? this.content : content;
|
|
1239
|
-
return this.
|
|
1239
|
+
return this.t2l(status, headers, content);
|
|
1240
1240
|
};
|
|
1241
1241
|
protoOf(WsResponse).toString = function () {
|
|
1242
1242
|
return 'WsResponse(status=' + this.status + ', headers=' + toString(this.headers) + ', content=' + toString_0(this.content) + ')';
|
|
@@ -1270,7 +1270,7 @@ function WsContent(type, reference, isNullable) {
|
|
|
1270
1270
|
protoOf(WsContent).d1l = function () {
|
|
1271
1271
|
return this.type;
|
|
1272
1272
|
};
|
|
1273
|
-
protoOf(WsContent).
|
|
1273
|
+
protoOf(WsContent).z2k = function () {
|
|
1274
1274
|
return this.reference;
|
|
1275
1275
|
};
|
|
1276
1276
|
protoOf(WsContent).jm = function () {
|
|
@@ -1285,14 +1285,14 @@ protoOf(WsContent).td = function () {
|
|
|
1285
1285
|
protoOf(WsContent).uh = function () {
|
|
1286
1286
|
return this.isNullable;
|
|
1287
1287
|
};
|
|
1288
|
-
protoOf(WsContent).
|
|
1288
|
+
protoOf(WsContent).u2l = function (type, reference, isNullable) {
|
|
1289
1289
|
return new WsContent(type, reference, isNullable);
|
|
1290
1290
|
};
|
|
1291
1291
|
protoOf(WsContent).copy = function (type, reference, isNullable, $super) {
|
|
1292
1292
|
type = type === VOID ? this.type : type;
|
|
1293
1293
|
reference = reference === VOID ? this.reference : reference;
|
|
1294
1294
|
isNullable = isNullable === VOID ? this.isNullable : isNullable;
|
|
1295
|
-
return this.
|
|
1295
|
+
return this.u2l(type, reference, isNullable);
|
|
1296
1296
|
};
|
|
1297
1297
|
protoOf(WsContent).toString = function () {
|
|
1298
1298
|
return 'WsContent(type=' + this.type + ', reference=' + toString(this.reference) + ', isNullable=' + this.isNullable + ')';
|
|
@@ -1748,7 +1748,7 @@ function produce_14(_this__u8e3s4) {
|
|
|
1748
1748
|
return new WsContent(_this__u8e3s4.q24_1, produce_7(_this__u8e3s4.r24_1));
|
|
1749
1749
|
}
|
|
1750
1750
|
function consume_2(_this__u8e3s4) {
|
|
1751
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1751
|
+
var tmp0_safe_receiver = _this__u8e3s4.f2k_1;
|
|
1752
1752
|
var tmp;
|
|
1753
1753
|
if (tmp0_safe_receiver == null) {
|
|
1754
1754
|
tmp = null;
|
|
@@ -1760,7 +1760,7 @@ function consume_2(_this__u8e3s4) {
|
|
|
1760
1760
|
}
|
|
1761
1761
|
var tmp_0 = tmp;
|
|
1762
1762
|
var tmp_1 = emptyList();
|
|
1763
|
-
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.
|
|
1763
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.e2k_1);
|
|
1764
1764
|
var tmp_3 = consume_8(_this__u8e3s4.method);
|
|
1765
1765
|
// Inline function 'kotlin.collections.map' call
|
|
1766
1766
|
var this_0 = _this__u8e3s4.path;
|
|
@@ -1834,7 +1834,7 @@ function consume_2(_this__u8e3s4) {
|
|
|
1834
1834
|
return new Endpoint(tmp_0, tmp_1, tmp_2, tmp_3, tmp_4, tmp_5, tmp_6, tmp_7, destination_3);
|
|
1835
1835
|
}
|
|
1836
1836
|
function consume_3(_this__u8e3s4) {
|
|
1837
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1837
|
+
var tmp0_safe_receiver = _this__u8e3s4.s2k_1;
|
|
1838
1838
|
var tmp;
|
|
1839
1839
|
if (tmp0_safe_receiver == null) {
|
|
1840
1840
|
tmp = null;
|
|
@@ -1844,10 +1844,10 @@ function consume_3(_this__u8e3s4) {
|
|
|
1844
1844
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1845
1845
|
tmp = Companion_instance.u27(tmp0_safe_receiver);
|
|
1846
1846
|
}
|
|
1847
|
-
return new Enum_0(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.
|
|
1847
|
+
return new Enum_0(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.r2k_1), toSet(_this__u8e3s4.entries));
|
|
1848
1848
|
}
|
|
1849
1849
|
function consume_4(_this__u8e3s4) {
|
|
1850
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1850
|
+
var tmp0_safe_receiver = _this__u8e3s4.c2l_1;
|
|
1851
1851
|
var tmp;
|
|
1852
1852
|
if (tmp0_safe_receiver == null) {
|
|
1853
1853
|
tmp = null;
|
|
@@ -1859,7 +1859,7 @@ function consume_4(_this__u8e3s4) {
|
|
|
1859
1859
|
}
|
|
1860
1860
|
var tmp_0 = tmp;
|
|
1861
1861
|
var tmp_1 = emptyList();
|
|
1862
|
-
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.
|
|
1862
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.b2l_1);
|
|
1863
1863
|
var tmp_3 = consume_13(_this__u8e3s4.reference);
|
|
1864
1864
|
var tmp1_elvis_lhs = tmp_3 instanceof Primitive ? tmp_3 : null;
|
|
1865
1865
|
var tmp_4;
|
|
@@ -1872,7 +1872,7 @@ function consume_4(_this__u8e3s4) {
|
|
|
1872
1872
|
return new Refined(tmp_0, tmp_1, tmp_2, tmp_4);
|
|
1873
1873
|
}
|
|
1874
1874
|
function consume_5(_this__u8e3s4) {
|
|
1875
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1875
|
+
var tmp0_safe_receiver = _this__u8e3s4.a2k_1;
|
|
1876
1876
|
var tmp;
|
|
1877
1877
|
if (tmp0_safe_receiver == null) {
|
|
1878
1878
|
tmp = null;
|
|
@@ -1884,7 +1884,7 @@ function consume_5(_this__u8e3s4) {
|
|
|
1884
1884
|
}
|
|
1885
1885
|
var tmp_0 = tmp;
|
|
1886
1886
|
var tmp_1 = emptyList();
|
|
1887
|
-
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.
|
|
1887
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.z2j_1);
|
|
1888
1888
|
// Inline function 'kotlin.collections.map' call
|
|
1889
1889
|
var this_0 = _this__u8e3s4.shape.value;
|
|
1890
1890
|
// Inline function 'kotlin.collections.mapTo' call
|
|
@@ -1901,7 +1901,7 @@ function consume_5(_this__u8e3s4) {
|
|
|
1901
1901
|
return new Type(tmp_0, tmp_1, tmp_2, new Shape(destination), emptyList());
|
|
1902
1902
|
}
|
|
1903
1903
|
function consume_6(_this__u8e3s4) {
|
|
1904
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1904
|
+
var tmp0_safe_receiver = _this__u8e3s4.v2k_1;
|
|
1905
1905
|
var tmp;
|
|
1906
1906
|
if (tmp0_safe_receiver == null) {
|
|
1907
1907
|
tmp = null;
|
|
@@ -1913,7 +1913,7 @@ function consume_6(_this__u8e3s4) {
|
|
|
1913
1913
|
}
|
|
1914
1914
|
var tmp_0 = tmp;
|
|
1915
1915
|
var tmp_1 = emptyList();
|
|
1916
|
-
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.
|
|
1916
|
+
var tmp_2 = new DefinitionIdentifier(_this__u8e3s4.u2k_1);
|
|
1917
1917
|
// Inline function 'kotlin.collections.map' call
|
|
1918
1918
|
var this_0 = _this__u8e3s4.entries;
|
|
1919
1919
|
// Inline function 'kotlin.collections.mapTo' call
|
|
@@ -1930,7 +1930,7 @@ function consume_6(_this__u8e3s4) {
|
|
|
1930
1930
|
return new Union(tmp_0, tmp_1, tmp_2, toSet_0(destination));
|
|
1931
1931
|
}
|
|
1932
1932
|
function consume_7(_this__u8e3s4) {
|
|
1933
|
-
var tmp0_safe_receiver = _this__u8e3s4.
|
|
1933
|
+
var tmp0_safe_receiver = _this__u8e3s4.y2k_1;
|
|
1934
1934
|
var tmp;
|
|
1935
1935
|
if (tmp0_safe_receiver == null) {
|
|
1936
1936
|
tmp = null;
|
|
@@ -1940,7 +1940,7 @@ function consume_7(_this__u8e3s4) {
|
|
|
1940
1940
|
// Inline function 'community.flock.wirespec.compiler.lib.consume.<anonymous>' call
|
|
1941
1941
|
tmp = Companion_instance.u27(tmp0_safe_receiver);
|
|
1942
1942
|
}
|
|
1943
|
-
return new Channel(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.
|
|
1943
|
+
return new Channel(tmp, emptyList(), new DefinitionIdentifier(_this__u8e3s4.x2k_1), consume_13(_this__u8e3s4.reference));
|
|
1944
1944
|
}
|
|
1945
1945
|
function consume_8(_this__u8e3s4) {
|
|
1946
1946
|
var tmp;
|
|
@@ -2019,22 +2019,22 @@ function consume_12(_this__u8e3s4) {
|
|
|
2019
2019
|
function consume_13(_this__u8e3s4) {
|
|
2020
2020
|
var tmp;
|
|
2021
2021
|
if (_this__u8e3s4 instanceof WsAny) {
|
|
2022
|
-
tmp = new Any(_this__u8e3s4.
|
|
2022
|
+
tmp = new Any(_this__u8e3s4.h2l_1);
|
|
2023
2023
|
} else {
|
|
2024
2024
|
if (_this__u8e3s4 instanceof WsUnit) {
|
|
2025
|
-
tmp = new Unit(_this__u8e3s4.
|
|
2025
|
+
tmp = new Unit(_this__u8e3s4.i2l_1);
|
|
2026
2026
|
} else {
|
|
2027
2027
|
if (_this__u8e3s4 instanceof WsCustom) {
|
|
2028
|
-
tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.
|
|
2028
|
+
tmp = new Custom(_this__u8e3s4.value, _this__u8e3s4.m2l_1);
|
|
2029
2029
|
} else {
|
|
2030
2030
|
if (_this__u8e3s4 instanceof WsPrimitive) {
|
|
2031
|
-
tmp = new Primitive(consume_16(_this__u8e3s4.type), _this__u8e3s4.
|
|
2031
|
+
tmp = new Primitive(consume_16(_this__u8e3s4.type), _this__u8e3s4.n2l_1);
|
|
2032
2032
|
} else {
|
|
2033
2033
|
if (_this__u8e3s4 instanceof WsDict) {
|
|
2034
|
-
tmp = new Dict(consume_13(_this__u8e3s4.reference), _this__u8e3s4.
|
|
2034
|
+
tmp = new Dict(consume_13(_this__u8e3s4.reference), _this__u8e3s4.l2l_1);
|
|
2035
2035
|
} else {
|
|
2036
2036
|
if (_this__u8e3s4 instanceof WsIterable) {
|
|
2037
|
-
tmp = new Iterable(consume_13(_this__u8e3s4.reference), _this__u8e3s4.
|
|
2037
|
+
tmp = new Iterable(consume_13(_this__u8e3s4.reference), _this__u8e3s4.j2l_1);
|
|
2038
2038
|
} else {
|
|
2039
2039
|
noWhenBranchMatchedException();
|
|
2040
2040
|
}
|
|
@@ -2154,10 +2154,10 @@ function WsCompilationResult(result, errors) {
|
|
|
2154
2154
|
this.result = result;
|
|
2155
2155
|
this.errors = errors;
|
|
2156
2156
|
}
|
|
2157
|
-
protoOf(WsCompilationResult).
|
|
2157
|
+
protoOf(WsCompilationResult).v2l = function () {
|
|
2158
2158
|
return this.result;
|
|
2159
2159
|
};
|
|
2160
|
-
protoOf(WsCompilationResult).
|
|
2160
|
+
protoOf(WsCompilationResult).w2l = function () {
|
|
2161
2161
|
return this.errors;
|
|
2162
2162
|
};
|
|
2163
2163
|
function WsCompiled(value) {
|
|
@@ -2182,10 +2182,10 @@ function WsParseResult(result, errors) {
|
|
|
2182
2182
|
this.result = result;
|
|
2183
2183
|
this.errors = errors;
|
|
2184
2184
|
}
|
|
2185
|
-
protoOf(WsParseResult).
|
|
2185
|
+
protoOf(WsParseResult).v2l = function () {
|
|
2186
2186
|
return this.result;
|
|
2187
2187
|
};
|
|
2188
|
-
protoOf(WsParseResult).
|
|
2188
|
+
protoOf(WsParseResult).w2l = function () {
|
|
2189
2189
|
return this.errors;
|
|
2190
2190
|
};
|
|
2191
2191
|
function WsStringResult(result, errors) {
|
|
@@ -2194,20 +2194,20 @@ function WsStringResult(result, errors) {
|
|
|
2194
2194
|
this.result = result;
|
|
2195
2195
|
this.errors = errors;
|
|
2196
2196
|
}
|
|
2197
|
-
protoOf(WsStringResult).
|
|
2197
|
+
protoOf(WsStringResult).v2l = function () {
|
|
2198
2198
|
return this.result;
|
|
2199
2199
|
};
|
|
2200
|
-
protoOf(WsStringResult).
|
|
2200
|
+
protoOf(WsStringResult).w2l = function () {
|
|
2201
2201
|
return this.errors;
|
|
2202
2202
|
};
|
|
2203
2203
|
function WsEmitted(file, result) {
|
|
2204
2204
|
this.file = file;
|
|
2205
2205
|
this.result = result;
|
|
2206
2206
|
}
|
|
2207
|
-
protoOf(WsEmitted).
|
|
2207
|
+
protoOf(WsEmitted).x2l = function () {
|
|
2208
2208
|
return this.file;
|
|
2209
2209
|
};
|
|
2210
|
-
protoOf(WsEmitted).
|
|
2210
|
+
protoOf(WsEmitted).v2l = function () {
|
|
2211
2211
|
return this.result;
|
|
2212
2212
|
};
|
|
2213
2213
|
function produce_15(_this__u8e3s4) {
|
|
@@ -2283,10 +2283,10 @@ function WsTokenResult(tokens, error) {
|
|
|
2283
2283
|
this.tokens = tokens;
|
|
2284
2284
|
this.error = error;
|
|
2285
2285
|
}
|
|
2286
|
-
protoOf(WsTokenResult).
|
|
2286
|
+
protoOf(WsTokenResult).y2l = function () {
|
|
2287
2287
|
return this.tokens;
|
|
2288
2288
|
};
|
|
2289
|
-
protoOf(WsTokenResult).
|
|
2289
|
+
protoOf(WsTokenResult).i2j = function () {
|
|
2290
2290
|
return this.error;
|
|
2291
2291
|
};
|
|
2292
2292
|
protoOf(WsTokenResult).sd = function () {
|
|
@@ -2295,13 +2295,13 @@ protoOf(WsTokenResult).sd = function () {
|
|
|
2295
2295
|
protoOf(WsTokenResult).td = function () {
|
|
2296
2296
|
return this.error;
|
|
2297
2297
|
};
|
|
2298
|
-
protoOf(WsTokenResult).
|
|
2298
|
+
protoOf(WsTokenResult).z2l = function (tokens, error) {
|
|
2299
2299
|
return new WsTokenResult(tokens, error);
|
|
2300
2300
|
};
|
|
2301
2301
|
protoOf(WsTokenResult).copy = function (tokens, error, $super) {
|
|
2302
2302
|
tokens = tokens === VOID ? this.tokens : tokens;
|
|
2303
2303
|
error = error === VOID ? this.error : error;
|
|
2304
|
-
return this.
|
|
2304
|
+
return this.z2l(tokens, error);
|
|
2305
2305
|
};
|
|
2306
2306
|
protoOf(WsTokenResult).toString = function () {
|
|
2307
2307
|
return 'WsTokenResult(tokens=' + toString_0(this.tokens) + ', error=' + toString_0(this.error) + ')';
|
|
@@ -2346,12 +2346,12 @@ protoOf(WsTokens).hashCode = function () {
|
|
|
2346
2346
|
protoOf(WsTokens).sd = function () {
|
|
2347
2347
|
return this.value;
|
|
2348
2348
|
};
|
|
2349
|
-
protoOf(WsTokens).
|
|
2349
|
+
protoOf(WsTokens).a2m = function (value) {
|
|
2350
2350
|
return new WsTokens(value);
|
|
2351
2351
|
};
|
|
2352
2352
|
protoOf(WsTokens).copy = function (value, $super) {
|
|
2353
2353
|
value = value === VOID ? this.value : value;
|
|
2354
|
-
return this.
|
|
2354
|
+
return this.a2m(value);
|
|
2355
2355
|
};
|
|
2356
2356
|
protoOf(WsTokens).toString = function () {
|
|
2357
2357
|
return 'WsTokens(value=' + toString(this.value) + ')';
|
|
@@ -2368,7 +2368,7 @@ protoOf(WsToken).d1l = function () {
|
|
|
2368
2368
|
protoOf(WsToken).b1 = function () {
|
|
2369
2369
|
return this.value;
|
|
2370
2370
|
};
|
|
2371
|
-
protoOf(WsToken).
|
|
2371
|
+
protoOf(WsToken).b2m = function () {
|
|
2372
2372
|
return this.coordinates;
|
|
2373
2373
|
};
|
|
2374
2374
|
protoOf(WsToken).sd = function () {
|
|
@@ -2380,14 +2380,14 @@ protoOf(WsToken).td = function () {
|
|
|
2380
2380
|
protoOf(WsToken).uh = function () {
|
|
2381
2381
|
return this.coordinates;
|
|
2382
2382
|
};
|
|
2383
|
-
protoOf(WsToken).
|
|
2383
|
+
protoOf(WsToken).c2m = function (type, value, coordinates) {
|
|
2384
2384
|
return new WsToken(type, value, coordinates);
|
|
2385
2385
|
};
|
|
2386
2386
|
protoOf(WsToken).copy = function (type, value, coordinates, $super) {
|
|
2387
2387
|
type = type === VOID ? this.type : type;
|
|
2388
2388
|
value = value === VOID ? this.value : value;
|
|
2389
2389
|
coordinates = coordinates === VOID ? this.coordinates : coordinates;
|
|
2390
|
-
return this.
|
|
2390
|
+
return this.c2m(type, value, coordinates);
|
|
2391
2391
|
};
|
|
2392
2392
|
protoOf(WsToken).toString = function () {
|
|
2393
2393
|
return 'WsToken(type=' + this.type + ', value=' + this.value + ', coordinates=' + this.coordinates.toString() + ')';
|
|
@@ -2420,13 +2420,13 @@ function WsCoordinates(line, position, idxAndLength) {
|
|
|
2420
2420
|
this.position = position;
|
|
2421
2421
|
this.idxAndLength = idxAndLength;
|
|
2422
2422
|
}
|
|
2423
|
-
protoOf(WsCoordinates).
|
|
2423
|
+
protoOf(WsCoordinates).d2m = function () {
|
|
2424
2424
|
return this.line;
|
|
2425
2425
|
};
|
|
2426
|
-
protoOf(WsCoordinates).
|
|
2426
|
+
protoOf(WsCoordinates).e2m = function () {
|
|
2427
2427
|
return this.position;
|
|
2428
2428
|
};
|
|
2429
|
-
protoOf(WsCoordinates).
|
|
2429
|
+
protoOf(WsCoordinates).f2m = function () {
|
|
2430
2430
|
return this.idxAndLength;
|
|
2431
2431
|
};
|
|
2432
2432
|
protoOf(WsCoordinates).sd = function () {
|
|
@@ -2438,14 +2438,14 @@ protoOf(WsCoordinates).td = function () {
|
|
|
2438
2438
|
protoOf(WsCoordinates).uh = function () {
|
|
2439
2439
|
return this.idxAndLength;
|
|
2440
2440
|
};
|
|
2441
|
-
protoOf(WsCoordinates).
|
|
2441
|
+
protoOf(WsCoordinates).g2m = function (line, position, idxAndLength) {
|
|
2442
2442
|
return new WsCoordinates(line, position, idxAndLength);
|
|
2443
2443
|
};
|
|
2444
2444
|
protoOf(WsCoordinates).copy = function (line, position, idxAndLength, $super) {
|
|
2445
2445
|
line = line === VOID ? this.line : line;
|
|
2446
2446
|
position = position === VOID ? this.position : position;
|
|
2447
2447
|
idxAndLength = idxAndLength === VOID ? this.idxAndLength : idxAndLength;
|
|
2448
|
-
return this.
|
|
2448
|
+
return this.g2m(line, position, idxAndLength);
|
|
2449
2449
|
};
|
|
2450
2450
|
protoOf(WsCoordinates).toString = function () {
|
|
2451
2451
|
return 'WsCoordinates(line=' + this.line + ', position=' + this.position + ', idxAndLength=' + this.idxAndLength.toString() + ')';
|
|
@@ -2476,7 +2476,7 @@ function WsIndex(idx, length) {
|
|
|
2476
2476
|
this.idx = idx;
|
|
2477
2477
|
this.length = length;
|
|
2478
2478
|
}
|
|
2479
|
-
protoOf(WsIndex).
|
|
2479
|
+
protoOf(WsIndex).h2m = function () {
|
|
2480
2480
|
return this.idx;
|
|
2481
2481
|
};
|
|
2482
2482
|
protoOf(WsIndex).a = function () {
|
|
@@ -2488,13 +2488,13 @@ protoOf(WsIndex).sd = function () {
|
|
|
2488
2488
|
protoOf(WsIndex).td = function () {
|
|
2489
2489
|
return this.length;
|
|
2490
2490
|
};
|
|
2491
|
-
protoOf(WsIndex).
|
|
2491
|
+
protoOf(WsIndex).i2m = function (idx, length) {
|
|
2492
2492
|
return new WsIndex(idx, length);
|
|
2493
2493
|
};
|
|
2494
2494
|
protoOf(WsIndex).copy = function (idx, length, $super) {
|
|
2495
2495
|
idx = idx === VOID ? this.idx : idx;
|
|
2496
2496
|
length = length === VOID ? this.length : length;
|
|
2497
|
-
return this.
|
|
2497
|
+
return this.i2m(idx, length);
|
|
2498
2498
|
};
|
|
2499
2499
|
protoOf(WsIndex).toString = function () {
|
|
2500
2500
|
return 'WsIndex(idx=' + this.idx + ', length=' + this.length + ')';
|
|
@@ -2532,13 +2532,13 @@ function WsError(line, position, index, length, value) {
|
|
|
2532
2532
|
this.length = length;
|
|
2533
2533
|
this.value = value;
|
|
2534
2534
|
}
|
|
2535
|
-
protoOf(WsError).
|
|
2535
|
+
protoOf(WsError).d2m = function () {
|
|
2536
2536
|
return this.line;
|
|
2537
2537
|
};
|
|
2538
|
-
protoOf(WsError).
|
|
2538
|
+
protoOf(WsError).e2m = function () {
|
|
2539
2539
|
return this.position;
|
|
2540
2540
|
};
|
|
2541
|
-
protoOf(WsError).
|
|
2541
|
+
protoOf(WsError).j2m = function () {
|
|
2542
2542
|
return this.index;
|
|
2543
2543
|
};
|
|
2544
2544
|
protoOf(WsError).a = function () {
|
|
@@ -2556,13 +2556,13 @@ protoOf(WsError).td = function () {
|
|
|
2556
2556
|
protoOf(WsError).uh = function () {
|
|
2557
2557
|
return this.index;
|
|
2558
2558
|
};
|
|
2559
|
-
protoOf(WsError).
|
|
2559
|
+
protoOf(WsError).l2k = function () {
|
|
2560
2560
|
return this.length;
|
|
2561
2561
|
};
|
|
2562
|
-
protoOf(WsError).
|
|
2562
|
+
protoOf(WsError).m2k = function () {
|
|
2563
2563
|
return this.value;
|
|
2564
2564
|
};
|
|
2565
|
-
protoOf(WsError).
|
|
2565
|
+
protoOf(WsError).k2m = function (line, position, index, length, value) {
|
|
2566
2566
|
return new WsError(line, position, index, length, value);
|
|
2567
2567
|
};
|
|
2568
2568
|
protoOf(WsError).copy = function (line, position, index, length, value, $super) {
|
|
@@ -2571,7 +2571,7 @@ protoOf(WsError).copy = function (line, position, index, length, value, $super)
|
|
|
2571
2571
|
index = index === VOID ? this.index : index;
|
|
2572
2572
|
length = length === VOID ? this.length : length;
|
|
2573
2573
|
value = value === VOID ? this.value : value;
|
|
2574
|
-
return this.
|
|
2574
|
+
return this.k2m(line, position, index, length, value);
|
|
2575
2575
|
};
|
|
2576
2576
|
protoOf(WsError).toString = function () {
|
|
2577
2577
|
return 'WsError(line=' + this.line + ', position=' + this.position + ', index=' + this.index + ', length=' + this.length + ', value=' + this.value + ')';
|
|
@@ -2610,37 +2610,37 @@ defineProp(protoOf(WsType), 'identifier', function () {
|
|
|
2610
2610
|
return this.x25();
|
|
2611
2611
|
});
|
|
2612
2612
|
defineProp(protoOf(WsType), 'comment', function () {
|
|
2613
|
-
return this.
|
|
2613
|
+
return this.y2j();
|
|
2614
2614
|
});
|
|
2615
2615
|
defineProp(protoOf(WsEndpoint), 'identifier', function () {
|
|
2616
2616
|
return this.x25();
|
|
2617
2617
|
});
|
|
2618
2618
|
defineProp(protoOf(WsEndpoint), 'comment', function () {
|
|
2619
|
-
return this.
|
|
2619
|
+
return this.y2j();
|
|
2620
2620
|
});
|
|
2621
2621
|
defineProp(protoOf(WsEnum), 'identifier', function () {
|
|
2622
2622
|
return this.x25();
|
|
2623
2623
|
});
|
|
2624
2624
|
defineProp(protoOf(WsEnum), 'comment', function () {
|
|
2625
|
-
return this.
|
|
2625
|
+
return this.y2j();
|
|
2626
2626
|
});
|
|
2627
2627
|
defineProp(protoOf(WsUnion), 'identifier', function () {
|
|
2628
2628
|
return this.x25();
|
|
2629
2629
|
});
|
|
2630
2630
|
defineProp(protoOf(WsUnion), 'comment', function () {
|
|
2631
|
-
return this.
|
|
2631
|
+
return this.y2j();
|
|
2632
2632
|
});
|
|
2633
2633
|
defineProp(protoOf(WsChannel), 'identifier', function () {
|
|
2634
2634
|
return this.x25();
|
|
2635
2635
|
});
|
|
2636
2636
|
defineProp(protoOf(WsChannel), 'comment', function () {
|
|
2637
|
-
return this.
|
|
2637
|
+
return this.y2j();
|
|
2638
2638
|
});
|
|
2639
2639
|
defineProp(protoOf(WsRefined), 'identifier', function () {
|
|
2640
2640
|
return this.x25();
|
|
2641
2641
|
});
|
|
2642
2642
|
defineProp(protoOf(WsRefined), 'comment', function () {
|
|
2643
|
-
return this.
|
|
2643
|
+
return this.y2j();
|
|
2644
2644
|
});
|
|
2645
2645
|
defineProp(protoOf(WsMethod), 'name', protoOf(WsMethod).s2);
|
|
2646
2646
|
defineProp(protoOf(WsMethod), 'ordinal', protoOf(WsMethod).t2);
|