pareto-fountain-pen 0.1.37 → 0.1.39
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 +0 -3
- package/dist/generated/implementation/generic/resolve.js +1 -1
- package/dist/generated/implementation/schemas/block/marshall.d.ts +2 -2
- package/dist/generated/implementation/schemas/block/marshall.js +42 -42
- package/dist/generated/implementation/schemas/block/unmarshall.d.ts +2 -2
- package/dist/generated/implementation/schemas/block/unmarshall.js +26 -26
- package/dist/generated/interface/schemas/block/data_types/source.d.ts +56 -56
- package/dist/generated/interface/schemas/block/data_types/target.d.ts +56 -56
- package/dist/generated/interface/schemas/block/marshall.d.ts +27 -27
- package/dist/generated/interface/schemas/block/migrate_boilerplate.d.ts +33 -33
- package/dist/generated/interface/schemas/block/unmarshall.d.ts +28 -28
- package/dist/procedures/{console_error.d.ts → guaranteed/console_error.d.ts} +1 -1
- package/dist/procedures/{console_error.js → guaranteed/console_error.js} +3 -3
- package/dist/procedures/{console_log.d.ts → guaranteed/console_log.d.ts} +1 -1
- package/dist/procedures/{console_log.js → guaranteed/console_log.js} +3 -3
- package/dist/procedures/{write_to_directory.d.ts → unguaranteed/write_to_directory.d.ts} +1 -1
- package/dist/procedures/{write_to_directory.js → unguaranteed/write_to_directory.js} +3 -3
- package/dist/procedures/{write_to_file.d.ts → unguaranteed/write_to_file.d.ts} +1 -1
- package/dist/procedures/{write_to_file.js → unguaranteed/write_to_file.js} +4 -4
- package/dist/procedures/{write_to_node.d.ts → unguaranteed/write_to_node.d.ts} +1 -1
- package/dist/procedures/{write_to_node.js → unguaranteed/write_to_node.js} +1 -1
- package/dist/shorthands/block.d.ts +10 -10
- package/dist/shorthands/block.js +14 -14
- package/dist/{procedures → temp}/temp_types.js +1 -1
- package/dist/transformations/block/semi_lines.js +12 -12
- package/package.json +2 -2
- /package/dist/{procedures → temp}/temp_types.d.ts +0 -0
|
@@ -1,17 +1,41 @@
|
|
|
1
1
|
import * as _pt from 'exupery-core-types';
|
|
2
2
|
import * as _i_core from "../../../core/unconstrained";
|
|
3
|
+
export type _T_Block = _i_core._T_List<null, _T_Block_Part>;
|
|
4
|
+
export type _T_Block_Part = _i_core._T_State_Group<null, readonly ['indent', _T_Group] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Block_Part>] | readonly ['snippet', string] | readonly ['sub block', _T_Block]>;
|
|
3
5
|
export type _T_Directory = _i_core._T_Dictionary<null, _T_Node>;
|
|
4
6
|
export type _T_Group = _i_core._T_List<null, _T_Group_Part>;
|
|
5
|
-
export type _T_Group_Part = _i_core._T_State_Group<null, readonly ['
|
|
6
|
-
export type _T_Line = _i_core._T_List<null, _T_Line_Part>;
|
|
7
|
-
export type _T_Line_Part = _i_core._T_State_Group<null, readonly ['indent', _T_Group] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Line_Part>] | readonly ['snippet', string] | readonly ['sub line', _T_Line]>;
|
|
7
|
+
export type _T_Group_Part = _i_core._T_State_Group<null, readonly ['block', string] | readonly ['nested block', _T_Block] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Group_Part>] | readonly ['sub group', _T_Group]>;
|
|
8
8
|
export type _T_Node = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Group]>;
|
|
9
|
+
export type Block = _T_Block;
|
|
10
|
+
export type Block_Part = _T_Block_Part;
|
|
9
11
|
export type Directory = _T_Directory;
|
|
10
12
|
export type Group = _T_Group;
|
|
11
13
|
export type Group_Part = _T_Group_Part;
|
|
12
|
-
export type Line = _T_Line;
|
|
13
|
-
export type Line_Part = _T_Line_Part;
|
|
14
14
|
export type Node = _T_Node;
|
|
15
|
+
export declare namespace _T_Block {
|
|
16
|
+
namespace L {
|
|
17
|
+
}
|
|
18
|
+
type L = _T_Block_Part;
|
|
19
|
+
}
|
|
20
|
+
export declare namespace _T_Block_Part {
|
|
21
|
+
namespace SG {
|
|
22
|
+
namespace indent {
|
|
23
|
+
}
|
|
24
|
+
type indent = _T_Group;
|
|
25
|
+
type nothing = null;
|
|
26
|
+
namespace optional {
|
|
27
|
+
namespace O {
|
|
28
|
+
}
|
|
29
|
+
type O = _T_Block_Part;
|
|
30
|
+
}
|
|
31
|
+
type optional = _pt.Optional_Value<_T_Block_Part>;
|
|
32
|
+
type snippet = string;
|
|
33
|
+
namespace sub_block {
|
|
34
|
+
}
|
|
35
|
+
type sub_block = _T_Block;
|
|
36
|
+
}
|
|
37
|
+
type SG = readonly ['indent', _T_Group] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Block_Part>] | readonly ['snippet', string] | readonly ['sub block', _T_Block];
|
|
38
|
+
}
|
|
15
39
|
export declare namespace _T_Directory {
|
|
16
40
|
namespace D {
|
|
17
41
|
}
|
|
@@ -24,10 +48,10 @@ export declare namespace _T_Group {
|
|
|
24
48
|
}
|
|
25
49
|
export declare namespace _T_Group_Part {
|
|
26
50
|
namespace SG {
|
|
27
|
-
type
|
|
28
|
-
namespace
|
|
51
|
+
type block = string;
|
|
52
|
+
namespace nested_block {
|
|
29
53
|
}
|
|
30
|
-
type
|
|
54
|
+
type nested_block = _T_Block;
|
|
31
55
|
type nothing = null;
|
|
32
56
|
namespace optional {
|
|
33
57
|
namespace O {
|
|
@@ -39,14 +63,25 @@ export declare namespace _T_Group_Part {
|
|
|
39
63
|
}
|
|
40
64
|
type sub_group = _T_Group;
|
|
41
65
|
}
|
|
42
|
-
type SG = readonly ['
|
|
66
|
+
type SG = readonly ['block', string] | readonly ['nested block', _T_Block] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Group_Part>] | readonly ['sub group', _T_Group];
|
|
67
|
+
}
|
|
68
|
+
export declare namespace _T_Node {
|
|
69
|
+
namespace SG {
|
|
70
|
+
namespace directory {
|
|
71
|
+
}
|
|
72
|
+
type directory = _T_Directory;
|
|
73
|
+
namespace file {
|
|
74
|
+
}
|
|
75
|
+
type file = _T_Group;
|
|
76
|
+
}
|
|
77
|
+
type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Group];
|
|
43
78
|
}
|
|
44
|
-
export declare namespace
|
|
79
|
+
export declare namespace Block {
|
|
45
80
|
namespace L {
|
|
46
81
|
}
|
|
47
|
-
type L =
|
|
82
|
+
type L = _T_Block_Part;
|
|
48
83
|
}
|
|
49
|
-
export declare namespace
|
|
84
|
+
export declare namespace Block_Part {
|
|
50
85
|
namespace SG {
|
|
51
86
|
namespace indent {
|
|
52
87
|
}
|
|
@@ -55,26 +90,15 @@ export declare namespace _T_Line_Part {
|
|
|
55
90
|
namespace optional {
|
|
56
91
|
namespace O {
|
|
57
92
|
}
|
|
58
|
-
type O =
|
|
93
|
+
type O = _T_Block_Part;
|
|
59
94
|
}
|
|
60
|
-
type optional = _pt.Optional_Value<
|
|
95
|
+
type optional = _pt.Optional_Value<_T_Block_Part>;
|
|
61
96
|
type snippet = string;
|
|
62
|
-
namespace
|
|
97
|
+
namespace sub_block {
|
|
63
98
|
}
|
|
64
|
-
type
|
|
99
|
+
type sub_block = _T_Block;
|
|
65
100
|
}
|
|
66
|
-
type SG = readonly ['indent', _T_Group] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<
|
|
67
|
-
}
|
|
68
|
-
export declare namespace _T_Node {
|
|
69
|
-
namespace SG {
|
|
70
|
-
namespace directory {
|
|
71
|
-
}
|
|
72
|
-
type directory = _T_Directory;
|
|
73
|
-
namespace file {
|
|
74
|
-
}
|
|
75
|
-
type file = _T_Group;
|
|
76
|
-
}
|
|
77
|
-
type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Group];
|
|
101
|
+
type SG = readonly ['indent', _T_Group] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Block_Part>] | readonly ['snippet', string] | readonly ['sub block', _T_Block];
|
|
78
102
|
}
|
|
79
103
|
export declare namespace Directory {
|
|
80
104
|
namespace D {
|
|
@@ -88,10 +112,10 @@ export declare namespace Group {
|
|
|
88
112
|
}
|
|
89
113
|
export declare namespace Group_Part {
|
|
90
114
|
namespace SG {
|
|
91
|
-
type
|
|
92
|
-
namespace
|
|
115
|
+
type block = string;
|
|
116
|
+
namespace nested_block {
|
|
93
117
|
}
|
|
94
|
-
type
|
|
118
|
+
type nested_block = _T_Block;
|
|
95
119
|
type nothing = null;
|
|
96
120
|
namespace optional {
|
|
97
121
|
namespace O {
|
|
@@ -103,31 +127,7 @@ export declare namespace Group_Part {
|
|
|
103
127
|
}
|
|
104
128
|
type sub_group = _T_Group;
|
|
105
129
|
}
|
|
106
|
-
type SG = readonly ['
|
|
107
|
-
}
|
|
108
|
-
export declare namespace Line {
|
|
109
|
-
namespace L {
|
|
110
|
-
}
|
|
111
|
-
type L = _T_Line_Part;
|
|
112
|
-
}
|
|
113
|
-
export declare namespace Line_Part {
|
|
114
|
-
namespace SG {
|
|
115
|
-
namespace indent {
|
|
116
|
-
}
|
|
117
|
-
type indent = _T_Group;
|
|
118
|
-
type nothing = null;
|
|
119
|
-
namespace optional {
|
|
120
|
-
namespace O {
|
|
121
|
-
}
|
|
122
|
-
type O = _T_Line_Part;
|
|
123
|
-
}
|
|
124
|
-
type optional = _pt.Optional_Value<_T_Line_Part>;
|
|
125
|
-
type snippet = string;
|
|
126
|
-
namespace sub_line {
|
|
127
|
-
}
|
|
128
|
-
type sub_line = _T_Line;
|
|
129
|
-
}
|
|
130
|
-
type SG = readonly ['indent', _T_Group] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Line_Part>] | readonly ['snippet', string] | readonly ['sub line', _T_Line];
|
|
130
|
+
type SG = readonly ['block', string] | readonly ['nested block', _T_Block] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Group_Part>] | readonly ['sub group', _T_Group];
|
|
131
131
|
}
|
|
132
132
|
export declare namespace Node {
|
|
133
133
|
namespace SG {
|
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
import * as _i_in from "./data_types/source";
|
|
2
2
|
import * as _i_out from "../../core/astn_target";
|
|
3
3
|
import * as _i_vs from "./value_serializers";
|
|
4
|
-
export type
|
|
4
|
+
export type _T_Block = ($$_: _i_in._T_Block, $$_p: {
|
|
5
5
|
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
6
6
|
}) => _i_out._T_Value;
|
|
7
|
-
export type
|
|
7
|
+
export type _T_Block_Part = ($$_: _i_in._T_Block_Part, $$_p: {
|
|
8
8
|
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
9
9
|
}) => _i_out._T_Value;
|
|
10
|
-
export type
|
|
10
|
+
export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: {
|
|
11
11
|
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
12
12
|
}) => _i_out._T_Value;
|
|
13
|
-
export type
|
|
13
|
+
export type _T_Group = ($$_: _i_in._T_Group, $$_p: {
|
|
14
14
|
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
15
15
|
}) => _i_out._T_Value;
|
|
16
|
-
export type
|
|
16
|
+
export type _T_Group_Part = ($$_: _i_in._T_Group_Part, $$_p: {
|
|
17
17
|
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
18
18
|
}) => _i_out._T_Value;
|
|
19
19
|
export type _T_Node = ($$_: _i_in._T_Node, $$_p: {
|
|
20
20
|
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
21
21
|
}) => _i_out._T_Value;
|
|
22
|
+
export type Block = _T_Block;
|
|
23
|
+
export type Block_Part = _T_Block_Part;
|
|
22
24
|
export type Directory = _T_Directory;
|
|
23
25
|
export type Group = _T_Group;
|
|
24
26
|
export type Group_Part = _T_Group_Part;
|
|
25
|
-
export type Line = _T_Line;
|
|
26
|
-
export type Line_Part = _T_Line_Part;
|
|
27
27
|
export type Node = _T_Node;
|
|
28
|
-
export declare namespace
|
|
28
|
+
export declare namespace _T_Block {
|
|
29
29
|
namespace CONTEXT {
|
|
30
30
|
}
|
|
31
|
-
type CONTEXT = _i_in.
|
|
31
|
+
type CONTEXT = _i_in._T_Block;
|
|
32
32
|
namespace PARAMS {
|
|
33
33
|
namespace value_serializers {
|
|
34
34
|
}
|
|
@@ -38,10 +38,10 @@ export declare namespace _T_Directory {
|
|
|
38
38
|
}
|
|
39
39
|
type RESULT = _i_out._T_Value;
|
|
40
40
|
}
|
|
41
|
-
export declare namespace
|
|
41
|
+
export declare namespace _T_Block_Part {
|
|
42
42
|
namespace CONTEXT {
|
|
43
43
|
}
|
|
44
|
-
type CONTEXT = _i_in.
|
|
44
|
+
type CONTEXT = _i_in._T_Block_Part;
|
|
45
45
|
namespace PARAMS {
|
|
46
46
|
namespace value_serializers {
|
|
47
47
|
}
|
|
@@ -51,10 +51,10 @@ export declare namespace _T_Group {
|
|
|
51
51
|
}
|
|
52
52
|
type RESULT = _i_out._T_Value;
|
|
53
53
|
}
|
|
54
|
-
export declare namespace
|
|
54
|
+
export declare namespace _T_Directory {
|
|
55
55
|
namespace CONTEXT {
|
|
56
56
|
}
|
|
57
|
-
type CONTEXT = _i_in.
|
|
57
|
+
type CONTEXT = _i_in._T_Directory;
|
|
58
58
|
namespace PARAMS {
|
|
59
59
|
namespace value_serializers {
|
|
60
60
|
}
|
|
@@ -64,10 +64,10 @@ export declare namespace _T_Group_Part {
|
|
|
64
64
|
}
|
|
65
65
|
type RESULT = _i_out._T_Value;
|
|
66
66
|
}
|
|
67
|
-
export declare namespace
|
|
67
|
+
export declare namespace _T_Group {
|
|
68
68
|
namespace CONTEXT {
|
|
69
69
|
}
|
|
70
|
-
type CONTEXT = _i_in.
|
|
70
|
+
type CONTEXT = _i_in._T_Group;
|
|
71
71
|
namespace PARAMS {
|
|
72
72
|
namespace value_serializers {
|
|
73
73
|
}
|
|
@@ -77,10 +77,10 @@ export declare namespace _T_Line {
|
|
|
77
77
|
}
|
|
78
78
|
type RESULT = _i_out._T_Value;
|
|
79
79
|
}
|
|
80
|
-
export declare namespace
|
|
80
|
+
export declare namespace _T_Group_Part {
|
|
81
81
|
namespace CONTEXT {
|
|
82
82
|
}
|
|
83
|
-
type CONTEXT = _i_in.
|
|
83
|
+
type CONTEXT = _i_in._T_Group_Part;
|
|
84
84
|
namespace PARAMS {
|
|
85
85
|
namespace value_serializers {
|
|
86
86
|
}
|
|
@@ -103,10 +103,10 @@ export declare namespace _T_Node {
|
|
|
103
103
|
}
|
|
104
104
|
type RESULT = _i_out._T_Value;
|
|
105
105
|
}
|
|
106
|
-
export declare namespace
|
|
106
|
+
export declare namespace Block {
|
|
107
107
|
namespace CONTEXT {
|
|
108
108
|
}
|
|
109
|
-
type CONTEXT = _i_in.
|
|
109
|
+
type CONTEXT = _i_in._T_Block;
|
|
110
110
|
namespace PARAMS {
|
|
111
111
|
namespace value_serializers {
|
|
112
112
|
}
|
|
@@ -116,10 +116,10 @@ export declare namespace Directory {
|
|
|
116
116
|
}
|
|
117
117
|
type RESULT = _i_out._T_Value;
|
|
118
118
|
}
|
|
119
|
-
export declare namespace
|
|
119
|
+
export declare namespace Block_Part {
|
|
120
120
|
namespace CONTEXT {
|
|
121
121
|
}
|
|
122
|
-
type CONTEXT = _i_in.
|
|
122
|
+
type CONTEXT = _i_in._T_Block_Part;
|
|
123
123
|
namespace PARAMS {
|
|
124
124
|
namespace value_serializers {
|
|
125
125
|
}
|
|
@@ -129,10 +129,10 @@ export declare namespace Group {
|
|
|
129
129
|
}
|
|
130
130
|
type RESULT = _i_out._T_Value;
|
|
131
131
|
}
|
|
132
|
-
export declare namespace
|
|
132
|
+
export declare namespace Directory {
|
|
133
133
|
namespace CONTEXT {
|
|
134
134
|
}
|
|
135
|
-
type CONTEXT = _i_in.
|
|
135
|
+
type CONTEXT = _i_in._T_Directory;
|
|
136
136
|
namespace PARAMS {
|
|
137
137
|
namespace value_serializers {
|
|
138
138
|
}
|
|
@@ -142,10 +142,10 @@ export declare namespace Group_Part {
|
|
|
142
142
|
}
|
|
143
143
|
type RESULT = _i_out._T_Value;
|
|
144
144
|
}
|
|
145
|
-
export declare namespace
|
|
145
|
+
export declare namespace Group {
|
|
146
146
|
namespace CONTEXT {
|
|
147
147
|
}
|
|
148
|
-
type CONTEXT = _i_in.
|
|
148
|
+
type CONTEXT = _i_in._T_Group;
|
|
149
149
|
namespace PARAMS {
|
|
150
150
|
namespace value_serializers {
|
|
151
151
|
}
|
|
@@ -155,10 +155,10 @@ export declare namespace Line {
|
|
|
155
155
|
}
|
|
156
156
|
type RESULT = _i_out._T_Value;
|
|
157
157
|
}
|
|
158
|
-
export declare namespace
|
|
158
|
+
export declare namespace Group_Part {
|
|
159
159
|
namespace CONTEXT {
|
|
160
160
|
}
|
|
161
|
-
type CONTEXT = _i_in.
|
|
161
|
+
type CONTEXT = _i_in._T_Group_Part;
|
|
162
162
|
namespace PARAMS {
|
|
163
163
|
namespace value_serializers {
|
|
164
164
|
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
1
|
import * as _i_in from "./data_types/source";
|
|
2
2
|
import * as _i_out from "./data_types/target";
|
|
3
|
+
export type _T_Block = ($$_: _i_in._T_Block, $$_p: null) => _i_out._T_Block;
|
|
4
|
+
export type _T_Block_Part = ($$_: _i_in._T_Block_Part, $$_p: null) => _i_out._T_Block_Part;
|
|
3
5
|
export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: null) => _i_out._T_Directory;
|
|
4
6
|
export type _T_Group = ($$_: _i_in._T_Group, $$_p: null) => _i_out._T_Group;
|
|
5
7
|
export type _T_Group_Part = ($$_: _i_in._T_Group_Part, $$_p: null) => _i_out._T_Group_Part;
|
|
6
|
-
export type _T_Line = ($$_: _i_in._T_Line, $$_p: null) => _i_out._T_Line;
|
|
7
|
-
export type _T_Line_Part = ($$_: _i_in._T_Line_Part, $$_p: null) => _i_out._T_Line_Part;
|
|
8
8
|
export type _T_Node = ($$_: _i_in._T_Node, $$_p: null) => _i_out._T_Node;
|
|
9
|
+
export type Block = _T_Block;
|
|
10
|
+
export type Block_Part = _T_Block_Part;
|
|
9
11
|
export type Directory = _T_Directory;
|
|
10
12
|
export type Group = _T_Group;
|
|
11
13
|
export type Group_Part = _T_Group_Part;
|
|
12
|
-
export type Line = _T_Line;
|
|
13
|
-
export type Line_Part = _T_Line_Part;
|
|
14
14
|
export type Node = _T_Node;
|
|
15
|
+
export declare namespace _T_Block {
|
|
16
|
+
namespace CONTEXT {
|
|
17
|
+
}
|
|
18
|
+
type CONTEXT = _i_in._T_Block;
|
|
19
|
+
namespace PARAMS {
|
|
20
|
+
}
|
|
21
|
+
namespace RESULT {
|
|
22
|
+
}
|
|
23
|
+
type RESULT = _i_out._T_Block;
|
|
24
|
+
}
|
|
25
|
+
export declare namespace _T_Block_Part {
|
|
26
|
+
namespace CONTEXT {
|
|
27
|
+
}
|
|
28
|
+
type CONTEXT = _i_in._T_Block_Part;
|
|
29
|
+
namespace PARAMS {
|
|
30
|
+
}
|
|
31
|
+
namespace RESULT {
|
|
32
|
+
}
|
|
33
|
+
type RESULT = _i_out._T_Block_Part;
|
|
34
|
+
}
|
|
15
35
|
export declare namespace _T_Directory {
|
|
16
36
|
namespace CONTEXT {
|
|
17
37
|
}
|
|
@@ -42,35 +62,35 @@ export declare namespace _T_Group_Part {
|
|
|
42
62
|
}
|
|
43
63
|
type RESULT = _i_out._T_Group_Part;
|
|
44
64
|
}
|
|
45
|
-
export declare namespace
|
|
65
|
+
export declare namespace _T_Node {
|
|
46
66
|
namespace CONTEXT {
|
|
47
67
|
}
|
|
48
|
-
type CONTEXT = _i_in.
|
|
68
|
+
type CONTEXT = _i_in._T_Node;
|
|
49
69
|
namespace PARAMS {
|
|
50
70
|
}
|
|
51
71
|
namespace RESULT {
|
|
52
72
|
}
|
|
53
|
-
type RESULT = _i_out.
|
|
73
|
+
type RESULT = _i_out._T_Node;
|
|
54
74
|
}
|
|
55
|
-
export declare namespace
|
|
75
|
+
export declare namespace Block {
|
|
56
76
|
namespace CONTEXT {
|
|
57
77
|
}
|
|
58
|
-
type CONTEXT = _i_in.
|
|
78
|
+
type CONTEXT = _i_in._T_Block;
|
|
59
79
|
namespace PARAMS {
|
|
60
80
|
}
|
|
61
81
|
namespace RESULT {
|
|
62
82
|
}
|
|
63
|
-
type RESULT = _i_out.
|
|
83
|
+
type RESULT = _i_out._T_Block;
|
|
64
84
|
}
|
|
65
|
-
export declare namespace
|
|
85
|
+
export declare namespace Block_Part {
|
|
66
86
|
namespace CONTEXT {
|
|
67
87
|
}
|
|
68
|
-
type CONTEXT = _i_in.
|
|
88
|
+
type CONTEXT = _i_in._T_Block_Part;
|
|
69
89
|
namespace PARAMS {
|
|
70
90
|
}
|
|
71
91
|
namespace RESULT {
|
|
72
92
|
}
|
|
73
|
-
type RESULT = _i_out.
|
|
93
|
+
type RESULT = _i_out._T_Block_Part;
|
|
74
94
|
}
|
|
75
95
|
export declare namespace Directory {
|
|
76
96
|
namespace CONTEXT {
|
|
@@ -102,26 +122,6 @@ export declare namespace Group_Part {
|
|
|
102
122
|
}
|
|
103
123
|
type RESULT = _i_out._T_Group_Part;
|
|
104
124
|
}
|
|
105
|
-
export declare namespace Line {
|
|
106
|
-
namespace CONTEXT {
|
|
107
|
-
}
|
|
108
|
-
type CONTEXT = _i_in._T_Line;
|
|
109
|
-
namespace PARAMS {
|
|
110
|
-
}
|
|
111
|
-
namespace RESULT {
|
|
112
|
-
}
|
|
113
|
-
type RESULT = _i_out._T_Line;
|
|
114
|
-
}
|
|
115
|
-
export declare namespace Line_Part {
|
|
116
|
-
namespace CONTEXT {
|
|
117
|
-
}
|
|
118
|
-
type CONTEXT = _i_in._T_Line_Part;
|
|
119
|
-
namespace PARAMS {
|
|
120
|
-
}
|
|
121
|
-
namespace RESULT {
|
|
122
|
-
}
|
|
123
|
-
type RESULT = _i_out._T_Line_Part;
|
|
124
|
-
}
|
|
125
125
|
export declare namespace Node {
|
|
126
126
|
namespace CONTEXT {
|
|
127
127
|
}
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import * as _i_in from "../../core/astn_source";
|
|
2
2
|
import * as _i_out from "./data_types/target";
|
|
3
3
|
import * as _i_vd from "./value_deserializers";
|
|
4
|
+
export type _T_Block = ($$_: _i_in._T_Value, $$_p: {
|
|
5
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
6
|
+
}) => _i_out._T_Block;
|
|
7
|
+
export type _T_Block_Part = ($$_: _i_in._T_Value, $$_p: {
|
|
8
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
9
|
+
}) => _i_out._T_Block_Part;
|
|
4
10
|
export type _T_Directory = ($$_: _i_in._T_Value, $$_p: {
|
|
5
11
|
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
6
12
|
}) => _i_out._T_Directory;
|
|
@@ -10,22 +16,16 @@ export type _T_Group = ($$_: _i_in._T_Value, $$_p: {
|
|
|
10
16
|
export type _T_Group_Part = ($$_: _i_in._T_Value, $$_p: {
|
|
11
17
|
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
12
18
|
}) => _i_out._T_Group_Part;
|
|
13
|
-
export type _T_Line = ($$_: _i_in._T_Value, $$_p: {
|
|
14
|
-
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
15
|
-
}) => _i_out._T_Line;
|
|
16
|
-
export type _T_Line_Part = ($$_: _i_in._T_Value, $$_p: {
|
|
17
|
-
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
18
|
-
}) => _i_out._T_Line_Part;
|
|
19
19
|
export type _T_Node = ($$_: _i_in._T_Value, $$_p: {
|
|
20
20
|
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
21
21
|
}) => _i_out._T_Node;
|
|
22
|
+
export type Block = _T_Block;
|
|
23
|
+
export type Block_Part = _T_Block_Part;
|
|
22
24
|
export type Directory = _T_Directory;
|
|
23
25
|
export type Group = _T_Group;
|
|
24
26
|
export type Group_Part = _T_Group_Part;
|
|
25
|
-
export type Line = _T_Line;
|
|
26
|
-
export type Line_Part = _T_Line_Part;
|
|
27
27
|
export type Node = _T_Node;
|
|
28
|
-
export declare namespace
|
|
28
|
+
export declare namespace _T_Block {
|
|
29
29
|
namespace CONTEXT {
|
|
30
30
|
}
|
|
31
31
|
type CONTEXT = _i_in._T_Value;
|
|
@@ -36,9 +36,9 @@ export declare namespace _T_Directory {
|
|
|
36
36
|
}
|
|
37
37
|
namespace RESULT {
|
|
38
38
|
}
|
|
39
|
-
type RESULT = _i_out.
|
|
39
|
+
type RESULT = _i_out._T_Block;
|
|
40
40
|
}
|
|
41
|
-
export declare namespace
|
|
41
|
+
export declare namespace _T_Block_Part {
|
|
42
42
|
namespace CONTEXT {
|
|
43
43
|
}
|
|
44
44
|
type CONTEXT = _i_in._T_Value;
|
|
@@ -49,9 +49,9 @@ export declare namespace _T_Group {
|
|
|
49
49
|
}
|
|
50
50
|
namespace RESULT {
|
|
51
51
|
}
|
|
52
|
-
type RESULT = _i_out.
|
|
52
|
+
type RESULT = _i_out._T_Block_Part;
|
|
53
53
|
}
|
|
54
|
-
export declare namespace
|
|
54
|
+
export declare namespace _T_Directory {
|
|
55
55
|
namespace CONTEXT {
|
|
56
56
|
}
|
|
57
57
|
type CONTEXT = _i_in._T_Value;
|
|
@@ -62,9 +62,9 @@ export declare namespace _T_Group_Part {
|
|
|
62
62
|
}
|
|
63
63
|
namespace RESULT {
|
|
64
64
|
}
|
|
65
|
-
type RESULT = _i_out.
|
|
65
|
+
type RESULT = _i_out._T_Directory;
|
|
66
66
|
}
|
|
67
|
-
export declare namespace
|
|
67
|
+
export declare namespace _T_Group {
|
|
68
68
|
namespace CONTEXT {
|
|
69
69
|
}
|
|
70
70
|
type CONTEXT = _i_in._T_Value;
|
|
@@ -75,9 +75,9 @@ export declare namespace _T_Line {
|
|
|
75
75
|
}
|
|
76
76
|
namespace RESULT {
|
|
77
77
|
}
|
|
78
|
-
type RESULT = _i_out.
|
|
78
|
+
type RESULT = _i_out._T_Group;
|
|
79
79
|
}
|
|
80
|
-
export declare namespace
|
|
80
|
+
export declare namespace _T_Group_Part {
|
|
81
81
|
namespace CONTEXT {
|
|
82
82
|
}
|
|
83
83
|
type CONTEXT = _i_in._T_Value;
|
|
@@ -88,7 +88,7 @@ export declare namespace _T_Line_Part {
|
|
|
88
88
|
}
|
|
89
89
|
namespace RESULT {
|
|
90
90
|
}
|
|
91
|
-
type RESULT = _i_out.
|
|
91
|
+
type RESULT = _i_out._T_Group_Part;
|
|
92
92
|
}
|
|
93
93
|
export declare namespace _T_Node {
|
|
94
94
|
namespace CONTEXT {
|
|
@@ -103,7 +103,7 @@ export declare namespace _T_Node {
|
|
|
103
103
|
}
|
|
104
104
|
type RESULT = _i_out._T_Node;
|
|
105
105
|
}
|
|
106
|
-
export declare namespace
|
|
106
|
+
export declare namespace Block {
|
|
107
107
|
namespace CONTEXT {
|
|
108
108
|
}
|
|
109
109
|
type CONTEXT = _i_in._T_Value;
|
|
@@ -114,9 +114,9 @@ export declare namespace Directory {
|
|
|
114
114
|
}
|
|
115
115
|
namespace RESULT {
|
|
116
116
|
}
|
|
117
|
-
type RESULT = _i_out.
|
|
117
|
+
type RESULT = _i_out._T_Block;
|
|
118
118
|
}
|
|
119
|
-
export declare namespace
|
|
119
|
+
export declare namespace Block_Part {
|
|
120
120
|
namespace CONTEXT {
|
|
121
121
|
}
|
|
122
122
|
type CONTEXT = _i_in._T_Value;
|
|
@@ -127,9 +127,9 @@ export declare namespace Group {
|
|
|
127
127
|
}
|
|
128
128
|
namespace RESULT {
|
|
129
129
|
}
|
|
130
|
-
type RESULT = _i_out.
|
|
130
|
+
type RESULT = _i_out._T_Block_Part;
|
|
131
131
|
}
|
|
132
|
-
export declare namespace
|
|
132
|
+
export declare namespace Directory {
|
|
133
133
|
namespace CONTEXT {
|
|
134
134
|
}
|
|
135
135
|
type CONTEXT = _i_in._T_Value;
|
|
@@ -140,9 +140,9 @@ export declare namespace Group_Part {
|
|
|
140
140
|
}
|
|
141
141
|
namespace RESULT {
|
|
142
142
|
}
|
|
143
|
-
type RESULT = _i_out.
|
|
143
|
+
type RESULT = _i_out._T_Directory;
|
|
144
144
|
}
|
|
145
|
-
export declare namespace
|
|
145
|
+
export declare namespace Group {
|
|
146
146
|
namespace CONTEXT {
|
|
147
147
|
}
|
|
148
148
|
type CONTEXT = _i_in._T_Value;
|
|
@@ -153,9 +153,9 @@ export declare namespace Line {
|
|
|
153
153
|
}
|
|
154
154
|
namespace RESULT {
|
|
155
155
|
}
|
|
156
|
-
type RESULT = _i_out.
|
|
156
|
+
type RESULT = _i_out._T_Group;
|
|
157
157
|
}
|
|
158
|
-
export declare namespace
|
|
158
|
+
export declare namespace Group_Part {
|
|
159
159
|
namespace CONTEXT {
|
|
160
160
|
}
|
|
161
161
|
type CONTEXT = _i_in._T_Value;
|
|
@@ -166,7 +166,7 @@ export declare namespace Line_Part {
|
|
|
166
166
|
}
|
|
167
167
|
namespace RESULT {
|
|
168
168
|
}
|
|
169
|
-
type RESULT = _i_out.
|
|
169
|
+
type RESULT = _i_out._T_Group_Part;
|
|
170
170
|
}
|
|
171
171
|
export declare namespace Node {
|
|
172
172
|
namespace CONTEXT {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _easync from 'exupery-core-async';
|
|
2
|
-
import * as _in from "
|
|
2
|
+
import * as _in from "../../generated/interface/schemas/block/data_types/target";
|
|
3
3
|
export type Parameters = {
|
|
4
4
|
'group': _in.Group;
|
|
5
5
|
'indentation': string;
|
|
@@ -24,8 +24,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.$$ = void 0;
|
|
27
|
-
const t_block_to_lines = __importStar(require("
|
|
28
|
-
const log_error_1 = require("exupery-resources/dist/procedures/log_error");
|
|
27
|
+
const t_block_to_lines = __importStar(require("../../transformations/block/lines"));
|
|
28
|
+
const log_error_1 = require("exupery-resources/dist/procedures/guaranteed/log_error");
|
|
29
29
|
const $$ = ($p) => {
|
|
30
30
|
return (0, log_error_1.$$)({
|
|
31
31
|
'lines': t_block_to_lines.Group($p.group, {
|
|
@@ -34,4 +34,4 @@ const $$ = ($p) => {
|
|
|
34
34
|
});
|
|
35
35
|
};
|
|
36
36
|
exports.$$ = $$;
|
|
37
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc29sZV9lcnJvci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9wcm9jZWR1cmVzL2d1YXJhbnRlZWQvY29uc29sZV9lcnJvci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUlBLG9GQUFxRTtBQUVyRSxzRkFBc0Y7QUFPL0UsTUFBTSxFQUFFLEdBQXlELENBQ3BFLEVBQUUsRUFDSixFQUFFO0lBQ0EsT0FBTyxJQUFBLGNBQU8sRUFBQztRQUNYLE9BQU8sRUFBRSxnQkFBZ0IsQ0FBQyxLQUFLLENBQzNCLEVBQUUsQ0FBQyxLQUFLLEVBQ1I7WUFDSSxhQUFhLEVBQUUsRUFBRSxDQUFDLFdBQVc7U0FDaEMsQ0FDSjtLQUNKLENBQUMsQ0FBQTtBQUNOLENBQUMsQ0FBQTtBQVhZLFFBQUEsRUFBRSxNQVdkIn0=
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _easync from 'exupery-core-async';
|
|
2
|
-
import * as _in from "
|
|
2
|
+
import * as _in from "../../generated/interface/schemas/block/data_types/target";
|
|
3
3
|
export type Parameters = {
|
|
4
4
|
'group': _in.Group;
|
|
5
5
|
'indentation': string;
|
|
@@ -24,8 +24,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.$$ = void 0;
|
|
27
|
-
const t_block_to_lines = __importStar(require("
|
|
28
|
-
const log_1 = require("exupery-resources/dist/procedures/log");
|
|
27
|
+
const t_block_to_lines = __importStar(require("../../transformations/block/lines"));
|
|
28
|
+
const log_1 = require("exupery-resources/dist/procedures/guaranteed/log");
|
|
29
29
|
const $$ = ($p) => {
|
|
30
30
|
return (0, log_1.$$)({
|
|
31
31
|
'lines': t_block_to_lines.Group($p.group, {
|
|
@@ -34,4 +34,4 @@ const $$ = ($p) => {
|
|
|
34
34
|
});
|
|
35
35
|
};
|
|
36
36
|
exports.$$ = $$;
|
|
37
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc29sZV9sb2cuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcHJvY2VkdXJlcy9ndWFyYW50ZWVkL2NvbnNvbGVfbG9nLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBSUEsb0ZBQXFFO0FBRXJFLDBFQUE4RTtBQU92RSxNQUFNLEVBQUUsR0FBeUQsQ0FDcEUsRUFBRSxFQUNKLEVBQUU7SUFDQSxPQUFPLElBQUEsUUFBSyxFQUFDO1FBQ1QsT0FBTyxFQUFFLGdCQUFnQixDQUFDLEtBQUssQ0FDM0IsRUFBRSxDQUFDLEtBQUssRUFDUjtZQUNJLGFBQWEsRUFBRSxFQUFFLENBQUMsV0FBVztTQUNoQyxDQUNKO0tBQ0osQ0FBQyxDQUFBO0FBQ04sQ0FBQyxDQUFBO0FBWFksUUFBQSxFQUFFLE1BV2QifQ==
|