@powerlines/deepkit 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +294 -0
  3. package/bin/deepkit-install.cjs +154 -0
  4. package/dist/vendor/chunk-6PEHRAEP.js +30 -0
  5. package/dist/vendor/chunk-6PEHRAEP.js.map +1 -0
  6. package/dist/vendor/chunk-6RPJLSJ7.cjs +44 -0
  7. package/dist/vendor/chunk-6RPJLSJ7.cjs.map +1 -0
  8. package/dist/vendor/chunk-7MWDRXRC.cjs +3861 -0
  9. package/dist/vendor/chunk-7MWDRXRC.cjs.map +1 -0
  10. package/dist/vendor/chunk-AXYJRGEC.js +3706 -0
  11. package/dist/vendor/chunk-AXYJRGEC.js.map +1 -0
  12. package/dist/vendor/chunk-BMYCXG6Q.js +7066 -0
  13. package/dist/vendor/chunk-BMYCXG6Q.js.map +1 -0
  14. package/dist/vendor/chunk-IEOTB37Y.js +3515 -0
  15. package/dist/vendor/chunk-IEOTB37Y.js.map +1 -0
  16. package/dist/vendor/chunk-MFEKHQA3.cjs +3533 -0
  17. package/dist/vendor/chunk-MFEKHQA3.cjs.map +1 -0
  18. package/dist/vendor/chunk-ORGCWC7F.js +111 -0
  19. package/dist/vendor/chunk-ORGCWC7F.js.map +1 -0
  20. package/dist/vendor/chunk-RPJZ57R3.cjs +117 -0
  21. package/dist/vendor/chunk-RPJZ57R3.cjs.map +1 -0
  22. package/dist/vendor/chunk-YVTAKAMT.cjs +7080 -0
  23. package/dist/vendor/chunk-YVTAKAMT.cjs.map +1 -0
  24. package/dist/vendor/compiler.cjs +46 -0
  25. package/dist/vendor/compiler.cjs.map +1 -0
  26. package/dist/vendor/compiler.d.cts +3 -0
  27. package/dist/vendor/compiler.d.ts +3 -0
  28. package/dist/vendor/compiler.js +7 -0
  29. package/dist/vendor/compiler.js.map +1 -0
  30. package/dist/vendor/config.cjs +37 -0
  31. package/dist/vendor/config.cjs.map +1 -0
  32. package/dist/vendor/config.d.cts +1 -0
  33. package/dist/vendor/config.d.ts +1 -0
  34. package/dist/vendor/config.js +7 -0
  35. package/dist/vendor/config.js.map +1 -0
  36. package/dist/vendor/core.cjs +518 -0
  37. package/dist/vendor/core.cjs.map +1 -0
  38. package/dist/vendor/core.d.cts +3 -0
  39. package/dist/vendor/core.d.ts +3 -0
  40. package/dist/vendor/core.js +4 -0
  41. package/dist/vendor/core.js.map +1 -0
  42. package/dist/vendor/index.cjs +108 -0
  43. package/dist/vendor/index.cjs.map +1 -0
  44. package/dist/vendor/index.d.cts +1 -0
  45. package/dist/vendor/index.d.ts +1 -0
  46. package/dist/vendor/index.js +67 -0
  47. package/dist/vendor/index.js.map +1 -0
  48. package/dist/vendor/type-spec.cjs +18 -0
  49. package/dist/vendor/type-spec.cjs.map +1 -0
  50. package/dist/vendor/type-spec.d.cts +1 -0
  51. package/dist/vendor/type-spec.d.ts +1 -0
  52. package/dist/vendor/type-spec.js +4 -0
  53. package/dist/vendor/type-spec.js.map +1 -0
  54. package/dist/vendor/type.cjs +18887 -0
  55. package/dist/vendor/type.cjs.map +1 -0
  56. package/dist/vendor/type.d.cts +1 -0
  57. package/dist/vendor/type.d.ts +1 -0
  58. package/dist/vendor/type.js +18361 -0
  59. package/dist/vendor/type.js.map +1 -0
  60. package/package.json +142 -0
  61. package/schemas/reflection.capnp +406 -0
  62. package/schemas/reflection.cjs +4218 -0
  63. package/schemas/reflection.d.cts +1611 -0
  64. package/schemas/reflection.d.ts +1611 -0
  65. package/schemas/reflection.js +4153 -0
