exupery 0.1.9 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/implementation/generic/unmarshall.d.ts +21 -0
- package/dist/generated/implementation/generic/unmarshall.js +93 -0
- package/dist/generated/implementation/schemas/implementation/marshall.d.ts +8 -0
- package/dist/generated/implementation/schemas/implementation/marshall.js +536 -0
- package/dist/generated/implementation/schemas/implementation/resolve.js +15 -5
- package/dist/generated/implementation/schemas/implementation/serializer.d.ts +7 -7
- package/dist/generated/implementation/schemas/implementation/serializer.js +159 -110
- package/dist/generated/implementation/schemas/implementation/unmarshall.d.ts +8 -0
- package/dist/generated/implementation/schemas/implementation/unmarshall.js +303 -0
- package/dist/generated/implementation/schemas/interface/marshall.d.ts +8 -0
- package/dist/generated/implementation/schemas/interface/marshall.js +299 -0
- package/dist/generated/implementation/schemas/interface/serializer.d.ts +7 -7
- package/dist/generated/implementation/schemas/interface/serializer.js +91 -79
- package/dist/generated/implementation/schemas/interface/unmarshall.d.ts +8 -0
- package/dist/generated/implementation/schemas/interface/unmarshall.js +163 -0
- package/dist/generated/implementation/schemas/typescript_light/marshall.d.ts +11 -0
- package/dist/generated/implementation/schemas/typescript_light/marshall.js +429 -0
- package/dist/generated/implementation/schemas/typescript_light/serializer.d.ts +10 -10
- package/dist/generated/implementation/schemas/typescript_light/serializer.js +129 -109
- package/dist/generated/implementation/schemas/typescript_light/unmarshall.d.ts +11 -0
- package/dist/generated/implementation/schemas/typescript_light/unmarshall.js +253 -0
- package/dist/generated/interface/core/astn_source.d.ts +116 -0
- package/dist/generated/interface/core/astn_source.js +3 -0
- package/dist/generated/interface/schemas/implementation/marshall.d.ts +256 -0
- package/dist/generated/interface/schemas/implementation/marshall.js +3 -0
- package/dist/generated/interface/schemas/implementation/migrate_boilerplate.d.ts +170 -0
- package/dist/generated/interface/schemas/implementation/migrate_boilerplate.js +3 -0
- package/dist/generated/interface/schemas/implementation/resolved.d.ts +55 -38
- package/dist/generated/interface/schemas/implementation/serializer.d.ts +128 -28
- package/dist/generated/interface/schemas/implementation/unmarshall.d.ts +170 -0
- package/dist/generated/interface/schemas/implementation/unmarshall.js +3 -0
- package/dist/generated/interface/schemas/implementation/unresolved.d.ts +55 -38
- package/dist/generated/interface/schemas/interface/marshall.d.ts +256 -0
- package/dist/generated/interface/schemas/interface/marshall.js +3 -0
- package/dist/generated/interface/schemas/interface/migrate_boilerplate.d.ts +170 -0
- package/dist/generated/interface/schemas/interface/migrate_boilerplate.js +3 -0
- package/dist/generated/interface/schemas/interface/serializer.d.ts +128 -28
- package/dist/generated/interface/schemas/interface/unmarshall.d.ts +170 -0
- package/dist/generated/interface/schemas/interface/unmarshall.js +3 -0
- package/dist/generated/interface/schemas/typescript_light/marshall.d.ts +346 -0
- package/dist/generated/interface/schemas/typescript_light/marshall.js +3 -0
- package/dist/generated/interface/schemas/typescript_light/migrate_boilerplate.d.ts +222 -0
- package/dist/generated/interface/schemas/typescript_light/migrate_boilerplate.js +3 -0
- package/dist/generated/interface/schemas/typescript_light/serializer.d.ts +164 -40
- package/dist/generated/interface/schemas/typescript_light/unmarshall.d.ts +222 -0
- package/dist/generated/interface/schemas/typescript_light/unmarshall.js +3 -0
- package/dist/shorthands/implementation.d.ts +1 -1
- package/dist/shorthands/implementation.js +8 -6
- package/dist/transformations/implementation/typescript_light.js +14 -4
- package/package.json +1 -1
|
@@ -58,7 +58,7 @@ export type _T_Initialization<G_Source> = _i_core._T_State_Group<G_Source, reado
|
|
|
58
58
|
{
|
|
59
59
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
60
60
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
61
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
61
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
62
62
|
}
|
|
63
63
|
]>
|
|
64
64
|
] | readonly [
|
|
@@ -66,7 +66,7 @@ export type _T_Initialization<G_Source> = _i_core._T_State_Group<G_Source, reado
|
|
|
66
66
|
_i_core._T_State_Group<G_Source, readonly [
|
|
67
67
|
'switch',
|
|
68
68
|
{
|
|
69
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
69
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
70
70
|
readonly 'type': _i_core._T_State_Group<G_Source, readonly [
|
|
71
71
|
'full',
|
|
72
72
|
{
|
|
@@ -92,6 +92,7 @@ export type _T_Literal<G_Source> = _i_core._T_State_Group<G_Source, readonly ['a
|
|
|
92
92
|
{
|
|
93
93
|
readonly 'initialization': _T_Initialization<G_Source>;
|
|
94
94
|
readonly 'temp has parameters': boolean;
|
|
95
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
95
96
|
}
|
|
96
97
|
] | readonly ['group', _i_core._T_Dictionary<G_Source, _T_Initialization<G_Source>>] | readonly ['null', null] | readonly [
|
|
97
98
|
'number',
|
|
@@ -332,17 +333,17 @@ export declare namespace _T_Initialization {
|
|
|
332
333
|
namespace if_set {
|
|
333
334
|
}
|
|
334
335
|
type if_set<G_Source> = _T_Initialization<G_Source>;
|
|
335
|
-
namespace
|
|
336
|
+
namespace temp_resulting_node {
|
|
336
337
|
namespace O {
|
|
337
338
|
}
|
|
338
339
|
type O<G_Source> = _i_imports_interface._T_Type<G_Source>;
|
|
339
340
|
}
|
|
340
|
-
type
|
|
341
|
+
type temp_resulting_node<G_Source> = _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
341
342
|
}
|
|
342
343
|
type transform<G_Source> = {
|
|
343
344
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
344
345
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
345
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
346
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
346
347
|
};
|
|
347
348
|
}
|
|
348
349
|
type SG<G_Source> = readonly ['map', _T_Initialization<G_Source>] | readonly [
|
|
@@ -350,7 +351,7 @@ export declare namespace _T_Initialization {
|
|
|
350
351
|
{
|
|
351
352
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
352
353
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
353
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
354
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
354
355
|
}
|
|
355
356
|
];
|
|
356
357
|
}
|
|
@@ -359,18 +360,18 @@ export declare namespace _T_Initialization {
|
|
|
359
360
|
{
|
|
360
361
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
361
362
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
362
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
363
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
363
364
|
}
|
|
364
365
|
]>;
|
|
365
366
|
namespace tagged_union {
|
|
366
367
|
namespace SG {
|
|
367
368
|
namespace _switch {
|
|
368
|
-
namespace
|
|
369
|
+
namespace temp_resulting_node {
|
|
369
370
|
namespace O {
|
|
370
371
|
}
|
|
371
372
|
type O<G_Source> = _i_imports_interface._T_Type<G_Source>;
|
|
372
373
|
}
|
|
373
|
-
type
|
|
374
|
+
type temp_resulting_node<G_Source> = _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
374
375
|
namespace _type {
|
|
375
376
|
namespace SG {
|
|
376
377
|
namespace full {
|
|
@@ -427,7 +428,7 @@ export declare namespace _T_Initialization {
|
|
|
427
428
|
]>;
|
|
428
429
|
}
|
|
429
430
|
type _switch<G_Source> = {
|
|
430
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
431
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
431
432
|
readonly 'type': _i_core._T_State_Group<G_Source, readonly [
|
|
432
433
|
'full',
|
|
433
434
|
{
|
|
@@ -445,7 +446,7 @@ export declare namespace _T_Initialization {
|
|
|
445
446
|
type SG<G_Source> = readonly [
|
|
446
447
|
'switch',
|
|
447
448
|
{
|
|
448
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
449
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
449
450
|
readonly 'type': _i_core._T_State_Group<G_Source, readonly [
|
|
450
451
|
'full',
|
|
451
452
|
{
|
|
@@ -464,7 +465,7 @@ export declare namespace _T_Initialization {
|
|
|
464
465
|
type tagged_union<G_Source> = _i_core._T_State_Group<G_Source, readonly [
|
|
465
466
|
'switch',
|
|
466
467
|
{
|
|
467
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
468
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
468
469
|
readonly 'type': _i_core._T_State_Group<G_Source, readonly [
|
|
469
470
|
'full',
|
|
470
471
|
{
|
|
@@ -511,7 +512,7 @@ export declare namespace _T_Initialization {
|
|
|
511
512
|
{
|
|
512
513
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
513
514
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
514
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
515
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
515
516
|
}
|
|
516
517
|
]>
|
|
517
518
|
] | readonly [
|
|
@@ -519,7 +520,7 @@ export declare namespace _T_Initialization {
|
|
|
519
520
|
_i_core._T_State_Group<G_Source, readonly [
|
|
520
521
|
'switch',
|
|
521
522
|
{
|
|
522
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
523
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
523
524
|
readonly 'type': _i_core._T_State_Group<G_Source, readonly [
|
|
524
525
|
'full',
|
|
525
526
|
{
|
|
@@ -567,7 +568,7 @@ export declare namespace _T_Initialization {
|
|
|
567
568
|
{
|
|
568
569
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
569
570
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
570
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
571
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
571
572
|
}
|
|
572
573
|
]>
|
|
573
574
|
] | readonly [
|
|
@@ -575,7 +576,7 @@ export declare namespace _T_Initialization {
|
|
|
575
576
|
_i_core._T_State_Group<G_Source, readonly [
|
|
576
577
|
'switch',
|
|
577
578
|
{
|
|
578
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
579
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
579
580
|
readonly 'type': _i_core._T_State_Group<G_Source, readonly [
|
|
580
581
|
'full',
|
|
581
582
|
{
|
|
@@ -625,7 +626,7 @@ export declare namespace _T_Initialization {
|
|
|
625
626
|
{
|
|
626
627
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
627
628
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
628
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
629
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
629
630
|
}
|
|
630
631
|
]>
|
|
631
632
|
] | readonly [
|
|
@@ -633,7 +634,7 @@ export declare namespace _T_Initialization {
|
|
|
633
634
|
_i_core._T_State_Group<G_Source, readonly [
|
|
634
635
|
'switch',
|
|
635
636
|
{
|
|
636
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
637
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
637
638
|
readonly 'type': _i_core._T_State_Group<G_Source, readonly [
|
|
638
639
|
'full',
|
|
639
640
|
{
|
|
@@ -708,7 +709,7 @@ export declare namespace _T_Initialization {
|
|
|
708
709
|
{
|
|
709
710
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
710
711
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
711
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
712
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
712
713
|
}
|
|
713
714
|
]>
|
|
714
715
|
] | readonly [
|
|
@@ -716,7 +717,7 @@ export declare namespace _T_Initialization {
|
|
|
716
717
|
_i_core._T_State_Group<G_Source, readonly [
|
|
717
718
|
'switch',
|
|
718
719
|
{
|
|
719
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
720
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
720
721
|
readonly 'type': _i_core._T_State_Group<G_Source, readonly [
|
|
721
722
|
'full',
|
|
722
723
|
{
|
|
@@ -762,10 +763,17 @@ export declare namespace _T_Literal {
|
|
|
762
763
|
}
|
|
763
764
|
type initialization<G_Source> = _T_Initialization<G_Source>;
|
|
764
765
|
type temp_has_parameters<G_Source> = boolean;
|
|
766
|
+
namespace temp_resulting_node {
|
|
767
|
+
namespace O {
|
|
768
|
+
}
|
|
769
|
+
type O<G_Source> = _i_imports_interface._T_Type<G_Source>;
|
|
770
|
+
}
|
|
771
|
+
type temp_resulting_node<G_Source> = _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
765
772
|
}
|
|
766
773
|
type _function<G_Source> = {
|
|
767
774
|
readonly 'initialization': _T_Initialization<G_Source>;
|
|
768
775
|
readonly 'temp has parameters': boolean;
|
|
776
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
769
777
|
};
|
|
770
778
|
namespace group {
|
|
771
779
|
namespace D {
|
|
@@ -827,6 +835,7 @@ export declare namespace _T_Literal {
|
|
|
827
835
|
{
|
|
828
836
|
readonly 'initialization': _T_Initialization<G_Source>;
|
|
829
837
|
readonly 'temp has parameters': boolean;
|
|
838
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
830
839
|
}
|
|
831
840
|
] | readonly ['group', _i_core._T_Dictionary<G_Source, _T_Initialization<G_Source>>] | readonly ['null', null] | readonly [
|
|
832
841
|
'number',
|
|
@@ -1219,17 +1228,17 @@ export declare namespace Initialization {
|
|
|
1219
1228
|
namespace if_set {
|
|
1220
1229
|
}
|
|
1221
1230
|
type if_set<G_Source> = _T_Initialization<G_Source>;
|
|
1222
|
-
namespace
|
|
1231
|
+
namespace temp_resulting_node {
|
|
1223
1232
|
namespace O {
|
|
1224
1233
|
}
|
|
1225
1234
|
type O<G_Source> = _i_imports_interface._T_Type<G_Source>;
|
|
1226
1235
|
}
|
|
1227
|
-
type
|
|
1236
|
+
type temp_resulting_node<G_Source> = _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1228
1237
|
}
|
|
1229
1238
|
type transform<G_Source> = {
|
|
1230
1239
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
1231
1240
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
1232
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1241
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1233
1242
|
};
|
|
1234
1243
|
}
|
|
1235
1244
|
type SG<G_Source> = readonly ['map', _T_Initialization<G_Source>] | readonly [
|
|
@@ -1237,7 +1246,7 @@ export declare namespace Initialization {
|
|
|
1237
1246
|
{
|
|
1238
1247
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
1239
1248
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
1240
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1249
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1241
1250
|
}
|
|
1242
1251
|
];
|
|
1243
1252
|
}
|
|
@@ -1246,18 +1255,18 @@ export declare namespace Initialization {
|
|
|
1246
1255
|
{
|
|
1247
1256
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
1248
1257
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
1249
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1258
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1250
1259
|
}
|
|
1251
1260
|
]>;
|
|
1252
1261
|
namespace tagged_union {
|
|
1253
1262
|
namespace SG {
|
|
1254
1263
|
namespace _switch {
|
|
1255
|
-
namespace
|
|
1264
|
+
namespace temp_resulting_node {
|
|
1256
1265
|
namespace O {
|
|
1257
1266
|
}
|
|
1258
1267
|
type O<G_Source> = _i_imports_interface._T_Type<G_Source>;
|
|
1259
1268
|
}
|
|
1260
|
-
type
|
|
1269
|
+
type temp_resulting_node<G_Source> = _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1261
1270
|
namespace _type {
|
|
1262
1271
|
namespace SG {
|
|
1263
1272
|
namespace full {
|
|
@@ -1314,7 +1323,7 @@ export declare namespace Initialization {
|
|
|
1314
1323
|
]>;
|
|
1315
1324
|
}
|
|
1316
1325
|
type _switch<G_Source> = {
|
|
1317
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1326
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1318
1327
|
readonly 'type': _i_core._T_State_Group<G_Source, readonly [
|
|
1319
1328
|
'full',
|
|
1320
1329
|
{
|
|
@@ -1332,7 +1341,7 @@ export declare namespace Initialization {
|
|
|
1332
1341
|
type SG<G_Source> = readonly [
|
|
1333
1342
|
'switch',
|
|
1334
1343
|
{
|
|
1335
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1344
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1336
1345
|
readonly 'type': _i_core._T_State_Group<G_Source, readonly [
|
|
1337
1346
|
'full',
|
|
1338
1347
|
{
|
|
@@ -1351,7 +1360,7 @@ export declare namespace Initialization {
|
|
|
1351
1360
|
type tagged_union<G_Source> = _i_core._T_State_Group<G_Source, readonly [
|
|
1352
1361
|
'switch',
|
|
1353
1362
|
{
|
|
1354
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1363
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1355
1364
|
readonly 'type': _i_core._T_State_Group<G_Source, readonly [
|
|
1356
1365
|
'full',
|
|
1357
1366
|
{
|
|
@@ -1398,7 +1407,7 @@ export declare namespace Initialization {
|
|
|
1398
1407
|
{
|
|
1399
1408
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
1400
1409
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
1401
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1410
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1402
1411
|
}
|
|
1403
1412
|
]>
|
|
1404
1413
|
] | readonly [
|
|
@@ -1406,7 +1415,7 @@ export declare namespace Initialization {
|
|
|
1406
1415
|
_i_core._T_State_Group<G_Source, readonly [
|
|
1407
1416
|
'switch',
|
|
1408
1417
|
{
|
|
1409
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1418
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1410
1419
|
readonly 'type': _i_core._T_State_Group<G_Source, readonly [
|
|
1411
1420
|
'full',
|
|
1412
1421
|
{
|
|
@@ -1454,7 +1463,7 @@ export declare namespace Initialization {
|
|
|
1454
1463
|
{
|
|
1455
1464
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
1456
1465
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
1457
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1466
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1458
1467
|
}
|
|
1459
1468
|
]>
|
|
1460
1469
|
] | readonly [
|
|
@@ -1462,7 +1471,7 @@ export declare namespace Initialization {
|
|
|
1462
1471
|
_i_core._T_State_Group<G_Source, readonly [
|
|
1463
1472
|
'switch',
|
|
1464
1473
|
{
|
|
1465
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1474
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1466
1475
|
readonly 'type': _i_core._T_State_Group<G_Source, readonly [
|
|
1467
1476
|
'full',
|
|
1468
1477
|
{
|
|
@@ -1512,7 +1521,7 @@ export declare namespace Initialization {
|
|
|
1512
1521
|
{
|
|
1513
1522
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
1514
1523
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
1515
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1524
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1516
1525
|
}
|
|
1517
1526
|
]>
|
|
1518
1527
|
] | readonly [
|
|
@@ -1520,7 +1529,7 @@ export declare namespace Initialization {
|
|
|
1520
1529
|
_i_core._T_State_Group<G_Source, readonly [
|
|
1521
1530
|
'switch',
|
|
1522
1531
|
{
|
|
1523
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1532
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1524
1533
|
readonly 'type': _i_core._T_State_Group<G_Source, readonly [
|
|
1525
1534
|
'full',
|
|
1526
1535
|
{
|
|
@@ -1595,7 +1604,7 @@ export declare namespace Initialization {
|
|
|
1595
1604
|
{
|
|
1596
1605
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
1597
1606
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
1598
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1607
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1599
1608
|
}
|
|
1600
1609
|
]>
|
|
1601
1610
|
] | readonly [
|
|
@@ -1603,7 +1612,7 @@ export declare namespace Initialization {
|
|
|
1603
1612
|
_i_core._T_State_Group<G_Source, readonly [
|
|
1604
1613
|
'switch',
|
|
1605
1614
|
{
|
|
1606
|
-
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1615
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1607
1616
|
readonly 'type': _i_core._T_State_Group<G_Source, readonly [
|
|
1608
1617
|
'full',
|
|
1609
1618
|
{
|
|
@@ -1649,10 +1658,17 @@ export declare namespace Literal {
|
|
|
1649
1658
|
}
|
|
1650
1659
|
type initialization<G_Source> = _T_Initialization<G_Source>;
|
|
1651
1660
|
type temp_has_parameters<G_Source> = boolean;
|
|
1661
|
+
namespace temp_resulting_node {
|
|
1662
|
+
namespace O {
|
|
1663
|
+
}
|
|
1664
|
+
type O<G_Source> = _i_imports_interface._T_Type<G_Source>;
|
|
1665
|
+
}
|
|
1666
|
+
type temp_resulting_node<G_Source> = _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1652
1667
|
}
|
|
1653
1668
|
type _function<G_Source> = {
|
|
1654
1669
|
readonly 'initialization': _T_Initialization<G_Source>;
|
|
1655
1670
|
readonly 'temp has parameters': boolean;
|
|
1671
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1656
1672
|
};
|
|
1657
1673
|
namespace group {
|
|
1658
1674
|
namespace D {
|
|
@@ -1714,6 +1730,7 @@ export declare namespace Literal {
|
|
|
1714
1730
|
{
|
|
1715
1731
|
readonly 'initialization': _T_Initialization<G_Source>;
|
|
1716
1732
|
readonly 'temp has parameters': boolean;
|
|
1733
|
+
readonly 'temp resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1717
1734
|
}
|
|
1718
1735
|
] | readonly ['group', _i_core._T_Dictionary<G_Source, _T_Initialization<G_Source>>] | readonly ['null', null] | readonly [
|
|
1719
1736
|
'number',
|
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
import * as _i_in from "./resolved";
|
|
2
|
+
import * as _i_out from "../../core/astn_target";
|
|
3
|
+
export type _T_Value_Serializers = {
|
|
4
|
+
readonly 'boolean': ($$_: boolean, $$_p: null) => string;
|
|
5
|
+
readonly 'custom numbers': null;
|
|
6
|
+
readonly 'default number': ($$_: number, $$_p: null) => string;
|
|
7
|
+
};
|
|
8
|
+
export type _T_s_Imports = ($$_: _i_in._T_Imports, $$_p: {
|
|
9
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
10
|
+
}) => _i_out._T_Value;
|
|
11
|
+
export type _T_s_Module = ($$_: _i_in._T_Module, $$_p: {
|
|
12
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
13
|
+
}) => _i_out._T_Value;
|
|
14
|
+
export type _T_s_Module_Set = ($$_: _i_in._T_Module_Set, $$_p: {
|
|
15
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
16
|
+
}) => _i_out._T_Value;
|
|
17
|
+
export type _T_s_Type = ($$_: _i_in._T_Type, $$_p: {
|
|
18
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
19
|
+
}) => _i_out._T_Value;
|
|
20
|
+
export type _T_s_Type_Arguments = ($$_: _i_in._T_Type_Arguments, $$_p: {
|
|
21
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
22
|
+
}) => _i_out._T_Value;
|
|
23
|
+
export type _T_s_Type_Parameter_Selection = ($$_: _i_in._T_Type_Parameter_Selection, $$_p: {
|
|
24
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
25
|
+
}) => _i_out._T_Value;
|
|
26
|
+
export type _T_s_Type_Parameters = ($$_: _i_in._T_Type_Parameters, $$_p: {
|
|
27
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
28
|
+
}) => _i_out._T_Value;
|
|
29
|
+
export type Value_Serializers = _T_Value_Serializers;
|
|
30
|
+
export type s_Imports = _T_s_Imports;
|
|
31
|
+
export type s_Module = _T_s_Module;
|
|
32
|
+
export type s_Module_Set = _T_s_Module_Set;
|
|
33
|
+
export type s_Type = _T_s_Type;
|
|
34
|
+
export type s_Type_Arguments = _T_s_Type_Arguments;
|
|
35
|
+
export type s_Type_Parameter_Selection = _T_s_Type_Parameter_Selection;
|
|
36
|
+
export type s_Type_Parameters = _T_s_Type_Parameters;
|
|
37
|
+
export declare namespace _T_Value_Serializers {
|
|
38
|
+
namespace _boolean {
|
|
39
|
+
type CONTEXT = boolean;
|
|
40
|
+
namespace PARAMS {
|
|
41
|
+
}
|
|
42
|
+
type RESULT = string;
|
|
43
|
+
}
|
|
44
|
+
type _boolean = ($$_: boolean, $$_p: null) => string;
|
|
45
|
+
namespace custom_numbers {
|
|
46
|
+
}
|
|
47
|
+
type custom_numbers = null;
|
|
48
|
+
namespace default_number {
|
|
49
|
+
type CONTEXT = number;
|
|
50
|
+
namespace PARAMS {
|
|
51
|
+
}
|
|
52
|
+
type RESULT = string;
|
|
53
|
+
}
|
|
54
|
+
type default_number = ($$_: number, $$_p: null) => string;
|
|
55
|
+
}
|
|
56
|
+
export declare namespace _T_s_Imports {
|
|
57
|
+
namespace CONTEXT {
|
|
58
|
+
}
|
|
59
|
+
type CONTEXT = _i_in._T_Imports;
|
|
60
|
+
namespace PARAMS {
|
|
61
|
+
namespace value_serializers {
|
|
62
|
+
}
|
|
63
|
+
type value_serializers = _T_Value_Serializers;
|
|
64
|
+
}
|
|
65
|
+
namespace RESULT {
|
|
66
|
+
}
|
|
67
|
+
type RESULT = _i_out._T_Value;
|
|
68
|
+
}
|
|
69
|
+
export declare namespace _T_s_Module {
|
|
70
|
+
namespace CONTEXT {
|
|
71
|
+
}
|
|
72
|
+
type CONTEXT = _i_in._T_Module;
|
|
73
|
+
namespace PARAMS {
|
|
74
|
+
namespace value_serializers {
|
|
75
|
+
}
|
|
76
|
+
type value_serializers = _T_Value_Serializers;
|
|
77
|
+
}
|
|
78
|
+
namespace RESULT {
|
|
79
|
+
}
|
|
80
|
+
type RESULT = _i_out._T_Value;
|
|
81
|
+
}
|
|
82
|
+
export declare namespace _T_s_Module_Set {
|
|
83
|
+
namespace CONTEXT {
|
|
84
|
+
}
|
|
85
|
+
type CONTEXT = _i_in._T_Module_Set;
|
|
86
|
+
namespace PARAMS {
|
|
87
|
+
namespace value_serializers {
|
|
88
|
+
}
|
|
89
|
+
type value_serializers = _T_Value_Serializers;
|
|
90
|
+
}
|
|
91
|
+
namespace RESULT {
|
|
92
|
+
}
|
|
93
|
+
type RESULT = _i_out._T_Value;
|
|
94
|
+
}
|
|
95
|
+
export declare namespace _T_s_Type {
|
|
96
|
+
namespace CONTEXT {
|
|
97
|
+
}
|
|
98
|
+
type CONTEXT = _i_in._T_Type;
|
|
99
|
+
namespace PARAMS {
|
|
100
|
+
namespace value_serializers {
|
|
101
|
+
}
|
|
102
|
+
type value_serializers = _T_Value_Serializers;
|
|
103
|
+
}
|
|
104
|
+
namespace RESULT {
|
|
105
|
+
}
|
|
106
|
+
type RESULT = _i_out._T_Value;
|
|
107
|
+
}
|
|
108
|
+
export declare namespace _T_s_Type_Arguments {
|
|
109
|
+
namespace CONTEXT {
|
|
110
|
+
}
|
|
111
|
+
type CONTEXT = _i_in._T_Type_Arguments;
|
|
112
|
+
namespace PARAMS {
|
|
113
|
+
namespace value_serializers {
|
|
114
|
+
}
|
|
115
|
+
type value_serializers = _T_Value_Serializers;
|
|
116
|
+
}
|
|
117
|
+
namespace RESULT {
|
|
118
|
+
}
|
|
119
|
+
type RESULT = _i_out._T_Value;
|
|
120
|
+
}
|
|
121
|
+
export declare namespace _T_s_Type_Parameter_Selection {
|
|
122
|
+
namespace CONTEXT {
|
|
123
|
+
}
|
|
124
|
+
type CONTEXT = _i_in._T_Type_Parameter_Selection;
|
|
125
|
+
namespace PARAMS {
|
|
126
|
+
namespace value_serializers {
|
|
127
|
+
}
|
|
128
|
+
type value_serializers = _T_Value_Serializers;
|
|
129
|
+
}
|
|
130
|
+
namespace RESULT {
|
|
131
|
+
}
|
|
132
|
+
type RESULT = _i_out._T_Value;
|
|
133
|
+
}
|
|
134
|
+
export declare namespace _T_s_Type_Parameters {
|
|
135
|
+
namespace CONTEXT {
|
|
136
|
+
}
|
|
137
|
+
type CONTEXT = _i_in._T_Type_Parameters;
|
|
138
|
+
namespace PARAMS {
|
|
139
|
+
namespace value_serializers {
|
|
140
|
+
}
|
|
141
|
+
type value_serializers = _T_Value_Serializers;
|
|
142
|
+
}
|
|
143
|
+
namespace RESULT {
|
|
144
|
+
}
|
|
145
|
+
type RESULT = _i_out._T_Value;
|
|
146
|
+
}
|
|
147
|
+
export declare namespace Value_Serializers {
|
|
148
|
+
namespace _boolean {
|
|
149
|
+
type CONTEXT = boolean;
|
|
150
|
+
namespace PARAMS {
|
|
151
|
+
}
|
|
152
|
+
type RESULT = string;
|
|
153
|
+
}
|
|
154
|
+
type _boolean = ($$_: boolean, $$_p: null) => string;
|
|
155
|
+
namespace custom_numbers {
|
|
156
|
+
}
|
|
157
|
+
type custom_numbers = null;
|
|
158
|
+
namespace default_number {
|
|
159
|
+
type CONTEXT = number;
|
|
160
|
+
namespace PARAMS {
|
|
161
|
+
}
|
|
162
|
+
type RESULT = string;
|
|
163
|
+
}
|
|
164
|
+
type default_number = ($$_: number, $$_p: null) => string;
|
|
165
|
+
}
|
|
166
|
+
export declare namespace s_Imports {
|
|
167
|
+
namespace CONTEXT {
|
|
168
|
+
}
|
|
169
|
+
type CONTEXT = _i_in._T_Imports;
|
|
170
|
+
namespace PARAMS {
|
|
171
|
+
namespace value_serializers {
|
|
172
|
+
}
|
|
173
|
+
type value_serializers = _T_Value_Serializers;
|
|
174
|
+
}
|
|
175
|
+
namespace RESULT {
|
|
176
|
+
}
|
|
177
|
+
type RESULT = _i_out._T_Value;
|
|
178
|
+
}
|
|
179
|
+
export declare namespace s_Module {
|
|
180
|
+
namespace CONTEXT {
|
|
181
|
+
}
|
|
182
|
+
type CONTEXT = _i_in._T_Module;
|
|
183
|
+
namespace PARAMS {
|
|
184
|
+
namespace value_serializers {
|
|
185
|
+
}
|
|
186
|
+
type value_serializers = _T_Value_Serializers;
|
|
187
|
+
}
|
|
188
|
+
namespace RESULT {
|
|
189
|
+
}
|
|
190
|
+
type RESULT = _i_out._T_Value;
|
|
191
|
+
}
|
|
192
|
+
export declare namespace s_Module_Set {
|
|
193
|
+
namespace CONTEXT {
|
|
194
|
+
}
|
|
195
|
+
type CONTEXT = _i_in._T_Module_Set;
|
|
196
|
+
namespace PARAMS {
|
|
197
|
+
namespace value_serializers {
|
|
198
|
+
}
|
|
199
|
+
type value_serializers = _T_Value_Serializers;
|
|
200
|
+
}
|
|
201
|
+
namespace RESULT {
|
|
202
|
+
}
|
|
203
|
+
type RESULT = _i_out._T_Value;
|
|
204
|
+
}
|
|
205
|
+
export declare namespace s_Type {
|
|
206
|
+
namespace CONTEXT {
|
|
207
|
+
}
|
|
208
|
+
type CONTEXT = _i_in._T_Type;
|
|
209
|
+
namespace PARAMS {
|
|
210
|
+
namespace value_serializers {
|
|
211
|
+
}
|
|
212
|
+
type value_serializers = _T_Value_Serializers;
|
|
213
|
+
}
|
|
214
|
+
namespace RESULT {
|
|
215
|
+
}
|
|
216
|
+
type RESULT = _i_out._T_Value;
|
|
217
|
+
}
|
|
218
|
+
export declare namespace s_Type_Arguments {
|
|
219
|
+
namespace CONTEXT {
|
|
220
|
+
}
|
|
221
|
+
type CONTEXT = _i_in._T_Type_Arguments;
|
|
222
|
+
namespace PARAMS {
|
|
223
|
+
namespace value_serializers {
|
|
224
|
+
}
|
|
225
|
+
type value_serializers = _T_Value_Serializers;
|
|
226
|
+
}
|
|
227
|
+
namespace RESULT {
|
|
228
|
+
}
|
|
229
|
+
type RESULT = _i_out._T_Value;
|
|
230
|
+
}
|
|
231
|
+
export declare namespace s_Type_Parameter_Selection {
|
|
232
|
+
namespace CONTEXT {
|
|
233
|
+
}
|
|
234
|
+
type CONTEXT = _i_in._T_Type_Parameter_Selection;
|
|
235
|
+
namespace PARAMS {
|
|
236
|
+
namespace value_serializers {
|
|
237
|
+
}
|
|
238
|
+
type value_serializers = _T_Value_Serializers;
|
|
239
|
+
}
|
|
240
|
+
namespace RESULT {
|
|
241
|
+
}
|
|
242
|
+
type RESULT = _i_out._T_Value;
|
|
243
|
+
}
|
|
244
|
+
export declare namespace s_Type_Parameters {
|
|
245
|
+
namespace CONTEXT {
|
|
246
|
+
}
|
|
247
|
+
type CONTEXT = _i_in._T_Type_Parameters;
|
|
248
|
+
namespace PARAMS {
|
|
249
|
+
namespace value_serializers {
|
|
250
|
+
}
|
|
251
|
+
type value_serializers = _T_Value_Serializers;
|
|
252
|
+
}
|
|
253
|
+
namespace RESULT {
|
|
254
|
+
}
|
|
255
|
+
type RESULT = _i_out._T_Value;
|
|
256
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFyc2hhbGwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvZ2VuZXJhdGVkL2ludGVyZmFjZS9zY2hlbWFzL2ludGVyZmFjZS9tYXJzaGFsbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|