pareto-fountain-pen 0.1.11 → 0.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (114) hide show
  1. package/dist/generated/implementation/generic/resolve.d.ts +41 -10
  2. package/dist/generated/implementation/generic/resolve.js +82 -67
  3. package/dist/generated/implementation/generic/unmarshall.d.ts +15 -10
  4. package/dist/generated/implementation/generic/unmarshall.js +132 -72
  5. package/dist/generated/implementation/schemas/block/marshall.d.ts +6 -5
  6. package/dist/generated/implementation/schemas/block/marshall.js +30 -36
  7. package/dist/generated/implementation/schemas/block/unmarshall.d.ts +1 -0
  8. package/dist/generated/implementation/schemas/block/unmarshall.js +49 -39
  9. package/dist/generated/implementation/schemas/lines/marshall.d.ts +2 -2
  10. package/dist/generated/implementation/schemas/lines/marshall.js +8 -18
  11. package/dist/generated/implementation/schemas/lines/unmarshall.js +17 -23
  12. package/dist/generated/implementation/schemas/semi_lines/marshall.d.ts +2 -2
  13. package/dist/generated/implementation/schemas/semi_lines/marshall.js +9 -19
  14. package/dist/generated/implementation/schemas/semi_lines/unmarshall.js +20 -24
  15. package/dist/generated/implementation/schemas/text/marshall.d.ts +2 -2
  16. package/dist/generated/implementation/schemas/text/marshall.js +8 -18
  17. package/dist/generated/implementation/schemas/text/unmarshall.js +17 -23
  18. package/dist/generated/interface/core/astn_source.d.ts +39 -33
  19. package/dist/generated/interface/core/astn_target.d.ts +15 -15
  20. package/dist/generated/interface/core/resolve.d.ts +6 -6
  21. package/dist/generated/interface/core/resolved.d.ts +46 -46
  22. package/dist/generated/interface/core/unconstrained.d.ts +10 -10
  23. package/dist/generated/interface/core/unresolved.d.ts +84 -87
  24. package/dist/generated/interface/schemas/block/{unconstrained.d.ts → data_types/unconstrained.d.ts} +28 -22
  25. package/dist/generated/interface/schemas/block/{unconstrained.js → data_types/unconstrained.js} +1 -1
  26. package/dist/generated/interface/schemas/block/marshall.d.ts +63 -76
  27. package/dist/generated/interface/schemas/block/migrate_boilerplate.d.ts +24 -2
  28. package/dist/generated/interface/schemas/block/unmarshall.d.ts +77 -6
  29. package/dist/generated/interface/schemas/block/value_deserializers.d.ts +44 -0
  30. package/dist/generated/interface/schemas/block/value_deserializers.js +3 -0
  31. package/dist/generated/interface/schemas/block/value_serializers.d.ts +44 -0
  32. package/dist/generated/interface/schemas/block/value_serializers.js +3 -0
  33. package/dist/generated/interface/schemas/lines/{unconstrained.d.ts → data_types/unconstrained.d.ts} +1 -1
  34. package/dist/generated/interface/schemas/{semi_lines → lines/data_types}/unconstrained.js +1 -1
  35. package/dist/generated/interface/schemas/lines/marshall.d.ts +16 -59
  36. package/dist/generated/interface/schemas/lines/migrate_boilerplate.d.ts +2 -2
  37. package/dist/generated/interface/schemas/lines/unmarshall.d.ts +20 -3
  38. package/dist/generated/interface/schemas/lines/value_deserializers.d.ts +44 -0
  39. package/dist/generated/interface/schemas/lines/value_deserializers.js +3 -0
  40. package/dist/generated/interface/schemas/lines/value_serializers.d.ts +44 -0
  41. package/dist/generated/interface/schemas/lines/value_serializers.js +3 -0
  42. package/dist/generated/interface/schemas/semi_lines/{unconstrained.d.ts → data_types/unconstrained.d.ts} +1 -1
  43. package/dist/generated/interface/schemas/{text → semi_lines/data_types}/unconstrained.js +1 -1
  44. package/dist/generated/interface/schemas/semi_lines/marshall.d.ts +16 -59
  45. package/dist/generated/interface/schemas/semi_lines/migrate_boilerplate.d.ts +2 -2
  46. package/dist/generated/interface/schemas/semi_lines/unmarshall.d.ts +20 -3
  47. package/dist/generated/interface/schemas/semi_lines/value_deserializers.d.ts +44 -0
  48. package/dist/generated/interface/schemas/semi_lines/value_deserializers.js +3 -0
  49. package/dist/generated/interface/schemas/semi_lines/value_serializers.d.ts +44 -0
  50. package/dist/generated/interface/schemas/semi_lines/value_serializers.js +3 -0
  51. package/dist/generated/interface/schemas/text/{unconstrained.d.ts → data_types/unconstrained.d.ts} +1 -1
  52. package/dist/generated/interface/schemas/{lines → text/data_types}/unconstrained.js +1 -1
  53. package/dist/generated/interface/schemas/text/marshall.d.ts +16 -59
  54. package/dist/generated/interface/schemas/text/migrate_boilerplate.d.ts +2 -2
  55. package/dist/generated/interface/schemas/text/unmarshall.d.ts +20 -3
  56. package/dist/generated/interface/schemas/text/value_deserializers.d.ts +44 -0
  57. package/dist/generated/interface/schemas/text/value_deserializers.js +3 -0
  58. package/dist/generated/interface/schemas/text/value_serializers.d.ts +44 -0
  59. package/dist/generated/interface/schemas/text/value_serializers.js +3 -0
  60. package/dist/index.js +8 -18
  61. package/dist/other/write_to_disk.d.ts +9 -1
  62. package/dist/other/write_to_disk.js +45 -38
  63. package/dist/serialize/block.d.ts +1 -1
  64. package/dist/serialize/block.js +8 -18
  65. package/dist/serialize/semi_lines.d.ts +2 -2
  66. package/dist/serialize/semi_lines.js +8 -18
  67. package/dist/shorthands/block.d.ts +1 -1
  68. package/dist/shorthands/block.js +8 -18
  69. package/dist/shorthands/lines.d.ts +1 -1
  70. package/dist/transformations/block/lines.d.ts +2 -2
  71. package/dist/transformations/block/lines.js +8 -18
  72. package/dist/transformations/block/semi_lines.d.ts +2 -2
  73. package/dist/transformations/block/semi_lines.js +8 -18
  74. package/dist/transformations/semi_lines/lines.d.ts +2 -2
  75. package/dist/transformations/semi_lines/lines.js +8 -18
  76. package/package.json +4 -4
  77. package/dist/generated/generic/resolve.d.ts +0 -90
  78. package/dist/generated/generic/resolve.js +0 -261
  79. package/dist/generated/implementation/schemas/block/migration_boilerplate.d.ts +0 -7
  80. package/dist/generated/implementation/schemas/block/migration_boilerplate.js +0 -65
  81. package/dist/generated/implementation/schemas/block/serializer.d.ts +0 -7
  82. package/dist/generated/implementation/schemas/block/serializer.js +0 -123
  83. package/dist/generated/implementation/schemas/lines/migration_boilerplate.d.ts +0 -3
  84. package/dist/generated/implementation/schemas/lines/migration_boilerplate.js +0 -38
  85. package/dist/generated/implementation/schemas/lines/serializer.d.ts +0 -3
  86. package/dist/generated/implementation/schemas/lines/serializer.js +0 -51
  87. package/dist/generated/implementation/schemas/semi_lines/migration_boilerplate.d.ts +0 -3
  88. package/dist/generated/implementation/schemas/semi_lines/migration_boilerplate.js +0 -41
  89. package/dist/generated/implementation/schemas/semi_lines/serializer.d.ts +0 -3
  90. package/dist/generated/implementation/schemas/semi_lines/serializer.js +0 -57
  91. package/dist/generated/implementation/schemas/text/migration_boilerplate.d.ts +0 -3
  92. package/dist/generated/implementation/schemas/text/migration_boilerplate.js +0 -38
  93. package/dist/generated/implementation/schemas/text/serializer.d.ts +0 -3
  94. package/dist/generated/implementation/schemas/text/serializer.js +0 -51
  95. package/dist/generated/interface/core/poormans_parser.d.ts +0 -184
  96. package/dist/generated/interface/core/poormans_parser.js +0 -3
  97. package/dist/generated/interface/generic/resolve.d.ts +0 -11
  98. package/dist/generated/interface/generic/resolve.js +0 -3
  99. package/dist/generated/interface/schemas/block/migration_boilerplate.d.ts +0 -134
  100. package/dist/generated/interface/schemas/block/migration_boilerplate.js +0 -3
  101. package/dist/generated/interface/schemas/block/serializer.d.ts +0 -226
  102. package/dist/generated/interface/schemas/block/serializer.js +0 -3
  103. package/dist/generated/interface/schemas/lines/migration_boilerplate.d.ts +0 -46
  104. package/dist/generated/interface/schemas/lines/migration_boilerplate.js +0 -3
  105. package/dist/generated/interface/schemas/lines/serializer.d.ts +0 -106
  106. package/dist/generated/interface/schemas/lines/serializer.js +0 -3
  107. package/dist/generated/interface/schemas/semi_lines/migration_boilerplate.d.ts +0 -46
  108. package/dist/generated/interface/schemas/semi_lines/migration_boilerplate.js +0 -3
  109. package/dist/generated/interface/schemas/semi_lines/serializer.d.ts +0 -106
  110. package/dist/generated/interface/schemas/semi_lines/serializer.js +0 -3
  111. package/dist/generated/interface/schemas/text/migration_boilerplate.d.ts +0 -46
  112. package/dist/generated/interface/schemas/text/migration_boilerplate.js +0 -3
  113. package/dist/generated/interface/schemas/text/serializer.d.ts +0 -106
  114. package/dist/generated/interface/schemas/text/serializer.js +0 -3
