astn 0.110.19 → 0.110.21
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/bin/convert_to_json.js +10 -20
- package/dist/bin/validate_astn.js +9 -19
- package/dist/generated/{generic → implementation/generic}/resolve.d.ts +17 -26
- package/dist/generated/implementation/generic/resolve.js +251 -0
- package/dist/generated/implementation/generic/unmarshall.d.ts +37 -0
- package/dist/generated/implementation/generic/unmarshall.js +168 -0
- package/dist/generated/implementation/schemas/ast/marshall.d.ts +7 -0
- package/dist/generated/implementation/schemas/ast/marshall.js +227 -0
- package/dist/generated/implementation/schemas/ast/unmarshall.d.ts +7 -0
- package/dist/generated/implementation/schemas/ast/unmarshall.js +239 -0
- package/dist/generated/implementation/schemas/ide/marshall.d.ts +4 -0
- package/dist/generated/implementation/schemas/ide/marshall.js +81 -0
- package/dist/generated/implementation/schemas/ide/{migration_boilerplate.d.ts → unmarshall.d.ts} +2 -1
- package/dist/generated/implementation/schemas/ide/unmarshall.js +79 -0
- package/dist/generated/implementation/schemas/parse_result/marshall.d.ts +3 -0
- package/dist/generated/implementation/schemas/parse_result/marshall.js +184 -0
- package/dist/generated/implementation/schemas/parse_result/unmarshall.d.ts +3 -0
- package/dist/generated/implementation/schemas/parse_result/unmarshall.js +103 -0
- package/dist/generated/implementation/schemas/target/marshall.d.ts +3 -0
- package/dist/generated/implementation/schemas/target/marshall.js +122 -0
- package/dist/generated/implementation/schemas/target/{migration_boilerplate.d.ts → unmarshall.d.ts} +1 -1
- package/dist/generated/implementation/schemas/target/unmarshall.js +81 -0
- package/dist/generated/implementation/schemas/token/marshall.d.ts +11 -0
- package/dist/generated/implementation/schemas/token/marshall.js +230 -0
- package/dist/generated/implementation/schemas/token/unmarshall.d.ts +11 -0
- package/dist/generated/implementation/schemas/token/unmarshall.js +180 -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/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/core/unconstrained.d.ts +19 -0
- package/dist/generated/interface/core/unconstrained.js +3 -0
- package/dist/generated/interface/core/unresolved.d.ts +162 -13
- package/dist/generated/interface/schemas/ast/marshall.d.ts +226 -0
- package/dist/generated/interface/schemas/ast/marshall.js +3 -0
- package/dist/generated/interface/schemas/ast/migrate_boilerplate.d.ts +134 -0
- package/dist/generated/interface/schemas/ast/migrate_boilerplate.js +3 -0
- package/dist/generated/interface/schemas/ast/unconstrained.d.ts +20 -210
- package/dist/generated/interface/schemas/ast/unmarshall.d.ts +134 -0
- package/dist/generated/interface/schemas/ast/unmarshall.js +3 -0
- package/dist/generated/interface/schemas/ide/marshall.d.ts +136 -0
- package/dist/generated/interface/schemas/ide/marshall.js +3 -0
- package/dist/generated/interface/schemas/ide/{migration_boilerplate.d.ts → migrate_boilerplate.d.ts} +22 -0
- package/dist/generated/interface/schemas/ide/migrate_boilerplate.js +3 -0
- package/dist/generated/interface/schemas/ide/unconstrained.d.ts +50 -29
- package/dist/generated/interface/schemas/ide/unmarshall.d.ts +68 -0
- package/dist/generated/interface/schemas/ide/unmarshall.js +3 -0
- package/dist/generated/interface/schemas/parse_result/marshall.d.ts +106 -0
- package/dist/generated/interface/schemas/parse_result/marshall.js +3 -0
- package/dist/generated/interface/schemas/parse_result/migrate_boilerplate.d.ts +46 -0
- package/dist/generated/interface/schemas/parse_result/migrate_boilerplate.js +3 -0
- package/dist/generated/interface/schemas/parse_result/unconstrained.d.ts +20 -168
- package/dist/generated/interface/schemas/parse_result/unmarshall.d.ts +46 -0
- package/dist/generated/interface/schemas/parse_result/unmarshall.js +3 -0
- package/dist/generated/interface/schemas/target/marshall.d.ts +126 -0
- package/dist/generated/interface/schemas/target/marshall.js +3 -0
- package/dist/generated/interface/schemas/target/migrate_boilerplate.js +3 -0
- package/dist/generated/interface/schemas/target/unconstrained.d.ts +1 -1
- package/dist/generated/interface/schemas/{target_json/migration_boilerplate.d.ts → target/unmarshall.d.ts} +4 -4
- package/dist/generated/interface/schemas/target/unmarshall.js +3 -0
- package/dist/generated/interface/schemas/token/marshall.d.ts +346 -0
- package/dist/generated/interface/schemas/token/marshall.js +3 -0
- package/dist/generated/interface/schemas/{ast/migration_boilerplate.d.ts → token/migrate_boilerplate.d.ts} +38 -104
- package/dist/generated/interface/schemas/token/migrate_boilerplate.js +3 -0
- package/dist/generated/interface/schemas/token/unconstrained.d.ts +326 -0
- package/dist/generated/interface/schemas/{target_json → token}/unconstrained.js +1 -1
- package/dist/generated/interface/schemas/token/unmarshall.d.ts +222 -0
- package/dist/generated/interface/schemas/token/unmarshall.js +3 -0
- package/dist/parse/ast.d.ts +10 -0
- package/dist/parse/ast.js +227 -0
- package/dist/parse/astn_parse_generic.d.ts +8 -0
- package/dist/parse/astn_parse_generic.js +65 -0
- package/dist/parse/parse.d.ts +3 -10
- package/dist/parse/parse.js +19 -226
- package/dist/parse/string_iterator.d.ts +47 -0
- package/dist/parse/string_iterator.js +139 -0
- package/dist/parse/token.d.ts +9 -0
- package/dist/parse/token.js +506 -0
- package/dist/serializers/parse_result.js +8 -18
- package/dist/transformations/ast/ide.d.ts +3 -2
- package/dist/transformations/ast/ide.js +8 -18
- package/dist/transformations/ast/json_target.d.ts +1 -1
- package/dist/transformations/ast/json_target.js +8 -18
- package/dist/transformations/target/fountain_pen_block.js +10 -20
- package/package.json +5 -7
- package/dist/generated/generic/resolve.js +0 -259
- package/dist/generated/implementation/schemas/ast/migration_boilerplate.d.ts +0 -14
- package/dist/generated/implementation/schemas/ast/migration_boilerplate.js +0 -179
- package/dist/generated/implementation/schemas/ide/migration_boilerplate.js +0 -58
- package/dist/generated/implementation/schemas/parse_result/migration_boilerplate.d.ts +0 -6
- package/dist/generated/implementation/schemas/parse_result/migration_boilerplate.js +0 -136
- package/dist/generated/implementation/schemas/target/migration_boilerplate.js +0 -73
- package/dist/generated/implementation/schemas/target_json/migration_boilerplate.d.ts +0 -3
- package/dist/generated/implementation/schemas/target_json/migration_boilerplate.js +0 -67
- package/dist/generated/interface/core/poormans_parser.d.ts +0 -184
- package/dist/generated/interface/core/poormans_parser.js +0 -3
- package/dist/generated/interface/schemas/ast/migration_boilerplate.js +0 -3
- package/dist/generated/interface/schemas/ide/migration_boilerplate.js +0 -3
- package/dist/generated/interface/schemas/parse_result/migration_boilerplate.d.ts +0 -112
- package/dist/generated/interface/schemas/parse_result/migration_boilerplate.js +0 -3
- package/dist/generated/interface/schemas/target/migration_boilerplate.js +0 -3
- package/dist/generated/interface/schemas/target_json/migration_boilerplate.js +0 -3
- package/dist/generated/interface/schemas/target_json/unconstrained.d.ts +0 -169
- package/dist/index.d.ts +0 -6
- package/dist/index.js +0 -43
- package/dist/parse/parse_generic.d.ts +0 -43
- package/dist/parse/parse_generic.js +0 -656
- package/dist/serializers/json.d.ts +0 -5
- package/dist/serializers/json.js +0 -46
- package/dist/transformations/target_json/fountain_pen_block.d.ts +0 -4
- package/dist/transformations/target_json/fountain_pen_block.js +0 -101
- /package/dist/generated/interface/schemas/target/{migration_boilerplate.d.ts → migrate_boilerplate.d.ts} +0 -0
|
@@ -0,0 +1,346 @@
|
|
|
1
|
+
import * as _i_in from "./unconstrained";
|
|
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_Annotated_Token = ($$_: _i_in._T_Annotated_Token, $$_p: {
|
|
9
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
10
|
+
}) => _i_out._T_Value;
|
|
11
|
+
export type _T_s_Delimited_String = ($$_: _i_in._T_Delimited_String, $$_p: {
|
|
12
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
13
|
+
}) => _i_out._T_Value;
|
|
14
|
+
export type _T_s_Location = ($$_: _i_in._T_Location, $$_p: {
|
|
15
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
16
|
+
}) => _i_out._T_Value;
|
|
17
|
+
export type _T_s_Range = ($$_: _i_in._T_Range, $$_p: {
|
|
18
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
19
|
+
}) => _i_out._T_Value;
|
|
20
|
+
export type _T_s_Relative_Location = ($$_: _i_in._T_Relative_Location, $$_p: {
|
|
21
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
22
|
+
}) => _i_out._T_Value;
|
|
23
|
+
export type _T_s_String_Type = ($$_: _i_in._T_String_Type, $$_p: {
|
|
24
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
25
|
+
}) => _i_out._T_Value;
|
|
26
|
+
export type _T_s_Token_Type = ($$_: _i_in._T_Token_Type, $$_p: {
|
|
27
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
28
|
+
}) => _i_out._T_Value;
|
|
29
|
+
export type _T_s_Tokenizer_Result = ($$_: _i_in._T_Tokenizer_Result, $$_p: {
|
|
30
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
31
|
+
}) => _i_out._T_Value;
|
|
32
|
+
export type _T_s_Trivia = ($$_: _i_in._T_Trivia, $$_p: {
|
|
33
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
34
|
+
}) => _i_out._T_Value;
|
|
35
|
+
export type _T_s_Whitespace = ($$_: _i_in._T_Whitespace, $$_p: {
|
|
36
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
37
|
+
}) => _i_out._T_Value;
|
|
38
|
+
export type Value_Serializers = _T_Value_Serializers;
|
|
39
|
+
export type s_Annotated_Token = _T_s_Annotated_Token;
|
|
40
|
+
export type s_Delimited_String = _T_s_Delimited_String;
|
|
41
|
+
export type s_Location = _T_s_Location;
|
|
42
|
+
export type s_Range = _T_s_Range;
|
|
43
|
+
export type s_Relative_Location = _T_s_Relative_Location;
|
|
44
|
+
export type s_String_Type = _T_s_String_Type;
|
|
45
|
+
export type s_Token_Type = _T_s_Token_Type;
|
|
46
|
+
export type s_Tokenizer_Result = _T_s_Tokenizer_Result;
|
|
47
|
+
export type s_Trivia = _T_s_Trivia;
|
|
48
|
+
export type s_Whitespace = _T_s_Whitespace;
|
|
49
|
+
export declare namespace _T_Value_Serializers {
|
|
50
|
+
namespace _boolean {
|
|
51
|
+
type CONTEXT = boolean;
|
|
52
|
+
namespace PARAMS {
|
|
53
|
+
}
|
|
54
|
+
type RESULT = string;
|
|
55
|
+
}
|
|
56
|
+
type _boolean = ($$_: boolean, $$_p: null) => string;
|
|
57
|
+
namespace custom_numbers {
|
|
58
|
+
}
|
|
59
|
+
type custom_numbers = null;
|
|
60
|
+
namespace default_number {
|
|
61
|
+
type CONTEXT = number;
|
|
62
|
+
namespace PARAMS {
|
|
63
|
+
}
|
|
64
|
+
type RESULT = string;
|
|
65
|
+
}
|
|
66
|
+
type default_number = ($$_: number, $$_p: null) => string;
|
|
67
|
+
}
|
|
68
|
+
export declare namespace _T_s_Annotated_Token {
|
|
69
|
+
namespace CONTEXT {
|
|
70
|
+
}
|
|
71
|
+
type CONTEXT = _i_in._T_Annotated_Token;
|
|
72
|
+
namespace PARAMS {
|
|
73
|
+
namespace value_serializers {
|
|
74
|
+
}
|
|
75
|
+
type value_serializers = _T_Value_Serializers;
|
|
76
|
+
}
|
|
77
|
+
namespace RESULT {
|
|
78
|
+
}
|
|
79
|
+
type RESULT = _i_out._T_Value;
|
|
80
|
+
}
|
|
81
|
+
export declare namespace _T_s_Delimited_String {
|
|
82
|
+
namespace CONTEXT {
|
|
83
|
+
}
|
|
84
|
+
type CONTEXT = _i_in._T_Delimited_String;
|
|
85
|
+
namespace PARAMS {
|
|
86
|
+
namespace value_serializers {
|
|
87
|
+
}
|
|
88
|
+
type value_serializers = _T_Value_Serializers;
|
|
89
|
+
}
|
|
90
|
+
namespace RESULT {
|
|
91
|
+
}
|
|
92
|
+
type RESULT = _i_out._T_Value;
|
|
93
|
+
}
|
|
94
|
+
export declare namespace _T_s_Location {
|
|
95
|
+
namespace CONTEXT {
|
|
96
|
+
}
|
|
97
|
+
type CONTEXT = _i_in._T_Location;
|
|
98
|
+
namespace PARAMS {
|
|
99
|
+
namespace value_serializers {
|
|
100
|
+
}
|
|
101
|
+
type value_serializers = _T_Value_Serializers;
|
|
102
|
+
}
|
|
103
|
+
namespace RESULT {
|
|
104
|
+
}
|
|
105
|
+
type RESULT = _i_out._T_Value;
|
|
106
|
+
}
|
|
107
|
+
export declare namespace _T_s_Range {
|
|
108
|
+
namespace CONTEXT {
|
|
109
|
+
}
|
|
110
|
+
type CONTEXT = _i_in._T_Range;
|
|
111
|
+
namespace PARAMS {
|
|
112
|
+
namespace value_serializers {
|
|
113
|
+
}
|
|
114
|
+
type value_serializers = _T_Value_Serializers;
|
|
115
|
+
}
|
|
116
|
+
namespace RESULT {
|
|
117
|
+
}
|
|
118
|
+
type RESULT = _i_out._T_Value;
|
|
119
|
+
}
|
|
120
|
+
export declare namespace _T_s_Relative_Location {
|
|
121
|
+
namespace CONTEXT {
|
|
122
|
+
}
|
|
123
|
+
type CONTEXT = _i_in._T_Relative_Location;
|
|
124
|
+
namespace PARAMS {
|
|
125
|
+
namespace value_serializers {
|
|
126
|
+
}
|
|
127
|
+
type value_serializers = _T_Value_Serializers;
|
|
128
|
+
}
|
|
129
|
+
namespace RESULT {
|
|
130
|
+
}
|
|
131
|
+
type RESULT = _i_out._T_Value;
|
|
132
|
+
}
|
|
133
|
+
export declare namespace _T_s_String_Type {
|
|
134
|
+
namespace CONTEXT {
|
|
135
|
+
}
|
|
136
|
+
type CONTEXT = _i_in._T_String_Type;
|
|
137
|
+
namespace PARAMS {
|
|
138
|
+
namespace value_serializers {
|
|
139
|
+
}
|
|
140
|
+
type value_serializers = _T_Value_Serializers;
|
|
141
|
+
}
|
|
142
|
+
namespace RESULT {
|
|
143
|
+
}
|
|
144
|
+
type RESULT = _i_out._T_Value;
|
|
145
|
+
}
|
|
146
|
+
export declare namespace _T_s_Token_Type {
|
|
147
|
+
namespace CONTEXT {
|
|
148
|
+
}
|
|
149
|
+
type CONTEXT = _i_in._T_Token_Type;
|
|
150
|
+
namespace PARAMS {
|
|
151
|
+
namespace value_serializers {
|
|
152
|
+
}
|
|
153
|
+
type value_serializers = _T_Value_Serializers;
|
|
154
|
+
}
|
|
155
|
+
namespace RESULT {
|
|
156
|
+
}
|
|
157
|
+
type RESULT = _i_out._T_Value;
|
|
158
|
+
}
|
|
159
|
+
export declare namespace _T_s_Tokenizer_Result {
|
|
160
|
+
namespace CONTEXT {
|
|
161
|
+
}
|
|
162
|
+
type CONTEXT = _i_in._T_Tokenizer_Result;
|
|
163
|
+
namespace PARAMS {
|
|
164
|
+
namespace value_serializers {
|
|
165
|
+
}
|
|
166
|
+
type value_serializers = _T_Value_Serializers;
|
|
167
|
+
}
|
|
168
|
+
namespace RESULT {
|
|
169
|
+
}
|
|
170
|
+
type RESULT = _i_out._T_Value;
|
|
171
|
+
}
|
|
172
|
+
export declare namespace _T_s_Trivia {
|
|
173
|
+
namespace CONTEXT {
|
|
174
|
+
}
|
|
175
|
+
type CONTEXT = _i_in._T_Trivia;
|
|
176
|
+
namespace PARAMS {
|
|
177
|
+
namespace value_serializers {
|
|
178
|
+
}
|
|
179
|
+
type value_serializers = _T_Value_Serializers;
|
|
180
|
+
}
|
|
181
|
+
namespace RESULT {
|
|
182
|
+
}
|
|
183
|
+
type RESULT = _i_out._T_Value;
|
|
184
|
+
}
|
|
185
|
+
export declare namespace _T_s_Whitespace {
|
|
186
|
+
namespace CONTEXT {
|
|
187
|
+
}
|
|
188
|
+
type CONTEXT = _i_in._T_Whitespace;
|
|
189
|
+
namespace PARAMS {
|
|
190
|
+
namespace value_serializers {
|
|
191
|
+
}
|
|
192
|
+
type value_serializers = _T_Value_Serializers;
|
|
193
|
+
}
|
|
194
|
+
namespace RESULT {
|
|
195
|
+
}
|
|
196
|
+
type RESULT = _i_out._T_Value;
|
|
197
|
+
}
|
|
198
|
+
export declare namespace Value_Serializers {
|
|
199
|
+
namespace _boolean {
|
|
200
|
+
type CONTEXT = boolean;
|
|
201
|
+
namespace PARAMS {
|
|
202
|
+
}
|
|
203
|
+
type RESULT = string;
|
|
204
|
+
}
|
|
205
|
+
type _boolean = ($$_: boolean, $$_p: null) => string;
|
|
206
|
+
namespace custom_numbers {
|
|
207
|
+
}
|
|
208
|
+
type custom_numbers = null;
|
|
209
|
+
namespace default_number {
|
|
210
|
+
type CONTEXT = number;
|
|
211
|
+
namespace PARAMS {
|
|
212
|
+
}
|
|
213
|
+
type RESULT = string;
|
|
214
|
+
}
|
|
215
|
+
type default_number = ($$_: number, $$_p: null) => string;
|
|
216
|
+
}
|
|
217
|
+
export declare namespace s_Annotated_Token {
|
|
218
|
+
namespace CONTEXT {
|
|
219
|
+
}
|
|
220
|
+
type CONTEXT = _i_in._T_Annotated_Token;
|
|
221
|
+
namespace PARAMS {
|
|
222
|
+
namespace value_serializers {
|
|
223
|
+
}
|
|
224
|
+
type value_serializers = _T_Value_Serializers;
|
|
225
|
+
}
|
|
226
|
+
namespace RESULT {
|
|
227
|
+
}
|
|
228
|
+
type RESULT = _i_out._T_Value;
|
|
229
|
+
}
|
|
230
|
+
export declare namespace s_Delimited_String {
|
|
231
|
+
namespace CONTEXT {
|
|
232
|
+
}
|
|
233
|
+
type CONTEXT = _i_in._T_Delimited_String;
|
|
234
|
+
namespace PARAMS {
|
|
235
|
+
namespace value_serializers {
|
|
236
|
+
}
|
|
237
|
+
type value_serializers = _T_Value_Serializers;
|
|
238
|
+
}
|
|
239
|
+
namespace RESULT {
|
|
240
|
+
}
|
|
241
|
+
type RESULT = _i_out._T_Value;
|
|
242
|
+
}
|
|
243
|
+
export declare namespace s_Location {
|
|
244
|
+
namespace CONTEXT {
|
|
245
|
+
}
|
|
246
|
+
type CONTEXT = _i_in._T_Location;
|
|
247
|
+
namespace PARAMS {
|
|
248
|
+
namespace value_serializers {
|
|
249
|
+
}
|
|
250
|
+
type value_serializers = _T_Value_Serializers;
|
|
251
|
+
}
|
|
252
|
+
namespace RESULT {
|
|
253
|
+
}
|
|
254
|
+
type RESULT = _i_out._T_Value;
|
|
255
|
+
}
|
|
256
|
+
export declare namespace s_Range {
|
|
257
|
+
namespace CONTEXT {
|
|
258
|
+
}
|
|
259
|
+
type CONTEXT = _i_in._T_Range;
|
|
260
|
+
namespace PARAMS {
|
|
261
|
+
namespace value_serializers {
|
|
262
|
+
}
|
|
263
|
+
type value_serializers = _T_Value_Serializers;
|
|
264
|
+
}
|
|
265
|
+
namespace RESULT {
|
|
266
|
+
}
|
|
267
|
+
type RESULT = _i_out._T_Value;
|
|
268
|
+
}
|
|
269
|
+
export declare namespace s_Relative_Location {
|
|
270
|
+
namespace CONTEXT {
|
|
271
|
+
}
|
|
272
|
+
type CONTEXT = _i_in._T_Relative_Location;
|
|
273
|
+
namespace PARAMS {
|
|
274
|
+
namespace value_serializers {
|
|
275
|
+
}
|
|
276
|
+
type value_serializers = _T_Value_Serializers;
|
|
277
|
+
}
|
|
278
|
+
namespace RESULT {
|
|
279
|
+
}
|
|
280
|
+
type RESULT = _i_out._T_Value;
|
|
281
|
+
}
|
|
282
|
+
export declare namespace s_String_Type {
|
|
283
|
+
namespace CONTEXT {
|
|
284
|
+
}
|
|
285
|
+
type CONTEXT = _i_in._T_String_Type;
|
|
286
|
+
namespace PARAMS {
|
|
287
|
+
namespace value_serializers {
|
|
288
|
+
}
|
|
289
|
+
type value_serializers = _T_Value_Serializers;
|
|
290
|
+
}
|
|
291
|
+
namespace RESULT {
|
|
292
|
+
}
|
|
293
|
+
type RESULT = _i_out._T_Value;
|
|
294
|
+
}
|
|
295
|
+
export declare namespace s_Token_Type {
|
|
296
|
+
namespace CONTEXT {
|
|
297
|
+
}
|
|
298
|
+
type CONTEXT = _i_in._T_Token_Type;
|
|
299
|
+
namespace PARAMS {
|
|
300
|
+
namespace value_serializers {
|
|
301
|
+
}
|
|
302
|
+
type value_serializers = _T_Value_Serializers;
|
|
303
|
+
}
|
|
304
|
+
namespace RESULT {
|
|
305
|
+
}
|
|
306
|
+
type RESULT = _i_out._T_Value;
|
|
307
|
+
}
|
|
308
|
+
export declare namespace s_Tokenizer_Result {
|
|
309
|
+
namespace CONTEXT {
|
|
310
|
+
}
|
|
311
|
+
type CONTEXT = _i_in._T_Tokenizer_Result;
|
|
312
|
+
namespace PARAMS {
|
|
313
|
+
namespace value_serializers {
|
|
314
|
+
}
|
|
315
|
+
type value_serializers = _T_Value_Serializers;
|
|
316
|
+
}
|
|
317
|
+
namespace RESULT {
|
|
318
|
+
}
|
|
319
|
+
type RESULT = _i_out._T_Value;
|
|
320
|
+
}
|
|
321
|
+
export declare namespace s_Trivia {
|
|
322
|
+
namespace CONTEXT {
|
|
323
|
+
}
|
|
324
|
+
type CONTEXT = _i_in._T_Trivia;
|
|
325
|
+
namespace PARAMS {
|
|
326
|
+
namespace value_serializers {
|
|
327
|
+
}
|
|
328
|
+
type value_serializers = _T_Value_Serializers;
|
|
329
|
+
}
|
|
330
|
+
namespace RESULT {
|
|
331
|
+
}
|
|
332
|
+
type RESULT = _i_out._T_Value;
|
|
333
|
+
}
|
|
334
|
+
export declare namespace s_Whitespace {
|
|
335
|
+
namespace CONTEXT {
|
|
336
|
+
}
|
|
337
|
+
type CONTEXT = _i_in._T_Whitespace;
|
|
338
|
+
namespace PARAMS {
|
|
339
|
+
namespace value_serializers {
|
|
340
|
+
}
|
|
341
|
+
type value_serializers = _T_Value_Serializers;
|
|
342
|
+
}
|
|
343
|
+
namespace RESULT {
|
|
344
|
+
}
|
|
345
|
+
type RESULT = _i_out._T_Value;
|
|
346
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFyc2hhbGwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvZ2VuZXJhdGVkL2ludGVyZmFjZS9zY2hlbWFzL3Rva2VuL21hcnNoYWxsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -1,60 +1,44 @@
|
|
|
1
1
|
import * as _i_in from "./unconstrained";
|
|
2
2
|
import * as _i_out from "./unconstrained";
|
|
3
|
-
export type
|
|
4
|
-
export type
|
|
5
|
-
export type _T_Key_Value_Pairs = ($$_: _i_in._T_Key_Value_Pairs, $$_p: null) => _i_out._T_Key_Value_Pairs;
|
|
3
|
+
export type _T_Annotated_Token = ($$_: _i_in._T_Annotated_Token, $$_p: null) => _i_out._T_Annotated_Token;
|
|
4
|
+
export type _T_Delimited_String = ($$_: _i_in._T_Delimited_String, $$_p: null) => _i_out._T_Delimited_String;
|
|
6
5
|
export type _T_Location = ($$_: _i_in._T_Location, $$_p: null) => _i_out._T_Location;
|
|
7
6
|
export type _T_Range = ($$_: _i_in._T_Range, $$_p: null) => _i_out._T_Range;
|
|
8
7
|
export type _T_Relative_Location = ($$_: _i_in._T_Relative_Location, $$_p: null) => _i_out._T_Relative_Location;
|
|
9
|
-
export type _T_Relative_Range = ($$_: _i_in._T_Relative_Range, $$_p: null) => _i_out._T_Relative_Range;
|
|
10
|
-
export type _T_String = ($$_: _i_in._T_String, $$_p: null) => _i_out._T_String;
|
|
11
8
|
export type _T_String_Type = ($$_: _i_in._T_String_Type, $$_p: null) => _i_out._T_String_Type;
|
|
12
|
-
export type
|
|
9
|
+
export type _T_Token_Type = ($$_: _i_in._T_Token_Type, $$_p: null) => _i_out._T_Token_Type;
|
|
10
|
+
export type _T_Tokenizer_Result = ($$_: _i_in._T_Tokenizer_Result, $$_p: null) => _i_out._T_Tokenizer_Result;
|
|
13
11
|
export type _T_Trivia = ($$_: _i_in._T_Trivia, $$_p: null) => _i_out._T_Trivia;
|
|
14
|
-
export type _T_Value = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Value;
|
|
15
12
|
export type _T_Whitespace = ($$_: _i_in._T_Whitespace, $$_p: null) => _i_out._T_Whitespace;
|
|
16
|
-
export type
|
|
17
|
-
export type
|
|
18
|
-
export type Key_Value_Pairs = _T_Key_Value_Pairs;
|
|
13
|
+
export type Annotated_Token = _T_Annotated_Token;
|
|
14
|
+
export type Delimited_String = _T_Delimited_String;
|
|
19
15
|
export type Location = _T_Location;
|
|
20
16
|
export type Range = _T_Range;
|
|
21
17
|
export type Relative_Location = _T_Relative_Location;
|
|
22
|
-
export type Relative_Range = _T_Relative_Range;
|
|
23
|
-
export type String = _T_String;
|
|
24
18
|
export type String_Type = _T_String_Type;
|
|
25
|
-
export type
|
|
19
|
+
export type Token_Type = _T_Token_Type;
|
|
20
|
+
export type Tokenizer_Result = _T_Tokenizer_Result;
|
|
26
21
|
export type Trivia = _T_Trivia;
|
|
27
|
-
export type Value = _T_Value;
|
|
28
22
|
export type Whitespace = _T_Whitespace;
|
|
29
|
-
export declare namespace
|
|
23
|
+
export declare namespace _T_Annotated_Token {
|
|
30
24
|
namespace CONTEXT {
|
|
31
25
|
}
|
|
32
|
-
type CONTEXT = _i_in.
|
|
26
|
+
type CONTEXT = _i_in._T_Annotated_Token;
|
|
33
27
|
namespace PARAMS {
|
|
34
28
|
}
|
|
35
29
|
namespace RESULT {
|
|
36
30
|
}
|
|
37
|
-
type RESULT = _i_out.
|
|
31
|
+
type RESULT = _i_out._T_Annotated_Token;
|
|
38
32
|
}
|
|
39
|
-
export declare namespace
|
|
33
|
+
export declare namespace _T_Delimited_String {
|
|
40
34
|
namespace CONTEXT {
|
|
41
35
|
}
|
|
42
|
-
type CONTEXT = _i_in.
|
|
36
|
+
type CONTEXT = _i_in._T_Delimited_String;
|
|
43
37
|
namespace PARAMS {
|
|
44
38
|
}
|
|
45
39
|
namespace RESULT {
|
|
46
40
|
}
|
|
47
|
-
type RESULT = _i_out.
|
|
48
|
-
}
|
|
49
|
-
export declare namespace _T_Key_Value_Pairs {
|
|
50
|
-
namespace CONTEXT {
|
|
51
|
-
}
|
|
52
|
-
type CONTEXT = _i_in._T_Key_Value_Pairs;
|
|
53
|
-
namespace PARAMS {
|
|
54
|
-
}
|
|
55
|
-
namespace RESULT {
|
|
56
|
-
}
|
|
57
|
-
type RESULT = _i_out._T_Key_Value_Pairs;
|
|
41
|
+
type RESULT = _i_out._T_Delimited_String;
|
|
58
42
|
}
|
|
59
43
|
export declare namespace _T_Location {
|
|
60
44
|
namespace CONTEXT {
|
|
@@ -86,26 +70,6 @@ export declare namespace _T_Relative_Location {
|
|
|
86
70
|
}
|
|
87
71
|
type RESULT = _i_out._T_Relative_Location;
|
|
88
72
|
}
|
|
89
|
-
export declare namespace _T_Relative_Range {
|
|
90
|
-
namespace CONTEXT {
|
|
91
|
-
}
|
|
92
|
-
type CONTEXT = _i_in._T_Relative_Range;
|
|
93
|
-
namespace PARAMS {
|
|
94
|
-
}
|
|
95
|
-
namespace RESULT {
|
|
96
|
-
}
|
|
97
|
-
type RESULT = _i_out._T_Relative_Range;
|
|
98
|
-
}
|
|
99
|
-
export declare namespace _T_String {
|
|
100
|
-
namespace CONTEXT {
|
|
101
|
-
}
|
|
102
|
-
type CONTEXT = _i_in._T_String;
|
|
103
|
-
namespace PARAMS {
|
|
104
|
-
}
|
|
105
|
-
namespace RESULT {
|
|
106
|
-
}
|
|
107
|
-
type RESULT = _i_out._T_String;
|
|
108
|
-
}
|
|
109
73
|
export declare namespace _T_String_Type {
|
|
110
74
|
namespace CONTEXT {
|
|
111
75
|
}
|
|
@@ -116,35 +80,35 @@ export declare namespace _T_String_Type {
|
|
|
116
80
|
}
|
|
117
81
|
type RESULT = _i_out._T_String_Type;
|
|
118
82
|
}
|
|
119
|
-
export declare namespace
|
|
83
|
+
export declare namespace _T_Token_Type {
|
|
120
84
|
namespace CONTEXT {
|
|
121
85
|
}
|
|
122
|
-
type CONTEXT = _i_in.
|
|
86
|
+
type CONTEXT = _i_in._T_Token_Type;
|
|
123
87
|
namespace PARAMS {
|
|
124
88
|
}
|
|
125
89
|
namespace RESULT {
|
|
126
90
|
}
|
|
127
|
-
type RESULT = _i_out.
|
|
91
|
+
type RESULT = _i_out._T_Token_Type;
|
|
128
92
|
}
|
|
129
|
-
export declare namespace
|
|
93
|
+
export declare namespace _T_Tokenizer_Result {
|
|
130
94
|
namespace CONTEXT {
|
|
131
95
|
}
|
|
132
|
-
type CONTEXT = _i_in.
|
|
96
|
+
type CONTEXT = _i_in._T_Tokenizer_Result;
|
|
133
97
|
namespace PARAMS {
|
|
134
98
|
}
|
|
135
99
|
namespace RESULT {
|
|
136
100
|
}
|
|
137
|
-
type RESULT = _i_out.
|
|
101
|
+
type RESULT = _i_out._T_Tokenizer_Result;
|
|
138
102
|
}
|
|
139
|
-
export declare namespace
|
|
103
|
+
export declare namespace _T_Trivia {
|
|
140
104
|
namespace CONTEXT {
|
|
141
105
|
}
|
|
142
|
-
type CONTEXT = _i_in.
|
|
106
|
+
type CONTEXT = _i_in._T_Trivia;
|
|
143
107
|
namespace PARAMS {
|
|
144
108
|
}
|
|
145
109
|
namespace RESULT {
|
|
146
110
|
}
|
|
147
|
-
type RESULT = _i_out.
|
|
111
|
+
type RESULT = _i_out._T_Trivia;
|
|
148
112
|
}
|
|
149
113
|
export declare namespace _T_Whitespace {
|
|
150
114
|
namespace CONTEXT {
|
|
@@ -156,35 +120,25 @@ export declare namespace _T_Whitespace {
|
|
|
156
120
|
}
|
|
157
121
|
type RESULT = _i_out._T_Whitespace;
|
|
158
122
|
}
|
|
159
|
-
export declare namespace
|
|
123
|
+
export declare namespace Annotated_Token {
|
|
160
124
|
namespace CONTEXT {
|
|
161
125
|
}
|
|
162
|
-
type CONTEXT = _i_in.
|
|
126
|
+
type CONTEXT = _i_in._T_Annotated_Token;
|
|
163
127
|
namespace PARAMS {
|
|
164
128
|
}
|
|
165
129
|
namespace RESULT {
|
|
166
130
|
}
|
|
167
|
-
type RESULT = _i_out.
|
|
131
|
+
type RESULT = _i_out._T_Annotated_Token;
|
|
168
132
|
}
|
|
169
|
-
export declare namespace
|
|
133
|
+
export declare namespace Delimited_String {
|
|
170
134
|
namespace CONTEXT {
|
|
171
135
|
}
|
|
172
|
-
type CONTEXT = _i_in.
|
|
136
|
+
type CONTEXT = _i_in._T_Delimited_String;
|
|
173
137
|
namespace PARAMS {
|
|
174
138
|
}
|
|
175
139
|
namespace RESULT {
|
|
176
140
|
}
|
|
177
|
-
type RESULT = _i_out.
|
|
178
|
-
}
|
|
179
|
-
export declare namespace Key_Value_Pairs {
|
|
180
|
-
namespace CONTEXT {
|
|
181
|
-
}
|
|
182
|
-
type CONTEXT = _i_in._T_Key_Value_Pairs;
|
|
183
|
-
namespace PARAMS {
|
|
184
|
-
}
|
|
185
|
-
namespace RESULT {
|
|
186
|
-
}
|
|
187
|
-
type RESULT = _i_out._T_Key_Value_Pairs;
|
|
141
|
+
type RESULT = _i_out._T_Delimited_String;
|
|
188
142
|
}
|
|
189
143
|
export declare namespace Location {
|
|
190
144
|
namespace CONTEXT {
|
|
@@ -216,26 +170,6 @@ export declare namespace Relative_Location {
|
|
|
216
170
|
}
|
|
217
171
|
type RESULT = _i_out._T_Relative_Location;
|
|
218
172
|
}
|
|
219
|
-
export declare namespace Relative_Range {
|
|
220
|
-
namespace CONTEXT {
|
|
221
|
-
}
|
|
222
|
-
type CONTEXT = _i_in._T_Relative_Range;
|
|
223
|
-
namespace PARAMS {
|
|
224
|
-
}
|
|
225
|
-
namespace RESULT {
|
|
226
|
-
}
|
|
227
|
-
type RESULT = _i_out._T_Relative_Range;
|
|
228
|
-
}
|
|
229
|
-
export declare namespace String {
|
|
230
|
-
namespace CONTEXT {
|
|
231
|
-
}
|
|
232
|
-
type CONTEXT = _i_in._T_String;
|
|
233
|
-
namespace PARAMS {
|
|
234
|
-
}
|
|
235
|
-
namespace RESULT {
|
|
236
|
-
}
|
|
237
|
-
type RESULT = _i_out._T_String;
|
|
238
|
-
}
|
|
239
173
|
export declare namespace String_Type {
|
|
240
174
|
namespace CONTEXT {
|
|
241
175
|
}
|
|
@@ -246,35 +180,35 @@ export declare namespace String_Type {
|
|
|
246
180
|
}
|
|
247
181
|
type RESULT = _i_out._T_String_Type;
|
|
248
182
|
}
|
|
249
|
-
export declare namespace
|
|
183
|
+
export declare namespace Token_Type {
|
|
250
184
|
namespace CONTEXT {
|
|
251
185
|
}
|
|
252
|
-
type CONTEXT = _i_in.
|
|
186
|
+
type CONTEXT = _i_in._T_Token_Type;
|
|
253
187
|
namespace PARAMS {
|
|
254
188
|
}
|
|
255
189
|
namespace RESULT {
|
|
256
190
|
}
|
|
257
|
-
type RESULT = _i_out.
|
|
191
|
+
type RESULT = _i_out._T_Token_Type;
|
|
258
192
|
}
|
|
259
|
-
export declare namespace
|
|
193
|
+
export declare namespace Tokenizer_Result {
|
|
260
194
|
namespace CONTEXT {
|
|
261
195
|
}
|
|
262
|
-
type CONTEXT = _i_in.
|
|
196
|
+
type CONTEXT = _i_in._T_Tokenizer_Result;
|
|
263
197
|
namespace PARAMS {
|
|
264
198
|
}
|
|
265
199
|
namespace RESULT {
|
|
266
200
|
}
|
|
267
|
-
type RESULT = _i_out.
|
|
201
|
+
type RESULT = _i_out._T_Tokenizer_Result;
|
|
268
202
|
}
|
|
269
|
-
export declare namespace
|
|
203
|
+
export declare namespace Trivia {
|
|
270
204
|
namespace CONTEXT {
|
|
271
205
|
}
|
|
272
|
-
type CONTEXT = _i_in.
|
|
206
|
+
type CONTEXT = _i_in._T_Trivia;
|
|
273
207
|
namespace PARAMS {
|
|
274
208
|
}
|
|
275
209
|
namespace RESULT {
|
|
276
210
|
}
|
|
277
|
-
type RESULT = _i_out.
|
|
211
|
+
type RESULT = _i_out._T_Trivia;
|
|
278
212
|
}
|
|
279
213
|
export declare namespace Whitespace {
|
|
280
214
|
namespace CONTEXT {
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlncmF0ZV9ib2lsZXJwbGF0ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvdG9rZW4vbWlncmF0ZV9ib2lsZXJwbGF0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|