astn 0.110.19 → 0.110.20

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 (118) hide show
  1. package/dist/bin/convert_to_json.js +10 -20
  2. package/dist/bin/validate_astn.js +9 -19
  3. package/dist/generated/generic/astn_target.d.ts +186 -0
  4. package/dist/generated/generic/astn_target.js +3 -0
  5. package/dist/generated/generic/resolve.d.ts +2 -2
  6. package/dist/generated/generic/resolve.js +14 -22
  7. package/dist/generated/implementation/generic/resolve.d.ts +81 -0
  8. package/dist/generated/implementation/generic/resolve.js +251 -0
  9. package/dist/generated/implementation/generic/unmarshall.d.ts +37 -0
  10. package/dist/generated/implementation/generic/unmarshall.js +168 -0
  11. package/dist/generated/implementation/schemas/ast/marshall.d.ts +7 -0
  12. package/dist/generated/implementation/schemas/ast/marshall.js +227 -0
  13. package/dist/generated/implementation/schemas/ast/serializer.d.ts +14 -0
  14. package/dist/generated/implementation/schemas/ast/serializer.js +328 -0
  15. package/dist/generated/implementation/schemas/ast/unmarshall.d.ts +7 -0
  16. package/dist/generated/implementation/schemas/ast/unmarshall.js +239 -0
  17. package/dist/generated/implementation/schemas/ide/marshall.d.ts +4 -0
  18. package/dist/generated/implementation/schemas/ide/marshall.js +81 -0
  19. package/dist/generated/implementation/schemas/ide/serializer.d.ts +3 -0
  20. package/dist/generated/implementation/schemas/ide/serializer.js +72 -0
  21. package/dist/generated/implementation/schemas/ide/unmarshall.d.ts +4 -0
  22. package/dist/generated/implementation/schemas/ide/unmarshall.js +79 -0
  23. package/dist/generated/implementation/schemas/parse_result/marshall.d.ts +3 -0
  24. package/dist/generated/implementation/schemas/parse_result/marshall.js +184 -0
  25. package/dist/generated/implementation/schemas/parse_result/serializer.d.ts +6 -0
  26. package/dist/generated/implementation/schemas/parse_result/serializer.js +288 -0
  27. package/dist/generated/implementation/schemas/parse_result/unmarshall.d.ts +3 -0
  28. package/dist/generated/implementation/schemas/parse_result/unmarshall.js +103 -0
  29. package/dist/generated/implementation/schemas/target/marshall.d.ts +3 -0
  30. package/dist/generated/implementation/schemas/target/marshall.js +122 -0
  31. package/dist/generated/implementation/schemas/target/serializer.d.ts +3 -0
  32. package/dist/generated/implementation/schemas/target/serializer.js +122 -0
  33. package/dist/generated/implementation/schemas/target/unmarshall.d.ts +3 -0
  34. package/dist/generated/implementation/schemas/target/unmarshall.js +81 -0
  35. package/dist/generated/implementation/schemas/token/marshall.d.ts +11 -0
  36. package/dist/generated/implementation/schemas/token/marshall.js +230 -0
  37. package/dist/generated/implementation/schemas/token/unmarshall.d.ts +11 -0
  38. package/dist/generated/implementation/schemas/token/unmarshall.js +180 -0
  39. package/dist/generated/interface/core/astn_source.d.ts +116 -0
  40. package/dist/generated/interface/core/astn_source.js +3 -0
  41. package/dist/generated/interface/core/astn_target.d.ts +186 -0
  42. package/dist/generated/interface/core/astn_target.js +3 -0
  43. package/dist/generated/interface/core/resolve.d.ts +11 -0
  44. package/dist/generated/interface/core/resolve.js +3 -0
  45. package/dist/generated/interface/core/unconstrained.d.ts +19 -0
  46. package/dist/generated/interface/core/unconstrained.js +3 -0
  47. package/dist/generated/interface/core/unresolved.d.ts +162 -13
  48. package/dist/generated/interface/generic/resolve.d.ts +11 -0
  49. package/dist/generated/interface/generic/resolve.js +3 -0
  50. package/dist/generated/interface/schemas/ast/marshall.d.ts +226 -0
  51. package/dist/generated/interface/schemas/ast/marshall.js +3 -0
  52. package/dist/generated/interface/schemas/ast/migrate_boilerplate.d.ts +134 -0
  53. package/dist/generated/interface/schemas/ast/migrate_boilerplate.js +3 -0
  54. package/dist/generated/interface/schemas/ast/serializer.d.ts +436 -0
  55. package/dist/generated/interface/schemas/ast/serializer.js +3 -0
  56. package/dist/generated/interface/schemas/ast/unconstrained.d.ts +20 -210
  57. package/dist/generated/interface/schemas/ast/unmarshall.d.ts +134 -0
  58. package/dist/generated/interface/schemas/ast/unmarshall.js +3 -0
  59. package/dist/generated/interface/schemas/ide/marshall.d.ts +136 -0
  60. package/dist/generated/interface/schemas/ide/marshall.js +3 -0
  61. package/dist/generated/interface/schemas/ide/migrate_boilerplate.d.ts +68 -0
  62. package/dist/generated/interface/schemas/ide/migrate_boilerplate.js +3 -0
  63. package/dist/generated/interface/schemas/ide/serializer.d.ts +106 -0
  64. package/dist/generated/interface/schemas/ide/serializer.js +3 -0
  65. package/dist/generated/interface/schemas/ide/unconstrained.d.ts +50 -29
  66. package/dist/generated/interface/schemas/ide/unmarshall.d.ts +68 -0
  67. package/dist/generated/interface/schemas/ide/unmarshall.js +3 -0
  68. package/dist/generated/interface/schemas/parse_result/marshall.d.ts +106 -0
  69. package/dist/generated/interface/schemas/parse_result/marshall.js +3 -0
  70. package/dist/generated/interface/schemas/parse_result/migrate_boilerplate.d.ts +46 -0
  71. package/dist/generated/interface/schemas/parse_result/migrate_boilerplate.js +3 -0
  72. package/dist/generated/interface/schemas/parse_result/serializer.d.ts +196 -0
  73. package/dist/generated/interface/schemas/parse_result/serializer.js +3 -0
  74. package/dist/generated/interface/schemas/parse_result/unconstrained.d.ts +20 -168
  75. package/dist/generated/interface/schemas/parse_result/unmarshall.d.ts +46 -0
  76. package/dist/generated/interface/schemas/parse_result/unmarshall.js +3 -0
  77. package/dist/generated/interface/schemas/target/marshall.d.ts +126 -0
  78. package/dist/generated/interface/schemas/target/marshall.js +3 -0
  79. package/dist/generated/interface/schemas/target/migrate_boilerplate.d.ts +46 -0
  80. package/dist/generated/interface/schemas/target/migrate_boilerplate.js +3 -0
  81. package/dist/generated/interface/schemas/target/serializer.d.ts +126 -0
  82. package/dist/generated/interface/schemas/target/serializer.js +3 -0
  83. package/dist/generated/interface/schemas/target/unconstrained.d.ts +1 -1
  84. package/dist/generated/interface/schemas/target/unmarshall.d.ts +46 -0
  85. package/dist/generated/interface/schemas/target/unmarshall.js +3 -0
  86. package/dist/generated/interface/schemas/target_json/unconstrained.d.ts +1 -1
  87. package/dist/generated/interface/schemas/token/marshall.d.ts +346 -0
  88. package/dist/generated/interface/schemas/token/marshall.js +3 -0
  89. package/dist/generated/interface/schemas/token/migrate_boilerplate.d.ts +222 -0
  90. package/dist/generated/interface/schemas/token/migrate_boilerplate.js +3 -0
  91. package/dist/generated/interface/schemas/token/unconstrained.d.ts +326 -0
  92. package/dist/generated/interface/schemas/token/unconstrained.js +3 -0
  93. package/dist/generated/interface/schemas/token/unmarshall.d.ts +222 -0
  94. package/dist/generated/interface/schemas/token/unmarshall.js +3 -0
  95. package/dist/index.js +8 -18
  96. package/dist/parse/ast.d.ts +10 -0
  97. package/dist/parse/ast.js +227 -0
  98. package/dist/parse/astn_parse_generic.d.ts +8 -0
  99. package/dist/parse/astn_parse_generic.js +65 -0
  100. package/dist/parse/parse.d.ts +3 -10
  101. package/dist/parse/parse.js +19 -226
  102. package/dist/parse/parse_generic.d.ts +7 -42
  103. package/dist/parse/parse_generic.js +14 -605
  104. package/dist/parse/string_iterator.d.ts +47 -0
  105. package/dist/parse/string_iterator.js +139 -0
  106. package/dist/parse/token.d.ts +9 -0
  107. package/dist/parse/token.js +506 -0
  108. package/dist/parse/tokenize.d.ts +8 -0
  109. package/dist/parse/tokenize.js +483 -0
  110. package/dist/serializers/json.js +8 -18
  111. package/dist/serializers/parse_result.js +8 -18
  112. package/dist/transformations/ast/ide.d.ts +3 -2
  113. package/dist/transformations/ast/ide.js +8 -18
  114. package/dist/transformations/ast/json_target.d.ts +1 -1
  115. package/dist/transformations/ast/json_target.js +8 -18
  116. package/dist/transformations/target/fountain_pen_block.js +10 -20
  117. package/dist/transformations/target_json/fountain_pen_block.js +8 -18
  118. package/package.json +5 -7