@@ -1,194 +1,181 @@
1
- import * as _i_in from "./unconstrained";
1
+ import * as _i_in from "./data_types/unconstrained";
2
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_Block = ($$_: _i_in._T_Block, $$_p: {
9
- readonly 'value serializers': _T_Value_Serializers;
3
+ import * as _i_vs from "./value_serializers";
4
+ export type _T_Block = ($$_: _i_in._T_Block, $$_p: {
5
+ readonly 'value serializers': _i_vs._T_Value_Serializers;
10
6
  }) => _i_out._T_Value;
11
- export type _T_s_Block_Part = ($$_: _i_in._T_Block_Part, $$_p: {
12
- readonly 'value serializers': _T_Value_Serializers;
7
+ export type _T_Block_Part = ($$_: _i_in._T_Block_Part, $$_p: {
8
+ readonly 'value serializers': _i_vs._T_Value_Serializers;
13
9
  }) => _i_out._T_Value;
14
- export type _T_s_Directory = ($$_: _i_in._T_Directory, $$_p: {
15
- readonly 'value serializers': _T_Value_Serializers;
10
+ export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: {
11
+ readonly 'value serializers': _i_vs._T_Value_Serializers;
16
12
  }) => _i_out._T_Value;
17
- export type _T_s_Line = ($$_: _i_in._T_Line, $$_p: {
18
- readonly 'value serializers': _T_Value_Serializers;
13
+ export type _T_Line = ($$_: _i_in._T_Line, $$_p: {
14
+ readonly 'value serializers': _i_vs._T_Value_Serializers;
19
15
  }) => _i_out._T_Value;
20
- export type _T_s_Line_Part = ($$_: _i_in._T_Line_Part, $$_p: {
21
- readonly 'value serializers': _T_Value_Serializers;
16
+ export type _T_Line_Part = ($$_: _i_in._T_Line_Part, $$_p: {
17
+ readonly 'value serializers': _i_vs._T_Value_Serializers;
22
18
  }) => _i_out._T_Value;
23
- export type Value_Serializers = _T_Value_Serializers;
24
- export type s_Block = _T_s_Block;
25
- export type s_Block_Part = _T_s_Block_Part;
26
- export type s_Directory = _T_s_Directory;
27
- export type s_Line = _T_s_Line;
28
- export type s_Line_Part = _T_s_Line_Part;
29
- export declare namespace _T_Value_Serializers {
30
- namespace _boolean {
31
- type CONTEXT = boolean;
32
- namespace PARAMS {
33
- }
34
- type RESULT = string;
35
- }
36
- type _boolean = ($$_: boolean, $$_p: null) => string;
37
- namespace custom_numbers {
38
- }
39
- type custom_numbers = null;
40
- namespace default_number {
41
- type CONTEXT = number;
42
- namespace PARAMS {
43
- }
44
- type RESULT = string;
45
- }
46
- type default_number = ($$_: number, $$_p: null) => string;
47
- }
48
- export declare namespace _T_s_Block {
19
+ export type _T_Node = ($$_: _i_in._T_Node, $$_p: {
20
+ readonly 'value serializers': _i_vs._T_Value_Serializers;
21
+ }) => _i_out._T_Value;
22
+ export type Block = _T_Block;
23
+ export type Block_Part = _T_Block_Part;
24
+ export type Directory = _T_Directory;
25
+ export type Line = _T_Line;
26
+ export type Line_Part = _T_Line_Part;
27
+ export type Node = _T_Node;
28
+ export declare namespace _T_Block {
49
29
  namespace CONTEXT {
50
30
  }
51
31
  type CONTEXT = _i_in._T_Block;
52
32
  namespace PARAMS {
53
33
  namespace value_serializers {
54
34
  }
55
- type value_serializers = _T_Value_Serializers;
35
+ type value_serializers = _i_vs._T_Value_Serializers;
56
36
  }
57
37
  namespace RESULT {
58
38
  }
59
39
  type RESULT = _i_out._T_Value;
60
40
  }
61
- export declare namespace _T_s_Block_Part {
41
+ export declare namespace _T_Block_Part {
62
42
  namespace CONTEXT {
63
43
  }
64
44
  type CONTEXT = _i_in._T_Block_Part;
65
45
  namespace PARAMS {
66
46
  namespace value_serializers {
67
47
  }
68
- type value_serializers = _T_Value_Serializers;
48
+ type value_serializers = _i_vs._T_Value_Serializers;
69
49
  }
70
50
  namespace RESULT {
71
51
  }
72
52
  type RESULT = _i_out._T_Value;
73
53
  }
74
- export declare namespace _T_s_Directory {
54
+ export declare namespace _T_Directory {
75
55
  namespace CONTEXT {
76
56
  }
77
57
  type CONTEXT = _i_in._T_Directory;
78
58
  namespace PARAMS {
79
59
  namespace value_serializers {
80
60
  }
81
- type value_serializers = _T_Value_Serializers;
61
+ type value_serializers = _i_vs._T_Value_Serializers;
82
62
  }
83
63
  namespace RESULT {
84
64
  }
85
65
  type RESULT = _i_out._T_Value;
86
66
  }
87
- export declare namespace _T_s_Line {
67
+ export declare namespace _T_Line {
88
68
  namespace CONTEXT {
89
69
  }
90
70
  type CONTEXT = _i_in._T_Line;
91
71
  namespace PARAMS {
92
72
  namespace value_serializers {
93
73
  }
94
- type value_serializers = _T_Value_Serializers;
74
+ type value_serializers = _i_vs._T_Value_Serializers;
95
75
  }
96
76
  namespace RESULT {
97
77
  }
98
78
  type RESULT = _i_out._T_Value;
99
79
  }
100
- export declare namespace _T_s_Line_Part {
80
+ export declare namespace _T_Line_Part {
101
81
  namespace CONTEXT {
102
82
  }
103
83
  type CONTEXT = _i_in._T_Line_Part;
104
84
  namespace PARAMS {
105
85
  namespace value_serializers {
106
86
  }
107
- type value_serializers = _T_Value_Serializers;
87
+ type value_serializers = _i_vs._T_Value_Serializers;
108
88
  }
109
89
  namespace RESULT {
110
90
  }
111
91
  type RESULT = _i_out._T_Value;
112
92
  }
113
- export declare namespace Value_Serializers {
114
- namespace _boolean {
115
- type CONTEXT = boolean;
116
- namespace PARAMS {
117
- }
118
- type RESULT = string;
119
- }
120
- type _boolean = ($$_: boolean, $$_p: null) => string;
121
- namespace custom_numbers {
93
+ export declare namespace _T_Node {
94
+ namespace CONTEXT {
122
95
  }
123
- type custom_numbers = null;
124
- namespace default_number {
125
- type CONTEXT = number;
126
- namespace PARAMS {
96
+ type CONTEXT = _i_in._T_Node;
97
+ namespace PARAMS {
98
+ namespace value_serializers {
127
99
  }
128
- type RESULT = string;
100
+ type value_serializers = _i_vs._T_Value_Serializers;
129
101
  }
130
- type default_number = ($$_: number, $$_p: null) => string;
102
+ namespace RESULT {
103
+ }
104
+ type RESULT = _i_out._T_Value;
131
105
  }
132
- export declare namespace s_Block {
106
+ export declare namespace Block {
133
107
  namespace CONTEXT {
134
108
  }
135
109
  type CONTEXT = _i_in._T_Block;
136
110
  namespace PARAMS {
137
111
  namespace value_serializers {
138
112
  }
139
- type value_serializers = _T_Value_Serializers;
113
+ type value_serializers = _i_vs._T_Value_Serializers;
140
114
  }
141
115
  namespace RESULT {
142
116
  }
143
117
  type RESULT = _i_out._T_Value;
144
118
  }
145
- export declare namespace s_Block_Part {
119
+ export declare namespace Block_Part {
146
120
  namespace CONTEXT {
147
121
  }
148
122
  type CONTEXT = _i_in._T_Block_Part;
149
123
  namespace PARAMS {
150
124
  namespace value_serializers {
151
125
  }
152
- type value_serializers = _T_Value_Serializers;
126
+ type value_serializers = _i_vs._T_Value_Serializers;
153
127
  }
154
128
  namespace RESULT {
155
129
  }
156
130
  type RESULT = _i_out._T_Value;
157
131
  }
158
- export declare namespace s_Directory {
132
+ export declare namespace Directory {
159
133
  namespace CONTEXT {
160
134
  }
161
135
  type CONTEXT = _i_in._T_Directory;
162
136
  namespace PARAMS {
163
137
  namespace value_serializers {
164
138
  }
165
- type value_serializers = _T_Value_Serializers;
139
+ type value_serializers = _i_vs._T_Value_Serializers;
166
140
  }
167
141
  namespace RESULT {
168
142
  }
169
143
  type RESULT = _i_out._T_Value;
170
144
  }
171
- export declare namespace s_Line {
145
+ export declare namespace Line {
172
146
  namespace CONTEXT {
173
147
  }
174
148
  type CONTEXT = _i_in._T_Line;
175
149
  namespace PARAMS {
176
150
  namespace value_serializers {
177
151
  }
178
- type value_serializers = _T_Value_Serializers;
152
+ type value_serializers = _i_vs._T_Value_Serializers;
179
153
  }
180
154
  namespace RESULT {
181
155
  }
182
156
  type RESULT = _i_out._T_Value;
183
157
  }
184
- export declare namespace s_Line_Part {
158
+ export declare namespace Line_Part {
185
159
  namespace CONTEXT {
186
160
  }
187
161
  type CONTEXT = _i_in._T_Line_Part;
188
162
  namespace PARAMS {
189
163
  namespace value_serializers {
190
164
  }
191
- type value_serializers = _T_Value_Serializers;
165
+ type value_serializers = _i_vs._T_Value_Serializers;
166
+ }
167
+ namespace RESULT {
168
+ }
169
+ type RESULT = _i_out._T_Value;
170
+ }
171
+ export declare namespace Node {
172
+ namespace CONTEXT {
173
+ }
174
+ type CONTEXT = _i_in._T_Node;
175
+ namespace PARAMS {
176
+ namespace value_serializers {
177
+ }
178
+ type value_serializers = _i_vs._T_Value_Serializers;
192
179
  }
193
180
  namespace RESULT {
194
181
  }
@@ -1,15 +1,17 @@
1
- import * as _i_in from "./unconstrained";
2
- import * as _i_out from "./unconstrained";
1
+ import * as _i_in from "./data_types/unconstrained";
2
+ import * as _i_out from "./data_types/unconstrained";
3
3
  export type _T_Block = ($$_: _i_in._T_Block, $$_p: null) => _i_out._T_Block;
4
4
  export type _T_Block_Part = ($$_: _i_in._T_Block_Part, $$_p: null) => _i_out._T_Block_Part;
5
5
  export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: null) => _i_out._T_Directory;
6
6
  export type _T_Line = ($$_: _i_in._T_Line, $$_p: null) => _i_out._T_Line;
7
7
  export type _T_Line_Part = ($$_: _i_in._T_Line_Part, $$_p: null) => _i_out._T_Line_Part;
8
+ export type _T_Node = ($$_: _i_in._T_Node, $$_p: null) => _i_out._T_Node;
8
9
  export type Block = _T_Block;
9
10
  export type Block_Part = _T_Block_Part;
10
11
  export type Directory = _T_Directory;
11
12
  export type Line = _T_Line;
12
13
  export type Line_Part = _T_Line_Part;
14
+ export type Node = _T_Node;
13
15
  export declare namespace _T_Block {
14
16
  namespace CONTEXT {
15
17
  }
@@ -60,6 +62,16 @@ export declare namespace _T_Line_Part {
60
62
  }
61
63
  type RESULT = _i_out._T_Line_Part;
62
64
  }
65
+ export declare namespace _T_Node {
66
+ namespace CONTEXT {
67
+ }
68
+ type CONTEXT = _i_in._T_Node;
69
+ namespace PARAMS {
70
+ }
71
+ namespace RESULT {
72
+ }
73
+ type RESULT = _i_out._T_Node;
74
+ }
63
75
  export declare namespace Block {
64
76
  namespace CONTEXT {
65
77
  }
@@ -110,3 +122,13 @@ export declare namespace Line_Part {
110
122
  }
111
123
  type RESULT = _i_out._T_Line_Part;
112
124
  }
125
+ export declare namespace Node {
126
+ namespace CONTEXT {
127
+ }
128
+ type CONTEXT = _i_in._T_Node;
129
+ namespace PARAMS {
130
+ }
131
+ namespace RESULT {
132
+ }
133
+ type RESULT = _i_out._T_Node;
134
+ }
@@ -1,20 +1,38 @@
1
1
  import * as _i_in from "../../core/astn_source";
2
- import * as _i_out from "./unconstrained";
3
- export type _T_Block = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Block;
4
- export type _T_Block_Part = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Block_Part;
5
- export type _T_Directory = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Directory;
6
- export type _T_Line = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Line;
7
- export type _T_Line_Part = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Line_Part;
2
+ import * as _i_out from "./data_types/unconstrained";
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;
10
+ export type _T_Directory = ($$_: _i_in._T_Value, $$_p: {
11
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
12
+ }) => _i_out._T_Directory;
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
+ export type _T_Node = ($$_: _i_in._T_Value, $$_p: {
20
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
21
+ }) => _i_out._T_Node;
8
22
  export type Block = _T_Block;
9
23
  export type Block_Part = _T_Block_Part;
10
24
  export type Directory = _T_Directory;
11
25
  export type Line = _T_Line;
12
26
  export type Line_Part = _T_Line_Part;
27
+ export type Node = _T_Node;
13
28
  export declare namespace _T_Block {
14
29
  namespace CONTEXT {
15
30
  }
16
31
  type CONTEXT = _i_in._T_Value;
17
32
  namespace PARAMS {
33
+ namespace value_deserializers {
34
+ }
35
+ type value_deserializers = _i_vd._T_Value_Deserializers;
18
36
  }
19
37
  namespace RESULT {
20
38
  }
@@ -25,6 +43,9 @@ export declare namespace _T_Block_Part {
25
43
  }
26
44
  type CONTEXT = _i_in._T_Value;
27
45
  namespace PARAMS {
46
+ namespace value_deserializers {
47
+ }
48
+ type value_deserializers = _i_vd._T_Value_Deserializers;
28
49
  }
29
50
  namespace RESULT {
30
51
  }
@@ -35,6 +56,9 @@ export declare namespace _T_Directory {
35
56
  }
36
57
  type CONTEXT = _i_in._T_Value;
37
58
  namespace PARAMS {
59
+ namespace value_deserializers {
60
+ }
61
+ type value_deserializers = _i_vd._T_Value_Deserializers;
38
62
  }
39
63
  namespace RESULT {
40
64
  }
@@ -45,6 +69,9 @@ export declare namespace _T_Line {
45
69
  }
46
70
  type CONTEXT = _i_in._T_Value;
47
71
  namespace PARAMS {
72
+ namespace value_deserializers {
73
+ }
74
+ type value_deserializers = _i_vd._T_Value_Deserializers;
48
75
  }
49
76
  namespace RESULT {
50
77
  }
@@ -55,16 +82,35 @@ export declare namespace _T_Line_Part {
55
82
  }
56
83
  type CONTEXT = _i_in._T_Value;
57
84
  namespace PARAMS {
85
+ namespace value_deserializers {
86
+ }
87
+ type value_deserializers = _i_vd._T_Value_Deserializers;
58
88
  }
59
89
  namespace RESULT {
60
90
  }
61
91
  type RESULT = _i_out._T_Line_Part;
62
92
  }
93
+ export declare namespace _T_Node {
94
+ namespace CONTEXT {
95
+ }
96
+ type CONTEXT = _i_in._T_Value;
97
+ namespace PARAMS {
98
+ namespace value_deserializers {
99
+ }
100
+ type value_deserializers = _i_vd._T_Value_Deserializers;
101
+ }
102
+ namespace RESULT {
103
+ }
104
+ type RESULT = _i_out._T_Node;
105
+ }
63
106
  export declare namespace Block {
64
107
  namespace CONTEXT {
65
108
  }
66
109
  type CONTEXT = _i_in._T_Value;
67
110
  namespace PARAMS {
111
+ namespace value_deserializers {
112
+ }
113
+ type value_deserializers = _i_vd._T_Value_Deserializers;
68
114
  }
69
115
  namespace RESULT {
70
116
  }
@@ -75,6 +121,9 @@ export declare namespace Block_Part {
75
121
  }
76
122
  type CONTEXT = _i_in._T_Value;
77
123
  namespace PARAMS {
124
+ namespace value_deserializers {
125
+ }
126
+ type value_deserializers = _i_vd._T_Value_Deserializers;
78
127
  }
79
128
  namespace RESULT {
80
129
  }
@@ -85,6 +134,9 @@ export declare namespace Directory {
85
134
  }
86
135
  type CONTEXT = _i_in._T_Value;
87
136
  namespace PARAMS {
137
+ namespace value_deserializers {
138
+ }
139
+ type value_deserializers = _i_vd._T_Value_Deserializers;
88
140
  }
89
141
  namespace RESULT {
90
142
  }
@@ -95,6 +147,9 @@ export declare namespace Line {
95
147
  }
96
148
  type CONTEXT = _i_in._T_Value;
97
149
  namespace PARAMS {
150
+ namespace value_deserializers {
151
+ }
152
+ type value_deserializers = _i_vd._T_Value_Deserializers;
98
153
  }
99
154
  namespace RESULT {
100
155
  }
@@ -105,8 +160,24 @@ export declare namespace Line_Part {
105
160
  }
106
161
  type CONTEXT = _i_in._T_Value;
107
162
  namespace PARAMS {
163
+ namespace value_deserializers {
164
+ }
165
+ type value_deserializers = _i_vd._T_Value_Deserializers;
108
166
  }
109
167
  namespace RESULT {
110
168
  }
111
169
  type RESULT = _i_out._T_Line_Part;
112
170
  }
171
+ export declare namespace Node {
172
+ namespace CONTEXT {
173
+ }
174
+ type CONTEXT = _i_in._T_Value;
175
+ namespace PARAMS {
176
+ namespace value_deserializers {
177
+ }
178
+ type value_deserializers = _i_vd._T_Value_Deserializers;
179
+ }
180
+ namespace RESULT {
181
+ }
182
+ type RESULT = _i_out._T_Node;
183
+ }
@@ -0,0 +1,44 @@
1
+ export type _T_Value_Deserializers = {
2
+ readonly 'boolean': ($$_: string, $$_p: null) => boolean;
3
+ readonly 'custom numbers': null;
4
+ readonly 'default number': ($$_: string, $$_p: null) => number;
5
+ };
6
+ export type Value_Deserializers = _T_Value_Deserializers;
7
+ export declare namespace _T_Value_Deserializers {
8
+ namespace _boolean {
9
+ type CONTEXT = string;
10
+ namespace PARAMS {
11
+ }
12
+ type RESULT = boolean;
13
+ }
14
+ type _boolean = ($$_: string, $$_p: null) => boolean;
15
+ namespace custom_numbers {
16
+ }
17
+ type custom_numbers = null;
18
+ namespace default_number {
19
+ type CONTEXT = string;
20
+ namespace PARAMS {
21
+ }
22
+ type RESULT = number;
23
+ }
24
+ type default_number = ($$_: string, $$_p: null) => number;
25
+ }
26
+ export declare namespace Value_Deserializers {
27
+ namespace _boolean {
28
+ type CONTEXT = string;
29
+ namespace PARAMS {
30
+ }
31
+ type RESULT = boolean;
32
+ }
33
+ type _boolean = ($$_: string, $$_p: null) => boolean;
34
+ namespace custom_numbers {
35
+ }
36
+ type custom_numbers = null;
37
+ namespace default_number {
38
+ type CONTEXT = string;
39
+ namespace PARAMS {
40
+ }
41
+ type RESULT = number;
42
+ }
43
+ type default_number = ($$_: string, $$_p: null) => number;
44
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsdWVfZGVzZXJpYWxpemVycy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvYmxvY2svdmFsdWVfZGVzZXJpYWxpemVycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,44 @@
1
+ export type _T_Value_Serializers = {
2
+ readonly 'boolean': ($$_: boolean, $$_p: null) => string;
3
+ readonly 'custom numbers': null;
4
+ readonly 'default number': ($$_: number, $$_p: null) => string;
5
+ };
6
+ export type Value_Serializers = _T_Value_Serializers;
7
+ export declare namespace _T_Value_Serializers {
8
+ namespace _boolean {
9
+ type CONTEXT = boolean;
10
+ namespace PARAMS {
11
+ }
12
+ type RESULT = string;
13
+ }
14
+ type _boolean = ($$_: boolean, $$_p: null) => string;
15
+ namespace custom_numbers {
16
+ }
17
+ type custom_numbers = null;
18
+ namespace default_number {
19
+ type CONTEXT = number;
20
+ namespace PARAMS {
21
+ }
22
+ type RESULT = string;
23
+ }
24
+ type default_number = ($$_: number, $$_p: null) => string;
25
+ }
26
+ export declare namespace Value_Serializers {
27
+ namespace _boolean {
28
+ type CONTEXT = boolean;
29
+ namespace PARAMS {
30
+ }
31
+ type RESULT = string;
32
+ }
33
+ type _boolean = ($$_: boolean, $$_p: null) => string;
34
+ namespace custom_numbers {
35
+ }
36
+ type custom_numbers = null;
37
+ namespace default_number {
38
+ type CONTEXT = number;
39
+ namespace PARAMS {
40
+ }
41
+ type RESULT = string;
42
+ }
43
+ type default_number = ($$_: number, $$_p: null) => string;
44
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsdWVfc2VyaWFsaXplcnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvZ2VuZXJhdGVkL2ludGVyZmFjZS9zY2hlbWFzL2Jsb2NrL3ZhbHVlX3NlcmlhbGl6ZXJzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
@@ -1,4 +1,4 @@
1
- import * as _i_core from "../../core/unconstrained";
1
+ import * as _i_core from "../../../core/unconstrained";
2
2
  export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>>;
3
3
  export type _T_Lines = _i_core._T_List<null, string>;
4
4
  export type Directory = _T_Directory;
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5jb25zdHJhaW5lZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvc2VtaV9saW5lcy91bmNvbnN0cmFpbmVkLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5jb25zdHJhaW5lZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvbGluZXMvZGF0YV90eXBlcy91bmNvbnN0cmFpbmVkLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==