@@ -0,0 +1,4153 @@
1
+ import * as $ from '@stryke/capnp';
2
+
3
+ var __defProp = Object.defineProperty;
4
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
5
+ var _capnpFileId = BigInt("0xae3c363dcecf2729");
6
+ var ReflectionKind = {
7
+ NEVER: 0,
8
+ ANY: 1,
9
+ UNKNOWN: 2,
10
+ VOID: 3,
11
+ OBJECT: 4,
12
+ STRING: 5,
13
+ NUMBER: 6,
14
+ BOOLEAN: 7,
15
+ SYMBOL: 8,
16
+ BIGINT: 9,
17
+ NULL: 10,
18
+ UNDEFINED: 11,
19
+ REGEXP: 12,
20
+ LITERAL: 13,
21
+ TEMPLATE_LITERAL: 14,
22
+ PROPERTY: 15,
23
+ METHOD: 16,
24
+ FUNCTION: 17,
25
+ PARAMETER: 18,
26
+ PROMISE: 19,
27
+ CLASS: 20,
28
+ TYPE_PARAMETER: 21,
29
+ ENUM: 22,
30
+ UNION: 23,
31
+ INTERSECTION: 24,
32
+ ARRAY: 25,
33
+ TUPLE: 26,
34
+ TUPLE_MEMBER: 27,
35
+ ENUM_MEMBER: 28,
36
+ REST: 29,
37
+ OBJECT_LITERAL: 30,
38
+ INDEX_SIGNATURE: 31,
39
+ PROPERTY_SIGNATURE: 32,
40
+ METHOD_SIGNATURE: 33,
41
+ INFER: 34,
42
+ CALL_SIGNATURE: 35
43
+ };
44
+ var ReflectionVisibility = {
45
+ PUBLIC: 0,
46
+ PROTECTED: 1,
47
+ PRIVATE: 2
48
+ };
49
+ var TagsReflection = class extends $.Struct {
50
+ static {
51
+ __name(this, "TagsReflection");
52
+ }
53
+ static _capnp = {
54
+ displayName: "TagsReflection",
55
+ id: "ab7e31d6b834bbf8",
56
+ size: new $.ObjectSize(8, 4)
57
+ };
58
+ _adoptAlias(value) {
59
+ $.utils.adopt(value, $.utils.getPointer(0, this));
60
+ }
61
+ _disownAlias() {
62
+ return $.utils.disown(this.alias);
63
+ }
64
+ get alias() {
65
+ return $.utils.getList(0, $.TextList, this);
66
+ }
67
+ _hasAlias() {
68
+ return !$.utils.isNull($.utils.getPointer(0, this));
69
+ }
70
+ _initAlias(length) {
71
+ return $.utils.initList(0, $.TextList, length, this);
72
+ }
73
+ set alias(value) {
74
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
75
+ }
76
+ get title() {
77
+ return $.utils.getText(1, this);
78
+ }
79
+ set title(value) {
80
+ $.utils.setText(1, value, this);
81
+ }
82
+ get hidden() {
83
+ return $.utils.getBit(0, this);
84
+ }
85
+ set hidden(value) {
86
+ $.utils.setBit(0, value, this);
87
+ }
88
+ get readonly() {
89
+ return $.utils.getBit(1, this);
90
+ }
91
+ set readonly(value) {
92
+ $.utils.setBit(1, value, this);
93
+ }
94
+ get ignore() {
95
+ return $.utils.getBit(2, this);
96
+ }
97
+ set ignore(value) {
98
+ $.utils.setBit(2, value, this);
99
+ }
100
+ get internal() {
101
+ return $.utils.getBit(3, this);
102
+ }
103
+ set internal(value) {
104
+ $.utils.setBit(3, value, this);
105
+ }
106
+ _adoptPermission(value) {
107
+ $.utils.adopt(value, $.utils.getPointer(2, this));
108
+ }
109
+ _disownPermission() {
110
+ return $.utils.disown(this.permission);
111
+ }
112
+ get permission() {
113
+ return $.utils.getList(2, $.TextList, this);
114
+ }
115
+ _hasPermission() {
116
+ return !$.utils.isNull($.utils.getPointer(2, this));
117
+ }
118
+ _initPermission(length) {
119
+ return $.utils.initList(2, $.TextList, length, this);
120
+ }
121
+ set permission(value) {
122
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
123
+ }
124
+ get domain() {
125
+ return $.utils.getText(3, this);
126
+ }
127
+ set domain(value) {
128
+ $.utils.setText(3, value, this);
129
+ }
130
+ toString() {
131
+ return "TagsReflection_" + super.toString();
132
+ }
133
+ };
134
+ var DefaultValueReflection_Value_Which = {
135
+ UNDEFINED: 0,
136
+ BOOLEAN: 1,
137
+ INTEGER: 2,
138
+ FLOAT: 3,
139
+ STRING: 4
140
+ };
141
+ var DefaultValueReflection_Value = class extends $.Struct {
142
+ static {
143
+ __name(this, "DefaultValueReflection_Value");
144
+ }
145
+ static UNDEFINED = DefaultValueReflection_Value_Which.UNDEFINED;
146
+ static BOOLEAN = DefaultValueReflection_Value_Which.BOOLEAN;
147
+ static INTEGER = DefaultValueReflection_Value_Which.INTEGER;
148
+ static FLOAT = DefaultValueReflection_Value_Which.FLOAT;
149
+ static STRING = DefaultValueReflection_Value_Which.STRING;
150
+ static _capnp = {
151
+ displayName: "value",
152
+ id: "8748135e0497fe81",
153
+ size: new $.ObjectSize(16, 1)
154
+ };
155
+ get _isUndefined() {
156
+ return $.utils.getUint16(0, this) === 0;
157
+ }
158
+ set undefined(_) {
159
+ $.utils.setUint16(0, 0, this);
160
+ }
161
+ get boolean() {
162
+ $.utils.testWhich("boolean", $.utils.getUint16(0, this), 1, this);
163
+ return $.utils.getBit(16, this);
164
+ }
165
+ get _isBoolean() {
166
+ return $.utils.getUint16(0, this) === 1;
167
+ }
168
+ set boolean(value) {
169
+ $.utils.setUint16(0, 1, this);
170
+ $.utils.setBit(16, value, this);
171
+ }
172
+ get integer() {
173
+ $.utils.testWhich("integer", $.utils.getUint16(0, this), 2, this);
174
+ return $.utils.getInt32(4, this);
175
+ }
176
+ get _isInteger() {
177
+ return $.utils.getUint16(0, this) === 2;
178
+ }
179
+ set integer(value) {
180
+ $.utils.setUint16(0, 2, this);
181
+ $.utils.setInt32(4, value, this);
182
+ }
183
+ get float() {
184
+ $.utils.testWhich("float", $.utils.getUint16(0, this), 3, this);
185
+ return $.utils.getFloat64(8, this);
186
+ }
187
+ get _isFloat() {
188
+ return $.utils.getUint16(0, this) === 3;
189
+ }
190
+ set float(value) {
191
+ $.utils.setUint16(0, 3, this);
192
+ $.utils.setFloat64(8, value, this);
193
+ }
194
+ get string() {
195
+ $.utils.testWhich("string", $.utils.getUint16(0, this), 4, this);
196
+ return $.utils.getText(0, this);
197
+ }
198
+ get _isString() {
199
+ return $.utils.getUint16(0, this) === 4;
200
+ }
201
+ set string(value) {
202
+ $.utils.setUint16(0, 4, this);
203
+ $.utils.setText(0, value, this);
204
+ }
205
+ toString() {
206
+ return "DefaultValueReflection_Value_" + super.toString();
207
+ }
208
+ which() {
209
+ return $.utils.getUint16(0, this);
210
+ }
211
+ };
212
+ var DefaultValueReflection = class extends $.Struct {
213
+ static {
214
+ __name(this, "DefaultValueReflection");
215
+ }
216
+ static _capnp = {
217
+ displayName: "DefaultValueReflection",
218
+ id: "96fe6f07954197c9",
219
+ size: new $.ObjectSize(16, 1)
220
+ };
221
+ get value() {
222
+ return $.utils.getAs(DefaultValueReflection_Value, this);
223
+ }
224
+ _initValue() {
225
+ return $.utils.getAs(DefaultValueReflection_Value, this);
226
+ }
227
+ toString() {
228
+ return "DefaultValueReflection_" + super.toString();
229
+ }
230
+ };
231
+ var SerializedTypeReference = class extends $.Struct {
232
+ static {
233
+ __name(this, "SerializedTypeReference");
234
+ }
235
+ static _capnp = {
236
+ displayName: "SerializedTypeReference",
237
+ id: "a83d8a28b5e80f3a",
238
+ size: new $.ObjectSize(8, 0)
239
+ };
240
+ get id() {
241
+ return $.utils.getUint32(0, this);
242
+ }
243
+ set id(value) {
244
+ $.utils.setUint32(0, value, this);
245
+ }
246
+ toString() {
247
+ return "SerializedTypeReference_" + super.toString();
248
+ }
249
+ };
250
+ var IndexAccessOrigin = class extends $.Struct {
251
+ static {
252
+ __name(this, "IndexAccessOrigin");
253
+ }
254
+ static _capnp = {
255
+ displayName: "IndexAccessOrigin",
256
+ id: "ca50b18186c87afe",
257
+ size: new $.ObjectSize(0, 2)
258
+ };
259
+ _adoptContainer(value) {
260
+ $.utils.adopt(value, $.utils.getPointer(0, this));
261
+ }
262
+ _disownContainer() {
263
+ return $.utils.disown(this.container);
264
+ }
265
+ get container() {
266
+ return $.utils.getStruct(0, SerializedTypeReference, this);
267
+ }
268
+ _hasContainer() {
269
+ return !$.utils.isNull($.utils.getPointer(0, this));
270
+ }
271
+ _initContainer() {
272
+ return $.utils.initStructAt(0, SerializedTypeReference, this);
273
+ }
274
+ set container(value) {
275
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
276
+ }
277
+ _adoptIndex(value) {
278
+ $.utils.adopt(value, $.utils.getPointer(1, this));
279
+ }
280
+ _disownIndex() {
281
+ return $.utils.disown(this.index);
282
+ }
283
+ get index() {
284
+ return $.utils.getStruct(1, SerializedTypeReference, this);
285
+ }
286
+ _hasIndex() {
287
+ return !$.utils.isNull($.utils.getPointer(1, this));
288
+ }
289
+ _initIndex() {
290
+ return $.utils.initStructAt(1, SerializedTypeReference, this);
291
+ }
292
+ set index(value) {
293
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
294
+ }
295
+ toString() {
296
+ return "IndexAccessOrigin_" + super.toString();
297
+ }
298
+ };
299
+ var EntityOptions_EntityIndexOptions = class extends $.Struct {
300
+ static {
301
+ __name(this, "EntityOptions_EntityIndexOptions");
302
+ }
303
+ static _capnp = {
304
+ displayName: "EntityIndexOptions",
305
+ id: "de584ad10b7c5004",
306
+ size: new $.ObjectSize(0, 2)
307
+ };
308
+ _adoptNames(value) {
309
+ $.utils.adopt(value, $.utils.getPointer(0, this));
310
+ }
311
+ _disownNames() {
312
+ return $.utils.disown(this.names);
313
+ }
314
+ get names() {
315
+ return $.utils.getList(0, $.TextList, this);
316
+ }
317
+ _hasNames() {
318
+ return !$.utils.isNull($.utils.getPointer(0, this));
319
+ }
320
+ _initNames(length) {
321
+ return $.utils.initList(0, $.TextList, length, this);
322
+ }
323
+ set names(value) {
324
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
325
+ }
326
+ /**
327
+ * JSON stringified options
328
+ *
329
+ */
330
+ get options() {
331
+ return $.utils.getText(1, this);
332
+ }
333
+ set options(value) {
334
+ $.utils.setText(1, value, this);
335
+ }
336
+ toString() {
337
+ return "EntityOptions_EntityIndexOptions_" + super.toString();
338
+ }
339
+ };
340
+ var EntityOptions = class _EntityOptions extends $.Struct {
341
+ static {
342
+ __name(this, "EntityOptions");
343
+ }
344
+ static EntityIndexOptions = EntityOptions_EntityIndexOptions;
345
+ static _capnp = {
346
+ displayName: "EntityOptions",
347
+ id: "948d2d02cf676d60",
348
+ size: new $.ObjectSize(8, 5)
349
+ };
350
+ static _Indexes;
351
+ get name() {
352
+ return $.utils.getText(0, this);
353
+ }
354
+ set name(value) {
355
+ $.utils.setText(0, value, this);
356
+ }
357
+ get description() {
358
+ return $.utils.getText(1, this);
359
+ }
360
+ set description(value) {
361
+ $.utils.setText(1, value, this);
362
+ }
363
+ get collection() {
364
+ return $.utils.getText(2, this);
365
+ }
366
+ set collection(value) {
367
+ $.utils.setText(2, value, this);
368
+ }
369
+ get database() {
370
+ return $.utils.getText(3, this);
371
+ }
372
+ set database(value) {
373
+ $.utils.setText(3, value, this);
374
+ }
375
+ get singleTableInheritance() {
376
+ return $.utils.getBit(0, this);
377
+ }
378
+ set singleTableInheritance(value) {
379
+ $.utils.setBit(0, value, this);
380
+ }
381
+ _adoptIndexes(value) {
382
+ $.utils.adopt(value, $.utils.getPointer(4, this));
383
+ }
384
+ _disownIndexes() {
385
+ return $.utils.disown(this.indexes);
386
+ }
387
+ get indexes() {
388
+ return $.utils.getList(4, _EntityOptions._Indexes, this);
389
+ }
390
+ _hasIndexes() {
391
+ return !$.utils.isNull($.utils.getPointer(4, this));
392
+ }
393
+ _initIndexes(length) {
394
+ return $.utils.initList(4, _EntityOptions._Indexes, length, this);
395
+ }
396
+ set indexes(value) {
397
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
398
+ }
399
+ toString() {
400
+ return "EntityOptions_" + super.toString();
401
+ }
402
+ };
403
+ var SerializedTypeObjectLiteral = class _SerializedTypeObjectLiteral extends $.Struct {
404
+ static {
405
+ __name(this, "SerializedTypeObjectLiteral");
406
+ }
407
+ static _capnp = {
408
+ displayName: "SerializedTypeObjectLiteral",
409
+ id: "8b56235ad9bcb2b1",
410
+ size: new $.ObjectSize(8, 6)
411
+ };
412
+ static _TypeArguments;
413
+ static _Decorators;
414
+ static _Types;
415
+ get typeName() {
416
+ return $.utils.getText(0, this);
417
+ }
418
+ set typeName(value) {
419
+ $.utils.setText(0, value, this);
420
+ }
421
+ _adoptTypeArguments(value) {
422
+ $.utils.adopt(value, $.utils.getPointer(1, this));
423
+ }
424
+ _disownTypeArguments() {
425
+ return $.utils.disown(this.typeArguments);
426
+ }
427
+ get typeArguments() {
428
+ return $.utils.getList(1, _SerializedTypeObjectLiteral._TypeArguments, this);
429
+ }
430
+ _hasTypeArguments() {
431
+ return !$.utils.isNull($.utils.getPointer(1, this));
432
+ }
433
+ _initTypeArguments(length) {
434
+ return $.utils.initList(1, _SerializedTypeObjectLiteral._TypeArguments, length, this);
435
+ }
436
+ set typeArguments(value) {
437
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
438
+ }
439
+ _adoptIndexAccessOrigin(value) {
440
+ $.utils.adopt(value, $.utils.getPointer(2, this));
441
+ }
442
+ _disownIndexAccessOrigin() {
443
+ return $.utils.disown(this.indexAccessOrigin);
444
+ }
445
+ get indexAccessOrigin() {
446
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
447
+ }
448
+ _hasIndexAccessOrigin() {
449
+ return !$.utils.isNull($.utils.getPointer(2, this));
450
+ }
451
+ _initIndexAccessOrigin() {
452
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
453
+ }
454
+ set indexAccessOrigin(value) {
455
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
456
+ }
457
+ _adoptDecorators(value) {
458
+ $.utils.adopt(value, $.utils.getPointer(3, this));
459
+ }
460
+ _disownDecorators() {
461
+ return $.utils.disown(this.decorators);
462
+ }
463
+ get decorators() {
464
+ return $.utils.getList(3, _SerializedTypeObjectLiteral._Decorators, this);
465
+ }
466
+ _hasDecorators() {
467
+ return !$.utils.isNull($.utils.getPointer(3, this));
468
+ }
469
+ _initDecorators(length) {
470
+ return $.utils.initList(3, _SerializedTypeObjectLiteral._Decorators, length, this);
471
+ }
472
+ set decorators(value) {
473
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
474
+ }
475
+ get kind() {
476
+ return $.utils.getUint16(0, this);
477
+ }
478
+ set kind(value) {
479
+ $.utils.setUint16(0, value, this);
480
+ }
481
+ _adoptTypes(value) {
482
+ $.utils.adopt(value, $.utils.getPointer(4, this));
483
+ }
484
+ _disownTypes() {
485
+ return $.utils.disown(this.types);
486
+ }
487
+ get types() {
488
+ return $.utils.getList(4, _SerializedTypeObjectLiteral._Types, this);
489
+ }
490
+ _hasTypes() {
491
+ return !$.utils.isNull($.utils.getPointer(4, this));
492
+ }
493
+ _initTypes(length) {
494
+ return $.utils.initList(4, _SerializedTypeObjectLiteral._Types, length, this);
495
+ }
496
+ set types(value) {
497
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
498
+ }
499
+ _adoptTags(value) {
500
+ $.utils.adopt(value, $.utils.getPointer(5, this));
501
+ }
502
+ _disownTags() {
503
+ return $.utils.disown(this.tags);
504
+ }
505
+ get tags() {
506
+ return $.utils.getStruct(5, TagsReflection, this);
507
+ }
508
+ _hasTags() {
509
+ return !$.utils.isNull($.utils.getPointer(5, this));
510
+ }
511
+ _initTags() {
512
+ return $.utils.initStructAt(5, TagsReflection, this);
513
+ }
514
+ set tags(value) {
515
+ $.utils.copyFrom(value, $.utils.getPointer(5, this));
516
+ }
517
+ toString() {
518
+ return "SerializedTypeObjectLiteral_" + super.toString();
519
+ }
520
+ };
521
+ var SerializedTypeClassType = class _SerializedTypeClassType extends $.Struct {
522
+ static {
523
+ __name(this, "SerializedTypeClassType");
524
+ }
525
+ static _capnp = {
526
+ displayName: "SerializedTypeClassType",
527
+ id: "9855392bf9c48b25",
528
+ size: new $.ObjectSize(8, 11)
529
+ };
530
+ static _TypeArguments;
531
+ static _Decorators;
532
+ static _ExtendsArguments;
533
+ static _Arguments;
534
+ static _Types;
535
+ get typeName() {
536
+ return $.utils.getText(0, this);
537
+ }
538
+ set typeName(value) {
539
+ $.utils.setText(0, value, this);
540
+ }
541
+ _adoptTypeArguments(value) {
542
+ $.utils.adopt(value, $.utils.getPointer(1, this));
543
+ }
544
+ _disownTypeArguments() {
545
+ return $.utils.disown(this.typeArguments);
546
+ }
547
+ get typeArguments() {
548
+ return $.utils.getList(1, _SerializedTypeClassType._TypeArguments, this);
549
+ }
550
+ _hasTypeArguments() {
551
+ return !$.utils.isNull($.utils.getPointer(1, this));
552
+ }
553
+ _initTypeArguments(length) {
554
+ return $.utils.initList(1, _SerializedTypeClassType._TypeArguments, length, this);
555
+ }
556
+ set typeArguments(value) {
557
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
558
+ }
559
+ _adoptIndexAccessOrigin(value) {
560
+ $.utils.adopt(value, $.utils.getPointer(2, this));
561
+ }
562
+ _disownIndexAccessOrigin() {
563
+ return $.utils.disown(this.indexAccessOrigin);
564
+ }
565
+ get indexAccessOrigin() {
566
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
567
+ }
568
+ _hasIndexAccessOrigin() {
569
+ return !$.utils.isNull($.utils.getPointer(2, this));
570
+ }
571
+ _initIndexAccessOrigin() {
572
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
573
+ }
574
+ set indexAccessOrigin(value) {
575
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
576
+ }
577
+ _adoptDecorators(value) {
578
+ $.utils.adopt(value, $.utils.getPointer(3, this));
579
+ }
580
+ _disownDecorators() {
581
+ return $.utils.disown(this.decorators);
582
+ }
583
+ get decorators() {
584
+ return $.utils.getList(3, _SerializedTypeClassType._Decorators, this);
585
+ }
586
+ _hasDecorators() {
587
+ return !$.utils.isNull($.utils.getPointer(3, this));
588
+ }
589
+ _initDecorators(length) {
590
+ return $.utils.initList(3, _SerializedTypeClassType._Decorators, length, this);
591
+ }
592
+ set decorators(value) {
593
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
594
+ }
595
+ get kind() {
596
+ return $.utils.getUint16(0, this);
597
+ }
598
+ set kind(value) {
599
+ $.utils.setUint16(0, value, this);
600
+ }
601
+ get name() {
602
+ return $.utils.getText(4, this);
603
+ }
604
+ set name(value) {
605
+ $.utils.setText(4, value, this);
606
+ }
607
+ get globalObject() {
608
+ return $.utils.getBit(16, this);
609
+ }
610
+ set globalObject(value) {
611
+ $.utils.setBit(16, value, this);
612
+ }
613
+ get classType() {
614
+ return $.utils.getText(5, this);
615
+ }
616
+ set classType(value) {
617
+ $.utils.setText(5, value, this);
618
+ }
619
+ _adoptExtendsArguments(value) {
620
+ $.utils.adopt(value, $.utils.getPointer(6, this));
621
+ }
622
+ _disownExtendsArguments() {
623
+ return $.utils.disown(this.extendsArguments);
624
+ }
625
+ get extendsArguments() {
626
+ return $.utils.getList(6, _SerializedTypeClassType._ExtendsArguments, this);
627
+ }
628
+ _hasExtendsArguments() {
629
+ return !$.utils.isNull($.utils.getPointer(6, this));
630
+ }
631
+ _initExtendsArguments(length) {
632
+ return $.utils.initList(6, _SerializedTypeClassType._ExtendsArguments, length, this);
633
+ }
634
+ set extendsArguments(value) {
635
+ $.utils.copyFrom(value, $.utils.getPointer(6, this));
636
+ }
637
+ _adoptArguments(value) {
638
+ $.utils.adopt(value, $.utils.getPointer(7, this));
639
+ }
640
+ _disownArguments() {
641
+ return $.utils.disown(this.arguments);
642
+ }
643
+ get arguments() {
644
+ return $.utils.getList(7, _SerializedTypeClassType._Arguments, this);
645
+ }
646
+ _hasArguments() {
647
+ return !$.utils.isNull($.utils.getPointer(7, this));
648
+ }
649
+ _initArguments(length) {
650
+ return $.utils.initList(7, _SerializedTypeClassType._Arguments, length, this);
651
+ }
652
+ set arguments(value) {
653
+ $.utils.copyFrom(value, $.utils.getPointer(7, this));
654
+ }
655
+ _adoptSuperClass(value) {
656
+ $.utils.adopt(value, $.utils.getPointer(8, this));
657
+ }
658
+ _disownSuperClass() {
659
+ return $.utils.disown(this.superClass);
660
+ }
661
+ get superClass() {
662
+ return $.utils.getStruct(8, SerializedTypeReference, this);
663
+ }
664
+ _hasSuperClass() {
665
+ return !$.utils.isNull($.utils.getPointer(8, this));
666
+ }
667
+ _initSuperClass() {
668
+ return $.utils.initStructAt(8, SerializedTypeReference, this);
669
+ }
670
+ set superClass(value) {
671
+ $.utils.copyFrom(value, $.utils.getPointer(8, this));
672
+ }
673
+ _adoptTypes(value) {
674
+ $.utils.adopt(value, $.utils.getPointer(9, this));
675
+ }
676
+ _disownTypes() {
677
+ return $.utils.disown(this.types);
678
+ }
679
+ get types() {
680
+ return $.utils.getList(9, _SerializedTypeClassType._Types, this);
681
+ }
682
+ _hasTypes() {
683
+ return !$.utils.isNull($.utils.getPointer(9, this));
684
+ }
685
+ _initTypes(length) {
686
+ return $.utils.initList(9, _SerializedTypeClassType._Types, length, this);
687
+ }
688
+ set types(value) {
689
+ $.utils.copyFrom(value, $.utils.getPointer(9, this));
690
+ }
691
+ _adoptTags(value) {
692
+ $.utils.adopt(value, $.utils.getPointer(10, this));
693
+ }
694
+ _disownTags() {
695
+ return $.utils.disown(this.tags);
696
+ }
697
+ get tags() {
698
+ return $.utils.getStruct(10, TagsReflection, this);
699
+ }
700
+ _hasTags() {
701
+ return !$.utils.isNull($.utils.getPointer(10, this));
702
+ }
703
+ _initTags() {
704
+ return $.utils.initStructAt(10, TagsReflection, this);
705
+ }
706
+ set tags(value) {
707
+ $.utils.copyFrom(value, $.utils.getPointer(10, this));
708
+ }
709
+ toString() {
710
+ return "SerializedTypeClassType_" + super.toString();
711
+ }
712
+ };
713
+ var SerializedTypeParameter = class _SerializedTypeParameter extends $.Struct {
714
+ static {
715
+ __name(this, "SerializedTypeParameter");
716
+ }
717
+ static _capnp = {
718
+ displayName: "SerializedTypeParameter",
719
+ id: "fcbaa08bb97b8b1a",
720
+ size: new $.ObjectSize(8, 8)
721
+ };
722
+ static _TypeArguments;
723
+ static _Decorators;
724
+ get typeName() {
725
+ return $.utils.getText(0, this);
726
+ }
727
+ set typeName(value) {
728
+ $.utils.setText(0, value, this);
729
+ }
730
+ _adoptTypeArguments(value) {
731
+ $.utils.adopt(value, $.utils.getPointer(1, this));
732
+ }
733
+ _disownTypeArguments() {
734
+ return $.utils.disown(this.typeArguments);
735
+ }
736
+ get typeArguments() {
737
+ return $.utils.getList(1, _SerializedTypeParameter._TypeArguments, this);
738
+ }
739
+ _hasTypeArguments() {
740
+ return !$.utils.isNull($.utils.getPointer(1, this));
741
+ }
742
+ _initTypeArguments(length) {
743
+ return $.utils.initList(1, _SerializedTypeParameter._TypeArguments, length, this);
744
+ }
745
+ set typeArguments(value) {
746
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
747
+ }
748
+ _adoptIndexAccessOrigin(value) {
749
+ $.utils.adopt(value, $.utils.getPointer(2, this));
750
+ }
751
+ _disownIndexAccessOrigin() {
752
+ return $.utils.disown(this.indexAccessOrigin);
753
+ }
754
+ get indexAccessOrigin() {
755
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
756
+ }
757
+ _hasIndexAccessOrigin() {
758
+ return !$.utils.isNull($.utils.getPointer(2, this));
759
+ }
760
+ _initIndexAccessOrigin() {
761
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
762
+ }
763
+ set indexAccessOrigin(value) {
764
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
765
+ }
766
+ _adoptDecorators(value) {
767
+ $.utils.adopt(value, $.utils.getPointer(3, this));
768
+ }
769
+ _disownDecorators() {
770
+ return $.utils.disown(this.decorators);
771
+ }
772
+ get decorators() {
773
+ return $.utils.getList(3, _SerializedTypeParameter._Decorators, this);
774
+ }
775
+ _hasDecorators() {
776
+ return !$.utils.isNull($.utils.getPointer(3, this));
777
+ }
778
+ _initDecorators(length) {
779
+ return $.utils.initList(3, _SerializedTypeParameter._Decorators, length, this);
780
+ }
781
+ set decorators(value) {
782
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
783
+ }
784
+ get kind() {
785
+ return $.utils.getUint16(0, this);
786
+ }
787
+ set kind(value) {
788
+ $.utils.setUint16(0, value, this);
789
+ }
790
+ get name() {
791
+ return $.utils.getText(4, this);
792
+ }
793
+ set name(value) {
794
+ $.utils.setText(4, value, this);
795
+ }
796
+ _adoptType(value) {
797
+ $.utils.adopt(value, $.utils.getPointer(5, this));
798
+ }
799
+ _disownType() {
800
+ return $.utils.disown(this.type);
801
+ }
802
+ get type() {
803
+ return $.utils.getStruct(5, SerializedTypeReference, this);
804
+ }
805
+ _hasType() {
806
+ return !$.utils.isNull($.utils.getPointer(5, this));
807
+ }
808
+ _initType() {
809
+ return $.utils.initStructAt(5, SerializedTypeReference, this);
810
+ }
811
+ set type(value) {
812
+ $.utils.copyFrom(value, $.utils.getPointer(5, this));
813
+ }
814
+ get visibility() {
815
+ return $.utils.getUint16(2, this);
816
+ }
817
+ set visibility(value) {
818
+ $.utils.setUint16(2, value, this);
819
+ }
820
+ get readonly() {
821
+ return $.utils.getBit(32, this);
822
+ }
823
+ set readonly(value) {
824
+ $.utils.setBit(32, value, this);
825
+ }
826
+ get optional() {
827
+ return $.utils.getBit(33, this);
828
+ }
829
+ set optional(value) {
830
+ $.utils.setBit(33, value, this);
831
+ }
832
+ _adoptDefault(value) {
833
+ $.utils.adopt(value, $.utils.getPointer(6, this));
834
+ }
835
+ _disownDefault() {
836
+ return $.utils.disown(this.default);
837
+ }
838
+ get default() {
839
+ return $.utils.getStruct(6, DefaultValueReflection, this);
840
+ }
841
+ _hasDefault() {
842
+ return !$.utils.isNull($.utils.getPointer(6, this));
843
+ }
844
+ _initDefault() {
845
+ return $.utils.initStructAt(6, DefaultValueReflection, this);
846
+ }
847
+ set default(value) {
848
+ $.utils.copyFrom(value, $.utils.getPointer(6, this));
849
+ }
850
+ _adoptTags(value) {
851
+ $.utils.adopt(value, $.utils.getPointer(7, this));
852
+ }
853
+ _disownTags() {
854
+ return $.utils.disown(this.tags);
855
+ }
856
+ get tags() {
857
+ return $.utils.getStruct(7, TagsReflection, this);
858
+ }
859
+ _hasTags() {
860
+ return !$.utils.isNull($.utils.getPointer(7, this));
861
+ }
862
+ _initTags() {
863
+ return $.utils.initStructAt(7, TagsReflection, this);
864
+ }
865
+ set tags(value) {
866
+ $.utils.copyFrom(value, $.utils.getPointer(7, this));
867
+ }
868
+ toString() {
869
+ return "SerializedTypeParameter_" + super.toString();
870
+ }
871
+ };
872
+ var SerializedTypeMethod = class _SerializedTypeMethod extends $.Struct {
873
+ static {
874
+ __name(this, "SerializedTypeMethod");
875
+ }
876
+ static _capnp = {
877
+ displayName: "SerializedTypeMethod",
878
+ id: "8b5eff6d9ec2fb06",
879
+ size: new $.ObjectSize(8, 8)
880
+ };
881
+ static _TypeArguments;
882
+ static _Decorators;
883
+ static _Parameters;
884
+ get typeName() {
885
+ return $.utils.getText(0, this);
886
+ }
887
+ set typeName(value) {
888
+ $.utils.setText(0, value, this);
889
+ }
890
+ _adoptTypeArguments(value) {
891
+ $.utils.adopt(value, $.utils.getPointer(1, this));
892
+ }
893
+ _disownTypeArguments() {
894
+ return $.utils.disown(this.typeArguments);
895
+ }
896
+ get typeArguments() {
897
+ return $.utils.getList(1, _SerializedTypeMethod._TypeArguments, this);
898
+ }
899
+ _hasTypeArguments() {
900
+ return !$.utils.isNull($.utils.getPointer(1, this));
901
+ }
902
+ _initTypeArguments(length) {
903
+ return $.utils.initList(1, _SerializedTypeMethod._TypeArguments, length, this);
904
+ }
905
+ set typeArguments(value) {
906
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
907
+ }
908
+ _adoptIndexAccessOrigin(value) {
909
+ $.utils.adopt(value, $.utils.getPointer(2, this));
910
+ }
911
+ _disownIndexAccessOrigin() {
912
+ return $.utils.disown(this.indexAccessOrigin);
913
+ }
914
+ get indexAccessOrigin() {
915
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
916
+ }
917
+ _hasIndexAccessOrigin() {
918
+ return !$.utils.isNull($.utils.getPointer(2, this));
919
+ }
920
+ _initIndexAccessOrigin() {
921
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
922
+ }
923
+ set indexAccessOrigin(value) {
924
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
925
+ }
926
+ _adoptDecorators(value) {
927
+ $.utils.adopt(value, $.utils.getPointer(3, this));
928
+ }
929
+ _disownDecorators() {
930
+ return $.utils.disown(this.decorators);
931
+ }
932
+ get decorators() {
933
+ return $.utils.getList(3, _SerializedTypeMethod._Decorators, this);
934
+ }
935
+ _hasDecorators() {
936
+ return !$.utils.isNull($.utils.getPointer(3, this));
937
+ }
938
+ _initDecorators(length) {
939
+ return $.utils.initList(3, _SerializedTypeMethod._Decorators, length, this);
940
+ }
941
+ set decorators(value) {
942
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
943
+ }
944
+ get visibility() {
945
+ return $.utils.getUint16(0, this);
946
+ }
947
+ set visibility(value) {
948
+ $.utils.setUint16(0, value, this);
949
+ }
950
+ get abstract() {
951
+ return $.utils.getBit(16, this);
952
+ }
953
+ set abstract(value) {
954
+ $.utils.setBit(16, value, this);
955
+ }
956
+ get optional() {
957
+ return $.utils.getBit(17, this);
958
+ }
959
+ set optional(value) {
960
+ $.utils.setBit(17, value, this);
961
+ }
962
+ get readonly() {
963
+ return $.utils.getBit(18, this);
964
+ }
965
+ set readonly(value) {
966
+ $.utils.setBit(18, value, this);
967
+ }
968
+ _adoptTags(value) {
969
+ $.utils.adopt(value, $.utils.getPointer(4, this));
970
+ }
971
+ _disownTags() {
972
+ return $.utils.disown(this.tags);
973
+ }
974
+ get tags() {
975
+ return $.utils.getStruct(4, TagsReflection, this);
976
+ }
977
+ _hasTags() {
978
+ return !$.utils.isNull($.utils.getPointer(4, this));
979
+ }
980
+ _initTags() {
981
+ return $.utils.initStructAt(4, TagsReflection, this);
982
+ }
983
+ set tags(value) {
984
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
985
+ }
986
+ get kind() {
987
+ return $.utils.getUint16(4, this);
988
+ }
989
+ set kind(value) {
990
+ $.utils.setUint16(4, value, this);
991
+ }
992
+ get name() {
993
+ return $.utils.getText(5, this);
994
+ }
995
+ set name(value) {
996
+ $.utils.setText(5, value, this);
997
+ }
998
+ _adoptParameters(value) {
999
+ $.utils.adopt(value, $.utils.getPointer(6, this));
1000
+ }
1001
+ _disownParameters() {
1002
+ return $.utils.disown(this.parameters);
1003
+ }
1004
+ get parameters() {
1005
+ return $.utils.getList(6, _SerializedTypeMethod._Parameters, this);
1006
+ }
1007
+ _hasParameters() {
1008
+ return !$.utils.isNull($.utils.getPointer(6, this));
1009
+ }
1010
+ _initParameters(length) {
1011
+ return $.utils.initList(6, _SerializedTypeMethod._Parameters, length, this);
1012
+ }
1013
+ set parameters(value) {
1014
+ $.utils.copyFrom(value, $.utils.getPointer(6, this));
1015
+ }
1016
+ _adoptReturn(value) {
1017
+ $.utils.adopt(value, $.utils.getPointer(7, this));
1018
+ }
1019
+ _disownReturn() {
1020
+ return $.utils.disown(this.return);
1021
+ }
1022
+ get return() {
1023
+ return $.utils.getStruct(7, SerializedTypeReference, this);
1024
+ }
1025
+ _hasReturn() {
1026
+ return !$.utils.isNull($.utils.getPointer(7, this));
1027
+ }
1028
+ _initReturn() {
1029
+ return $.utils.initStructAt(7, SerializedTypeReference, this);
1030
+ }
1031
+ set return(value) {
1032
+ $.utils.copyFrom(value, $.utils.getPointer(7, this));
1033
+ }
1034
+ toString() {
1035
+ return "SerializedTypeMethod_" + super.toString();
1036
+ }
1037
+ };
1038
+ var SerializedTypeProperty = class _SerializedTypeProperty extends $.Struct {
1039
+ static {
1040
+ __name(this, "SerializedTypeProperty");
1041
+ }
1042
+ static _capnp = {
1043
+ displayName: "SerializedTypeProperty",
1044
+ id: "91d9dbea2037f78b",
1045
+ size: new $.ObjectSize(8, 9)
1046
+ };
1047
+ static _TypeArguments;
1048
+ static _Decorators;
1049
+ get typeName() {
1050
+ return $.utils.getText(0, this);
1051
+ }
1052
+ set typeName(value) {
1053
+ $.utils.setText(0, value, this);
1054
+ }
1055
+ _adoptTypeArguments(value) {
1056
+ $.utils.adopt(value, $.utils.getPointer(1, this));
1057
+ }
1058
+ _disownTypeArguments() {
1059
+ return $.utils.disown(this.typeArguments);
1060
+ }
1061
+ get typeArguments() {
1062
+ return $.utils.getList(1, _SerializedTypeProperty._TypeArguments, this);
1063
+ }
1064
+ _hasTypeArguments() {
1065
+ return !$.utils.isNull($.utils.getPointer(1, this));
1066
+ }
1067
+ _initTypeArguments(length) {
1068
+ return $.utils.initList(1, _SerializedTypeProperty._TypeArguments, length, this);
1069
+ }
1070
+ set typeArguments(value) {
1071
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
1072
+ }
1073
+ _adoptIndexAccessOrigin(value) {
1074
+ $.utils.adopt(value, $.utils.getPointer(2, this));
1075
+ }
1076
+ _disownIndexAccessOrigin() {
1077
+ return $.utils.disown(this.indexAccessOrigin);
1078
+ }
1079
+ get indexAccessOrigin() {
1080
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
1081
+ }
1082
+ _hasIndexAccessOrigin() {
1083
+ return !$.utils.isNull($.utils.getPointer(2, this));
1084
+ }
1085
+ _initIndexAccessOrigin() {
1086
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
1087
+ }
1088
+ set indexAccessOrigin(value) {
1089
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
1090
+ }
1091
+ _adoptDecorators(value) {
1092
+ $.utils.adopt(value, $.utils.getPointer(3, this));
1093
+ }
1094
+ _disownDecorators() {
1095
+ return $.utils.disown(this.decorators);
1096
+ }
1097
+ get decorators() {
1098
+ return $.utils.getList(3, _SerializedTypeProperty._Decorators, this);
1099
+ }
1100
+ _hasDecorators() {
1101
+ return !$.utils.isNull($.utils.getPointer(3, this));
1102
+ }
1103
+ _initDecorators(length) {
1104
+ return $.utils.initList(3, _SerializedTypeProperty._Decorators, length, this);
1105
+ }
1106
+ set decorators(value) {
1107
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
1108
+ }
1109
+ get visibility() {
1110
+ return $.utils.getUint16(0, this);
1111
+ }
1112
+ set visibility(value) {
1113
+ $.utils.setUint16(0, value, this);
1114
+ }
1115
+ get abstract() {
1116
+ return $.utils.getBit(16, this);
1117
+ }
1118
+ set abstract(value) {
1119
+ $.utils.setBit(16, value, this);
1120
+ }
1121
+ get optional() {
1122
+ return $.utils.getBit(17, this);
1123
+ }
1124
+ set optional(value) {
1125
+ $.utils.setBit(17, value, this);
1126
+ }
1127
+ get readonly() {
1128
+ return $.utils.getBit(18, this);
1129
+ }
1130
+ set readonly(value) {
1131
+ $.utils.setBit(18, value, this);
1132
+ }
1133
+ _adoptTags(value) {
1134
+ $.utils.adopt(value, $.utils.getPointer(4, this));
1135
+ }
1136
+ _disownTags() {
1137
+ return $.utils.disown(this.tags);
1138
+ }
1139
+ get tags() {
1140
+ return $.utils.getStruct(4, TagsReflection, this);
1141
+ }
1142
+ _hasTags() {
1143
+ return !$.utils.isNull($.utils.getPointer(4, this));
1144
+ }
1145
+ _initTags() {
1146
+ return $.utils.initStructAt(4, TagsReflection, this);
1147
+ }
1148
+ set tags(value) {
1149
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
1150
+ }
1151
+ get kind() {
1152
+ return $.utils.getUint16(4, this);
1153
+ }
1154
+ set kind(value) {
1155
+ $.utils.setUint16(4, value, this);
1156
+ }
1157
+ get name() {
1158
+ return $.utils.getText(5, this);
1159
+ }
1160
+ set name(value) {
1161
+ $.utils.setText(5, value, this);
1162
+ }
1163
+ get description() {
1164
+ return $.utils.getText(6, this);
1165
+ }
1166
+ set description(value) {
1167
+ $.utils.setText(6, value, this);
1168
+ }
1169
+ _adoptType(value) {
1170
+ $.utils.adopt(value, $.utils.getPointer(7, this));
1171
+ }
1172
+ _disownType() {
1173
+ return $.utils.disown(this.type);
1174
+ }
1175
+ get type() {
1176
+ return $.utils.getStruct(7, SerializedTypeReference, this);
1177
+ }
1178
+ _hasType() {
1179
+ return !$.utils.isNull($.utils.getPointer(7, this));
1180
+ }
1181
+ _initType() {
1182
+ return $.utils.initStructAt(7, SerializedTypeReference, this);
1183
+ }
1184
+ set type(value) {
1185
+ $.utils.copyFrom(value, $.utils.getPointer(7, this));
1186
+ }
1187
+ _adoptDefault(value) {
1188
+ $.utils.adopt(value, $.utils.getPointer(8, this));
1189
+ }
1190
+ _disownDefault() {
1191
+ return $.utils.disown(this.default);
1192
+ }
1193
+ get default() {
1194
+ return $.utils.getStruct(8, DefaultValueReflection, this);
1195
+ }
1196
+ _hasDefault() {
1197
+ return !$.utils.isNull($.utils.getPointer(8, this));
1198
+ }
1199
+ _initDefault() {
1200
+ return $.utils.initStructAt(8, DefaultValueReflection, this);
1201
+ }
1202
+ set default(value) {
1203
+ $.utils.copyFrom(value, $.utils.getPointer(8, this));
1204
+ }
1205
+ toString() {
1206
+ return "SerializedTypeProperty_" + super.toString();
1207
+ }
1208
+ };
1209
+ var SerializedTypeFunction = class _SerializedTypeFunction extends $.Struct {
1210
+ static {
1211
+ __name(this, "SerializedTypeFunction");
1212
+ }
1213
+ static _capnp = {
1214
+ displayName: "SerializedTypeFunction",
1215
+ id: "9130bccd82dfcfd4",
1216
+ size: new $.ObjectSize(8, 8)
1217
+ };
1218
+ static _TypeArguments;
1219
+ static _Decorators;
1220
+ static _Parameters;
1221
+ get typeName() {
1222
+ return $.utils.getText(0, this);
1223
+ }
1224
+ set typeName(value) {
1225
+ $.utils.setText(0, value, this);
1226
+ }
1227
+ _adoptTypeArguments(value) {
1228
+ $.utils.adopt(value, $.utils.getPointer(1, this));
1229
+ }
1230
+ _disownTypeArguments() {
1231
+ return $.utils.disown(this.typeArguments);
1232
+ }
1233
+ get typeArguments() {
1234
+ return $.utils.getList(1, _SerializedTypeFunction._TypeArguments, this);
1235
+ }
1236
+ _hasTypeArguments() {
1237
+ return !$.utils.isNull($.utils.getPointer(1, this));
1238
+ }
1239
+ _initTypeArguments(length) {
1240
+ return $.utils.initList(1, _SerializedTypeFunction._TypeArguments, length, this);
1241
+ }
1242
+ set typeArguments(value) {
1243
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
1244
+ }
1245
+ _adoptIndexAccessOrigin(value) {
1246
+ $.utils.adopt(value, $.utils.getPointer(2, this));
1247
+ }
1248
+ _disownIndexAccessOrigin() {
1249
+ return $.utils.disown(this.indexAccessOrigin);
1250
+ }
1251
+ get indexAccessOrigin() {
1252
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
1253
+ }
1254
+ _hasIndexAccessOrigin() {
1255
+ return !$.utils.isNull($.utils.getPointer(2, this));
1256
+ }
1257
+ _initIndexAccessOrigin() {
1258
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
1259
+ }
1260
+ set indexAccessOrigin(value) {
1261
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
1262
+ }
1263
+ _adoptDecorators(value) {
1264
+ $.utils.adopt(value, $.utils.getPointer(3, this));
1265
+ }
1266
+ _disownDecorators() {
1267
+ return $.utils.disown(this.decorators);
1268
+ }
1269
+ get decorators() {
1270
+ return $.utils.getList(3, _SerializedTypeFunction._Decorators, this);
1271
+ }
1272
+ _hasDecorators() {
1273
+ return !$.utils.isNull($.utils.getPointer(3, this));
1274
+ }
1275
+ _initDecorators(length) {
1276
+ return $.utils.initList(3, _SerializedTypeFunction._Decorators, length, this);
1277
+ }
1278
+ set decorators(value) {
1279
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
1280
+ }
1281
+ get visibility() {
1282
+ return $.utils.getUint16(0, this);
1283
+ }
1284
+ set visibility(value) {
1285
+ $.utils.setUint16(0, value, this);
1286
+ }
1287
+ get abstract() {
1288
+ return $.utils.getBit(16, this);
1289
+ }
1290
+ set abstract(value) {
1291
+ $.utils.setBit(16, value, this);
1292
+ }
1293
+ get optional() {
1294
+ return $.utils.getBit(17, this);
1295
+ }
1296
+ set optional(value) {
1297
+ $.utils.setBit(17, value, this);
1298
+ }
1299
+ get readonly() {
1300
+ return $.utils.getBit(18, this);
1301
+ }
1302
+ set readonly(value) {
1303
+ $.utils.setBit(18, value, this);
1304
+ }
1305
+ _adoptTags(value) {
1306
+ $.utils.adopt(value, $.utils.getPointer(4, this));
1307
+ }
1308
+ _disownTags() {
1309
+ return $.utils.disown(this.tags);
1310
+ }
1311
+ get tags() {
1312
+ return $.utils.getStruct(4, TagsReflection, this);
1313
+ }
1314
+ _hasTags() {
1315
+ return !$.utils.isNull($.utils.getPointer(4, this));
1316
+ }
1317
+ _initTags() {
1318
+ return $.utils.initStructAt(4, TagsReflection, this);
1319
+ }
1320
+ set tags(value) {
1321
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
1322
+ }
1323
+ get kind() {
1324
+ return $.utils.getUint16(4, this);
1325
+ }
1326
+ set kind(value) {
1327
+ $.utils.setUint16(4, value, this);
1328
+ }
1329
+ get name() {
1330
+ return $.utils.getText(5, this);
1331
+ }
1332
+ set name(value) {
1333
+ $.utils.setText(5, value, this);
1334
+ }
1335
+ _adoptParameters(value) {
1336
+ $.utils.adopt(value, $.utils.getPointer(6, this));
1337
+ }
1338
+ _disownParameters() {
1339
+ return $.utils.disown(this.parameters);
1340
+ }
1341
+ get parameters() {
1342
+ return $.utils.getList(6, _SerializedTypeFunction._Parameters, this);
1343
+ }
1344
+ _hasParameters() {
1345
+ return !$.utils.isNull($.utils.getPointer(6, this));
1346
+ }
1347
+ _initParameters(length) {
1348
+ return $.utils.initList(6, _SerializedTypeFunction._Parameters, length, this);
1349
+ }
1350
+ set parameters(value) {
1351
+ $.utils.copyFrom(value, $.utils.getPointer(6, this));
1352
+ }
1353
+ _adoptReturn(value) {
1354
+ $.utils.adopt(value, $.utils.getPointer(7, this));
1355
+ }
1356
+ _disownReturn() {
1357
+ return $.utils.disown(this.return);
1358
+ }
1359
+ get return() {
1360
+ return $.utils.getStruct(7, SerializedTypeReference, this);
1361
+ }
1362
+ _hasReturn() {
1363
+ return !$.utils.isNull($.utils.getPointer(7, this));
1364
+ }
1365
+ _initReturn() {
1366
+ return $.utils.initStructAt(7, SerializedTypeReference, this);
1367
+ }
1368
+ set return(value) {
1369
+ $.utils.copyFrom(value, $.utils.getPointer(7, this));
1370
+ }
1371
+ toString() {
1372
+ return "SerializedTypeFunction_" + super.toString();
1373
+ }
1374
+ };
1375
+ var SerializedTypePromise = class _SerializedTypePromise extends $.Struct {
1376
+ static {
1377
+ __name(this, "SerializedTypePromise");
1378
+ }
1379
+ static _capnp = {
1380
+ displayName: "SerializedTypePromise",
1381
+ id: "e9b0cbe936a42398",
1382
+ size: new $.ObjectSize(8, 4)
1383
+ };
1384
+ static _TypeArguments;
1385
+ static _Decorators;
1386
+ get typeName() {
1387
+ return $.utils.getText(0, this);
1388
+ }
1389
+ set typeName(value) {
1390
+ $.utils.setText(0, value, this);
1391
+ }
1392
+ _adoptTypeArguments(value) {
1393
+ $.utils.adopt(value, $.utils.getPointer(1, this));
1394
+ }
1395
+ _disownTypeArguments() {
1396
+ return $.utils.disown(this.typeArguments);
1397
+ }
1398
+ get typeArguments() {
1399
+ return $.utils.getList(1, _SerializedTypePromise._TypeArguments, this);
1400
+ }
1401
+ _hasTypeArguments() {
1402
+ return !$.utils.isNull($.utils.getPointer(1, this));
1403
+ }
1404
+ _initTypeArguments(length) {
1405
+ return $.utils.initList(1, _SerializedTypePromise._TypeArguments, length, this);
1406
+ }
1407
+ set typeArguments(value) {
1408
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
1409
+ }
1410
+ _adoptIndexAccessOrigin(value) {
1411
+ $.utils.adopt(value, $.utils.getPointer(2, this));
1412
+ }
1413
+ _disownIndexAccessOrigin() {
1414
+ return $.utils.disown(this.indexAccessOrigin);
1415
+ }
1416
+ get indexAccessOrigin() {
1417
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
1418
+ }
1419
+ _hasIndexAccessOrigin() {
1420
+ return !$.utils.isNull($.utils.getPointer(2, this));
1421
+ }
1422
+ _initIndexAccessOrigin() {
1423
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
1424
+ }
1425
+ set indexAccessOrigin(value) {
1426
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
1427
+ }
1428
+ _adoptDecorators(value) {
1429
+ $.utils.adopt(value, $.utils.getPointer(3, this));
1430
+ }
1431
+ _disownDecorators() {
1432
+ return $.utils.disown(this.decorators);
1433
+ }
1434
+ get decorators() {
1435
+ return $.utils.getList(3, _SerializedTypePromise._Decorators, this);
1436
+ }
1437
+ _hasDecorators() {
1438
+ return !$.utils.isNull($.utils.getPointer(3, this));
1439
+ }
1440
+ _initDecorators(length) {
1441
+ return $.utils.initList(3, _SerializedTypePromise._Decorators, length, this);
1442
+ }
1443
+ set decorators(value) {
1444
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
1445
+ }
1446
+ get visibility() {
1447
+ return $.utils.getUint16(0, this);
1448
+ }
1449
+ set visibility(value) {
1450
+ $.utils.setUint16(0, value, this);
1451
+ }
1452
+ get abstract() {
1453
+ return $.utils.getBit(16, this);
1454
+ }
1455
+ set abstract(value) {
1456
+ $.utils.setBit(16, value, this);
1457
+ }
1458
+ toString() {
1459
+ return "SerializedTypePromise_" + super.toString();
1460
+ }
1461
+ };
1462
+ var SerializedTypeEnumEntry = class extends $.Struct {
1463
+ static {
1464
+ __name(this, "SerializedTypeEnumEntry");
1465
+ }
1466
+ static _capnp = {
1467
+ displayName: "SerializedTypeEnumEntry",
1468
+ id: "d5bcb8b7c49ba556",
1469
+ size: new $.ObjectSize(0, 2)
1470
+ };
1471
+ get name() {
1472
+ return $.utils.getText(0, this);
1473
+ }
1474
+ set name(value) {
1475
+ $.utils.setText(0, value, this);
1476
+ }
1477
+ get value() {
1478
+ return $.utils.getText(1, this);
1479
+ }
1480
+ set value(value) {
1481
+ $.utils.setText(1, value, this);
1482
+ }
1483
+ toString() {
1484
+ return "SerializedTypeEnumEntry_" + super.toString();
1485
+ }
1486
+ };
1487
+ var SerializedTypeEnum = class _SerializedTypeEnum extends $.Struct {
1488
+ static {
1489
+ __name(this, "SerializedTypeEnum");
1490
+ }
1491
+ static _capnp = {
1492
+ displayName: "SerializedTypeEnum",
1493
+ id: "d7d36f0ae79e3841",
1494
+ size: new $.ObjectSize(8, 8)
1495
+ };
1496
+ static _TypeArguments;
1497
+ static _Decorators;
1498
+ static _EnumEntries;
1499
+ get typeName() {
1500
+ return $.utils.getText(0, this);
1501
+ }
1502
+ set typeName(value) {
1503
+ $.utils.setText(0, value, this);
1504
+ }
1505
+ _adoptTypeArguments(value) {
1506
+ $.utils.adopt(value, $.utils.getPointer(1, this));
1507
+ }
1508
+ _disownTypeArguments() {
1509
+ return $.utils.disown(this.typeArguments);
1510
+ }
1511
+ get typeArguments() {
1512
+ return $.utils.getList(1, _SerializedTypeEnum._TypeArguments, this);
1513
+ }
1514
+ _hasTypeArguments() {
1515
+ return !$.utils.isNull($.utils.getPointer(1, this));
1516
+ }
1517
+ _initTypeArguments(length) {
1518
+ return $.utils.initList(1, _SerializedTypeEnum._TypeArguments, length, this);
1519
+ }
1520
+ set typeArguments(value) {
1521
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
1522
+ }
1523
+ _adoptIndexAccessOrigin(value) {
1524
+ $.utils.adopt(value, $.utils.getPointer(2, this));
1525
+ }
1526
+ _disownIndexAccessOrigin() {
1527
+ return $.utils.disown(this.indexAccessOrigin);
1528
+ }
1529
+ get indexAccessOrigin() {
1530
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
1531
+ }
1532
+ _hasIndexAccessOrigin() {
1533
+ return !$.utils.isNull($.utils.getPointer(2, this));
1534
+ }
1535
+ _initIndexAccessOrigin() {
1536
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
1537
+ }
1538
+ set indexAccessOrigin(value) {
1539
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
1540
+ }
1541
+ _adoptDecorators(value) {
1542
+ $.utils.adopt(value, $.utils.getPointer(3, this));
1543
+ }
1544
+ _disownDecorators() {
1545
+ return $.utils.disown(this.decorators);
1546
+ }
1547
+ get decorators() {
1548
+ return $.utils.getList(3, _SerializedTypeEnum._Decorators, this);
1549
+ }
1550
+ _hasDecorators() {
1551
+ return !$.utils.isNull($.utils.getPointer(3, this));
1552
+ }
1553
+ _initDecorators(length) {
1554
+ return $.utils.initList(3, _SerializedTypeEnum._Decorators, length, this);
1555
+ }
1556
+ set decorators(value) {
1557
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
1558
+ }
1559
+ get kind() {
1560
+ return $.utils.getUint16(0, this);
1561
+ }
1562
+ set kind(value) {
1563
+ $.utils.setUint16(0, value, this);
1564
+ }
1565
+ _adoptEnumEntries(value) {
1566
+ $.utils.adopt(value, $.utils.getPointer(4, this));
1567
+ }
1568
+ _disownEnumEntries() {
1569
+ return $.utils.disown(this.enumEntries);
1570
+ }
1571
+ get enumEntries() {
1572
+ return $.utils.getList(4, _SerializedTypeEnum._EnumEntries, this);
1573
+ }
1574
+ _hasEnumEntries() {
1575
+ return !$.utils.isNull($.utils.getPointer(4, this));
1576
+ }
1577
+ _initEnumEntries(length) {
1578
+ return $.utils.initList(4, _SerializedTypeEnum._EnumEntries, length, this);
1579
+ }
1580
+ set enumEntries(value) {
1581
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
1582
+ }
1583
+ _adoptValues(value) {
1584
+ $.utils.adopt(value, $.utils.getPointer(5, this));
1585
+ }
1586
+ _disownValues() {
1587
+ return $.utils.disown(this.values);
1588
+ }
1589
+ get values() {
1590
+ return $.utils.getList(5, $.TextList, this);
1591
+ }
1592
+ _hasValues() {
1593
+ return !$.utils.isNull($.utils.getPointer(5, this));
1594
+ }
1595
+ _initValues(length) {
1596
+ return $.utils.initList(5, $.TextList, length, this);
1597
+ }
1598
+ set values(value) {
1599
+ $.utils.copyFrom(value, $.utils.getPointer(5, this));
1600
+ }
1601
+ _adoptIndexType(value) {
1602
+ $.utils.adopt(value, $.utils.getPointer(6, this));
1603
+ }
1604
+ _disownIndexType() {
1605
+ return $.utils.disown(this.indexType);
1606
+ }
1607
+ get indexType() {
1608
+ return $.utils.getStruct(6, SerializedTypeReference, this);
1609
+ }
1610
+ _hasIndexType() {
1611
+ return !$.utils.isNull($.utils.getPointer(6, this));
1612
+ }
1613
+ _initIndexType() {
1614
+ return $.utils.initStructAt(6, SerializedTypeReference, this);
1615
+ }
1616
+ set indexType(value) {
1617
+ $.utils.copyFrom(value, $.utils.getPointer(6, this));
1618
+ }
1619
+ _adoptTags(value) {
1620
+ $.utils.adopt(value, $.utils.getPointer(7, this));
1621
+ }
1622
+ _disownTags() {
1623
+ return $.utils.disown(this.tags);
1624
+ }
1625
+ get tags() {
1626
+ return $.utils.getStruct(7, TagsReflection, this);
1627
+ }
1628
+ _hasTags() {
1629
+ return !$.utils.isNull($.utils.getPointer(7, this));
1630
+ }
1631
+ _initTags() {
1632
+ return $.utils.initStructAt(7, TagsReflection, this);
1633
+ }
1634
+ set tags(value) {
1635
+ $.utils.copyFrom(value, $.utils.getPointer(7, this));
1636
+ }
1637
+ toString() {
1638
+ return "SerializedTypeEnum_" + super.toString();
1639
+ }
1640
+ };
1641
+ var SerializedTypeUnion = class _SerializedTypeUnion extends $.Struct {
1642
+ static {
1643
+ __name(this, "SerializedTypeUnion");
1644
+ }
1645
+ static _capnp = {
1646
+ displayName: "SerializedTypeUnion",
1647
+ id: "a9ae4c95e41ff4ab",
1648
+ size: new $.ObjectSize(8, 5)
1649
+ };
1650
+ static _TypeArguments;
1651
+ static _Decorators;
1652
+ static _Types;
1653
+ get typeName() {
1654
+ return $.utils.getText(0, this);
1655
+ }
1656
+ set typeName(value) {
1657
+ $.utils.setText(0, value, this);
1658
+ }
1659
+ _adoptTypeArguments(value) {
1660
+ $.utils.adopt(value, $.utils.getPointer(1, this));
1661
+ }
1662
+ _disownTypeArguments() {
1663
+ return $.utils.disown(this.typeArguments);
1664
+ }
1665
+ get typeArguments() {
1666
+ return $.utils.getList(1, _SerializedTypeUnion._TypeArguments, this);
1667
+ }
1668
+ _hasTypeArguments() {
1669
+ return !$.utils.isNull($.utils.getPointer(1, this));
1670
+ }
1671
+ _initTypeArguments(length) {
1672
+ return $.utils.initList(1, _SerializedTypeUnion._TypeArguments, length, this);
1673
+ }
1674
+ set typeArguments(value) {
1675
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
1676
+ }
1677
+ _adoptIndexAccessOrigin(value) {
1678
+ $.utils.adopt(value, $.utils.getPointer(2, this));
1679
+ }
1680
+ _disownIndexAccessOrigin() {
1681
+ return $.utils.disown(this.indexAccessOrigin);
1682
+ }
1683
+ get indexAccessOrigin() {
1684
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
1685
+ }
1686
+ _hasIndexAccessOrigin() {
1687
+ return !$.utils.isNull($.utils.getPointer(2, this));
1688
+ }
1689
+ _initIndexAccessOrigin() {
1690
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
1691
+ }
1692
+ set indexAccessOrigin(value) {
1693
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
1694
+ }
1695
+ _adoptDecorators(value) {
1696
+ $.utils.adopt(value, $.utils.getPointer(3, this));
1697
+ }
1698
+ _disownDecorators() {
1699
+ return $.utils.disown(this.decorators);
1700
+ }
1701
+ get decorators() {
1702
+ return $.utils.getList(3, _SerializedTypeUnion._Decorators, this);
1703
+ }
1704
+ _hasDecorators() {
1705
+ return !$.utils.isNull($.utils.getPointer(3, this));
1706
+ }
1707
+ _initDecorators(length) {
1708
+ return $.utils.initList(3, _SerializedTypeUnion._Decorators, length, this);
1709
+ }
1710
+ set decorators(value) {
1711
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
1712
+ }
1713
+ get kind() {
1714
+ return $.utils.getUint16(0, this);
1715
+ }
1716
+ set kind(value) {
1717
+ $.utils.setUint16(0, value, this);
1718
+ }
1719
+ _adoptTypes(value) {
1720
+ $.utils.adopt(value, $.utils.getPointer(4, this));
1721
+ }
1722
+ _disownTypes() {
1723
+ return $.utils.disown(this.types);
1724
+ }
1725
+ get types() {
1726
+ return $.utils.getList(4, _SerializedTypeUnion._Types, this);
1727
+ }
1728
+ _hasTypes() {
1729
+ return !$.utils.isNull($.utils.getPointer(4, this));
1730
+ }
1731
+ _initTypes(length) {
1732
+ return $.utils.initList(4, _SerializedTypeUnion._Types, length, this);
1733
+ }
1734
+ set types(value) {
1735
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
1736
+ }
1737
+ toString() {
1738
+ return "SerializedTypeUnion_" + super.toString();
1739
+ }
1740
+ };
1741
+ var SerializedTypeIntersection = class _SerializedTypeIntersection extends $.Struct {
1742
+ static {
1743
+ __name(this, "SerializedTypeIntersection");
1744
+ }
1745
+ static _capnp = {
1746
+ displayName: "SerializedTypeIntersection",
1747
+ id: "9ae42bd17511c09b",
1748
+ size: new $.ObjectSize(8, 5)
1749
+ };
1750
+ static _TypeArguments;
1751
+ static _Decorators;
1752
+ static _Types;
1753
+ get typeName() {
1754
+ return $.utils.getText(0, this);
1755
+ }
1756
+ set typeName(value) {
1757
+ $.utils.setText(0, value, this);
1758
+ }
1759
+ _adoptTypeArguments(value) {
1760
+ $.utils.adopt(value, $.utils.getPointer(1, this));
1761
+ }
1762
+ _disownTypeArguments() {
1763
+ return $.utils.disown(this.typeArguments);
1764
+ }
1765
+ get typeArguments() {
1766
+ return $.utils.getList(1, _SerializedTypeIntersection._TypeArguments, this);
1767
+ }
1768
+ _hasTypeArguments() {
1769
+ return !$.utils.isNull($.utils.getPointer(1, this));
1770
+ }
1771
+ _initTypeArguments(length) {
1772
+ return $.utils.initList(1, _SerializedTypeIntersection._TypeArguments, length, this);
1773
+ }
1774
+ set typeArguments(value) {
1775
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
1776
+ }
1777
+ _adoptIndexAccessOrigin(value) {
1778
+ $.utils.adopt(value, $.utils.getPointer(2, this));
1779
+ }
1780
+ _disownIndexAccessOrigin() {
1781
+ return $.utils.disown(this.indexAccessOrigin);
1782
+ }
1783
+ get indexAccessOrigin() {
1784
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
1785
+ }
1786
+ _hasIndexAccessOrigin() {
1787
+ return !$.utils.isNull($.utils.getPointer(2, this));
1788
+ }
1789
+ _initIndexAccessOrigin() {
1790
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
1791
+ }
1792
+ set indexAccessOrigin(value) {
1793
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
1794
+ }
1795
+ _adoptDecorators(value) {
1796
+ $.utils.adopt(value, $.utils.getPointer(3, this));
1797
+ }
1798
+ _disownDecorators() {
1799
+ return $.utils.disown(this.decorators);
1800
+ }
1801
+ get decorators() {
1802
+ return $.utils.getList(3, _SerializedTypeIntersection._Decorators, this);
1803
+ }
1804
+ _hasDecorators() {
1805
+ return !$.utils.isNull($.utils.getPointer(3, this));
1806
+ }
1807
+ _initDecorators(length) {
1808
+ return $.utils.initList(3, _SerializedTypeIntersection._Decorators, length, this);
1809
+ }
1810
+ set decorators(value) {
1811
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
1812
+ }
1813
+ get kind() {
1814
+ return $.utils.getUint16(0, this);
1815
+ }
1816
+ set kind(value) {
1817
+ $.utils.setUint16(0, value, this);
1818
+ }
1819
+ _adoptTypes(value) {
1820
+ $.utils.adopt(value, $.utils.getPointer(4, this));
1821
+ }
1822
+ _disownTypes() {
1823
+ return $.utils.disown(this.types);
1824
+ }
1825
+ get types() {
1826
+ return $.utils.getList(4, _SerializedTypeIntersection._Types, this);
1827
+ }
1828
+ _hasTypes() {
1829
+ return !$.utils.isNull($.utils.getPointer(4, this));
1830
+ }
1831
+ _initTypes(length) {
1832
+ return $.utils.initList(4, _SerializedTypeIntersection._Types, length, this);
1833
+ }
1834
+ set types(value) {
1835
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
1836
+ }
1837
+ toString() {
1838
+ return "SerializedTypeIntersection_" + super.toString();
1839
+ }
1840
+ };
1841
+ var SerializedTypeArray = class _SerializedTypeArray extends $.Struct {
1842
+ static {
1843
+ __name(this, "SerializedTypeArray");
1844
+ }
1845
+ static _capnp = {
1846
+ displayName: "SerializedTypeArray",
1847
+ id: "97d1d75240151501",
1848
+ size: new $.ObjectSize(8, 6)
1849
+ };
1850
+ static _TypeArguments;
1851
+ static _Decorators;
1852
+ get typeName() {
1853
+ return $.utils.getText(0, this);
1854
+ }
1855
+ set typeName(value) {
1856
+ $.utils.setText(0, value, this);
1857
+ }
1858
+ _adoptTypeArguments(value) {
1859
+ $.utils.adopt(value, $.utils.getPointer(1, this));
1860
+ }
1861
+ _disownTypeArguments() {
1862
+ return $.utils.disown(this.typeArguments);
1863
+ }
1864
+ get typeArguments() {
1865
+ return $.utils.getList(1, _SerializedTypeArray._TypeArguments, this);
1866
+ }
1867
+ _hasTypeArguments() {
1868
+ return !$.utils.isNull($.utils.getPointer(1, this));
1869
+ }
1870
+ _initTypeArguments(length) {
1871
+ return $.utils.initList(1, _SerializedTypeArray._TypeArguments, length, this);
1872
+ }
1873
+ set typeArguments(value) {
1874
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
1875
+ }
1876
+ _adoptIndexAccessOrigin(value) {
1877
+ $.utils.adopt(value, $.utils.getPointer(2, this));
1878
+ }
1879
+ _disownIndexAccessOrigin() {
1880
+ return $.utils.disown(this.indexAccessOrigin);
1881
+ }
1882
+ get indexAccessOrigin() {
1883
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
1884
+ }
1885
+ _hasIndexAccessOrigin() {
1886
+ return !$.utils.isNull($.utils.getPointer(2, this));
1887
+ }
1888
+ _initIndexAccessOrigin() {
1889
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
1890
+ }
1891
+ set indexAccessOrigin(value) {
1892
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
1893
+ }
1894
+ _adoptDecorators(value) {
1895
+ $.utils.adopt(value, $.utils.getPointer(3, this));
1896
+ }
1897
+ _disownDecorators() {
1898
+ return $.utils.disown(this.decorators);
1899
+ }
1900
+ get decorators() {
1901
+ return $.utils.getList(3, _SerializedTypeArray._Decorators, this);
1902
+ }
1903
+ _hasDecorators() {
1904
+ return !$.utils.isNull($.utils.getPointer(3, this));
1905
+ }
1906
+ _initDecorators(length) {
1907
+ return $.utils.initList(3, _SerializedTypeArray._Decorators, length, this);
1908
+ }
1909
+ set decorators(value) {
1910
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
1911
+ }
1912
+ get kind() {
1913
+ return $.utils.getUint16(0, this);
1914
+ }
1915
+ set kind(value) {
1916
+ $.utils.setUint16(0, value, this);
1917
+ }
1918
+ _adoptType(value) {
1919
+ $.utils.adopt(value, $.utils.getPointer(4, this));
1920
+ }
1921
+ _disownType() {
1922
+ return $.utils.disown(this.type);
1923
+ }
1924
+ get type() {
1925
+ return $.utils.getStruct(4, SerializedTypeReference, this);
1926
+ }
1927
+ _hasType() {
1928
+ return !$.utils.isNull($.utils.getPointer(4, this));
1929
+ }
1930
+ _initType() {
1931
+ return $.utils.initStructAt(4, SerializedTypeReference, this);
1932
+ }
1933
+ set type(value) {
1934
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
1935
+ }
1936
+ _adoptTags(value) {
1937
+ $.utils.adopt(value, $.utils.getPointer(5, this));
1938
+ }
1939
+ _disownTags() {
1940
+ return $.utils.disown(this.tags);
1941
+ }
1942
+ get tags() {
1943
+ return $.utils.getStruct(5, TagsReflection, this);
1944
+ }
1945
+ _hasTags() {
1946
+ return !$.utils.isNull($.utils.getPointer(5, this));
1947
+ }
1948
+ _initTags() {
1949
+ return $.utils.initStructAt(5, TagsReflection, this);
1950
+ }
1951
+ set tags(value) {
1952
+ $.utils.copyFrom(value, $.utils.getPointer(5, this));
1953
+ }
1954
+ toString() {
1955
+ return "SerializedTypeArray_" + super.toString();
1956
+ }
1957
+ };
1958
+ var SerializedTypeIndexSignature = class _SerializedTypeIndexSignature extends $.Struct {
1959
+ static {
1960
+ __name(this, "SerializedTypeIndexSignature");
1961
+ }
1962
+ static _capnp = {
1963
+ displayName: "SerializedTypeIndexSignature",
1964
+ id: "93e335e2756821d8",
1965
+ size: new $.ObjectSize(8, 6)
1966
+ };
1967
+ static _TypeArguments;
1968
+ static _Decorators;
1969
+ get typeName() {
1970
+ return $.utils.getText(0, this);
1971
+ }
1972
+ set typeName(value) {
1973
+ $.utils.setText(0, value, this);
1974
+ }
1975
+ _adoptTypeArguments(value) {
1976
+ $.utils.adopt(value, $.utils.getPointer(1, this));
1977
+ }
1978
+ _disownTypeArguments() {
1979
+ return $.utils.disown(this.typeArguments);
1980
+ }
1981
+ get typeArguments() {
1982
+ return $.utils.getList(1, _SerializedTypeIndexSignature._TypeArguments, this);
1983
+ }
1984
+ _hasTypeArguments() {
1985
+ return !$.utils.isNull($.utils.getPointer(1, this));
1986
+ }
1987
+ _initTypeArguments(length) {
1988
+ return $.utils.initList(1, _SerializedTypeIndexSignature._TypeArguments, length, this);
1989
+ }
1990
+ set typeArguments(value) {
1991
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
1992
+ }
1993
+ _adoptIndexAccessOrigin(value) {
1994
+ $.utils.adopt(value, $.utils.getPointer(2, this));
1995
+ }
1996
+ _disownIndexAccessOrigin() {
1997
+ return $.utils.disown(this.indexAccessOrigin);
1998
+ }
1999
+ get indexAccessOrigin() {
2000
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
2001
+ }
2002
+ _hasIndexAccessOrigin() {
2003
+ return !$.utils.isNull($.utils.getPointer(2, this));
2004
+ }
2005
+ _initIndexAccessOrigin() {
2006
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
2007
+ }
2008
+ set indexAccessOrigin(value) {
2009
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
2010
+ }
2011
+ _adoptDecorators(value) {
2012
+ $.utils.adopt(value, $.utils.getPointer(3, this));
2013
+ }
2014
+ _disownDecorators() {
2015
+ return $.utils.disown(this.decorators);
2016
+ }
2017
+ get decorators() {
2018
+ return $.utils.getList(3, _SerializedTypeIndexSignature._Decorators, this);
2019
+ }
2020
+ _hasDecorators() {
2021
+ return !$.utils.isNull($.utils.getPointer(3, this));
2022
+ }
2023
+ _initDecorators(length) {
2024
+ return $.utils.initList(3, _SerializedTypeIndexSignature._Decorators, length, this);
2025
+ }
2026
+ set decorators(value) {
2027
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
2028
+ }
2029
+ get kind() {
2030
+ return $.utils.getUint16(0, this);
2031
+ }
2032
+ set kind(value) {
2033
+ $.utils.setUint16(0, value, this);
2034
+ }
2035
+ _adoptIndex(value) {
2036
+ $.utils.adopt(value, $.utils.getPointer(4, this));
2037
+ }
2038
+ _disownIndex() {
2039
+ return $.utils.disown(this.index);
2040
+ }
2041
+ get index() {
2042
+ return $.utils.getStruct(4, SerializedTypeReference, this);
2043
+ }
2044
+ _hasIndex() {
2045
+ return !$.utils.isNull($.utils.getPointer(4, this));
2046
+ }
2047
+ _initIndex() {
2048
+ return $.utils.initStructAt(4, SerializedTypeReference, this);
2049
+ }
2050
+ set index(value) {
2051
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
2052
+ }
2053
+ _adoptType(value) {
2054
+ $.utils.adopt(value, $.utils.getPointer(5, this));
2055
+ }
2056
+ _disownType() {
2057
+ return $.utils.disown(this.type);
2058
+ }
2059
+ get type() {
2060
+ return $.utils.getStruct(5, SerializedTypeReference, this);
2061
+ }
2062
+ _hasType() {
2063
+ return !$.utils.isNull($.utils.getPointer(5, this));
2064
+ }
2065
+ _initType() {
2066
+ return $.utils.initStructAt(5, SerializedTypeReference, this);
2067
+ }
2068
+ set type(value) {
2069
+ $.utils.copyFrom(value, $.utils.getPointer(5, this));
2070
+ }
2071
+ toString() {
2072
+ return "SerializedTypeIndexSignature_" + super.toString();
2073
+ }
2074
+ };
2075
+ var SerializedTypePropertySignature = class _SerializedTypePropertySignature extends $.Struct {
2076
+ static {
2077
+ __name(this, "SerializedTypePropertySignature");
2078
+ }
2079
+ static _capnp = {
2080
+ displayName: "SerializedTypePropertySignature",
2081
+ id: "9bc1cebd2ca1569a",
2082
+ size: new $.ObjectSize(8, 9)
2083
+ };
2084
+ static _TypeArguments;
2085
+ static _Decorators;
2086
+ get typeName() {
2087
+ return $.utils.getText(0, this);
2088
+ }
2089
+ set typeName(value) {
2090
+ $.utils.setText(0, value, this);
2091
+ }
2092
+ _adoptTypeArguments(value) {
2093
+ $.utils.adopt(value, $.utils.getPointer(1, this));
2094
+ }
2095
+ _disownTypeArguments() {
2096
+ return $.utils.disown(this.typeArguments);
2097
+ }
2098
+ get typeArguments() {
2099
+ return $.utils.getList(1, _SerializedTypePropertySignature._TypeArguments, this);
2100
+ }
2101
+ _hasTypeArguments() {
2102
+ return !$.utils.isNull($.utils.getPointer(1, this));
2103
+ }
2104
+ _initTypeArguments(length) {
2105
+ return $.utils.initList(1, _SerializedTypePropertySignature._TypeArguments, length, this);
2106
+ }
2107
+ set typeArguments(value) {
2108
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
2109
+ }
2110
+ _adoptIndexAccessOrigin(value) {
2111
+ $.utils.adopt(value, $.utils.getPointer(2, this));
2112
+ }
2113
+ _disownIndexAccessOrigin() {
2114
+ return $.utils.disown(this.indexAccessOrigin);
2115
+ }
2116
+ get indexAccessOrigin() {
2117
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
2118
+ }
2119
+ _hasIndexAccessOrigin() {
2120
+ return !$.utils.isNull($.utils.getPointer(2, this));
2121
+ }
2122
+ _initIndexAccessOrigin() {
2123
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
2124
+ }
2125
+ set indexAccessOrigin(value) {
2126
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
2127
+ }
2128
+ _adoptDecorators(value) {
2129
+ $.utils.adopt(value, $.utils.getPointer(3, this));
2130
+ }
2131
+ _disownDecorators() {
2132
+ return $.utils.disown(this.decorators);
2133
+ }
2134
+ get decorators() {
2135
+ return $.utils.getList(3, _SerializedTypePropertySignature._Decorators, this);
2136
+ }
2137
+ _hasDecorators() {
2138
+ return !$.utils.isNull($.utils.getPointer(3, this));
2139
+ }
2140
+ _initDecorators(length) {
2141
+ return $.utils.initList(3, _SerializedTypePropertySignature._Decorators, length, this);
2142
+ }
2143
+ set decorators(value) {
2144
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
2145
+ }
2146
+ get kind() {
2147
+ return $.utils.getUint16(0, this);
2148
+ }
2149
+ set kind(value) {
2150
+ $.utils.setUint16(0, value, this);
2151
+ }
2152
+ get name() {
2153
+ return $.utils.getText(4, this);
2154
+ }
2155
+ set name(value) {
2156
+ $.utils.setText(4, value, this);
2157
+ }
2158
+ get optional() {
2159
+ return $.utils.getBit(16, this);
2160
+ }
2161
+ set optional(value) {
2162
+ $.utils.setBit(16, value, this);
2163
+ }
2164
+ get readonly() {
2165
+ return $.utils.getBit(17, this);
2166
+ }
2167
+ set readonly(value) {
2168
+ $.utils.setBit(17, value, this);
2169
+ }
2170
+ get description() {
2171
+ return $.utils.getText(5, this);
2172
+ }
2173
+ set description(value) {
2174
+ $.utils.setText(5, value, this);
2175
+ }
2176
+ _adoptDefault(value) {
2177
+ $.utils.adopt(value, $.utils.getPointer(6, this));
2178
+ }
2179
+ _disownDefault() {
2180
+ return $.utils.disown(this.default);
2181
+ }
2182
+ get default() {
2183
+ return $.utils.getStruct(6, DefaultValueReflection, this);
2184
+ }
2185
+ _hasDefault() {
2186
+ return !$.utils.isNull($.utils.getPointer(6, this));
2187
+ }
2188
+ _initDefault() {
2189
+ return $.utils.initStructAt(6, DefaultValueReflection, this);
2190
+ }
2191
+ set default(value) {
2192
+ $.utils.copyFrom(value, $.utils.getPointer(6, this));
2193
+ }
2194
+ _adoptType(value) {
2195
+ $.utils.adopt(value, $.utils.getPointer(7, this));
2196
+ }
2197
+ _disownType() {
2198
+ return $.utils.disown(this.type);
2199
+ }
2200
+ get type() {
2201
+ return $.utils.getStruct(7, SerializedTypeReference, this);
2202
+ }
2203
+ _hasType() {
2204
+ return !$.utils.isNull($.utils.getPointer(7, this));
2205
+ }
2206
+ _initType() {
2207
+ return $.utils.initStructAt(7, SerializedTypeReference, this);
2208
+ }
2209
+ set type(value) {
2210
+ $.utils.copyFrom(value, $.utils.getPointer(7, this));
2211
+ }
2212
+ _adoptTags(value) {
2213
+ $.utils.adopt(value, $.utils.getPointer(8, this));
2214
+ }
2215
+ _disownTags() {
2216
+ return $.utils.disown(this.tags);
2217
+ }
2218
+ get tags() {
2219
+ return $.utils.getStruct(8, TagsReflection, this);
2220
+ }
2221
+ _hasTags() {
2222
+ return !$.utils.isNull($.utils.getPointer(8, this));
2223
+ }
2224
+ _initTags() {
2225
+ return $.utils.initStructAt(8, TagsReflection, this);
2226
+ }
2227
+ set tags(value) {
2228
+ $.utils.copyFrom(value, $.utils.getPointer(8, this));
2229
+ }
2230
+ toString() {
2231
+ return "SerializedTypePropertySignature_" + super.toString();
2232
+ }
2233
+ };
2234
+ var SerializedTypeMethodSignature = class _SerializedTypeMethodSignature extends $.Struct {
2235
+ static {
2236
+ __name(this, "SerializedTypeMethodSignature");
2237
+ }
2238
+ static _capnp = {
2239
+ displayName: "SerializedTypeMethodSignature",
2240
+ id: "e25a2cc39d5930c8",
2241
+ size: new $.ObjectSize(8, 8)
2242
+ };
2243
+ static _TypeArguments;
2244
+ static _Decorators;
2245
+ static _Parameters;
2246
+ get typeName() {
2247
+ return $.utils.getText(0, this);
2248
+ }
2249
+ set typeName(value) {
2250
+ $.utils.setText(0, value, this);
2251
+ }
2252
+ _adoptTypeArguments(value) {
2253
+ $.utils.adopt(value, $.utils.getPointer(1, this));
2254
+ }
2255
+ _disownTypeArguments() {
2256
+ return $.utils.disown(this.typeArguments);
2257
+ }
2258
+ get typeArguments() {
2259
+ return $.utils.getList(1, _SerializedTypeMethodSignature._TypeArguments, this);
2260
+ }
2261
+ _hasTypeArguments() {
2262
+ return !$.utils.isNull($.utils.getPointer(1, this));
2263
+ }
2264
+ _initTypeArguments(length) {
2265
+ return $.utils.initList(1, _SerializedTypeMethodSignature._TypeArguments, length, this);
2266
+ }
2267
+ set typeArguments(value) {
2268
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
2269
+ }
2270
+ _adoptIndexAccessOrigin(value) {
2271
+ $.utils.adopt(value, $.utils.getPointer(2, this));
2272
+ }
2273
+ _disownIndexAccessOrigin() {
2274
+ return $.utils.disown(this.indexAccessOrigin);
2275
+ }
2276
+ get indexAccessOrigin() {
2277
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
2278
+ }
2279
+ _hasIndexAccessOrigin() {
2280
+ return !$.utils.isNull($.utils.getPointer(2, this));
2281
+ }
2282
+ _initIndexAccessOrigin() {
2283
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
2284
+ }
2285
+ set indexAccessOrigin(value) {
2286
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
2287
+ }
2288
+ _adoptDecorators(value) {
2289
+ $.utils.adopt(value, $.utils.getPointer(3, this));
2290
+ }
2291
+ _disownDecorators() {
2292
+ return $.utils.disown(this.decorators);
2293
+ }
2294
+ get decorators() {
2295
+ return $.utils.getList(3, _SerializedTypeMethodSignature._Decorators, this);
2296
+ }
2297
+ _hasDecorators() {
2298
+ return !$.utils.isNull($.utils.getPointer(3, this));
2299
+ }
2300
+ _initDecorators(length) {
2301
+ return $.utils.initList(3, _SerializedTypeMethodSignature._Decorators, length, this);
2302
+ }
2303
+ set decorators(value) {
2304
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
2305
+ }
2306
+ get kind() {
2307
+ return $.utils.getUint16(0, this);
2308
+ }
2309
+ set kind(value) {
2310
+ $.utils.setUint16(0, value, this);
2311
+ }
2312
+ get name() {
2313
+ return $.utils.getText(4, this);
2314
+ }
2315
+ set name(value) {
2316
+ $.utils.setText(4, value, this);
2317
+ }
2318
+ get optional() {
2319
+ return $.utils.getBit(16, this);
2320
+ }
2321
+ set optional(value) {
2322
+ $.utils.setBit(16, value, this);
2323
+ }
2324
+ _adoptParameters(value) {
2325
+ $.utils.adopt(value, $.utils.getPointer(5, this));
2326
+ }
2327
+ _disownParameters() {
2328
+ return $.utils.disown(this.parameters);
2329
+ }
2330
+ get parameters() {
2331
+ return $.utils.getList(5, _SerializedTypeMethodSignature._Parameters, this);
2332
+ }
2333
+ _hasParameters() {
2334
+ return !$.utils.isNull($.utils.getPointer(5, this));
2335
+ }
2336
+ _initParameters(length) {
2337
+ return $.utils.initList(5, _SerializedTypeMethodSignature._Parameters, length, this);
2338
+ }
2339
+ set parameters(value) {
2340
+ $.utils.copyFrom(value, $.utils.getPointer(5, this));
2341
+ }
2342
+ _adoptReturn(value) {
2343
+ $.utils.adopt(value, $.utils.getPointer(6, this));
2344
+ }
2345
+ _disownReturn() {
2346
+ return $.utils.disown(this.return);
2347
+ }
2348
+ get return() {
2349
+ return $.utils.getStruct(6, SerializedTypeReference, this);
2350
+ }
2351
+ _hasReturn() {
2352
+ return !$.utils.isNull($.utils.getPointer(6, this));
2353
+ }
2354
+ _initReturn() {
2355
+ return $.utils.initStructAt(6, SerializedTypeReference, this);
2356
+ }
2357
+ set return(value) {
2358
+ $.utils.copyFrom(value, $.utils.getPointer(6, this));
2359
+ }
2360
+ _adoptTags(value) {
2361
+ $.utils.adopt(value, $.utils.getPointer(7, this));
2362
+ }
2363
+ _disownTags() {
2364
+ return $.utils.disown(this.tags);
2365
+ }
2366
+ get tags() {
2367
+ return $.utils.getStruct(7, TagsReflection, this);
2368
+ }
2369
+ _hasTags() {
2370
+ return !$.utils.isNull($.utils.getPointer(7, this));
2371
+ }
2372
+ _initTags() {
2373
+ return $.utils.initStructAt(7, TagsReflection, this);
2374
+ }
2375
+ set tags(value) {
2376
+ $.utils.copyFrom(value, $.utils.getPointer(7, this));
2377
+ }
2378
+ toString() {
2379
+ return "SerializedTypeMethodSignature_" + super.toString();
2380
+ }
2381
+ };
2382
+ var SerializedTypeTypeParameter = class _SerializedTypeTypeParameter extends $.Struct {
2383
+ static {
2384
+ __name(this, "SerializedTypeTypeParameter");
2385
+ }
2386
+ static _capnp = {
2387
+ displayName: "SerializedTypeTypeParameter",
2388
+ id: "81210361a54d5d71",
2389
+ size: new $.ObjectSize(8, 5)
2390
+ };
2391
+ static _TypeArguments;
2392
+ static _Decorators;
2393
+ get typeName() {
2394
+ return $.utils.getText(0, this);
2395
+ }
2396
+ set typeName(value) {
2397
+ $.utils.setText(0, value, this);
2398
+ }
2399
+ _adoptTypeArguments(value) {
2400
+ $.utils.adopt(value, $.utils.getPointer(1, this));
2401
+ }
2402
+ _disownTypeArguments() {
2403
+ return $.utils.disown(this.typeArguments);
2404
+ }
2405
+ get typeArguments() {
2406
+ return $.utils.getList(1, _SerializedTypeTypeParameter._TypeArguments, this);
2407
+ }
2408
+ _hasTypeArguments() {
2409
+ return !$.utils.isNull($.utils.getPointer(1, this));
2410
+ }
2411
+ _initTypeArguments(length) {
2412
+ return $.utils.initList(1, _SerializedTypeTypeParameter._TypeArguments, length, this);
2413
+ }
2414
+ set typeArguments(value) {
2415
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
2416
+ }
2417
+ _adoptIndexAccessOrigin(value) {
2418
+ $.utils.adopt(value, $.utils.getPointer(2, this));
2419
+ }
2420
+ _disownIndexAccessOrigin() {
2421
+ return $.utils.disown(this.indexAccessOrigin);
2422
+ }
2423
+ get indexAccessOrigin() {
2424
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
2425
+ }
2426
+ _hasIndexAccessOrigin() {
2427
+ return !$.utils.isNull($.utils.getPointer(2, this));
2428
+ }
2429
+ _initIndexAccessOrigin() {
2430
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
2431
+ }
2432
+ set indexAccessOrigin(value) {
2433
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
2434
+ }
2435
+ _adoptDecorators(value) {
2436
+ $.utils.adopt(value, $.utils.getPointer(3, this));
2437
+ }
2438
+ _disownDecorators() {
2439
+ return $.utils.disown(this.decorators);
2440
+ }
2441
+ get decorators() {
2442
+ return $.utils.getList(3, _SerializedTypeTypeParameter._Decorators, this);
2443
+ }
2444
+ _hasDecorators() {
2445
+ return !$.utils.isNull($.utils.getPointer(3, this));
2446
+ }
2447
+ _initDecorators(length) {
2448
+ return $.utils.initList(3, _SerializedTypeTypeParameter._Decorators, length, this);
2449
+ }
2450
+ set decorators(value) {
2451
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
2452
+ }
2453
+ get kind() {
2454
+ return $.utils.getUint16(0, this);
2455
+ }
2456
+ set kind(value) {
2457
+ $.utils.setUint16(0, value, this);
2458
+ }
2459
+ get name() {
2460
+ return $.utils.getText(4, this);
2461
+ }
2462
+ set name(value) {
2463
+ $.utils.setText(4, value, this);
2464
+ }
2465
+ toString() {
2466
+ return "SerializedTypeTypeParameter_" + super.toString();
2467
+ }
2468
+ };
2469
+ var SerializedTypeInfer = class _SerializedTypeInfer extends $.Struct {
2470
+ static {
2471
+ __name(this, "SerializedTypeInfer");
2472
+ }
2473
+ static _capnp = {
2474
+ displayName: "SerializedTypeInfer",
2475
+ id: "91c6dd1e13f2b14d",
2476
+ size: new $.ObjectSize(8, 4)
2477
+ };
2478
+ static _TypeArguments;
2479
+ static _Decorators;
2480
+ get typeName() {
2481
+ return $.utils.getText(0, this);
2482
+ }
2483
+ set typeName(value) {
2484
+ $.utils.setText(0, value, this);
2485
+ }
2486
+ _adoptTypeArguments(value) {
2487
+ $.utils.adopt(value, $.utils.getPointer(1, this));
2488
+ }
2489
+ _disownTypeArguments() {
2490
+ return $.utils.disown(this.typeArguments);
2491
+ }
2492
+ get typeArguments() {
2493
+ return $.utils.getList(1, _SerializedTypeInfer._TypeArguments, this);
2494
+ }
2495
+ _hasTypeArguments() {
2496
+ return !$.utils.isNull($.utils.getPointer(1, this));
2497
+ }
2498
+ _initTypeArguments(length) {
2499
+ return $.utils.initList(1, _SerializedTypeInfer._TypeArguments, length, this);
2500
+ }
2501
+ set typeArguments(value) {
2502
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
2503
+ }
2504
+ _adoptIndexAccessOrigin(value) {
2505
+ $.utils.adopt(value, $.utils.getPointer(2, this));
2506
+ }
2507
+ _disownIndexAccessOrigin() {
2508
+ return $.utils.disown(this.indexAccessOrigin);
2509
+ }
2510
+ get indexAccessOrigin() {
2511
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
2512
+ }
2513
+ _hasIndexAccessOrigin() {
2514
+ return !$.utils.isNull($.utils.getPointer(2, this));
2515
+ }
2516
+ _initIndexAccessOrigin() {
2517
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
2518
+ }
2519
+ set indexAccessOrigin(value) {
2520
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
2521
+ }
2522
+ _adoptDecorators(value) {
2523
+ $.utils.adopt(value, $.utils.getPointer(3, this));
2524
+ }
2525
+ _disownDecorators() {
2526
+ return $.utils.disown(this.decorators);
2527
+ }
2528
+ get decorators() {
2529
+ return $.utils.getList(3, _SerializedTypeInfer._Decorators, this);
2530
+ }
2531
+ _hasDecorators() {
2532
+ return !$.utils.isNull($.utils.getPointer(3, this));
2533
+ }
2534
+ _initDecorators(length) {
2535
+ return $.utils.initList(3, _SerializedTypeInfer._Decorators, length, this);
2536
+ }
2537
+ set decorators(value) {
2538
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
2539
+ }
2540
+ get kind() {
2541
+ return $.utils.getUint16(0, this);
2542
+ }
2543
+ set kind(value) {
2544
+ $.utils.setUint16(0, value, this);
2545
+ }
2546
+ toString() {
2547
+ return "SerializedTypeInfer_" + super.toString();
2548
+ }
2549
+ };
2550
+ var SerializedTypeTupleMember = class _SerializedTypeTupleMember extends $.Struct {
2551
+ static {
2552
+ __name(this, "SerializedTypeTupleMember");
2553
+ }
2554
+ static _capnp = {
2555
+ displayName: "SerializedTypeTupleMember",
2556
+ id: "e21c2a18d0d56fdf",
2557
+ size: new $.ObjectSize(8, 6)
2558
+ };
2559
+ static _TypeArguments;
2560
+ static _Decorators;
2561
+ get typeName() {
2562
+ return $.utils.getText(0, this);
2563
+ }
2564
+ set typeName(value) {
2565
+ $.utils.setText(0, value, this);
2566
+ }
2567
+ _adoptTypeArguments(value) {
2568
+ $.utils.adopt(value, $.utils.getPointer(1, this));
2569
+ }
2570
+ _disownTypeArguments() {
2571
+ return $.utils.disown(this.typeArguments);
2572
+ }
2573
+ get typeArguments() {
2574
+ return $.utils.getList(1, _SerializedTypeTupleMember._TypeArguments, this);
2575
+ }
2576
+ _hasTypeArguments() {
2577
+ return !$.utils.isNull($.utils.getPointer(1, this));
2578
+ }
2579
+ _initTypeArguments(length) {
2580
+ return $.utils.initList(1, _SerializedTypeTupleMember._TypeArguments, length, this);
2581
+ }
2582
+ set typeArguments(value) {
2583
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
2584
+ }
2585
+ _adoptIndexAccessOrigin(value) {
2586
+ $.utils.adopt(value, $.utils.getPointer(2, this));
2587
+ }
2588
+ _disownIndexAccessOrigin() {
2589
+ return $.utils.disown(this.indexAccessOrigin);
2590
+ }
2591
+ get indexAccessOrigin() {
2592
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
2593
+ }
2594
+ _hasIndexAccessOrigin() {
2595
+ return !$.utils.isNull($.utils.getPointer(2, this));
2596
+ }
2597
+ _initIndexAccessOrigin() {
2598
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
2599
+ }
2600
+ set indexAccessOrigin(value) {
2601
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
2602
+ }
2603
+ _adoptDecorators(value) {
2604
+ $.utils.adopt(value, $.utils.getPointer(3, this));
2605
+ }
2606
+ _disownDecorators() {
2607
+ return $.utils.disown(this.decorators);
2608
+ }
2609
+ get decorators() {
2610
+ return $.utils.getList(3, _SerializedTypeTupleMember._Decorators, this);
2611
+ }
2612
+ _hasDecorators() {
2613
+ return !$.utils.isNull($.utils.getPointer(3, this));
2614
+ }
2615
+ _initDecorators(length) {
2616
+ return $.utils.initList(3, _SerializedTypeTupleMember._Decorators, length, this);
2617
+ }
2618
+ set decorators(value) {
2619
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
2620
+ }
2621
+ get kind() {
2622
+ return $.utils.getUint16(0, this);
2623
+ }
2624
+ set kind(value) {
2625
+ $.utils.setUint16(0, value, this);
2626
+ }
2627
+ _adoptType(value) {
2628
+ $.utils.adopt(value, $.utils.getPointer(4, this));
2629
+ }
2630
+ _disownType() {
2631
+ return $.utils.disown(this.type);
2632
+ }
2633
+ get type() {
2634
+ return $.utils.getStruct(4, SerializedTypeReference, this);
2635
+ }
2636
+ _hasType() {
2637
+ return !$.utils.isNull($.utils.getPointer(4, this));
2638
+ }
2639
+ _initType() {
2640
+ return $.utils.initStructAt(4, SerializedTypeReference, this);
2641
+ }
2642
+ set type(value) {
2643
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
2644
+ }
2645
+ get optional() {
2646
+ return $.utils.getBit(16, this);
2647
+ }
2648
+ set optional(value) {
2649
+ $.utils.setBit(16, value, this);
2650
+ }
2651
+ get name() {
2652
+ return $.utils.getText(5, this);
2653
+ }
2654
+ set name(value) {
2655
+ $.utils.setText(5, value, this);
2656
+ }
2657
+ toString() {
2658
+ return "SerializedTypeTupleMember_" + super.toString();
2659
+ }
2660
+ };
2661
+ var SerializedTypeTuple = class _SerializedTypeTuple extends $.Struct {
2662
+ static {
2663
+ __name(this, "SerializedTypeTuple");
2664
+ }
2665
+ static _capnp = {
2666
+ displayName: "SerializedTypeTuple",
2667
+ id: "eb7501eb1ee4fb6d",
2668
+ size: new $.ObjectSize(8, 5)
2669
+ };
2670
+ static _TypeArguments;
2671
+ static _Decorators;
2672
+ static _Types;
2673
+ get typeName() {
2674
+ return $.utils.getText(0, this);
2675
+ }
2676
+ set typeName(value) {
2677
+ $.utils.setText(0, value, this);
2678
+ }
2679
+ _adoptTypeArguments(value) {
2680
+ $.utils.adopt(value, $.utils.getPointer(1, this));
2681
+ }
2682
+ _disownTypeArguments() {
2683
+ return $.utils.disown(this.typeArguments);
2684
+ }
2685
+ get typeArguments() {
2686
+ return $.utils.getList(1, _SerializedTypeTuple._TypeArguments, this);
2687
+ }
2688
+ _hasTypeArguments() {
2689
+ return !$.utils.isNull($.utils.getPointer(1, this));
2690
+ }
2691
+ _initTypeArguments(length) {
2692
+ return $.utils.initList(1, _SerializedTypeTuple._TypeArguments, length, this);
2693
+ }
2694
+ set typeArguments(value) {
2695
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
2696
+ }
2697
+ _adoptIndexAccessOrigin(value) {
2698
+ $.utils.adopt(value, $.utils.getPointer(2, this));
2699
+ }
2700
+ _disownIndexAccessOrigin() {
2701
+ return $.utils.disown(this.indexAccessOrigin);
2702
+ }
2703
+ get indexAccessOrigin() {
2704
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
2705
+ }
2706
+ _hasIndexAccessOrigin() {
2707
+ return !$.utils.isNull($.utils.getPointer(2, this));
2708
+ }
2709
+ _initIndexAccessOrigin() {
2710
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
2711
+ }
2712
+ set indexAccessOrigin(value) {
2713
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
2714
+ }
2715
+ _adoptDecorators(value) {
2716
+ $.utils.adopt(value, $.utils.getPointer(3, this));
2717
+ }
2718
+ _disownDecorators() {
2719
+ return $.utils.disown(this.decorators);
2720
+ }
2721
+ get decorators() {
2722
+ return $.utils.getList(3, _SerializedTypeTuple._Decorators, this);
2723
+ }
2724
+ _hasDecorators() {
2725
+ return !$.utils.isNull($.utils.getPointer(3, this));
2726
+ }
2727
+ _initDecorators(length) {
2728
+ return $.utils.initList(3, _SerializedTypeTuple._Decorators, length, this);
2729
+ }
2730
+ set decorators(value) {
2731
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
2732
+ }
2733
+ get kind() {
2734
+ return $.utils.getUint16(0, this);
2735
+ }
2736
+ set kind(value) {
2737
+ $.utils.setUint16(0, value, this);
2738
+ }
2739
+ _adoptTypes(value) {
2740
+ $.utils.adopt(value, $.utils.getPointer(4, this));
2741
+ }
2742
+ _disownTypes() {
2743
+ return $.utils.disown(this.types);
2744
+ }
2745
+ get types() {
2746
+ return $.utils.getList(4, _SerializedTypeTuple._Types, this);
2747
+ }
2748
+ _hasTypes() {
2749
+ return !$.utils.isNull($.utils.getPointer(4, this));
2750
+ }
2751
+ _initTypes(length) {
2752
+ return $.utils.initList(4, _SerializedTypeTuple._Types, length, this);
2753
+ }
2754
+ set types(value) {
2755
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
2756
+ }
2757
+ toString() {
2758
+ return "SerializedTypeTuple_" + super.toString();
2759
+ }
2760
+ };
2761
+ var SerializedTypeRest = class _SerializedTypeRest extends $.Struct {
2762
+ static {
2763
+ __name(this, "SerializedTypeRest");
2764
+ }
2765
+ static _capnp = {
2766
+ displayName: "SerializedTypeRest",
2767
+ id: "f9e684a435cce5d1",
2768
+ size: new $.ObjectSize(8, 5)
2769
+ };
2770
+ static _TypeArguments;
2771
+ static _Decorators;
2772
+ get typeName() {
2773
+ return $.utils.getText(0, this);
2774
+ }
2775
+ set typeName(value) {
2776
+ $.utils.setText(0, value, this);
2777
+ }
2778
+ _adoptTypeArguments(value) {
2779
+ $.utils.adopt(value, $.utils.getPointer(1, this));
2780
+ }
2781
+ _disownTypeArguments() {
2782
+ return $.utils.disown(this.typeArguments);
2783
+ }
2784
+ get typeArguments() {
2785
+ return $.utils.getList(1, _SerializedTypeRest._TypeArguments, this);
2786
+ }
2787
+ _hasTypeArguments() {
2788
+ return !$.utils.isNull($.utils.getPointer(1, this));
2789
+ }
2790
+ _initTypeArguments(length) {
2791
+ return $.utils.initList(1, _SerializedTypeRest._TypeArguments, length, this);
2792
+ }
2793
+ set typeArguments(value) {
2794
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
2795
+ }
2796
+ _adoptIndexAccessOrigin(value) {
2797
+ $.utils.adopt(value, $.utils.getPointer(2, this));
2798
+ }
2799
+ _disownIndexAccessOrigin() {
2800
+ return $.utils.disown(this.indexAccessOrigin);
2801
+ }
2802
+ get indexAccessOrigin() {
2803
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
2804
+ }
2805
+ _hasIndexAccessOrigin() {
2806
+ return !$.utils.isNull($.utils.getPointer(2, this));
2807
+ }
2808
+ _initIndexAccessOrigin() {
2809
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
2810
+ }
2811
+ set indexAccessOrigin(value) {
2812
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
2813
+ }
2814
+ _adoptDecorators(value) {
2815
+ $.utils.adopt(value, $.utils.getPointer(3, this));
2816
+ }
2817
+ _disownDecorators() {
2818
+ return $.utils.disown(this.decorators);
2819
+ }
2820
+ get decorators() {
2821
+ return $.utils.getList(3, _SerializedTypeRest._Decorators, this);
2822
+ }
2823
+ _hasDecorators() {
2824
+ return !$.utils.isNull($.utils.getPointer(3, this));
2825
+ }
2826
+ _initDecorators(length) {
2827
+ return $.utils.initList(3, _SerializedTypeRest._Decorators, length, this);
2828
+ }
2829
+ set decorators(value) {
2830
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
2831
+ }
2832
+ get kind() {
2833
+ return $.utils.getUint16(0, this);
2834
+ }
2835
+ set kind(value) {
2836
+ $.utils.setUint16(0, value, this);
2837
+ }
2838
+ _adoptType(value) {
2839
+ $.utils.adopt(value, $.utils.getPointer(4, this));
2840
+ }
2841
+ _disownType() {
2842
+ return $.utils.disown(this.type);
2843
+ }
2844
+ get type() {
2845
+ return $.utils.getStruct(4, SerializedTypeReference, this);
2846
+ }
2847
+ _hasType() {
2848
+ return !$.utils.isNull($.utils.getPointer(4, this));
2849
+ }
2850
+ _initType() {
2851
+ return $.utils.initStructAt(4, SerializedTypeReference, this);
2852
+ }
2853
+ set type(value) {
2854
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
2855
+ }
2856
+ toString() {
2857
+ return "SerializedTypeRest_" + super.toString();
2858
+ }
2859
+ };
2860
+ var SimpleSerializedType = class _SimpleSerializedType extends $.Struct {
2861
+ static {
2862
+ __name(this, "SimpleSerializedType");
2863
+ }
2864
+ static _capnp = {
2865
+ displayName: "SimpleSerializedType",
2866
+ id: "80f983e4b811c3ca",
2867
+ size: new $.ObjectSize(8, 5)
2868
+ };
2869
+ static _TypeArguments;
2870
+ static _Decorators;
2871
+ get typeName() {
2872
+ return $.utils.getText(0, this);
2873
+ }
2874
+ set typeName(value) {
2875
+ $.utils.setText(0, value, this);
2876
+ }
2877
+ _adoptTypeArguments(value) {
2878
+ $.utils.adopt(value, $.utils.getPointer(1, this));
2879
+ }
2880
+ _disownTypeArguments() {
2881
+ return $.utils.disown(this.typeArguments);
2882
+ }
2883
+ get typeArguments() {
2884
+ return $.utils.getList(1, _SimpleSerializedType._TypeArguments, this);
2885
+ }
2886
+ _hasTypeArguments() {
2887
+ return !$.utils.isNull($.utils.getPointer(1, this));
2888
+ }
2889
+ _initTypeArguments(length) {
2890
+ return $.utils.initList(1, _SimpleSerializedType._TypeArguments, length, this);
2891
+ }
2892
+ set typeArguments(value) {
2893
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
2894
+ }
2895
+ _adoptIndexAccessOrigin(value) {
2896
+ $.utils.adopt(value, $.utils.getPointer(2, this));
2897
+ }
2898
+ _disownIndexAccessOrigin() {
2899
+ return $.utils.disown(this.indexAccessOrigin);
2900
+ }
2901
+ get indexAccessOrigin() {
2902
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
2903
+ }
2904
+ _hasIndexAccessOrigin() {
2905
+ return !$.utils.isNull($.utils.getPointer(2, this));
2906
+ }
2907
+ _initIndexAccessOrigin() {
2908
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
2909
+ }
2910
+ set indexAccessOrigin(value) {
2911
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
2912
+ }
2913
+ _adoptDecorators(value) {
2914
+ $.utils.adopt(value, $.utils.getPointer(3, this));
2915
+ }
2916
+ _disownDecorators() {
2917
+ return $.utils.disown(this.decorators);
2918
+ }
2919
+ get decorators() {
2920
+ return $.utils.getList(3, _SimpleSerializedType._Decorators, this);
2921
+ }
2922
+ _hasDecorators() {
2923
+ return !$.utils.isNull($.utils.getPointer(3, this));
2924
+ }
2925
+ _initDecorators(length) {
2926
+ return $.utils.initList(3, _SimpleSerializedType._Decorators, length, this);
2927
+ }
2928
+ set decorators(value) {
2929
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
2930
+ }
2931
+ get kind() {
2932
+ return $.utils.getUint16(0, this);
2933
+ }
2934
+ set kind(value) {
2935
+ $.utils.setUint16(0, value, this);
2936
+ }
2937
+ _adoptOrigin(value) {
2938
+ $.utils.adopt(value, $.utils.getPointer(4, this));
2939
+ }
2940
+ _disownOrigin() {
2941
+ return $.utils.disown(this.origin);
2942
+ }
2943
+ get origin() {
2944
+ return $.utils.getStruct(4, SerializedTypeReference, this);
2945
+ }
2946
+ _hasOrigin() {
2947
+ return !$.utils.isNull($.utils.getPointer(4, this));
2948
+ }
2949
+ _initOrigin() {
2950
+ return $.utils.initStructAt(4, SerializedTypeReference, this);
2951
+ }
2952
+ set origin(value) {
2953
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
2954
+ }
2955
+ toString() {
2956
+ return "SimpleSerializedType_" + super.toString();
2957
+ }
2958
+ };
2959
+ var SerializedTypeLiteralSymbol = class extends $.Struct {
2960
+ static {
2961
+ __name(this, "SerializedTypeLiteralSymbol");
2962
+ }
2963
+ static _capnp = {
2964
+ displayName: "SerializedTypeLiteralSymbol",
2965
+ id: "f3dd6a3c6054bd55",
2966
+ size: new $.ObjectSize(0, 2)
2967
+ };
2968
+ /**
2969
+ * "symbol"
2970
+ *
2971
+ */
2972
+ get type() {
2973
+ return $.utils.getText(0, this);
2974
+ }
2975
+ set type(value) {
2976
+ $.utils.setText(0, value, this);
2977
+ }
2978
+ get name() {
2979
+ return $.utils.getText(1, this);
2980
+ }
2981
+ set name(value) {
2982
+ $.utils.setText(1, value, this);
2983
+ }
2984
+ toString() {
2985
+ return "SerializedTypeLiteralSymbol_" + super.toString();
2986
+ }
2987
+ };
2988
+ var SerializedTypeLiteralBigInt = class extends $.Struct {
2989
+ static {
2990
+ __name(this, "SerializedTypeLiteralBigInt");
2991
+ }
2992
+ static _capnp = {
2993
+ displayName: "SerializedTypeLiteralBigInt",
2994
+ id: "821a872d8be30bb2",
2995
+ size: new $.ObjectSize(0, 2)
2996
+ };
2997
+ /**
2998
+ * "bigint"
2999
+ *
3000
+ */
3001
+ get type() {
3002
+ return $.utils.getText(0, this);
3003
+ }
3004
+ set type(value) {
3005
+ $.utils.setText(0, value, this);
3006
+ }
3007
+ get value() {
3008
+ return $.utils.getText(1, this);
3009
+ }
3010
+ set value(value) {
3011
+ $.utils.setText(1, value, this);
3012
+ }
3013
+ toString() {
3014
+ return "SerializedTypeLiteralBigInt_" + super.toString();
3015
+ }
3016
+ };
3017
+ var SerializedTypeLiteralRegex = class extends $.Struct {
3018
+ static {
3019
+ __name(this, "SerializedTypeLiteralRegex");
3020
+ }
3021
+ static _capnp = {
3022
+ displayName: "SerializedTypeLiteralRegex",
3023
+ id: "cc89f97b47927d99",
3024
+ size: new $.ObjectSize(0, 2)
3025
+ };
3026
+ /**
3027
+ * "regex"
3028
+ *
3029
+ */
3030
+ get type() {
3031
+ return $.utils.getText(0, this);
3032
+ }
3033
+ set type(value) {
3034
+ $.utils.setText(0, value, this);
3035
+ }
3036
+ get regex() {
3037
+ return $.utils.getText(1, this);
3038
+ }
3039
+ set regex(value) {
3040
+ $.utils.setText(1, value, this);
3041
+ }
3042
+ toString() {
3043
+ return "SerializedTypeLiteralRegex_" + super.toString();
3044
+ }
3045
+ };
3046
+ var SerializedTypeLiteral_Literal_Which = {
3047
+ SYMBOL: 0,
3048
+ STRING: 1,
3049
+ NUMBER: 2,
3050
+ BOOLEAN: 3,
3051
+ BIGINT: 4,
3052
+ REGEX: 5
3053
+ };
3054
+ var SerializedTypeLiteral_Literal = class extends $.Struct {
3055
+ static {
3056
+ __name(this, "SerializedTypeLiteral_Literal");
3057
+ }
3058
+ static SYMBOL = SerializedTypeLiteral_Literal_Which.SYMBOL;
3059
+ static STRING = SerializedTypeLiteral_Literal_Which.STRING;
3060
+ static NUMBER = SerializedTypeLiteral_Literal_Which.NUMBER;
3061
+ static BOOLEAN = SerializedTypeLiteral_Literal_Which.BOOLEAN;
3062
+ static BIGINT = SerializedTypeLiteral_Literal_Which.BIGINT;
3063
+ static REGEX = SerializedTypeLiteral_Literal_Which.REGEX;
3064
+ static _capnp = {
3065
+ displayName: "literal",
3066
+ id: "e4f0538973f3909f",
3067
+ size: new $.ObjectSize(16, 5)
3068
+ };
3069
+ _adoptSymbol(value) {
3070
+ $.utils.setUint16(2, 0, this);
3071
+ $.utils.adopt(value, $.utils.getPointer(4, this));
3072
+ }
3073
+ _disownSymbol() {
3074
+ return $.utils.disown(this.symbol);
3075
+ }
3076
+ get symbol() {
3077
+ $.utils.testWhich("symbol", $.utils.getUint16(2, this), 0, this);
3078
+ return $.utils.getStruct(4, SerializedTypeLiteralSymbol, this);
3079
+ }
3080
+ _hasSymbol() {
3081
+ return !$.utils.isNull($.utils.getPointer(4, this));
3082
+ }
3083
+ _initSymbol() {
3084
+ $.utils.setUint16(2, 0, this);
3085
+ return $.utils.initStructAt(4, SerializedTypeLiteralSymbol, this);
3086
+ }
3087
+ get _isSymbol() {
3088
+ return $.utils.getUint16(2, this) === 0;
3089
+ }
3090
+ set symbol(value) {
3091
+ $.utils.setUint16(2, 0, this);
3092
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
3093
+ }
3094
+ get string() {
3095
+ $.utils.testWhich("string", $.utils.getUint16(2, this), 1, this);
3096
+ return $.utils.getText(4, this);
3097
+ }
3098
+ get _isString() {
3099
+ return $.utils.getUint16(2, this) === 1;
3100
+ }
3101
+ set string(value) {
3102
+ $.utils.setUint16(2, 1, this);
3103
+ $.utils.setText(4, value, this);
3104
+ }
3105
+ get number() {
3106
+ $.utils.testWhich("number", $.utils.getUint16(2, this), 2, this);
3107
+ return $.utils.getFloat64(8, this);
3108
+ }
3109
+ get _isNumber() {
3110
+ return $.utils.getUint16(2, this) === 2;
3111
+ }
3112
+ set number(value) {
3113
+ $.utils.setUint16(2, 2, this);
3114
+ $.utils.setFloat64(8, value, this);
3115
+ }
3116
+ get boolean() {
3117
+ $.utils.testWhich("boolean", $.utils.getUint16(2, this), 3, this);
3118
+ return $.utils.getBit(64, this);
3119
+ }
3120
+ get _isBoolean() {
3121
+ return $.utils.getUint16(2, this) === 3;
3122
+ }
3123
+ set boolean(value) {
3124
+ $.utils.setUint16(2, 3, this);
3125
+ $.utils.setBit(64, value, this);
3126
+ }
3127
+ _adoptBigint(value) {
3128
+ $.utils.setUint16(2, 4, this);
3129
+ $.utils.adopt(value, $.utils.getPointer(4, this));
3130
+ }
3131
+ _disownBigint() {
3132
+ return $.utils.disown(this.bigint);
3133
+ }
3134
+ get bigint() {
3135
+ $.utils.testWhich("bigint", $.utils.getUint16(2, this), 4, this);
3136
+ return $.utils.getStruct(4, SerializedTypeLiteralBigInt, this);
3137
+ }
3138
+ _hasBigint() {
3139
+ return !$.utils.isNull($.utils.getPointer(4, this));
3140
+ }
3141
+ _initBigint() {
3142
+ $.utils.setUint16(2, 4, this);
3143
+ return $.utils.initStructAt(4, SerializedTypeLiteralBigInt, this);
3144
+ }
3145
+ get _isBigint() {
3146
+ return $.utils.getUint16(2, this) === 4;
3147
+ }
3148
+ set bigint(value) {
3149
+ $.utils.setUint16(2, 4, this);
3150
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
3151
+ }
3152
+ _adoptRegex(value) {
3153
+ $.utils.setUint16(2, 5, this);
3154
+ $.utils.adopt(value, $.utils.getPointer(4, this));
3155
+ }
3156
+ _disownRegex() {
3157
+ return $.utils.disown(this.regex);
3158
+ }
3159
+ get regex() {
3160
+ $.utils.testWhich("regex", $.utils.getUint16(2, this), 5, this);
3161
+ return $.utils.getStruct(4, SerializedTypeLiteralRegex, this);
3162
+ }
3163
+ _hasRegex() {
3164
+ return !$.utils.isNull($.utils.getPointer(4, this));
3165
+ }
3166
+ _initRegex() {
3167
+ $.utils.setUint16(2, 5, this);
3168
+ return $.utils.initStructAt(4, SerializedTypeLiteralRegex, this);
3169
+ }
3170
+ get _isRegex() {
3171
+ return $.utils.getUint16(2, this) === 5;
3172
+ }
3173
+ set regex(value) {
3174
+ $.utils.setUint16(2, 5, this);
3175
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
3176
+ }
3177
+ toString() {
3178
+ return "SerializedTypeLiteral_Literal_" + super.toString();
3179
+ }
3180
+ which() {
3181
+ return $.utils.getUint16(2, this);
3182
+ }
3183
+ };
3184
+ var SerializedTypeLiteral = class _SerializedTypeLiteral extends $.Struct {
3185
+ static {
3186
+ __name(this, "SerializedTypeLiteral");
3187
+ }
3188
+ static _capnp = {
3189
+ displayName: "SerializedTypeLiteral",
3190
+ id: "b876ba24d27d88c8",
3191
+ size: new $.ObjectSize(16, 5)
3192
+ };
3193
+ static _TypeArguments;
3194
+ static _Decorators;
3195
+ get typeName() {
3196
+ return $.utils.getText(0, this);
3197
+ }
3198
+ set typeName(value) {
3199
+ $.utils.setText(0, value, this);
3200
+ }
3201
+ _adoptTypeArguments(value) {
3202
+ $.utils.adopt(value, $.utils.getPointer(1, this));
3203
+ }
3204
+ _disownTypeArguments() {
3205
+ return $.utils.disown(this.typeArguments);
3206
+ }
3207
+ get typeArguments() {
3208
+ return $.utils.getList(1, _SerializedTypeLiteral._TypeArguments, this);
3209
+ }
3210
+ _hasTypeArguments() {
3211
+ return !$.utils.isNull($.utils.getPointer(1, this));
3212
+ }
3213
+ _initTypeArguments(length) {
3214
+ return $.utils.initList(1, _SerializedTypeLiteral._TypeArguments, length, this);
3215
+ }
3216
+ set typeArguments(value) {
3217
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
3218
+ }
3219
+ _adoptIndexAccessOrigin(value) {
3220
+ $.utils.adopt(value, $.utils.getPointer(2, this));
3221
+ }
3222
+ _disownIndexAccessOrigin() {
3223
+ return $.utils.disown(this.indexAccessOrigin);
3224
+ }
3225
+ get indexAccessOrigin() {
3226
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
3227
+ }
3228
+ _hasIndexAccessOrigin() {
3229
+ return !$.utils.isNull($.utils.getPointer(2, this));
3230
+ }
3231
+ _initIndexAccessOrigin() {
3232
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
3233
+ }
3234
+ set indexAccessOrigin(value) {
3235
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
3236
+ }
3237
+ _adoptDecorators(value) {
3238
+ $.utils.adopt(value, $.utils.getPointer(3, this));
3239
+ }
3240
+ _disownDecorators() {
3241
+ return $.utils.disown(this.decorators);
3242
+ }
3243
+ get decorators() {
3244
+ return $.utils.getList(3, _SerializedTypeLiteral._Decorators, this);
3245
+ }
3246
+ _hasDecorators() {
3247
+ return !$.utils.isNull($.utils.getPointer(3, this));
3248
+ }
3249
+ _initDecorators(length) {
3250
+ return $.utils.initList(3, _SerializedTypeLiteral._Decorators, length, this);
3251
+ }
3252
+ set decorators(value) {
3253
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
3254
+ }
3255
+ get kind() {
3256
+ return $.utils.getUint16(0, this);
3257
+ }
3258
+ set kind(value) {
3259
+ $.utils.setUint16(0, value, this);
3260
+ }
3261
+ get literal() {
3262
+ return $.utils.getAs(SerializedTypeLiteral_Literal, this);
3263
+ }
3264
+ _initLiteral() {
3265
+ return $.utils.getAs(SerializedTypeLiteral_Literal, this);
3266
+ }
3267
+ toString() {
3268
+ return "SerializedTypeLiteral_" + super.toString();
3269
+ }
3270
+ };
3271
+ var SerializedTypeTemplateLiteral = class _SerializedTypeTemplateLiteral extends $.Struct {
3272
+ static {
3273
+ __name(this, "SerializedTypeTemplateLiteral");
3274
+ }
3275
+ static _capnp = {
3276
+ displayName: "SerializedTypeTemplateLiteral",
3277
+ id: "8dd6c284d46cc265",
3278
+ size: new $.ObjectSize(8, 5)
3279
+ };
3280
+ static _TypeArguments;
3281
+ static _Decorators;
3282
+ static _Types;
3283
+ get typeName() {
3284
+ return $.utils.getText(0, this);
3285
+ }
3286
+ set typeName(value) {
3287
+ $.utils.setText(0, value, this);
3288
+ }
3289
+ _adoptTypeArguments(value) {
3290
+ $.utils.adopt(value, $.utils.getPointer(1, this));
3291
+ }
3292
+ _disownTypeArguments() {
3293
+ return $.utils.disown(this.typeArguments);
3294
+ }
3295
+ get typeArguments() {
3296
+ return $.utils.getList(1, _SerializedTypeTemplateLiteral._TypeArguments, this);
3297
+ }
3298
+ _hasTypeArguments() {
3299
+ return !$.utils.isNull($.utils.getPointer(1, this));
3300
+ }
3301
+ _initTypeArguments(length) {
3302
+ return $.utils.initList(1, _SerializedTypeTemplateLiteral._TypeArguments, length, this);
3303
+ }
3304
+ set typeArguments(value) {
3305
+ $.utils.copyFrom(value, $.utils.getPointer(1, this));
3306
+ }
3307
+ _adoptIndexAccessOrigin(value) {
3308
+ $.utils.adopt(value, $.utils.getPointer(2, this));
3309
+ }
3310
+ _disownIndexAccessOrigin() {
3311
+ return $.utils.disown(this.indexAccessOrigin);
3312
+ }
3313
+ get indexAccessOrigin() {
3314
+ return $.utils.getStruct(2, IndexAccessOrigin, this);
3315
+ }
3316
+ _hasIndexAccessOrigin() {
3317
+ return !$.utils.isNull($.utils.getPointer(2, this));
3318
+ }
3319
+ _initIndexAccessOrigin() {
3320
+ return $.utils.initStructAt(2, IndexAccessOrigin, this);
3321
+ }
3322
+ set indexAccessOrigin(value) {
3323
+ $.utils.copyFrom(value, $.utils.getPointer(2, this));
3324
+ }
3325
+ _adoptDecorators(value) {
3326
+ $.utils.adopt(value, $.utils.getPointer(3, this));
3327
+ }
3328
+ _disownDecorators() {
3329
+ return $.utils.disown(this.decorators);
3330
+ }
3331
+ get decorators() {
3332
+ return $.utils.getList(3, _SerializedTypeTemplateLiteral._Decorators, this);
3333
+ }
3334
+ _hasDecorators() {
3335
+ return !$.utils.isNull($.utils.getPointer(3, this));
3336
+ }
3337
+ _initDecorators(length) {
3338
+ return $.utils.initList(3, _SerializedTypeTemplateLiteral._Decorators, length, this);
3339
+ }
3340
+ set decorators(value) {
3341
+ $.utils.copyFrom(value, $.utils.getPointer(3, this));
3342
+ }
3343
+ get kind() {
3344
+ return $.utils.getUint16(0, this);
3345
+ }
3346
+ set kind(value) {
3347
+ $.utils.setUint16(0, value, this);
3348
+ }
3349
+ _adoptTypes(value) {
3350
+ $.utils.adopt(value, $.utils.getPointer(4, this));
3351
+ }
3352
+ _disownTypes() {
3353
+ return $.utils.disown(this.types);
3354
+ }
3355
+ get types() {
3356
+ return $.utils.getList(4, _SerializedTypeTemplateLiteral._Types, this);
3357
+ }
3358
+ _hasTypes() {
3359
+ return !$.utils.isNull($.utils.getPointer(4, this));
3360
+ }
3361
+ _initTypes(length) {
3362
+ return $.utils.initList(4, _SerializedTypeTemplateLiteral._Types, length, this);
3363
+ }
3364
+ set types(value) {
3365
+ $.utils.copyFrom(value, $.utils.getPointer(4, this));
3366
+ }
3367
+ toString() {
3368
+ return "SerializedTypeTemplateLiteral_" + super.toString();
3369
+ }
3370
+ };
3371
+ var SerializedTypeOther = class extends $.Struct {
3372
+ static {
3373
+ __name(this, "SerializedTypeOther");
3374
+ }
3375
+ static _capnp = {
3376
+ displayName: "SerializedTypeOther",
3377
+ id: "9e1048a692ff49ce",
3378
+ size: new $.ObjectSize(8, 1)
3379
+ };
3380
+ get typeName() {
3381
+ return $.utils.getText(0, this);
3382
+ }
3383
+ set typeName(value) {
3384
+ $.utils.setText(0, value, this);
3385
+ }
3386
+ get kind() {
3387
+ return $.utils.getUint16(0, this);
3388
+ }
3389
+ set kind(value) {
3390
+ $.utils.setUint16(0, value, this);
3391
+ }
3392
+ toString() {
3393
+ return "SerializedTypeOther_" + super.toString();
3394
+ }
3395
+ };
3396
+ var SerializedType_Type_Which = {
3397
+ SIMPLE: 0,
3398
+ LITERAL: 1,
3399
+ TEMPLATE_LITERAL: 2,
3400
+ PARAMETER: 3,
3401
+ FUNCTION: 4,
3402
+ METHOD: 5,
3403
+ PROPERTY: 6,
3404
+ PROMISE: 7,
3405
+ CLASS_TYPE: 8,
3406
+ ENUM: 9,
3407
+ UNION: 10,
3408
+ INTERSECTION: 11,
3409
+ ARRAY: 12,
3410
+ OBJECT_LITERAL: 13,
3411
+ INDEX_SIGNATURE: 14,
3412
+ PROPERTY_SIGNATURE: 15,
3413
+ METHOD_SIGNATURE: 16,
3414
+ TYPE_PARAMETER: 17,
3415
+ INFER: 18,
3416
+ TUPLE: 19,
3417
+ TUPLE_MEMBER: 20,
3418
+ REST: 21,
3419
+ /**
3420
+ * For any other type that is not explicitly defined
3421
+ *
3422
+ */
3423
+ OTHER: 22
3424
+ };
3425
+ var SerializedType_Type = class extends $.Struct {
3426
+ static {
3427
+ __name(this, "SerializedType_Type");
3428
+ }
3429
+ static SIMPLE = SerializedType_Type_Which.SIMPLE;
3430
+ static LITERAL = SerializedType_Type_Which.LITERAL;
3431
+ static TEMPLATE_LITERAL = SerializedType_Type_Which.TEMPLATE_LITERAL;
3432
+ static PARAMETER = SerializedType_Type_Which.PARAMETER;
3433
+ static FUNCTION = SerializedType_Type_Which.FUNCTION;
3434
+ static METHOD = SerializedType_Type_Which.METHOD;
3435
+ static PROPERTY = SerializedType_Type_Which.PROPERTY;
3436
+ static PROMISE = SerializedType_Type_Which.PROMISE;
3437
+ static CLASS_TYPE = SerializedType_Type_Which.CLASS_TYPE;
3438
+ static ENUM = SerializedType_Type_Which.ENUM;
3439
+ static UNION = SerializedType_Type_Which.UNION;
3440
+ static INTERSECTION = SerializedType_Type_Which.INTERSECTION;
3441
+ static ARRAY = SerializedType_Type_Which.ARRAY;
3442
+ static OBJECT_LITERAL = SerializedType_Type_Which.OBJECT_LITERAL;
3443
+ static INDEX_SIGNATURE = SerializedType_Type_Which.INDEX_SIGNATURE;
3444
+ static PROPERTY_SIGNATURE = SerializedType_Type_Which.PROPERTY_SIGNATURE;
3445
+ static METHOD_SIGNATURE = SerializedType_Type_Which.METHOD_SIGNATURE;
3446
+ static TYPE_PARAMETER = SerializedType_Type_Which.TYPE_PARAMETER;
3447
+ static INFER = SerializedType_Type_Which.INFER;
3448
+ static TUPLE = SerializedType_Type_Which.TUPLE;
3449
+ static TUPLE_MEMBER = SerializedType_Type_Which.TUPLE_MEMBER;
3450
+ static REST = SerializedType_Type_Which.REST;
3451
+ static OTHER = SerializedType_Type_Which.OTHER;
3452
+ static _capnp = {
3453
+ displayName: "type",
3454
+ id: "c677d7ed4a496eab",
3455
+ size: new $.ObjectSize(8, 1)
3456
+ };
3457
+ _adoptSimple(value) {
3458
+ $.utils.setUint16(0, 0, this);
3459
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3460
+ }
3461
+ _disownSimple() {
3462
+ return $.utils.disown(this.simple);
3463
+ }
3464
+ get simple() {
3465
+ $.utils.testWhich("simple", $.utils.getUint16(0, this), 0, this);
3466
+ return $.utils.getStruct(0, SimpleSerializedType, this);
3467
+ }
3468
+ _hasSimple() {
3469
+ return !$.utils.isNull($.utils.getPointer(0, this));
3470
+ }
3471
+ _initSimple() {
3472
+ $.utils.setUint16(0, 0, this);
3473
+ return $.utils.initStructAt(0, SimpleSerializedType, this);
3474
+ }
3475
+ get _isSimple() {
3476
+ return $.utils.getUint16(0, this) === 0;
3477
+ }
3478
+ set simple(value) {
3479
+ $.utils.setUint16(0, 0, this);
3480
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3481
+ }
3482
+ _adoptLiteral(value) {
3483
+ $.utils.setUint16(0, 1, this);
3484
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3485
+ }
3486
+ _disownLiteral() {
3487
+ return $.utils.disown(this.literal);
3488
+ }
3489
+ get literal() {
3490
+ $.utils.testWhich("literal", $.utils.getUint16(0, this), 1, this);
3491
+ return $.utils.getStruct(0, SerializedTypeLiteral, this);
3492
+ }
3493
+ _hasLiteral() {
3494
+ return !$.utils.isNull($.utils.getPointer(0, this));
3495
+ }
3496
+ _initLiteral() {
3497
+ $.utils.setUint16(0, 1, this);
3498
+ return $.utils.initStructAt(0, SerializedTypeLiteral, this);
3499
+ }
3500
+ get _isLiteral() {
3501
+ return $.utils.getUint16(0, this) === 1;
3502
+ }
3503
+ set literal(value) {
3504
+ $.utils.setUint16(0, 1, this);
3505
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3506
+ }
3507
+ _adoptTemplateLiteral(value) {
3508
+ $.utils.setUint16(0, 2, this);
3509
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3510
+ }
3511
+ _disownTemplateLiteral() {
3512
+ return $.utils.disown(this.templateLiteral);
3513
+ }
3514
+ get templateLiteral() {
3515
+ $.utils.testWhich("templateLiteral", $.utils.getUint16(0, this), 2, this);
3516
+ return $.utils.getStruct(0, SerializedTypeTemplateLiteral, this);
3517
+ }
3518
+ _hasTemplateLiteral() {
3519
+ return !$.utils.isNull($.utils.getPointer(0, this));
3520
+ }
3521
+ _initTemplateLiteral() {
3522
+ $.utils.setUint16(0, 2, this);
3523
+ return $.utils.initStructAt(0, SerializedTypeTemplateLiteral, this);
3524
+ }
3525
+ get _isTemplateLiteral() {
3526
+ return $.utils.getUint16(0, this) === 2;
3527
+ }
3528
+ set templateLiteral(value) {
3529
+ $.utils.setUint16(0, 2, this);
3530
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3531
+ }
3532
+ _adoptParameter(value) {
3533
+ $.utils.setUint16(0, 3, this);
3534
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3535
+ }
3536
+ _disownParameter() {
3537
+ return $.utils.disown(this.parameter);
3538
+ }
3539
+ get parameter() {
3540
+ $.utils.testWhich("parameter", $.utils.getUint16(0, this), 3, this);
3541
+ return $.utils.getStruct(0, SerializedTypeParameter, this);
3542
+ }
3543
+ _hasParameter() {
3544
+ return !$.utils.isNull($.utils.getPointer(0, this));
3545
+ }
3546
+ _initParameter() {
3547
+ $.utils.setUint16(0, 3, this);
3548
+ return $.utils.initStructAt(0, SerializedTypeParameter, this);
3549
+ }
3550
+ get _isParameter() {
3551
+ return $.utils.getUint16(0, this) === 3;
3552
+ }
3553
+ set parameter(value) {
3554
+ $.utils.setUint16(0, 3, this);
3555
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3556
+ }
3557
+ _adoptFunction(value) {
3558
+ $.utils.setUint16(0, 4, this);
3559
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3560
+ }
3561
+ _disownFunction() {
3562
+ return $.utils.disown(this.function);
3563
+ }
3564
+ get function() {
3565
+ $.utils.testWhich("function", $.utils.getUint16(0, this), 4, this);
3566
+ return $.utils.getStruct(0, SerializedTypeFunction, this);
3567
+ }
3568
+ _hasFunction() {
3569
+ return !$.utils.isNull($.utils.getPointer(0, this));
3570
+ }
3571
+ _initFunction() {
3572
+ $.utils.setUint16(0, 4, this);
3573
+ return $.utils.initStructAt(0, SerializedTypeFunction, this);
3574
+ }
3575
+ get _isFunction() {
3576
+ return $.utils.getUint16(0, this) === 4;
3577
+ }
3578
+ set function(value) {
3579
+ $.utils.setUint16(0, 4, this);
3580
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3581
+ }
3582
+ _adoptMethod(value) {
3583
+ $.utils.setUint16(0, 5, this);
3584
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3585
+ }
3586
+ _disownMethod() {
3587
+ return $.utils.disown(this.method);
3588
+ }
3589
+ get method() {
3590
+ $.utils.testWhich("method", $.utils.getUint16(0, this), 5, this);
3591
+ return $.utils.getStruct(0, SerializedTypeMethod, this);
3592
+ }
3593
+ _hasMethod() {
3594
+ return !$.utils.isNull($.utils.getPointer(0, this));
3595
+ }
3596
+ _initMethod() {
3597
+ $.utils.setUint16(0, 5, this);
3598
+ return $.utils.initStructAt(0, SerializedTypeMethod, this);
3599
+ }
3600
+ get _isMethod() {
3601
+ return $.utils.getUint16(0, this) === 5;
3602
+ }
3603
+ set method(value) {
3604
+ $.utils.setUint16(0, 5, this);
3605
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3606
+ }
3607
+ _adoptProperty(value) {
3608
+ $.utils.setUint16(0, 6, this);
3609
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3610
+ }
3611
+ _disownProperty() {
3612
+ return $.utils.disown(this.property);
3613
+ }
3614
+ get property() {
3615
+ $.utils.testWhich("property", $.utils.getUint16(0, this), 6, this);
3616
+ return $.utils.getStruct(0, SerializedTypeProperty, this);
3617
+ }
3618
+ _hasProperty() {
3619
+ return !$.utils.isNull($.utils.getPointer(0, this));
3620
+ }
3621
+ _initProperty() {
3622
+ $.utils.setUint16(0, 6, this);
3623
+ return $.utils.initStructAt(0, SerializedTypeProperty, this);
3624
+ }
3625
+ get _isProperty() {
3626
+ return $.utils.getUint16(0, this) === 6;
3627
+ }
3628
+ set property(value) {
3629
+ $.utils.setUint16(0, 6, this);
3630
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3631
+ }
3632
+ _adoptPromise(value) {
3633
+ $.utils.setUint16(0, 7, this);
3634
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3635
+ }
3636
+ _disownPromise() {
3637
+ return $.utils.disown(this.promise);
3638
+ }
3639
+ get promise() {
3640
+ $.utils.testWhich("promise", $.utils.getUint16(0, this), 7, this);
3641
+ return $.utils.getStruct(0, SerializedTypePromise, this);
3642
+ }
3643
+ _hasPromise() {
3644
+ return !$.utils.isNull($.utils.getPointer(0, this));
3645
+ }
3646
+ _initPromise() {
3647
+ $.utils.setUint16(0, 7, this);
3648
+ return $.utils.initStructAt(0, SerializedTypePromise, this);
3649
+ }
3650
+ get _isPromise() {
3651
+ return $.utils.getUint16(0, this) === 7;
3652
+ }
3653
+ set promise(value) {
3654
+ $.utils.setUint16(0, 7, this);
3655
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3656
+ }
3657
+ _adoptClassType(value) {
3658
+ $.utils.setUint16(0, 8, this);
3659
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3660
+ }
3661
+ _disownClassType() {
3662
+ return $.utils.disown(this.classType);
3663
+ }
3664
+ get classType() {
3665
+ $.utils.testWhich("classType", $.utils.getUint16(0, this), 8, this);
3666
+ return $.utils.getStruct(0, SerializedTypeClassType, this);
3667
+ }
3668
+ _hasClassType() {
3669
+ return !$.utils.isNull($.utils.getPointer(0, this));
3670
+ }
3671
+ _initClassType() {
3672
+ $.utils.setUint16(0, 8, this);
3673
+ return $.utils.initStructAt(0, SerializedTypeClassType, this);
3674
+ }
3675
+ get _isClassType() {
3676
+ return $.utils.getUint16(0, this) === 8;
3677
+ }
3678
+ set classType(value) {
3679
+ $.utils.setUint16(0, 8, this);
3680
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3681
+ }
3682
+ _adoptEnum(value) {
3683
+ $.utils.setUint16(0, 9, this);
3684
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3685
+ }
3686
+ _disownEnum() {
3687
+ return $.utils.disown(this.enum);
3688
+ }
3689
+ get enum() {
3690
+ $.utils.testWhich("enum", $.utils.getUint16(0, this), 9, this);
3691
+ return $.utils.getStruct(0, SerializedTypeEnum, this);
3692
+ }
3693
+ _hasEnum() {
3694
+ return !$.utils.isNull($.utils.getPointer(0, this));
3695
+ }
3696
+ _initEnum() {
3697
+ $.utils.setUint16(0, 9, this);
3698
+ return $.utils.initStructAt(0, SerializedTypeEnum, this);
3699
+ }
3700
+ get _isEnum() {
3701
+ return $.utils.getUint16(0, this) === 9;
3702
+ }
3703
+ set enum(value) {
3704
+ $.utils.setUint16(0, 9, this);
3705
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3706
+ }
3707
+ _adoptUnion(value) {
3708
+ $.utils.setUint16(0, 10, this);
3709
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3710
+ }
3711
+ _disownUnion() {
3712
+ return $.utils.disown(this.union);
3713
+ }
3714
+ get union() {
3715
+ $.utils.testWhich("union", $.utils.getUint16(0, this), 10, this);
3716
+ return $.utils.getStruct(0, SerializedTypeUnion, this);
3717
+ }
3718
+ _hasUnion() {
3719
+ return !$.utils.isNull($.utils.getPointer(0, this));
3720
+ }
3721
+ _initUnion() {
3722
+ $.utils.setUint16(0, 10, this);
3723
+ return $.utils.initStructAt(0, SerializedTypeUnion, this);
3724
+ }
3725
+ get _isUnion() {
3726
+ return $.utils.getUint16(0, this) === 10;
3727
+ }
3728
+ set union(value) {
3729
+ $.utils.setUint16(0, 10, this);
3730
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3731
+ }
3732
+ _adoptIntersection(value) {
3733
+ $.utils.setUint16(0, 11, this);
3734
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3735
+ }
3736
+ _disownIntersection() {
3737
+ return $.utils.disown(this.intersection);
3738
+ }
3739
+ get intersection() {
3740
+ $.utils.testWhich("intersection", $.utils.getUint16(0, this), 11, this);
3741
+ return $.utils.getStruct(0, SerializedTypeIntersection, this);
3742
+ }
3743
+ _hasIntersection() {
3744
+ return !$.utils.isNull($.utils.getPointer(0, this));
3745
+ }
3746
+ _initIntersection() {
3747
+ $.utils.setUint16(0, 11, this);
3748
+ return $.utils.initStructAt(0, SerializedTypeIntersection, this);
3749
+ }
3750
+ get _isIntersection() {
3751
+ return $.utils.getUint16(0, this) === 11;
3752
+ }
3753
+ set intersection(value) {
3754
+ $.utils.setUint16(0, 11, this);
3755
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3756
+ }
3757
+ _adoptArray(value) {
3758
+ $.utils.setUint16(0, 12, this);
3759
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3760
+ }
3761
+ _disownArray() {
3762
+ return $.utils.disown(this.array);
3763
+ }
3764
+ get array() {
3765
+ $.utils.testWhich("array", $.utils.getUint16(0, this), 12, this);
3766
+ return $.utils.getStruct(0, SerializedTypeArray, this);
3767
+ }
3768
+ _hasArray() {
3769
+ return !$.utils.isNull($.utils.getPointer(0, this));
3770
+ }
3771
+ _initArray() {
3772
+ $.utils.setUint16(0, 12, this);
3773
+ return $.utils.initStructAt(0, SerializedTypeArray, this);
3774
+ }
3775
+ get _isArray() {
3776
+ return $.utils.getUint16(0, this) === 12;
3777
+ }
3778
+ set array(value) {
3779
+ $.utils.setUint16(0, 12, this);
3780
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3781
+ }
3782
+ _adoptObjectLiteral(value) {
3783
+ $.utils.setUint16(0, 13, this);
3784
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3785
+ }
3786
+ _disownObjectLiteral() {
3787
+ return $.utils.disown(this.objectLiteral);
3788
+ }
3789
+ get objectLiteral() {
3790
+ $.utils.testWhich("objectLiteral", $.utils.getUint16(0, this), 13, this);
3791
+ return $.utils.getStruct(0, SerializedTypeObjectLiteral, this);
3792
+ }
3793
+ _hasObjectLiteral() {
3794
+ return !$.utils.isNull($.utils.getPointer(0, this));
3795
+ }
3796
+ _initObjectLiteral() {
3797
+ $.utils.setUint16(0, 13, this);
3798
+ return $.utils.initStructAt(0, SerializedTypeObjectLiteral, this);
3799
+ }
3800
+ get _isObjectLiteral() {
3801
+ return $.utils.getUint16(0, this) === 13;
3802
+ }
3803
+ set objectLiteral(value) {
3804
+ $.utils.setUint16(0, 13, this);
3805
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3806
+ }
3807
+ _adoptIndexSignature(value) {
3808
+ $.utils.setUint16(0, 14, this);
3809
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3810
+ }
3811
+ _disownIndexSignature() {
3812
+ return $.utils.disown(this.indexSignature);
3813
+ }
3814
+ get indexSignature() {
3815
+ $.utils.testWhich("indexSignature", $.utils.getUint16(0, this), 14, this);
3816
+ return $.utils.getStruct(0, SerializedTypeIndexSignature, this);
3817
+ }
3818
+ _hasIndexSignature() {
3819
+ return !$.utils.isNull($.utils.getPointer(0, this));
3820
+ }
3821
+ _initIndexSignature() {
3822
+ $.utils.setUint16(0, 14, this);
3823
+ return $.utils.initStructAt(0, SerializedTypeIndexSignature, this);
3824
+ }
3825
+ get _isIndexSignature() {
3826
+ return $.utils.getUint16(0, this) === 14;
3827
+ }
3828
+ set indexSignature(value) {
3829
+ $.utils.setUint16(0, 14, this);
3830
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3831
+ }
3832
+ _adoptPropertySignature(value) {
3833
+ $.utils.setUint16(0, 15, this);
3834
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3835
+ }
3836
+ _disownPropertySignature() {
3837
+ return $.utils.disown(this.propertySignature);
3838
+ }
3839
+ get propertySignature() {
3840
+ $.utils.testWhich("propertySignature", $.utils.getUint16(0, this), 15, this);
3841
+ return $.utils.getStruct(0, SerializedTypePropertySignature, this);
3842
+ }
3843
+ _hasPropertySignature() {
3844
+ return !$.utils.isNull($.utils.getPointer(0, this));
3845
+ }
3846
+ _initPropertySignature() {
3847
+ $.utils.setUint16(0, 15, this);
3848
+ return $.utils.initStructAt(0, SerializedTypePropertySignature, this);
3849
+ }
3850
+ get _isPropertySignature() {
3851
+ return $.utils.getUint16(0, this) === 15;
3852
+ }
3853
+ set propertySignature(value) {
3854
+ $.utils.setUint16(0, 15, this);
3855
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3856
+ }
3857
+ _adoptMethodSignature(value) {
3858
+ $.utils.setUint16(0, 16, this);
3859
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3860
+ }
3861
+ _disownMethodSignature() {
3862
+ return $.utils.disown(this.methodSignature);
3863
+ }
3864
+ get methodSignature() {
3865
+ $.utils.testWhich("methodSignature", $.utils.getUint16(0, this), 16, this);
3866
+ return $.utils.getStruct(0, SerializedTypeMethodSignature, this);
3867
+ }
3868
+ _hasMethodSignature() {
3869
+ return !$.utils.isNull($.utils.getPointer(0, this));
3870
+ }
3871
+ _initMethodSignature() {
3872
+ $.utils.setUint16(0, 16, this);
3873
+ return $.utils.initStructAt(0, SerializedTypeMethodSignature, this);
3874
+ }
3875
+ get _isMethodSignature() {
3876
+ return $.utils.getUint16(0, this) === 16;
3877
+ }
3878
+ set methodSignature(value) {
3879
+ $.utils.setUint16(0, 16, this);
3880
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3881
+ }
3882
+ _adoptTypeParameter(value) {
3883
+ $.utils.setUint16(0, 17, this);
3884
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3885
+ }
3886
+ _disownTypeParameter() {
3887
+ return $.utils.disown(this.typeParameter);
3888
+ }
3889
+ get typeParameter() {
3890
+ $.utils.testWhich("typeParameter", $.utils.getUint16(0, this), 17, this);
3891
+ return $.utils.getStruct(0, SerializedTypeTypeParameter, this);
3892
+ }
3893
+ _hasTypeParameter() {
3894
+ return !$.utils.isNull($.utils.getPointer(0, this));
3895
+ }
3896
+ _initTypeParameter() {
3897
+ $.utils.setUint16(0, 17, this);
3898
+ return $.utils.initStructAt(0, SerializedTypeTypeParameter, this);
3899
+ }
3900
+ get _isTypeParameter() {
3901
+ return $.utils.getUint16(0, this) === 17;
3902
+ }
3903
+ set typeParameter(value) {
3904
+ $.utils.setUint16(0, 17, this);
3905
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3906
+ }
3907
+ _adoptInfer(value) {
3908
+ $.utils.setUint16(0, 18, this);
3909
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3910
+ }
3911
+ _disownInfer() {
3912
+ return $.utils.disown(this.infer);
3913
+ }
3914
+ get infer() {
3915
+ $.utils.testWhich("infer", $.utils.getUint16(0, this), 18, this);
3916
+ return $.utils.getStruct(0, SerializedTypeInfer, this);
3917
+ }
3918
+ _hasInfer() {
3919
+ return !$.utils.isNull($.utils.getPointer(0, this));
3920
+ }
3921
+ _initInfer() {
3922
+ $.utils.setUint16(0, 18, this);
3923
+ return $.utils.initStructAt(0, SerializedTypeInfer, this);
3924
+ }
3925
+ get _isInfer() {
3926
+ return $.utils.getUint16(0, this) === 18;
3927
+ }
3928
+ set infer(value) {
3929
+ $.utils.setUint16(0, 18, this);
3930
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3931
+ }
3932
+ _adoptTuple(value) {
3933
+ $.utils.setUint16(0, 19, this);
3934
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3935
+ }
3936
+ _disownTuple() {
3937
+ return $.utils.disown(this.tuple);
3938
+ }
3939
+ get tuple() {
3940
+ $.utils.testWhich("tuple", $.utils.getUint16(0, this), 19, this);
3941
+ return $.utils.getStruct(0, SerializedTypeTuple, this);
3942
+ }
3943
+ _hasTuple() {
3944
+ return !$.utils.isNull($.utils.getPointer(0, this));
3945
+ }
3946
+ _initTuple() {
3947
+ $.utils.setUint16(0, 19, this);
3948
+ return $.utils.initStructAt(0, SerializedTypeTuple, this);
3949
+ }
3950
+ get _isTuple() {
3951
+ return $.utils.getUint16(0, this) === 19;
3952
+ }
3953
+ set tuple(value) {
3954
+ $.utils.setUint16(0, 19, this);
3955
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3956
+ }
3957
+ _adoptTupleMember(value) {
3958
+ $.utils.setUint16(0, 20, this);
3959
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3960
+ }
3961
+ _disownTupleMember() {
3962
+ return $.utils.disown(this.tupleMember);
3963
+ }
3964
+ get tupleMember() {
3965
+ $.utils.testWhich("tupleMember", $.utils.getUint16(0, this), 20, this);
3966
+ return $.utils.getStruct(0, SerializedTypeTupleMember, this);
3967
+ }
3968
+ _hasTupleMember() {
3969
+ return !$.utils.isNull($.utils.getPointer(0, this));
3970
+ }
3971
+ _initTupleMember() {
3972
+ $.utils.setUint16(0, 20, this);
3973
+ return $.utils.initStructAt(0, SerializedTypeTupleMember, this);
3974
+ }
3975
+ get _isTupleMember() {
3976
+ return $.utils.getUint16(0, this) === 20;
3977
+ }
3978
+ set tupleMember(value) {
3979
+ $.utils.setUint16(0, 20, this);
3980
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
3981
+ }
3982
+ _adoptRest(value) {
3983
+ $.utils.setUint16(0, 21, this);
3984
+ $.utils.adopt(value, $.utils.getPointer(0, this));
3985
+ }
3986
+ _disownRest() {
3987
+ return $.utils.disown(this.rest);
3988
+ }
3989
+ get rest() {
3990
+ $.utils.testWhich("rest", $.utils.getUint16(0, this), 21, this);
3991
+ return $.utils.getStruct(0, SerializedTypeRest, this);
3992
+ }
3993
+ _hasRest() {
3994
+ return !$.utils.isNull($.utils.getPointer(0, this));
3995
+ }
3996
+ _initRest() {
3997
+ $.utils.setUint16(0, 21, this);
3998
+ return $.utils.initStructAt(0, SerializedTypeRest, this);
3999
+ }
4000
+ get _isRest() {
4001
+ return $.utils.getUint16(0, this) === 21;
4002
+ }
4003
+ set rest(value) {
4004
+ $.utils.setUint16(0, 21, this);
4005
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
4006
+ }
4007
+ _adoptOther(value) {
4008
+ $.utils.setUint16(0, 22, this);
4009
+ $.utils.adopt(value, $.utils.getPointer(0, this));
4010
+ }
4011
+ _disownOther() {
4012
+ return $.utils.disown(this.other);
4013
+ }
4014
+ /**
4015
+ * For any other type that is not explicitly defined
4016
+ *
4017
+ */
4018
+ get other() {
4019
+ $.utils.testWhich("other", $.utils.getUint16(0, this), 22, this);
4020
+ return $.utils.getStruct(0, SerializedTypeOther, this);
4021
+ }
4022
+ _hasOther() {
4023
+ return !$.utils.isNull($.utils.getPointer(0, this));
4024
+ }
4025
+ _initOther() {
4026
+ $.utils.setUint16(0, 22, this);
4027
+ return $.utils.initStructAt(0, SerializedTypeOther, this);
4028
+ }
4029
+ get _isOther() {
4030
+ return $.utils.getUint16(0, this) === 22;
4031
+ }
4032
+ set other(value) {
4033
+ $.utils.setUint16(0, 22, this);
4034
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
4035
+ }
4036
+ toString() {
4037
+ return "SerializedType_Type_" + super.toString();
4038
+ }
4039
+ which() {
4040
+ return $.utils.getUint16(0, this);
4041
+ }
4042
+ };
4043
+ var SerializedType = class extends $.Struct {
4044
+ static {
4045
+ __name(this, "SerializedType");
4046
+ }
4047
+ static _capnp = {
4048
+ displayName: "SerializedType",
4049
+ id: "96856dcc2dd3d58f",
4050
+ size: new $.ObjectSize(8, 1)
4051
+ };
4052
+ get type() {
4053
+ return $.utils.getAs(SerializedType_Type, this);
4054
+ }
4055
+ _initType() {
4056
+ return $.utils.getAs(SerializedType_Type, this);
4057
+ }
4058
+ toString() {
4059
+ return "SerializedType_" + super.toString();
4060
+ }
4061
+ };
4062
+ var SerializedTypes = class _SerializedTypes extends $.Struct {
4063
+ static {
4064
+ __name(this, "SerializedTypes");
4065
+ }
4066
+ static _capnp = {
4067
+ displayName: "SerializedTypes",
4068
+ id: "ac55398ab0ef4958",
4069
+ size: new $.ObjectSize(0, 1)
4070
+ };
4071
+ static _Types;
4072
+ _adoptTypes(value) {
4073
+ $.utils.adopt(value, $.utils.getPointer(0, this));
4074
+ }
4075
+ _disownTypes() {
4076
+ return $.utils.disown(this.types);
4077
+ }
4078
+ get types() {
4079
+ return $.utils.getList(0, _SerializedTypes._Types, this);
4080
+ }
4081
+ _hasTypes() {
4082
+ return !$.utils.isNull($.utils.getPointer(0, this));
4083
+ }
4084
+ _initTypes(length) {
4085
+ return $.utils.initList(0, _SerializedTypes._Types, length, this);
4086
+ }
4087
+ set types(value) {
4088
+ $.utils.copyFrom(value, $.utils.getPointer(0, this));
4089
+ }
4090
+ toString() {
4091
+ return "SerializedTypes_" + super.toString();
4092
+ }
4093
+ };
4094
+ EntityOptions._Indexes = $.CompositeList(EntityOptions_EntityIndexOptions);
4095
+ SerializedTypeObjectLiteral._TypeArguments = $.CompositeList(SerializedTypeReference);
4096
+ SerializedTypeObjectLiteral._Decorators = $.CompositeList(SerializedTypeReference);
4097
+ SerializedTypeObjectLiteral._Types = $.CompositeList(SerializedTypeReference);
4098
+ SerializedTypeClassType._TypeArguments = $.CompositeList(SerializedTypeReference);
4099
+ SerializedTypeClassType._Decorators = $.CompositeList(SerializedTypeReference);
4100
+ SerializedTypeClassType._ExtendsArguments = $.CompositeList(SerializedTypeReference);
4101
+ SerializedTypeClassType._Arguments = $.CompositeList(SerializedTypeReference);
4102
+ SerializedTypeClassType._Types = $.CompositeList(SerializedTypeReference);
4103
+ SerializedTypeParameter._TypeArguments = $.CompositeList(SerializedTypeReference);
4104
+ SerializedTypeParameter._Decorators = $.CompositeList(SerializedTypeReference);
4105
+ SerializedTypeMethod._TypeArguments = $.CompositeList(SerializedTypeReference);
4106
+ SerializedTypeMethod._Decorators = $.CompositeList(SerializedTypeReference);
4107
+ SerializedTypeMethod._Parameters = $.CompositeList(SerializedTypeParameter);
4108
+ SerializedTypeProperty._TypeArguments = $.CompositeList(SerializedTypeReference);
4109
+ SerializedTypeProperty._Decorators = $.CompositeList(SerializedTypeReference);
4110
+ SerializedTypeFunction._TypeArguments = $.CompositeList(SerializedTypeReference);
4111
+ SerializedTypeFunction._Decorators = $.CompositeList(SerializedTypeReference);
4112
+ SerializedTypeFunction._Parameters = $.CompositeList(SerializedTypeParameter);
4113
+ SerializedTypePromise._TypeArguments = $.CompositeList(SerializedTypeReference);
4114
+ SerializedTypePromise._Decorators = $.CompositeList(SerializedTypeReference);
4115
+ SerializedTypeEnum._TypeArguments = $.CompositeList(SerializedTypeReference);
4116
+ SerializedTypeEnum._Decorators = $.CompositeList(SerializedTypeReference);
4117
+ SerializedTypeEnum._EnumEntries = $.CompositeList(SerializedTypeEnumEntry);
4118
+ SerializedTypeUnion._TypeArguments = $.CompositeList(SerializedTypeReference);
4119
+ SerializedTypeUnion._Decorators = $.CompositeList(SerializedTypeReference);
4120
+ SerializedTypeUnion._Types = $.CompositeList(SerializedTypeReference);
4121
+ SerializedTypeIntersection._TypeArguments = $.CompositeList(SerializedTypeReference);
4122
+ SerializedTypeIntersection._Decorators = $.CompositeList(SerializedTypeReference);
4123
+ SerializedTypeIntersection._Types = $.CompositeList(SerializedTypeReference);
4124
+ SerializedTypeArray._TypeArguments = $.CompositeList(SerializedTypeReference);
4125
+ SerializedTypeArray._Decorators = $.CompositeList(SerializedTypeReference);
4126
+ SerializedTypeIndexSignature._TypeArguments = $.CompositeList(SerializedTypeReference);
4127
+ SerializedTypeIndexSignature._Decorators = $.CompositeList(SerializedTypeReference);
4128
+ SerializedTypePropertySignature._TypeArguments = $.CompositeList(SerializedTypeReference);
4129
+ SerializedTypePropertySignature._Decorators = $.CompositeList(SerializedTypeReference);
4130
+ SerializedTypeMethodSignature._TypeArguments = $.CompositeList(SerializedTypeReference);
4131
+ SerializedTypeMethodSignature._Decorators = $.CompositeList(SerializedTypeReference);
4132
+ SerializedTypeMethodSignature._Parameters = $.CompositeList(SerializedTypeParameter);
4133
+ SerializedTypeTypeParameter._TypeArguments = $.CompositeList(SerializedTypeReference);
4134
+ SerializedTypeTypeParameter._Decorators = $.CompositeList(SerializedTypeReference);
4135
+ SerializedTypeInfer._TypeArguments = $.CompositeList(SerializedTypeReference);
4136
+ SerializedTypeInfer._Decorators = $.CompositeList(SerializedTypeReference);
4137
+ SerializedTypeTupleMember._TypeArguments = $.CompositeList(SerializedTypeReference);
4138
+ SerializedTypeTupleMember._Decorators = $.CompositeList(SerializedTypeReference);
4139
+ SerializedTypeTuple._TypeArguments = $.CompositeList(SerializedTypeReference);
4140
+ SerializedTypeTuple._Decorators = $.CompositeList(SerializedTypeReference);
4141
+ SerializedTypeTuple._Types = $.CompositeList(SerializedTypeTupleMember);
4142
+ SerializedTypeRest._TypeArguments = $.CompositeList(SerializedTypeReference);
4143
+ SerializedTypeRest._Decorators = $.CompositeList(SerializedTypeReference);
4144
+ SimpleSerializedType._TypeArguments = $.CompositeList(SerializedTypeReference);
4145
+ SimpleSerializedType._Decorators = $.CompositeList(SerializedTypeReference);
4146
+ SerializedTypeLiteral._TypeArguments = $.CompositeList(SerializedTypeReference);
4147
+ SerializedTypeLiteral._Decorators = $.CompositeList(SerializedTypeReference);
4148
+ SerializedTypeTemplateLiteral._TypeArguments = $.CompositeList(SerializedTypeReference);
4149
+ SerializedTypeTemplateLiteral._Decorators = $.CompositeList(SerializedTypeReference);
4150
+ SerializedTypeTemplateLiteral._Types = $.CompositeList(SerializedTypeReference);
4151
+ SerializedTypes._Types = $.CompositeList(SerializedType);
4152
+
4153
+ export { DefaultValueReflection, DefaultValueReflection_Value, DefaultValueReflection_Value_Which, EntityOptions, EntityOptions_EntityIndexOptions, IndexAccessOrigin, ReflectionKind, ReflectionVisibility, SerializedType, SerializedTypeArray, SerializedTypeClassType, SerializedTypeEnum, SerializedTypeEnumEntry, SerializedTypeFunction, SerializedTypeIndexSignature, SerializedTypeInfer, SerializedTypeIntersection, SerializedTypeLiteral, SerializedTypeLiteralBigInt, SerializedTypeLiteralRegex, SerializedTypeLiteralSymbol, SerializedTypeLiteral_Literal, SerializedTypeLiteral_Literal_Which, SerializedTypeMethod, SerializedTypeMethodSignature, SerializedTypeObjectLiteral, SerializedTypeOther, SerializedTypeParameter, SerializedTypePromise, SerializedTypeProperty, SerializedTypePropertySignature, SerializedTypeReference, SerializedTypeRest, SerializedTypeTemplateLiteral, SerializedTypeTuple, SerializedTypeTupleMember, SerializedTypeTypeParameter, SerializedTypeUnion, SerializedType_Type, SerializedType_Type_Which, SerializedTypes, SimpleSerializedType, TagsReflection, _capnpFileId };