@@ -0,0 +1,134 @@
1
+ import * as _i_in from "./unconstrained";
2
+ import * as _i_out from "./unconstrained";
3
+ export type _T_Document = ($$_: _i_in._T_Document, $$_p: null) => _i_out._T_Document;
4
+ export type _T_Elements = ($$_: _i_in._T_Elements, $$_p: null) => _i_out._T_Elements;
5
+ export type _T_Key_Value_Pairs = ($$_: _i_in._T_Key_Value_Pairs, $$_p: null) => _i_out._T_Key_Value_Pairs;
6
+ export type _T_String = ($$_: _i_in._T_String, $$_p: null) => _i_out._T_String;
7
+ export type _T_Structural_Token = ($$_: _i_in._T_Structural_Token, $$_p: null) => _i_out._T_Structural_Token;
8
+ export type _T_Value = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Value;
9
+ export type Document = _T_Document;
10
+ export type Elements = _T_Elements;
11
+ export type Key_Value_Pairs = _T_Key_Value_Pairs;
12
+ export type String = _T_String;
13
+ export type Structural_Token = _T_Structural_Token;
14
+ export type Value = _T_Value;
15
+ export declare namespace _T_Document {
16
+ namespace CONTEXT {
17
+ }
18
+ type CONTEXT = _i_in._T_Document;
19
+ namespace PARAMS {
20
+ }
21
+ namespace RESULT {
22
+ }
23
+ type RESULT = _i_out._T_Document;
24
+ }
25
+ export declare namespace _T_Elements {
26
+ namespace CONTEXT {
27
+ }
28
+ type CONTEXT = _i_in._T_Elements;
29
+ namespace PARAMS {
30
+ }
31
+ namespace RESULT {
32
+ }
33
+ type RESULT = _i_out._T_Elements;
34
+ }
35
+ export declare namespace _T_Key_Value_Pairs {
36
+ namespace CONTEXT {
37
+ }
38
+ type CONTEXT = _i_in._T_Key_Value_Pairs;
39
+ namespace PARAMS {
40
+ }
41
+ namespace RESULT {
42
+ }
43
+ type RESULT = _i_out._T_Key_Value_Pairs;
44
+ }
45
+ export declare namespace _T_String {
46
+ namespace CONTEXT {
47
+ }
48
+ type CONTEXT = _i_in._T_String;
49
+ namespace PARAMS {
50
+ }
51
+ namespace RESULT {
52
+ }
53
+ type RESULT = _i_out._T_String;
54
+ }
55
+ export declare namespace _T_Structural_Token {
56
+ namespace CONTEXT {
57
+ }
58
+ type CONTEXT = _i_in._T_Structural_Token;
59
+ namespace PARAMS {
60
+ }
61
+ namespace RESULT {
62
+ }
63
+ type RESULT = _i_out._T_Structural_Token;
64
+ }
65
+ export declare namespace _T_Value {
66
+ namespace CONTEXT {
67
+ }
68
+ type CONTEXT = _i_in._T_Value;
69
+ namespace PARAMS {
70
+ }
71
+ namespace RESULT {
72
+ }
73
+ type RESULT = _i_out._T_Value;
74
+ }
75
+ export declare namespace Document {
76
+ namespace CONTEXT {
77
+ }
78
+ type CONTEXT = _i_in._T_Document;
79
+ namespace PARAMS {
80
+ }
81
+ namespace RESULT {
82
+ }
83
+ type RESULT = _i_out._T_Document;
84
+ }
85
+ export declare namespace Elements {
86
+ namespace CONTEXT {
87
+ }
88
+ type CONTEXT = _i_in._T_Elements;
89
+ namespace PARAMS {
90
+ }
91
+ namespace RESULT {
92
+ }
93
+ type RESULT = _i_out._T_Elements;
94
+ }
95
+ export declare namespace Key_Value_Pairs {
96
+ namespace CONTEXT {
97
+ }
98
+ type CONTEXT = _i_in._T_Key_Value_Pairs;
99
+ namespace PARAMS {
100
+ }
101
+ namespace RESULT {
102
+ }
103
+ type RESULT = _i_out._T_Key_Value_Pairs;
104
+ }
105
+ export declare namespace String {
106
+ namespace CONTEXT {
107
+ }
108
+ type CONTEXT = _i_in._T_String;
109
+ namespace PARAMS {
110
+ }
111
+ namespace RESULT {
112
+ }
113
+ type RESULT = _i_out._T_String;
114
+ }
115
+ export declare namespace Structural_Token {
116
+ namespace CONTEXT {
117
+ }
118
+ type CONTEXT = _i_in._T_Structural_Token;
119
+ namespace PARAMS {
120
+ }
121
+ namespace RESULT {
122
+ }
123
+ type RESULT = _i_out._T_Structural_Token;
124
+ }
125
+ export declare namespace Value {
126
+ namespace CONTEXT {
127
+ }
128
+ type CONTEXT = _i_in._T_Value;
129
+ namespace PARAMS {
130
+ }
131
+ namespace RESULT {
132
+ }
133
+ type RESULT = _i_out._T_Value;
134
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlncmF0ZV9ib2lsZXJwbGF0ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvYXN0L21pZ3JhdGVfYm9pbGVycGxhdGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -0,0 +1,436 @@
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_Document = ($$_: _i_in._T_Document, $$_p: {
9
+ readonly 'value serializers': _T_Value_Serializers;
10
+ }) => _i_out._T_Value;
11
+ export type _T_s_Elements = ($$_: _i_in._T_Elements, $$_p: {
12
+ readonly 'value serializers': _T_Value_Serializers;
13
+ }) => _i_out._T_Value;
14
+ export type _T_s_Key_Value_Pairs = ($$_: _i_in._T_Key_Value_Pairs, $$_p: {
15
+ readonly 'value serializers': _T_Value_Serializers;
16
+ }) => _i_out._T_Value;
17
+ export type _T_s_Location = ($$_: _i_in._T_Location, $$_p: {
18
+ readonly 'value serializers': _T_Value_Serializers;
19
+ }) => _i_out._T_Value;
20
+ export type _T_s_Range = ($$_: _i_in._T_Range, $$_p: {
21
+ readonly 'value serializers': _T_Value_Serializers;
22
+ }) => _i_out._T_Value;
23
+ export type _T_s_Relative_Location = ($$_: _i_in._T_Relative_Location, $$_p: {
24
+ readonly 'value serializers': _T_Value_Serializers;
25
+ }) => _i_out._T_Value;
26
+ export type _T_s_Relative_Range = ($$_: _i_in._T_Relative_Range, $$_p: {
27
+ readonly 'value serializers': _T_Value_Serializers;
28
+ }) => _i_out._T_Value;
29
+ export type _T_s_String = ($$_: _i_in._T_String, $$_p: {
30
+ readonly 'value serializers': _T_Value_Serializers;
31
+ }) => _i_out._T_Value;
32
+ export type _T_s_String_Type = ($$_: _i_in._T_String_Type, $$_p: {
33
+ readonly 'value serializers': _T_Value_Serializers;
34
+ }) => _i_out._T_Value;
35
+ export type _T_s_Structural_Token = ($$_: _i_in._T_Structural_Token, $$_p: {
36
+ readonly 'value serializers': _T_Value_Serializers;
37
+ }) => _i_out._T_Value;
38
+ export type _T_s_Trivia = ($$_: _i_in._T_Trivia, $$_p: {
39
+ readonly 'value serializers': _T_Value_Serializers;
40
+ }) => _i_out._T_Value;
41
+ export type _T_s_Value = ($$_: _i_in._T_Value, $$_p: {
42
+ readonly 'value serializers': _T_Value_Serializers;
43
+ }) => _i_out._T_Value;
44
+ export type _T_s_Whitespace = ($$_: _i_in._T_Whitespace, $$_p: {
45
+ readonly 'value serializers': _T_Value_Serializers;
46
+ }) => _i_out._T_Value;
47
+ export type Value_Serializers = _T_Value_Serializers;
48
+ export type s_Document = _T_s_Document;
49
+ export type s_Elements = _T_s_Elements;
50
+ export type s_Key_Value_Pairs = _T_s_Key_Value_Pairs;
51
+ export type s_Location = _T_s_Location;
52
+ export type s_Range = _T_s_Range;
53
+ export type s_Relative_Location = _T_s_Relative_Location;
54
+ export type s_Relative_Range = _T_s_Relative_Range;
55
+ export type s_String = _T_s_String;
56
+ export type s_String_Type = _T_s_String_Type;
57
+ export type s_Structural_Token = _T_s_Structural_Token;
58
+ export type s_Trivia = _T_s_Trivia;
59
+ export type s_Value = _T_s_Value;
60
+ export type s_Whitespace = _T_s_Whitespace;
61
+ export declare namespace _T_Value_Serializers {
62
+ namespace _boolean {
63
+ type CONTEXT = boolean;
64
+ namespace PARAMS {
65
+ }
66
+ type RESULT = string;
67
+ }
68
+ type _boolean = ($$_: boolean, $$_p: null) => string;
69
+ namespace custom_numbers {
70
+ }
71
+ type custom_numbers = null;
72
+ namespace default_number {
73
+ type CONTEXT = number;
74
+ namespace PARAMS {
75
+ }
76
+ type RESULT = string;
77
+ }
78
+ type default_number = ($$_: number, $$_p: null) => string;
79
+ }
80
+ export declare namespace _T_s_Document {
81
+ namespace CONTEXT {
82
+ }
83
+ type CONTEXT = _i_in._T_Document;
84
+ namespace PARAMS {
85
+ namespace value_serializers {
86
+ }
87
+ type value_serializers = _T_Value_Serializers;
88
+ }
89
+ namespace RESULT {
90
+ }
91
+ type RESULT = _i_out._T_Value;
92
+ }
93
+ export declare namespace _T_s_Elements {
94
+ namespace CONTEXT {
95
+ }
96
+ type CONTEXT = _i_in._T_Elements;
97
+ namespace PARAMS {
98
+ namespace value_serializers {
99
+ }
100
+ type value_serializers = _T_Value_Serializers;
101
+ }
102
+ namespace RESULT {
103
+ }
104
+ type RESULT = _i_out._T_Value;
105
+ }
106
+ export declare namespace _T_s_Key_Value_Pairs {
107
+ namespace CONTEXT {
108
+ }
109
+ type CONTEXT = _i_in._T_Key_Value_Pairs;
110
+ namespace PARAMS {
111
+ namespace value_serializers {
112
+ }
113
+ type value_serializers = _T_Value_Serializers;
114
+ }
115
+ namespace RESULT {
116
+ }
117
+ type RESULT = _i_out._T_Value;
118
+ }
119
+ export declare namespace _T_s_Location {
120
+ namespace CONTEXT {
121
+ }
122
+ type CONTEXT = _i_in._T_Location;
123
+ namespace PARAMS {
124
+ namespace value_serializers {
125
+ }
126
+ type value_serializers = _T_Value_Serializers;
127
+ }
128
+ namespace RESULT {
129
+ }
130
+ type RESULT = _i_out._T_Value;
131
+ }
132
+ export declare namespace _T_s_Range {
133
+ namespace CONTEXT {
134
+ }
135
+ type CONTEXT = _i_in._T_Range;
136
+ namespace PARAMS {
137
+ namespace value_serializers {
138
+ }
139
+ type value_serializers = _T_Value_Serializers;
140
+ }
141
+ namespace RESULT {
142
+ }
143
+ type RESULT = _i_out._T_Value;
144
+ }
145
+ export declare namespace _T_s_Relative_Location {
146
+ namespace CONTEXT {
147
+ }
148
+ type CONTEXT = _i_in._T_Relative_Location;
149
+ namespace PARAMS {
150
+ namespace value_serializers {
151
+ }
152
+ type value_serializers = _T_Value_Serializers;
153
+ }
154
+ namespace RESULT {
155
+ }
156
+ type RESULT = _i_out._T_Value;
157
+ }
158
+ export declare namespace _T_s_Relative_Range {
159
+ namespace CONTEXT {
160
+ }
161
+ type CONTEXT = _i_in._T_Relative_Range;
162
+ namespace PARAMS {
163
+ namespace value_serializers {
164
+ }
165
+ type value_serializers = _T_Value_Serializers;
166
+ }
167
+ namespace RESULT {
168
+ }
169
+ type RESULT = _i_out._T_Value;
170
+ }
171
+ export declare namespace _T_s_String {
172
+ namespace CONTEXT {
173
+ }
174
+ type CONTEXT = _i_in._T_String;
175
+ namespace PARAMS {
176
+ namespace value_serializers {
177
+ }
178
+ type value_serializers = _T_Value_Serializers;
179
+ }
180
+ namespace RESULT {
181
+ }
182
+ type RESULT = _i_out._T_Value;
183
+ }
184
+ export declare namespace _T_s_String_Type {
185
+ namespace CONTEXT {
186
+ }
187
+ type CONTEXT = _i_in._T_String_Type;
188
+ namespace PARAMS {
189
+ namespace value_serializers {
190
+ }
191
+ type value_serializers = _T_Value_Serializers;
192
+ }
193
+ namespace RESULT {
194
+ }
195
+ type RESULT = _i_out._T_Value;
196
+ }
197
+ export declare namespace _T_s_Structural_Token {
198
+ namespace CONTEXT {
199
+ }
200
+ type CONTEXT = _i_in._T_Structural_Token;
201
+ namespace PARAMS {
202
+ namespace value_serializers {
203
+ }
204
+ type value_serializers = _T_Value_Serializers;
205
+ }
206
+ namespace RESULT {
207
+ }
208
+ type RESULT = _i_out._T_Value;
209
+ }
210
+ export declare namespace _T_s_Trivia {
211
+ namespace CONTEXT {
212
+ }
213
+ type CONTEXT = _i_in._T_Trivia;
214
+ namespace PARAMS {
215
+ namespace value_serializers {
216
+ }
217
+ type value_serializers = _T_Value_Serializers;
218
+ }
219
+ namespace RESULT {
220
+ }
221
+ type RESULT = _i_out._T_Value;
222
+ }
223
+ export declare namespace _T_s_Value {
224
+ namespace CONTEXT {
225
+ }
226
+ type CONTEXT = _i_in._T_Value;
227
+ namespace PARAMS {
228
+ namespace value_serializers {
229
+ }
230
+ type value_serializers = _T_Value_Serializers;
231
+ }
232
+ namespace RESULT {
233
+ }
234
+ type RESULT = _i_out._T_Value;
235
+ }
236
+ export declare namespace _T_s_Whitespace {
237
+ namespace CONTEXT {
238
+ }
239
+ type CONTEXT = _i_in._T_Whitespace;
240
+ namespace PARAMS {
241
+ namespace value_serializers {
242
+ }
243
+ type value_serializers = _T_Value_Serializers;
244
+ }
245
+ namespace RESULT {
246
+ }
247
+ type RESULT = _i_out._T_Value;
248
+ }
249
+ export declare namespace Value_Serializers {
250
+ namespace _boolean {
251
+ type CONTEXT = boolean;
252
+ namespace PARAMS {
253
+ }
254
+ type RESULT = string;
255
+ }
256
+ type _boolean = ($$_: boolean, $$_p: null) => string;
257
+ namespace custom_numbers {
258
+ }
259
+ type custom_numbers = null;
260
+ namespace default_number {
261
+ type CONTEXT = number;
262
+ namespace PARAMS {
263
+ }
264
+ type RESULT = string;
265
+ }
266
+ type default_number = ($$_: number, $$_p: null) => string;
267
+ }
268
+ export declare namespace s_Document {
269
+ namespace CONTEXT {
270
+ }
271
+ type CONTEXT = _i_in._T_Document;
272
+ namespace PARAMS {
273
+ namespace value_serializers {
274
+ }
275
+ type value_serializers = _T_Value_Serializers;
276
+ }
277
+ namespace RESULT {
278
+ }
279
+ type RESULT = _i_out._T_Value;
280
+ }
281
+ export declare namespace s_Elements {
282
+ namespace CONTEXT {
283
+ }
284
+ type CONTEXT = _i_in._T_Elements;
285
+ namespace PARAMS {
286
+ namespace value_serializers {
287
+ }
288
+ type value_serializers = _T_Value_Serializers;
289
+ }
290
+ namespace RESULT {
291
+ }
292
+ type RESULT = _i_out._T_Value;
293
+ }
294
+ export declare namespace s_Key_Value_Pairs {
295
+ namespace CONTEXT {
296
+ }
297
+ type CONTEXT = _i_in._T_Key_Value_Pairs;
298
+ namespace PARAMS {
299
+ namespace value_serializers {
300
+ }
301
+ type value_serializers = _T_Value_Serializers;
302
+ }
303
+ namespace RESULT {
304
+ }
305
+ type RESULT = _i_out._T_Value;
306
+ }
307
+ export declare namespace s_Location {
308
+ namespace CONTEXT {
309
+ }
310
+ type CONTEXT = _i_in._T_Location;
311
+ namespace PARAMS {
312
+ namespace value_serializers {
313
+ }
314
+ type value_serializers = _T_Value_Serializers;
315
+ }
316
+ namespace RESULT {
317
+ }
318
+ type RESULT = _i_out._T_Value;
319
+ }
320
+ export declare namespace s_Range {
321
+ namespace CONTEXT {
322
+ }
323
+ type CONTEXT = _i_in._T_Range;
324
+ namespace PARAMS {
325
+ namespace value_serializers {
326
+ }
327
+ type value_serializers = _T_Value_Serializers;
328
+ }
329
+ namespace RESULT {
330
+ }
331
+ type RESULT = _i_out._T_Value;
332
+ }
333
+ export declare namespace s_Relative_Location {
334
+ namespace CONTEXT {
335
+ }
336
+ type CONTEXT = _i_in._T_Relative_Location;
337
+ namespace PARAMS {
338
+ namespace value_serializers {
339
+ }
340
+ type value_serializers = _T_Value_Serializers;
341
+ }
342
+ namespace RESULT {
343
+ }
344
+ type RESULT = _i_out._T_Value;
345
+ }
346
+ export declare namespace s_Relative_Range {
347
+ namespace CONTEXT {
348
+ }
349
+ type CONTEXT = _i_in._T_Relative_Range;
350
+ namespace PARAMS {
351
+ namespace value_serializers {
352
+ }
353
+ type value_serializers = _T_Value_Serializers;
354
+ }
355
+ namespace RESULT {
356
+ }
357
+ type RESULT = _i_out._T_Value;
358
+ }
359
+ export declare namespace s_String {
360
+ namespace CONTEXT {
361
+ }
362
+ type CONTEXT = _i_in._T_String;
363
+ namespace PARAMS {
364
+ namespace value_serializers {
365
+ }
366
+ type value_serializers = _T_Value_Serializers;
367
+ }
368
+ namespace RESULT {
369
+ }
370
+ type RESULT = _i_out._T_Value;
371
+ }
372
+ export declare namespace s_String_Type {
373
+ namespace CONTEXT {
374
+ }
375
+ type CONTEXT = _i_in._T_String_Type;
376
+ namespace PARAMS {
377
+ namespace value_serializers {
378
+ }
379
+ type value_serializers = _T_Value_Serializers;
380
+ }
381
+ namespace RESULT {
382
+ }
383
+ type RESULT = _i_out._T_Value;
384
+ }
385
+ export declare namespace s_Structural_Token {
386
+ namespace CONTEXT {
387
+ }
388
+ type CONTEXT = _i_in._T_Structural_Token;
389
+ namespace PARAMS {
390
+ namespace value_serializers {
391
+ }
392
+ type value_serializers = _T_Value_Serializers;
393
+ }
394
+ namespace RESULT {
395
+ }
396
+ type RESULT = _i_out._T_Value;
397
+ }
398
+ export declare namespace s_Trivia {
399
+ namespace CONTEXT {
400
+ }
401
+ type CONTEXT = _i_in._T_Trivia;
402
+ namespace PARAMS {
403
+ namespace value_serializers {
404
+ }
405
+ type value_serializers = _T_Value_Serializers;
406
+ }
407
+ namespace RESULT {
408
+ }
409
+ type RESULT = _i_out._T_Value;
410
+ }
411
+ export declare namespace s_Value {
412
+ namespace CONTEXT {
413
+ }
414
+ type CONTEXT = _i_in._T_Value;
415
+ namespace PARAMS {
416
+ namespace value_serializers {
417
+ }
418
+ type value_serializers = _T_Value_Serializers;
419
+ }
420
+ namespace RESULT {
421
+ }
422
+ type RESULT = _i_out._T_Value;
423
+ }
424
+ export declare namespace s_Whitespace {
425
+ namespace CONTEXT {
426
+ }
427
+ type CONTEXT = _i_in._T_Whitespace;
428
+ namespace PARAMS {
429
+ namespace value_serializers {
430
+ }
431
+ type value_serializers = _T_Value_Serializers;
432
+ }
433
+ namespace RESULT {
434
+ }
435
+ type RESULT = _i_out._T_Value;
436
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvYXN0L3NlcmlhbGl6ZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9