exupery 0.1.7 → 0.1.9
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/resolve.d.ts +81 -0
- package/dist/generated/implementation/generic/resolve.js +251 -0
- package/dist/generated/implementation/schemas/implementation/resolve.d.ts +1 -1
- package/dist/generated/implementation/schemas/implementation/resolve.js +12 -2
- package/dist/generated/implementation/schemas/implementation/serializer.d.ts +8 -0
- package/dist/generated/implementation/schemas/implementation/serializer.js +484 -0
- package/dist/generated/implementation/schemas/interface/resolve.d.ts +1 -1
- package/dist/generated/implementation/schemas/interface/resolve.js +2 -2
- package/dist/generated/implementation/schemas/interface/serializer.d.ts +8 -0
- package/dist/generated/implementation/schemas/interface/serializer.js +287 -0
- package/dist/generated/implementation/schemas/typescript_light/serializer.d.ts +11 -0
- package/dist/generated/implementation/schemas/typescript_light/serializer.js +409 -0
- package/dist/generated/interface/core/astn_target.d.ts +186 -0
- package/dist/generated/interface/core/astn_target.js +3 -0
- package/dist/generated/interface/core/resolve.d.ts +11 -0
- package/dist/generated/interface/core/resolve.js +3 -0
- package/dist/generated/interface/generic/resolve.d.ts +11 -0
- package/dist/generated/interface/generic/resolve.js +3 -0
- package/dist/generated/interface/schemas/implementation/resolve.d.ts +22 -22
- package/dist/generated/interface/schemas/implementation/resolved.d.ts +27 -0
- package/dist/generated/interface/schemas/implementation/serializer.d.ts +156 -0
- package/dist/generated/interface/schemas/implementation/serializer.js +3 -0
- package/dist/generated/interface/schemas/implementation/unresolved.d.ts +27 -0
- package/dist/generated/interface/schemas/interface/resolve.d.ts +22 -22
- package/dist/generated/interface/schemas/interface/serializer.d.ts +156 -0
- package/dist/generated/interface/schemas/interface/serializer.js +3 -0
- package/dist/generated/interface/schemas/typescript_light/migration_boilerplate.d.ts +132 -0
- package/dist/generated/interface/schemas/typescript_light/serializer.d.ts +222 -0
- package/dist/generated/interface/schemas/typescript_light/serializer.js +3 -0
- package/dist/generated/interface/schemas/typescript_light/unconstrained.d.ts +135 -0
- package/dist/shorthands/implementation.d.ts +1 -1
- package/dist/shorthands/implementation.js +4 -2
- package/dist/transformations/implementation/typescript_light.d.ts +24 -0
- package/dist/transformations/implementation/typescript_light.js +564 -0
- package/dist/transformations/implementation/typescript_temp.d.ts +1 -1
- package/dist/transformations/implementation/typescript_temp.js +2 -2
- package/dist/transformations/interface/typescript_light.d.ts +23 -0
- package/dist/transformations/interface/typescript_light.js +524 -0
- package/dist/transformations/interface/typescript_temp.d.ts +1 -1
- package/dist/transformations/library/typescript_light.d.ts +10 -0
- package/dist/transformations/library/typescript_light.js +42 -0
- package/dist/transformations/library/typescript_temp.d.ts +1 -1
- package/dist/transformations/library/typescript_temp.js +3 -3
- package/dist/transformations/typescript_light/fountain_pen_block.d.ts +1 -0
- package/dist/transformations/typescript_light/fountain_pen_block.js +6 -2
- package/dist/transformations/typescript_temp/fountain_pen_block.d.ts +1 -1
- package/package.json +4 -4
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as pt from 'exupery-core-types';
|
|
2
|
+
export type Location_to_String<Source> = ($: Source) => string;
|
|
3
|
+
export type _T_Location_2_String<Source> = Location_to_String<Source>;
|
|
4
|
+
export type Non_Circular_Result<T> = ['error', ['circular', pt.Array<string>]] | ['resolved', T];
|
|
5
|
+
export type Acyclic_Lookup<T> = pt.Optional_Value<pt.Lookup<Non_Circular_Result<T>>>;
|
|
6
|
+
export type _T_Acyclic_Lookup<T> = Acyclic_Lookup<T>;
|
|
7
|
+
export type Possibly_Circular_Result<T> = pt.Computed_Value<T>;
|
|
8
|
+
export type Cyclic_Lookup<T> = pt.Optional_Value<pt.Lookup<Possibly_Circular_Result<T>>>;
|
|
9
|
+
export type _T_Cyclic_Lookup<T> = Cyclic_Lookup<T>;
|
|
10
|
+
export type Lookup_Stack<T> = pt.Array<Acyclic_Lookup<T>>;
|
|
11
|
+
export type _T_Lookup_Stack<T> = Lookup_Stack<T>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL2NvcmUvcmVzb2x2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as pt from 'exupery-core-types';
|
|
2
|
+
export type Location_to_String<Source> = ($: Source) => string;
|
|
3
|
+
export type _T_Location_2_String<Source> = Location_to_String<Source>;
|
|
4
|
+
export type Non_Circular_Result<T> = ['error', ['circular', pt.Array<string>]] | ['resolved', T];
|
|
5
|
+
export type Acyclic_Lookup<T> = pt.Optional_Value<pt.Lookup<Non_Circular_Result<T>>>;
|
|
6
|
+
export type _T_Acyclic_Lookup<T> = Acyclic_Lookup<T>;
|
|
7
|
+
export type Possibly_Circular_Result<T> = pt.Computed_Value<T>;
|
|
8
|
+
export type Cyclic_Lookup<T> = pt.Optional_Value<pt.Lookup<Possibly_Circular_Result<T>>>;
|
|
9
|
+
export type _T_Cyclic_Lookup<T> = Cyclic_Lookup<T>;
|
|
10
|
+
export type Lookup_Stack<T> = pt.Array<Acyclic_Lookup<T>>;
|
|
11
|
+
export type _T_Lookup_Stack<T> = Lookup_Stack<T>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL2dlbmVyaWMvcmVzb2x2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _i_resolve from "../../core/resolve";
|
|
2
2
|
import * as _i_resolved from "./resolved";
|
|
3
3
|
import * as _i_unresolved from "./unresolved";
|
|
4
4
|
export type _T_Initialization<G_Source> = ($$_: _i_unresolved._T_Initialization<G_Source>, $$_p: {
|
|
5
|
-
readonly 'location 2 string':
|
|
5
|
+
readonly 'location 2 string': _i_resolve._T_Location_2_String<G_Source>;
|
|
6
6
|
readonly 'parameters': {
|
|
7
7
|
readonly 'lookups': null;
|
|
8
8
|
readonly 'values': null;
|
|
9
9
|
};
|
|
10
10
|
}) => _i_resolved._T_Initialization;
|
|
11
11
|
export type _T_Literal<G_Source> = ($$_: _i_unresolved._T_Literal<G_Source>, $$_p: {
|
|
12
|
-
readonly 'location 2 string':
|
|
12
|
+
readonly 'location 2 string': _i_resolve._T_Location_2_String<G_Source>;
|
|
13
13
|
readonly 'parameters': {
|
|
14
14
|
readonly 'lookups': null;
|
|
15
15
|
readonly 'values': null;
|
|
16
16
|
};
|
|
17
17
|
}) => _i_resolved._T_Literal;
|
|
18
18
|
export type _T_Module<G_Source> = ($$_: _i_unresolved._T_Module<G_Source>, $$_p: {
|
|
19
|
-
readonly 'location 2 string':
|
|
19
|
+
readonly 'location 2 string': _i_resolve._T_Location_2_String<G_Source>;
|
|
20
20
|
readonly 'parameters': {
|
|
21
21
|
readonly 'lookups': null;
|
|
22
22
|
readonly 'values': null;
|
|
23
23
|
};
|
|
24
24
|
}) => _i_resolved._T_Module;
|
|
25
25
|
export type _T_Module_Set<G_Source> = ($$_: _i_unresolved._T_Module_Set<G_Source>, $$_p: {
|
|
26
|
-
readonly 'location 2 string':
|
|
26
|
+
readonly 'location 2 string': _i_resolve._T_Location_2_String<G_Source>;
|
|
27
27
|
readonly 'parameters': {
|
|
28
28
|
readonly 'lookups': null;
|
|
29
29
|
readonly 'values': null;
|
|
30
30
|
};
|
|
31
31
|
}) => _i_resolved._T_Module_Set;
|
|
32
32
|
export type _T_Selection<G_Source> = ($$_: _i_unresolved._T_Selection<G_Source>, $$_p: {
|
|
33
|
-
readonly 'location 2 string':
|
|
33
|
+
readonly 'location 2 string': _i_resolve._T_Location_2_String<G_Source>;
|
|
34
34
|
readonly 'parameters': {
|
|
35
35
|
readonly 'lookups': null;
|
|
36
36
|
readonly 'values': null;
|
|
37
37
|
};
|
|
38
38
|
}) => _i_resolved._T_Selection;
|
|
39
39
|
export type _T_Type_Parameters<G_Source> = ($$_: _i_unresolved._T_Type_Parameters<G_Source>, $$_p: {
|
|
40
|
-
readonly 'location 2 string':
|
|
40
|
+
readonly 'location 2 string': _i_resolve._T_Location_2_String<G_Source>;
|
|
41
41
|
readonly 'parameters': {
|
|
42
42
|
readonly 'lookups': null;
|
|
43
43
|
readonly 'values': null;
|
|
44
44
|
};
|
|
45
45
|
}) => _i_resolved._T_Type_Parameters;
|
|
46
46
|
export type _T_Variables<G_Source> = ($$_: _i_unresolved._T_Variables<G_Source>, $$_p: {
|
|
47
|
-
readonly 'location 2 string':
|
|
47
|
+
readonly 'location 2 string': _i_resolve._T_Location_2_String<G_Source>;
|
|
48
48
|
readonly 'parameters': {
|
|
49
49
|
readonly 'lookups': null;
|
|
50
50
|
readonly 'values': null;
|
|
@@ -66,7 +66,7 @@ export declare namespace _T_Initialization {
|
|
|
66
66
|
namespace location_2_string {
|
|
67
67
|
type Source<G_Source> = G_Source;
|
|
68
68
|
}
|
|
69
|
-
type location_2_string<G_Source> =
|
|
69
|
+
type location_2_string<G_Source> = _i_resolve._T_Location_2_String<G_Source>;
|
|
70
70
|
namespace parameters {
|
|
71
71
|
namespace lookups {
|
|
72
72
|
}
|
|
@@ -93,7 +93,7 @@ export declare namespace _T_Literal {
|
|
|
93
93
|
namespace location_2_string {
|
|
94
94
|
type Source<G_Source> = G_Source;
|
|
95
95
|
}
|
|
96
|
-
type location_2_string<G_Source> =
|
|
96
|
+
type location_2_string<G_Source> = _i_resolve._T_Location_2_String<G_Source>;
|
|
97
97
|
namespace parameters {
|
|
98
98
|
namespace lookups {
|
|
99
99
|
}
|
|
@@ -120,7 +120,7 @@ export declare namespace _T_Module {
|
|
|
120
120
|
namespace location_2_string {
|
|
121
121
|
type Source<G_Source> = G_Source;
|
|
122
122
|
}
|
|
123
|
-
type location_2_string<G_Source> =
|
|
123
|
+
type location_2_string<G_Source> = _i_resolve._T_Location_2_String<G_Source>;
|
|
124
124
|
namespace parameters {
|
|
125
125
|
namespace lookups {
|
|
126
126
|
}
|
|
@@ -147,7 +147,7 @@ export declare namespace _T_Module_Set {
|
|
|
147
147
|
namespace location_2_string {
|
|
148
148
|
type Source<G_Source> = G_Source;
|
|
149
149
|
}
|
|
150
|
-
type location_2_string<G_Source> =
|
|
150
|
+
type location_2_string<G_Source> = _i_resolve._T_Location_2_String<G_Source>;
|
|
151
151
|
namespace parameters {
|
|
152
152
|
namespace lookups {
|
|
153
153
|
}
|
|
@@ -174,7 +174,7 @@ export declare namespace _T_Selection {
|
|
|
174
174
|
namespace location_2_string {
|
|
175
175
|
type Source<G_Source> = G_Source;
|
|
176
176
|
}
|
|
177
|
-
type location_2_string<G_Source> =
|
|
177
|
+
type location_2_string<G_Source> = _i_resolve._T_Location_2_String<G_Source>;
|
|
178
178
|
namespace parameters {
|
|
179
179
|
namespace lookups {
|
|
180
180
|
}
|
|
@@ -201,7 +201,7 @@ export declare namespace _T_Type_Parameters {
|
|
|
201
201
|
namespace location_2_string {
|
|
202
202
|
type Source<G_Source> = G_Source;
|
|
203
203
|
}
|
|
204
|
-
type location_2_string<G_Source> =
|
|
204
|
+
type location_2_string<G_Source> = _i_resolve._T_Location_2_String<G_Source>;
|
|
205
205
|
namespace parameters {
|
|
206
206
|
namespace lookups {
|
|
207
207
|
}
|
|
@@ -228,7 +228,7 @@ export declare namespace _T_Variables {
|
|
|
228
228
|
namespace location_2_string {
|
|
229
229
|
type Source<G_Source> = G_Source;
|
|
230
230
|
}
|
|
231
|
-
type location_2_string<G_Source> =
|
|
231
|
+
type location_2_string<G_Source> = _i_resolve._T_Location_2_String<G_Source>;
|
|
232
232
|
namespace parameters {
|
|
233
233
|
namespace lookups {
|
|
234
234
|
}
|
|
@@ -255,7 +255,7 @@ export declare namespace Initialization {
|
|
|
255
255
|
namespace location_2_string {
|
|
256
256
|
type Source<G_Source> = G_Source;
|
|
257
257
|
}
|
|
258
|
-
type location_2_string<G_Source> =
|
|
258
|
+
type location_2_string<G_Source> = _i_resolve._T_Location_2_String<G_Source>;
|
|
259
259
|
namespace parameters {
|
|
260
260
|
namespace lookups {
|
|
261
261
|
}
|
|
@@ -282,7 +282,7 @@ export declare namespace Literal {
|
|
|
282
282
|
namespace location_2_string {
|
|
283
283
|
type Source<G_Source> = G_Source;
|
|
284
284
|
}
|
|
285
|
-
type location_2_string<G_Source> =
|
|
285
|
+
type location_2_string<G_Source> = _i_resolve._T_Location_2_String<G_Source>;
|
|
286
286
|
namespace parameters {
|
|
287
287
|
namespace lookups {
|
|
288
288
|
}
|
|
@@ -309,7 +309,7 @@ export declare namespace Module {
|
|
|
309
309
|
namespace location_2_string {
|
|
310
310
|
type Source<G_Source> = G_Source;
|
|
311
311
|
}
|
|
312
|
-
type location_2_string<G_Source> =
|
|
312
|
+
type location_2_string<G_Source> = _i_resolve._T_Location_2_String<G_Source>;
|
|
313
313
|
namespace parameters {
|
|
314
314
|
namespace lookups {
|
|
315
315
|
}
|
|
@@ -336,7 +336,7 @@ export declare namespace Module_Set {
|
|
|
336
336
|
namespace location_2_string {
|
|
337
337
|
type Source<G_Source> = G_Source;
|
|
338
338
|
}
|
|
339
|
-
type location_2_string<G_Source> =
|
|
339
|
+
type location_2_string<G_Source> = _i_resolve._T_Location_2_String<G_Source>;
|
|
340
340
|
namespace parameters {
|
|
341
341
|
namespace lookups {
|
|
342
342
|
}
|
|
@@ -363,7 +363,7 @@ export declare namespace Selection {
|
|
|
363
363
|
namespace location_2_string {
|
|
364
364
|
type Source<G_Source> = G_Source;
|
|
365
365
|
}
|
|
366
|
-
type location_2_string<G_Source> =
|
|
366
|
+
type location_2_string<G_Source> = _i_resolve._T_Location_2_String<G_Source>;
|
|
367
367
|
namespace parameters {
|
|
368
368
|
namespace lookups {
|
|
369
369
|
}
|
|
@@ -390,7 +390,7 @@ export declare namespace Type_Parameters {
|
|
|
390
390
|
namespace location_2_string {
|
|
391
391
|
type Source<G_Source> = G_Source;
|
|
392
392
|
}
|
|
393
|
-
type location_2_string<G_Source> =
|
|
393
|
+
type location_2_string<G_Source> = _i_resolve._T_Location_2_String<G_Source>;
|
|
394
394
|
namespace parameters {
|
|
395
395
|
namespace lookups {
|
|
396
396
|
}
|
|
@@ -417,7 +417,7 @@ export declare namespace Variables {
|
|
|
417
417
|
namespace location_2_string {
|
|
418
418
|
type Source<G_Source> = G_Source;
|
|
419
419
|
}
|
|
420
|
-
type location_2_string<G_Source> =
|
|
420
|
+
type location_2_string<G_Source> = _i_resolve._T_Location_2_String<G_Source>;
|
|
421
421
|
namespace parameters {
|
|
422
422
|
namespace lookups {
|
|
423
423
|
}
|
|
@@ -58,6 +58,7 @@ export type _T_Initialization = _i_core._T_State_Group<null, readonly [
|
|
|
58
58
|
{
|
|
59
59
|
readonly 'if not set': _T_Initialization;
|
|
60
60
|
readonly 'if set': _T_Initialization;
|
|
61
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
61
62
|
}
|
|
62
63
|
]>
|
|
63
64
|
] | readonly [
|
|
@@ -331,10 +332,17 @@ export declare namespace _T_Initialization {
|
|
|
331
332
|
namespace if_set {
|
|
332
333
|
}
|
|
333
334
|
type if_set = _T_Initialization;
|
|
335
|
+
namespace resulting_node {
|
|
336
|
+
namespace O {
|
|
337
|
+
}
|
|
338
|
+
type O = _i_imports_interface._T_Type;
|
|
339
|
+
}
|
|
340
|
+
type resulting_node = _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
334
341
|
}
|
|
335
342
|
type transform = {
|
|
336
343
|
readonly 'if not set': _T_Initialization;
|
|
337
344
|
readonly 'if set': _T_Initialization;
|
|
345
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
338
346
|
};
|
|
339
347
|
}
|
|
340
348
|
type SG = readonly ['map', _T_Initialization] | readonly [
|
|
@@ -342,6 +350,7 @@ export declare namespace _T_Initialization {
|
|
|
342
350
|
{
|
|
343
351
|
readonly 'if not set': _T_Initialization;
|
|
344
352
|
readonly 'if set': _T_Initialization;
|
|
353
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
345
354
|
}
|
|
346
355
|
];
|
|
347
356
|
}
|
|
@@ -350,6 +359,7 @@ export declare namespace _T_Initialization {
|
|
|
350
359
|
{
|
|
351
360
|
readonly 'if not set': _T_Initialization;
|
|
352
361
|
readonly 'if set': _T_Initialization;
|
|
362
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
353
363
|
}
|
|
354
364
|
]>;
|
|
355
365
|
namespace tagged_union {
|
|
@@ -501,6 +511,7 @@ export declare namespace _T_Initialization {
|
|
|
501
511
|
{
|
|
502
512
|
readonly 'if not set': _T_Initialization;
|
|
503
513
|
readonly 'if set': _T_Initialization;
|
|
514
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
504
515
|
}
|
|
505
516
|
]>
|
|
506
517
|
] | readonly [
|
|
@@ -556,6 +567,7 @@ export declare namespace _T_Initialization {
|
|
|
556
567
|
{
|
|
557
568
|
readonly 'if not set': _T_Initialization;
|
|
558
569
|
readonly 'if set': _T_Initialization;
|
|
570
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
559
571
|
}
|
|
560
572
|
]>
|
|
561
573
|
] | readonly [
|
|
@@ -613,6 +625,7 @@ export declare namespace _T_Initialization {
|
|
|
613
625
|
{
|
|
614
626
|
readonly 'if not set': _T_Initialization;
|
|
615
627
|
readonly 'if set': _T_Initialization;
|
|
628
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
616
629
|
}
|
|
617
630
|
]>
|
|
618
631
|
] | readonly [
|
|
@@ -695,6 +708,7 @@ export declare namespace _T_Initialization {
|
|
|
695
708
|
{
|
|
696
709
|
readonly 'if not set': _T_Initialization;
|
|
697
710
|
readonly 'if set': _T_Initialization;
|
|
711
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
698
712
|
}
|
|
699
713
|
]>
|
|
700
714
|
] | readonly [
|
|
@@ -1205,10 +1219,17 @@ export declare namespace Initialization {
|
|
|
1205
1219
|
namespace if_set {
|
|
1206
1220
|
}
|
|
1207
1221
|
type if_set = _T_Initialization;
|
|
1222
|
+
namespace resulting_node {
|
|
1223
|
+
namespace O {
|
|
1224
|
+
}
|
|
1225
|
+
type O = _i_imports_interface._T_Type;
|
|
1226
|
+
}
|
|
1227
|
+
type resulting_node = _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
1208
1228
|
}
|
|
1209
1229
|
type transform = {
|
|
1210
1230
|
readonly 'if not set': _T_Initialization;
|
|
1211
1231
|
readonly 'if set': _T_Initialization;
|
|
1232
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
1212
1233
|
};
|
|
1213
1234
|
}
|
|
1214
1235
|
type SG = readonly ['map', _T_Initialization] | readonly [
|
|
@@ -1216,6 +1237,7 @@ export declare namespace Initialization {
|
|
|
1216
1237
|
{
|
|
1217
1238
|
readonly 'if not set': _T_Initialization;
|
|
1218
1239
|
readonly 'if set': _T_Initialization;
|
|
1240
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
1219
1241
|
}
|
|
1220
1242
|
];
|
|
1221
1243
|
}
|
|
@@ -1224,6 +1246,7 @@ export declare namespace Initialization {
|
|
|
1224
1246
|
{
|
|
1225
1247
|
readonly 'if not set': _T_Initialization;
|
|
1226
1248
|
readonly 'if set': _T_Initialization;
|
|
1249
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
1227
1250
|
}
|
|
1228
1251
|
]>;
|
|
1229
1252
|
namespace tagged_union {
|
|
@@ -1375,6 +1398,7 @@ export declare namespace Initialization {
|
|
|
1375
1398
|
{
|
|
1376
1399
|
readonly 'if not set': _T_Initialization;
|
|
1377
1400
|
readonly 'if set': _T_Initialization;
|
|
1401
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
1378
1402
|
}
|
|
1379
1403
|
]>
|
|
1380
1404
|
] | readonly [
|
|
@@ -1430,6 +1454,7 @@ export declare namespace Initialization {
|
|
|
1430
1454
|
{
|
|
1431
1455
|
readonly 'if not set': _T_Initialization;
|
|
1432
1456
|
readonly 'if set': _T_Initialization;
|
|
1457
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
1433
1458
|
}
|
|
1434
1459
|
]>
|
|
1435
1460
|
] | readonly [
|
|
@@ -1487,6 +1512,7 @@ export declare namespace Initialization {
|
|
|
1487
1512
|
{
|
|
1488
1513
|
readonly 'if not set': _T_Initialization;
|
|
1489
1514
|
readonly 'if set': _T_Initialization;
|
|
1515
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
1490
1516
|
}
|
|
1491
1517
|
]>
|
|
1492
1518
|
] | readonly [
|
|
@@ -1569,6 +1595,7 @@ export declare namespace Initialization {
|
|
|
1569
1595
|
{
|
|
1570
1596
|
readonly 'if not set': _T_Initialization;
|
|
1571
1597
|
readonly 'if set': _T_Initialization;
|
|
1598
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type>;
|
|
1572
1599
|
}
|
|
1573
1600
|
]>
|
|
1574
1601
|
] | readonly [
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
import * as _i_in from "./resolved";
|
|
2
|
+
import * as _i_out from "../../core/astn_target";
|
|
3
|
+
export type _T_Initialization = ($$_: _i_in._T_Initialization, $$_p: null) => _i_out._T_Value;
|
|
4
|
+
export type _T_Literal = ($$_: _i_in._T_Literal, $$_p: null) => _i_out._T_Value;
|
|
5
|
+
export type _T_Module = ($$_: _i_in._T_Module, $$_p: null) => _i_out._T_Value;
|
|
6
|
+
export type _T_Module_Set = ($$_: _i_in._T_Module_Set, $$_p: null) => _i_out._T_Value;
|
|
7
|
+
export type _T_Selection = ($$_: _i_in._T_Selection, $$_p: null) => _i_out._T_Value;
|
|
8
|
+
export type _T_Type_Parameters = ($$_: _i_in._T_Type_Parameters, $$_p: null) => _i_out._T_Value;
|
|
9
|
+
export type _T_Variables = ($$_: _i_in._T_Variables, $$_p: null) => _i_out._T_Value;
|
|
10
|
+
export type Initialization = _T_Initialization;
|
|
11
|
+
export type Literal = _T_Literal;
|
|
12
|
+
export type Module = _T_Module;
|
|
13
|
+
export type Module_Set = _T_Module_Set;
|
|
14
|
+
export type Selection = _T_Selection;
|
|
15
|
+
export type Type_Parameters = _T_Type_Parameters;
|
|
16
|
+
export type Variables = _T_Variables;
|
|
17
|
+
export declare namespace _T_Initialization {
|
|
18
|
+
namespace CONTEXT {
|
|
19
|
+
}
|
|
20
|
+
type CONTEXT = _i_in._T_Initialization;
|
|
21
|
+
namespace PARAMS {
|
|
22
|
+
}
|
|
23
|
+
namespace RESULT {
|
|
24
|
+
}
|
|
25
|
+
type RESULT = _i_out._T_Value;
|
|
26
|
+
}
|
|
27
|
+
export declare namespace _T_Literal {
|
|
28
|
+
namespace CONTEXT {
|
|
29
|
+
}
|
|
30
|
+
type CONTEXT = _i_in._T_Literal;
|
|
31
|
+
namespace PARAMS {
|
|
32
|
+
}
|
|
33
|
+
namespace RESULT {
|
|
34
|
+
}
|
|
35
|
+
type RESULT = _i_out._T_Value;
|
|
36
|
+
}
|
|
37
|
+
export declare namespace _T_Module {
|
|
38
|
+
namespace CONTEXT {
|
|
39
|
+
}
|
|
40
|
+
type CONTEXT = _i_in._T_Module;
|
|
41
|
+
namespace PARAMS {
|
|
42
|
+
}
|
|
43
|
+
namespace RESULT {
|
|
44
|
+
}
|
|
45
|
+
type RESULT = _i_out._T_Value;
|
|
46
|
+
}
|
|
47
|
+
export declare namespace _T_Module_Set {
|
|
48
|
+
namespace CONTEXT {
|
|
49
|
+
}
|
|
50
|
+
type CONTEXT = _i_in._T_Module_Set;
|
|
51
|
+
namespace PARAMS {
|
|
52
|
+
}
|
|
53
|
+
namespace RESULT {
|
|
54
|
+
}
|
|
55
|
+
type RESULT = _i_out._T_Value;
|
|
56
|
+
}
|
|
57
|
+
export declare namespace _T_Selection {
|
|
58
|
+
namespace CONTEXT {
|
|
59
|
+
}
|
|
60
|
+
type CONTEXT = _i_in._T_Selection;
|
|
61
|
+
namespace PARAMS {
|
|
62
|
+
}
|
|
63
|
+
namespace RESULT {
|
|
64
|
+
}
|
|
65
|
+
type RESULT = _i_out._T_Value;
|
|
66
|
+
}
|
|
67
|
+
export declare namespace _T_Type_Parameters {
|
|
68
|
+
namespace CONTEXT {
|
|
69
|
+
}
|
|
70
|
+
type CONTEXT = _i_in._T_Type_Parameters;
|
|
71
|
+
namespace PARAMS {
|
|
72
|
+
}
|
|
73
|
+
namespace RESULT {
|
|
74
|
+
}
|
|
75
|
+
type RESULT = _i_out._T_Value;
|
|
76
|
+
}
|
|
77
|
+
export declare namespace _T_Variables {
|
|
78
|
+
namespace CONTEXT {
|
|
79
|
+
}
|
|
80
|
+
type CONTEXT = _i_in._T_Variables;
|
|
81
|
+
namespace PARAMS {
|
|
82
|
+
}
|
|
83
|
+
namespace RESULT {
|
|
84
|
+
}
|
|
85
|
+
type RESULT = _i_out._T_Value;
|
|
86
|
+
}
|
|
87
|
+
export declare namespace Initialization {
|
|
88
|
+
namespace CONTEXT {
|
|
89
|
+
}
|
|
90
|
+
type CONTEXT = _i_in._T_Initialization;
|
|
91
|
+
namespace PARAMS {
|
|
92
|
+
}
|
|
93
|
+
namespace RESULT {
|
|
94
|
+
}
|
|
95
|
+
type RESULT = _i_out._T_Value;
|
|
96
|
+
}
|
|
97
|
+
export declare namespace Literal {
|
|
98
|
+
namespace CONTEXT {
|
|
99
|
+
}
|
|
100
|
+
type CONTEXT = _i_in._T_Literal;
|
|
101
|
+
namespace PARAMS {
|
|
102
|
+
}
|
|
103
|
+
namespace RESULT {
|
|
104
|
+
}
|
|
105
|
+
type RESULT = _i_out._T_Value;
|
|
106
|
+
}
|
|
107
|
+
export declare namespace Module {
|
|
108
|
+
namespace CONTEXT {
|
|
109
|
+
}
|
|
110
|
+
type CONTEXT = _i_in._T_Module;
|
|
111
|
+
namespace PARAMS {
|
|
112
|
+
}
|
|
113
|
+
namespace RESULT {
|
|
114
|
+
}
|
|
115
|
+
type RESULT = _i_out._T_Value;
|
|
116
|
+
}
|
|
117
|
+
export declare namespace Module_Set {
|
|
118
|
+
namespace CONTEXT {
|
|
119
|
+
}
|
|
120
|
+
type CONTEXT = _i_in._T_Module_Set;
|
|
121
|
+
namespace PARAMS {
|
|
122
|
+
}
|
|
123
|
+
namespace RESULT {
|
|
124
|
+
}
|
|
125
|
+
type RESULT = _i_out._T_Value;
|
|
126
|
+
}
|
|
127
|
+
export declare namespace Selection {
|
|
128
|
+
namespace CONTEXT {
|
|
129
|
+
}
|
|
130
|
+
type CONTEXT = _i_in._T_Selection;
|
|
131
|
+
namespace PARAMS {
|
|
132
|
+
}
|
|
133
|
+
namespace RESULT {
|
|
134
|
+
}
|
|
135
|
+
type RESULT = _i_out._T_Value;
|
|
136
|
+
}
|
|
137
|
+
export declare namespace Type_Parameters {
|
|
138
|
+
namespace CONTEXT {
|
|
139
|
+
}
|
|
140
|
+
type CONTEXT = _i_in._T_Type_Parameters;
|
|
141
|
+
namespace PARAMS {
|
|
142
|
+
}
|
|
143
|
+
namespace RESULT {
|
|
144
|
+
}
|
|
145
|
+
type RESULT = _i_out._T_Value;
|
|
146
|
+
}
|
|
147
|
+
export declare namespace Variables {
|
|
148
|
+
namespace CONTEXT {
|
|
149
|
+
}
|
|
150
|
+
type CONTEXT = _i_in._T_Variables;
|
|
151
|
+
namespace PARAMS {
|
|
152
|
+
}
|
|
153
|
+
namespace RESULT {
|
|
154
|
+
}
|
|
155
|
+
type RESULT = _i_out._T_Value;
|
|
156
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvaW1wbGVtZW50YXRpb24vc2VyaWFsaXplci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|
|
@@ -58,6 +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
62
|
}
|
|
62
63
|
]>
|
|
63
64
|
] | readonly [
|
|
@@ -331,10 +332,17 @@ export declare namespace _T_Initialization {
|
|
|
331
332
|
namespace if_set {
|
|
332
333
|
}
|
|
333
334
|
type if_set<G_Source> = _T_Initialization<G_Source>;
|
|
335
|
+
namespace resulting_node {
|
|
336
|
+
namespace O {
|
|
337
|
+
}
|
|
338
|
+
type O<G_Source> = _i_imports_interface._T_Type<G_Source>;
|
|
339
|
+
}
|
|
340
|
+
type resulting_node<G_Source> = _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
334
341
|
}
|
|
335
342
|
type transform<G_Source> = {
|
|
336
343
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
337
344
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
345
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
338
346
|
};
|
|
339
347
|
}
|
|
340
348
|
type SG<G_Source> = readonly ['map', _T_Initialization<G_Source>] | readonly [
|
|
@@ -342,6 +350,7 @@ export declare namespace _T_Initialization {
|
|
|
342
350
|
{
|
|
343
351
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
344
352
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
353
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
345
354
|
}
|
|
346
355
|
];
|
|
347
356
|
}
|
|
@@ -350,6 +359,7 @@ export declare namespace _T_Initialization {
|
|
|
350
359
|
{
|
|
351
360
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
352
361
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
362
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
353
363
|
}
|
|
354
364
|
]>;
|
|
355
365
|
namespace tagged_union {
|
|
@@ -501,6 +511,7 @@ export declare namespace _T_Initialization {
|
|
|
501
511
|
{
|
|
502
512
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
503
513
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
514
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
504
515
|
}
|
|
505
516
|
]>
|
|
506
517
|
] | readonly [
|
|
@@ -556,6 +567,7 @@ export declare namespace _T_Initialization {
|
|
|
556
567
|
{
|
|
557
568
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
558
569
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
570
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
559
571
|
}
|
|
560
572
|
]>
|
|
561
573
|
] | readonly [
|
|
@@ -613,6 +625,7 @@ export declare namespace _T_Initialization {
|
|
|
613
625
|
{
|
|
614
626
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
615
627
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
628
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
616
629
|
}
|
|
617
630
|
]>
|
|
618
631
|
] | readonly [
|
|
@@ -695,6 +708,7 @@ export declare namespace _T_Initialization {
|
|
|
695
708
|
{
|
|
696
709
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
697
710
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
711
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
698
712
|
}
|
|
699
713
|
]>
|
|
700
714
|
] | readonly [
|
|
@@ -1205,10 +1219,17 @@ export declare namespace Initialization {
|
|
|
1205
1219
|
namespace if_set {
|
|
1206
1220
|
}
|
|
1207
1221
|
type if_set<G_Source> = _T_Initialization<G_Source>;
|
|
1222
|
+
namespace resulting_node {
|
|
1223
|
+
namespace O {
|
|
1224
|
+
}
|
|
1225
|
+
type O<G_Source> = _i_imports_interface._T_Type<G_Source>;
|
|
1226
|
+
}
|
|
1227
|
+
type resulting_node<G_Source> = _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1208
1228
|
}
|
|
1209
1229
|
type transform<G_Source> = {
|
|
1210
1230
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
1211
1231
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
1232
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1212
1233
|
};
|
|
1213
1234
|
}
|
|
1214
1235
|
type SG<G_Source> = readonly ['map', _T_Initialization<G_Source>] | readonly [
|
|
@@ -1216,6 +1237,7 @@ export declare namespace Initialization {
|
|
|
1216
1237
|
{
|
|
1217
1238
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
1218
1239
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
1240
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1219
1241
|
}
|
|
1220
1242
|
];
|
|
1221
1243
|
}
|
|
@@ -1224,6 +1246,7 @@ export declare namespace Initialization {
|
|
|
1224
1246
|
{
|
|
1225
1247
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
1226
1248
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
1249
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1227
1250
|
}
|
|
1228
1251
|
]>;
|
|
1229
1252
|
namespace tagged_union {
|
|
@@ -1375,6 +1398,7 @@ export declare namespace Initialization {
|
|
|
1375
1398
|
{
|
|
1376
1399
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
1377
1400
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
1401
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1378
1402
|
}
|
|
1379
1403
|
]>
|
|
1380
1404
|
] | readonly [
|
|
@@ -1430,6 +1454,7 @@ export declare namespace Initialization {
|
|
|
1430
1454
|
{
|
|
1431
1455
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
1432
1456
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
1457
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1433
1458
|
}
|
|
1434
1459
|
]>
|
|
1435
1460
|
] | readonly [
|
|
@@ -1487,6 +1512,7 @@ export declare namespace Initialization {
|
|
|
1487
1512
|
{
|
|
1488
1513
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
1489
1514
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
1515
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1490
1516
|
}
|
|
1491
1517
|
]>
|
|
1492
1518
|
] | readonly [
|
|
@@ -1569,6 +1595,7 @@ export declare namespace Initialization {
|
|
|
1569
1595
|
{
|
|
1570
1596
|
readonly 'if not set': _T_Initialization<G_Source>;
|
|
1571
1597
|
readonly 'if set': _T_Initialization<G_Source>;
|
|
1598
|
+
readonly 'resulting node': _pt.Optional_Value<_i_imports_interface._T_Type<G_Source>>;
|
|
1572
1599
|
}
|
|
1573
1600
|
]>
|
|
1574
1601
|
] | readonly [
|