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.
- package/dist/bin/convert_to_json.js +10 -20
- package/dist/bin/validate_astn.js +9 -19
- package/dist/generated/generic/astn_target.d.ts +186 -0
- package/dist/generated/generic/astn_target.js +3 -0
- package/dist/generated/generic/resolve.d.ts +2 -2
- package/dist/generated/generic/resolve.js +14 -22
- package/dist/generated/implementation/generic/resolve.d.ts +81 -0
- 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/serializer.d.ts +14 -0
- package/dist/generated/implementation/schemas/ast/serializer.js +328 -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/serializer.d.ts +3 -0
- package/dist/generated/implementation/schemas/ide/serializer.js +72 -0
- package/dist/generated/implementation/schemas/ide/unmarshall.d.ts +4 -0
- 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/serializer.d.ts +6 -0
- package/dist/generated/implementation/schemas/parse_result/serializer.js +288 -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/serializer.d.ts +3 -0
- package/dist/generated/implementation/schemas/target/serializer.js +122 -0
- package/dist/generated/implementation/schemas/target/unmarshall.d.ts +3 -0
- 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/generic/resolve.d.ts +11 -0
- package/dist/generated/interface/generic/resolve.js +3 -0
- 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/serializer.d.ts +436 -0
- package/dist/generated/interface/schemas/ast/serializer.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/migrate_boilerplate.d.ts +68 -0
- package/dist/generated/interface/schemas/ide/migrate_boilerplate.js +3 -0
- package/dist/generated/interface/schemas/ide/serializer.d.ts +106 -0
- package/dist/generated/interface/schemas/ide/serializer.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/serializer.d.ts +196 -0
- package/dist/generated/interface/schemas/parse_result/serializer.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.d.ts +46 -0
- package/dist/generated/interface/schemas/target/migrate_boilerplate.js +3 -0
- package/dist/generated/interface/schemas/target/serializer.d.ts +126 -0
- package/dist/generated/interface/schemas/target/serializer.js +3 -0
- package/dist/generated/interface/schemas/target/unconstrained.d.ts +1 -1
- package/dist/generated/interface/schemas/target/unmarshall.d.ts +46 -0
- package/dist/generated/interface/schemas/target/unmarshall.js +3 -0
- package/dist/generated/interface/schemas/target_json/unconstrained.d.ts +1 -1
- 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/token/migrate_boilerplate.d.ts +222 -0
- 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/token/unconstrained.js +3 -0
- package/dist/generated/interface/schemas/token/unmarshall.d.ts +222 -0
- package/dist/generated/interface/schemas/token/unmarshall.js +3 -0
- package/dist/index.js +8 -18
- 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/parse_generic.d.ts +7 -42
- package/dist/parse/parse_generic.js +14 -605
- 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/parse/tokenize.d.ts +8 -0
- package/dist/parse/tokenize.js +483 -0
- package/dist/serializers/json.js +8 -18
- 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/dist/transformations/target_json/fountain_pen_block.js +8 -18
- package/package.json +5 -7
|
@@ -0,0 +1,196 @@
|
|
|
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_Parse_Error = ($$_: _i_in._T_Parse_Error, $$_p: {
|
|
12
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
13
|
+
}) => _i_out._T_Value;
|
|
14
|
+
export type _T_s_Parse_Result = ($$_: _i_in._T_Parse_Result, $$_p: {
|
|
15
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
16
|
+
}) => _i_out._T_Value;
|
|
17
|
+
export type _T_s_Token_Type = ($$_: _i_in._T_Token_Type, $$_p: {
|
|
18
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
19
|
+
}) => _i_out._T_Value;
|
|
20
|
+
export type _T_s_Tokenizer_Result = ($$_: _i_in._T_Tokenizer_Result, $$_p: {
|
|
21
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
22
|
+
}) => _i_out._T_Value;
|
|
23
|
+
export type Value_Serializers = _T_Value_Serializers;
|
|
24
|
+
export type s_Annotated_Token = _T_s_Annotated_Token;
|
|
25
|
+
export type s_Parse_Error = _T_s_Parse_Error;
|
|
26
|
+
export type s_Parse_Result = _T_s_Parse_Result;
|
|
27
|
+
export type s_Token_Type = _T_s_Token_Type;
|
|
28
|
+
export type s_Tokenizer_Result = _T_s_Tokenizer_Result;
|
|
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_Annotated_Token {
|
|
49
|
+
namespace CONTEXT {
|
|
50
|
+
}
|
|
51
|
+
type CONTEXT = _i_in._T_Annotated_Token;
|
|
52
|
+
namespace PARAMS {
|
|
53
|
+
namespace value_serializers {
|
|
54
|
+
}
|
|
55
|
+
type value_serializers = _T_Value_Serializers;
|
|
56
|
+
}
|
|
57
|
+
namespace RESULT {
|
|
58
|
+
}
|
|
59
|
+
type RESULT = _i_out._T_Value;
|
|
60
|
+
}
|
|
61
|
+
export declare namespace _T_s_Parse_Error {
|
|
62
|
+
namespace CONTEXT {
|
|
63
|
+
}
|
|
64
|
+
type CONTEXT = _i_in._T_Parse_Error;
|
|
65
|
+
namespace PARAMS {
|
|
66
|
+
namespace value_serializers {
|
|
67
|
+
}
|
|
68
|
+
type value_serializers = _T_Value_Serializers;
|
|
69
|
+
}
|
|
70
|
+
namespace RESULT {
|
|
71
|
+
}
|
|
72
|
+
type RESULT = _i_out._T_Value;
|
|
73
|
+
}
|
|
74
|
+
export declare namespace _T_s_Parse_Result {
|
|
75
|
+
namespace CONTEXT {
|
|
76
|
+
}
|
|
77
|
+
type CONTEXT = _i_in._T_Parse_Result;
|
|
78
|
+
namespace PARAMS {
|
|
79
|
+
namespace value_serializers {
|
|
80
|
+
}
|
|
81
|
+
type value_serializers = _T_Value_Serializers;
|
|
82
|
+
}
|
|
83
|
+
namespace RESULT {
|
|
84
|
+
}
|
|
85
|
+
type RESULT = _i_out._T_Value;
|
|
86
|
+
}
|
|
87
|
+
export declare namespace _T_s_Token_Type {
|
|
88
|
+
namespace CONTEXT {
|
|
89
|
+
}
|
|
90
|
+
type CONTEXT = _i_in._T_Token_Type;
|
|
91
|
+
namespace PARAMS {
|
|
92
|
+
namespace value_serializers {
|
|
93
|
+
}
|
|
94
|
+
type value_serializers = _T_Value_Serializers;
|
|
95
|
+
}
|
|
96
|
+
namespace RESULT {
|
|
97
|
+
}
|
|
98
|
+
type RESULT = _i_out._T_Value;
|
|
99
|
+
}
|
|
100
|
+
export declare namespace _T_s_Tokenizer_Result {
|
|
101
|
+
namespace CONTEXT {
|
|
102
|
+
}
|
|
103
|
+
type CONTEXT = _i_in._T_Tokenizer_Result;
|
|
104
|
+
namespace PARAMS {
|
|
105
|
+
namespace value_serializers {
|
|
106
|
+
}
|
|
107
|
+
type value_serializers = _T_Value_Serializers;
|
|
108
|
+
}
|
|
109
|
+
namespace RESULT {
|
|
110
|
+
}
|
|
111
|
+
type RESULT = _i_out._T_Value;
|
|
112
|
+
}
|
|
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 {
|
|
122
|
+
}
|
|
123
|
+
type custom_numbers = null;
|
|
124
|
+
namespace default_number {
|
|
125
|
+
type CONTEXT = number;
|
|
126
|
+
namespace PARAMS {
|
|
127
|
+
}
|
|
128
|
+
type RESULT = string;
|
|
129
|
+
}
|
|
130
|
+
type default_number = ($$_: number, $$_p: null) => string;
|
|
131
|
+
}
|
|
132
|
+
export declare namespace s_Annotated_Token {
|
|
133
|
+
namespace CONTEXT {
|
|
134
|
+
}
|
|
135
|
+
type CONTEXT = _i_in._T_Annotated_Token;
|
|
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 s_Parse_Error {
|
|
146
|
+
namespace CONTEXT {
|
|
147
|
+
}
|
|
148
|
+
type CONTEXT = _i_in._T_Parse_Error;
|
|
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 s_Parse_Result {
|
|
159
|
+
namespace CONTEXT {
|
|
160
|
+
}
|
|
161
|
+
type CONTEXT = _i_in._T_Parse_Result;
|
|
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 s_Token_Type {
|
|
172
|
+
namespace CONTEXT {
|
|
173
|
+
}
|
|
174
|
+
type CONTEXT = _i_in._T_Token_Type;
|
|
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 s_Tokenizer_Result {
|
|
185
|
+
namespace CONTEXT {
|
|
186
|
+
}
|
|
187
|
+
type CONTEXT = _i_in._T_Tokenizer_Result;
|
|
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
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvcGFyc2VfcmVzdWx0L3NlcmlhbGl6ZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
|
|
@@ -1,13 +1,8 @@
|
|
|
1
|
-
import * as _i_core from "../../core/
|
|
1
|
+
import * as _i_core from "../../core/unconstrained";
|
|
2
2
|
import * as _i_imports_ast from "../ast/unconstrained";
|
|
3
|
-
|
|
4
|
-
readonly 'end': _i_imports_ast._T_Location;
|
|
5
|
-
readonly 'start': _i_imports_ast._T_Location;
|
|
6
|
-
readonly 'trailing trivia': _i_imports_ast._T_Trivia;
|
|
7
|
-
readonly 'type': _T_Token_Type;
|
|
8
|
-
};
|
|
3
|
+
import * as _i_imports_token from "../token/unconstrained";
|
|
9
4
|
export type _T_Parse_Error = {
|
|
10
|
-
readonly 'range':
|
|
5
|
+
readonly 'range': _i_imports_token._T_Range;
|
|
11
6
|
readonly 'type': _i_core._T_State_Group<null, readonly [
|
|
12
7
|
'lexer',
|
|
13
8
|
_i_core._T_State_Group<null, readonly ['dangling slash', null] | readonly ['invalid unicode escape sequence', null] | readonly ['missing character after escape', null] | readonly ['unexpected character', number] | readonly ['unexpected control character', number] | readonly ['unexpected end of input', null] | readonly ['unexpected end of line in delimited string', null] | readonly ['unknown escape character', null] | readonly ['unterminated block comment', null] | readonly ['unterminated string', null] | readonly ['unterminated unicode escape sequence', null]>
|
|
@@ -17,7 +12,7 @@ export type _T_Parse_Error = {
|
|
|
17
12
|
readonly 'cause': _i_core._T_State_Group<null, readonly ['missing token', null] | readonly [
|
|
18
13
|
'unexpected token',
|
|
19
14
|
{
|
|
20
|
-
readonly 'found': _T_Token_Type;
|
|
15
|
+
readonly 'found': _i_imports_token._T_Token_Type;
|
|
21
16
|
}
|
|
22
17
|
]>;
|
|
23
18
|
readonly 'expected': _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['!', null] | readonly [')', null] | readonly [',', null] | readonly [':', null] | readonly ['>', null] | readonly ['@', null] | readonly [']', null] | readonly ['a string', null] | readonly ['a value', null] | readonly ['}', null]>>;
|
|
@@ -25,41 +20,12 @@ export type _T_Parse_Error = {
|
|
|
25
20
|
]>;
|
|
26
21
|
};
|
|
27
22
|
export type _T_Parse_Result = _i_core._T_State_Group<null, readonly ['failure', _T_Parse_Error] | readonly ['success', _i_imports_ast._T_Document]>;
|
|
28
|
-
export type _T_Token_Type = _i_core._T_State_Group<null, readonly ['!', null] | readonly ['(', null] | readonly [')', null] | readonly ['*', null] | readonly [',', null] | readonly [':', null] | readonly ['<', null] | readonly ['>', null] | readonly ['@', null] | readonly ['[', null] | readonly [']', null] | readonly [
|
|
29
|
-
'string',
|
|
30
|
-
{
|
|
31
|
-
readonly 'type': _i_imports_ast._T_String_Type;
|
|
32
|
-
readonly 'value': string;
|
|
33
|
-
}
|
|
34
|
-
] | readonly ['{', null] | readonly ['|', null] | readonly ['}', null] | readonly ['~', null]>;
|
|
35
|
-
export type _T_Tokenizer_Result = {
|
|
36
|
-
readonly 'end': _i_imports_ast._T_Location;
|
|
37
|
-
readonly 'leading trivia': _i_imports_ast._T_Trivia;
|
|
38
|
-
readonly 'tokens': _i_core._T_List<null, _T_Annotated_Token>;
|
|
39
|
-
};
|
|
40
|
-
export type Annotated_Token = _T_Annotated_Token;
|
|
41
23
|
export type Parse_Error = _T_Parse_Error;
|
|
42
24
|
export type Parse_Result = _T_Parse_Result;
|
|
43
|
-
export type Token_Type = _T_Token_Type;
|
|
44
|
-
export type Tokenizer_Result = _T_Tokenizer_Result;
|
|
45
|
-
export declare namespace _T_Annotated_Token {
|
|
46
|
-
namespace end {
|
|
47
|
-
}
|
|
48
|
-
type end = _i_imports_ast._T_Location;
|
|
49
|
-
namespace start {
|
|
50
|
-
}
|
|
51
|
-
type start = _i_imports_ast._T_Location;
|
|
52
|
-
namespace trailing_trivia {
|
|
53
|
-
}
|
|
54
|
-
type trailing_trivia = _i_imports_ast._T_Trivia;
|
|
55
|
-
namespace _type {
|
|
56
|
-
}
|
|
57
|
-
type _type = _T_Token_Type;
|
|
58
|
-
}
|
|
59
25
|
export declare namespace _T_Parse_Error {
|
|
60
26
|
namespace range {
|
|
61
27
|
}
|
|
62
|
-
type range =
|
|
28
|
+
type range = _i_imports_token._T_Range;
|
|
63
29
|
namespace _type {
|
|
64
30
|
namespace SG {
|
|
65
31
|
namespace lexer {
|
|
@@ -86,23 +52,23 @@ export declare namespace _T_Parse_Error {
|
|
|
86
52
|
namespace unexpected_token {
|
|
87
53
|
namespace found {
|
|
88
54
|
}
|
|
89
|
-
type found = _T_Token_Type;
|
|
55
|
+
type found = _i_imports_token._T_Token_Type;
|
|
90
56
|
}
|
|
91
57
|
type unexpected_token = {
|
|
92
|
-
readonly 'found': _T_Token_Type;
|
|
58
|
+
readonly 'found': _i_imports_token._T_Token_Type;
|
|
93
59
|
};
|
|
94
60
|
}
|
|
95
61
|
type SG = readonly ['missing token', null] | readonly [
|
|
96
62
|
'unexpected token',
|
|
97
63
|
{
|
|
98
|
-
readonly 'found': _T_Token_Type;
|
|
64
|
+
readonly 'found': _i_imports_token._T_Token_Type;
|
|
99
65
|
}
|
|
100
66
|
];
|
|
101
67
|
}
|
|
102
68
|
type cause = _i_core._T_State_Group<null, readonly ['missing token', null] | readonly [
|
|
103
69
|
'unexpected token',
|
|
104
70
|
{
|
|
105
|
-
readonly 'found': _T_Token_Type;
|
|
71
|
+
readonly 'found': _i_imports_token._T_Token_Type;
|
|
106
72
|
}
|
|
107
73
|
]>;
|
|
108
74
|
namespace expected {
|
|
@@ -129,7 +95,7 @@ export declare namespace _T_Parse_Error {
|
|
|
129
95
|
readonly 'cause': _i_core._T_State_Group<null, readonly ['missing token', null] | readonly [
|
|
130
96
|
'unexpected token',
|
|
131
97
|
{
|
|
132
|
-
readonly 'found': _T_Token_Type;
|
|
98
|
+
readonly 'found': _i_imports_token._T_Token_Type;
|
|
133
99
|
}
|
|
134
100
|
]>;
|
|
135
101
|
readonly 'expected': _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['!', null] | readonly [')', null] | readonly [',', null] | readonly [':', null] | readonly ['>', null] | readonly ['@', null] | readonly [']', null] | readonly ['a string', null] | readonly ['a value', null] | readonly ['}', null]>>;
|
|
@@ -144,7 +110,7 @@ export declare namespace _T_Parse_Error {
|
|
|
144
110
|
readonly 'cause': _i_core._T_State_Group<null, readonly ['missing token', null] | readonly [
|
|
145
111
|
'unexpected token',
|
|
146
112
|
{
|
|
147
|
-
readonly 'found': _T_Token_Type;
|
|
113
|
+
readonly 'found': _i_imports_token._T_Token_Type;
|
|
148
114
|
}
|
|
149
115
|
]>;
|
|
150
116
|
readonly 'expected': _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['!', null] | readonly [')', null] | readonly [',', null] | readonly [':', null] | readonly ['>', null] | readonly ['@', null] | readonly [']', null] | readonly ['a string', null] | readonly ['a value', null] | readonly ['}', null]>>;
|
|
@@ -160,7 +126,7 @@ export declare namespace _T_Parse_Error {
|
|
|
160
126
|
readonly 'cause': _i_core._T_State_Group<null, readonly ['missing token', null] | readonly [
|
|
161
127
|
'unexpected token',
|
|
162
128
|
{
|
|
163
|
-
readonly 'found': _T_Token_Type;
|
|
129
|
+
readonly 'found': _i_imports_token._T_Token_Type;
|
|
164
130
|
}
|
|
165
131
|
]>;
|
|
166
132
|
readonly 'expected': _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['!', null] | readonly [')', null] | readonly [',', null] | readonly [':', null] | readonly ['>', null] | readonly ['@', null] | readonly [']', null] | readonly ['a string', null] | readonly ['a value', null] | readonly ['}', null]>>;
|
|
@@ -178,74 +144,10 @@ export declare namespace _T_Parse_Result {
|
|
|
178
144
|
}
|
|
179
145
|
type SG = readonly ['failure', _T_Parse_Error] | readonly ['success', _i_imports_ast._T_Document];
|
|
180
146
|
}
|
|
181
|
-
export declare namespace _T_Token_Type {
|
|
182
|
-
namespace SG {
|
|
183
|
-
type $ex_ = null;
|
|
184
|
-
type $po_ = null;
|
|
185
|
-
type $pc_ = null;
|
|
186
|
-
type $sr_ = null;
|
|
187
|
-
type $cm_ = null;
|
|
188
|
-
type $cl_ = null;
|
|
189
|
-
type $st_ = null;
|
|
190
|
-
type $gt_ = null;
|
|
191
|
-
type $at_ = null;
|
|
192
|
-
type $bo_ = null;
|
|
193
|
-
type $bc_ = null;
|
|
194
|
-
namespace _string {
|
|
195
|
-
namespace _type {
|
|
196
|
-
}
|
|
197
|
-
type _type = _i_imports_ast._T_String_Type;
|
|
198
|
-
type value = string;
|
|
199
|
-
}
|
|
200
|
-
type _string = {
|
|
201
|
-
readonly 'type': _i_imports_ast._T_String_Type;
|
|
202
|
-
readonly 'value': string;
|
|
203
|
-
};
|
|
204
|
-
type $co_ = null;
|
|
205
|
-
type $vb_ = null;
|
|
206
|
-
type $cc_ = null;
|
|
207
|
-
type $ti_ = null;
|
|
208
|
-
}
|
|
209
|
-
type SG = readonly ['!', null] | readonly ['(', null] | readonly [')', null] | readonly ['*', null] | readonly [',', null] | readonly [':', null] | readonly ['<', null] | readonly ['>', null] | readonly ['@', null] | readonly ['[', null] | readonly [']', null] | readonly [
|
|
210
|
-
'string',
|
|
211
|
-
{
|
|
212
|
-
readonly 'type': _i_imports_ast._T_String_Type;
|
|
213
|
-
readonly 'value': string;
|
|
214
|
-
}
|
|
215
|
-
] | readonly ['{', null] | readonly ['|', null] | readonly ['}', null] | readonly ['~', null];
|
|
216
|
-
}
|
|
217
|
-
export declare namespace _T_Tokenizer_Result {
|
|
218
|
-
namespace end {
|
|
219
|
-
}
|
|
220
|
-
type end = _i_imports_ast._T_Location;
|
|
221
|
-
namespace leading_trivia {
|
|
222
|
-
}
|
|
223
|
-
type leading_trivia = _i_imports_ast._T_Trivia;
|
|
224
|
-
namespace tokens {
|
|
225
|
-
namespace L {
|
|
226
|
-
}
|
|
227
|
-
type L = _T_Annotated_Token;
|
|
228
|
-
}
|
|
229
|
-
type tokens = _i_core._T_List<null, _T_Annotated_Token>;
|
|
230
|
-
}
|
|
231
|
-
export declare namespace Annotated_Token {
|
|
232
|
-
namespace end {
|
|
233
|
-
}
|
|
234
|
-
type end = _i_imports_ast._T_Location;
|
|
235
|
-
namespace start {
|
|
236
|
-
}
|
|
237
|
-
type start = _i_imports_ast._T_Location;
|
|
238
|
-
namespace trailing_trivia {
|
|
239
|
-
}
|
|
240
|
-
type trailing_trivia = _i_imports_ast._T_Trivia;
|
|
241
|
-
namespace _type {
|
|
242
|
-
}
|
|
243
|
-
type _type = _T_Token_Type;
|
|
244
|
-
}
|
|
245
147
|
export declare namespace Parse_Error {
|
|
246
148
|
namespace range {
|
|
247
149
|
}
|
|
248
|
-
type range =
|
|
150
|
+
type range = _i_imports_token._T_Range;
|
|
249
151
|
namespace _type {
|
|
250
152
|
namespace SG {
|
|
251
153
|
namespace lexer {
|
|
@@ -272,23 +174,23 @@ export declare namespace Parse_Error {
|
|
|
272
174
|
namespace unexpected_token {
|
|
273
175
|
namespace found {
|
|
274
176
|
}
|
|
275
|
-
type found = _T_Token_Type;
|
|
177
|
+
type found = _i_imports_token._T_Token_Type;
|
|
276
178
|
}
|
|
277
179
|
type unexpected_token = {
|
|
278
|
-
readonly 'found': _T_Token_Type;
|
|
180
|
+
readonly 'found': _i_imports_token._T_Token_Type;
|
|
279
181
|
};
|
|
280
182
|
}
|
|
281
183
|
type SG = readonly ['missing token', null] | readonly [
|
|
282
184
|
'unexpected token',
|
|
283
185
|
{
|
|
284
|
-
readonly 'found': _T_Token_Type;
|
|
186
|
+
readonly 'found': _i_imports_token._T_Token_Type;
|
|
285
187
|
}
|
|
286
188
|
];
|
|
287
189
|
}
|
|
288
190
|
type cause = _i_core._T_State_Group<null, readonly ['missing token', null] | readonly [
|
|
289
191
|
'unexpected token',
|
|
290
192
|
{
|
|
291
|
-
readonly 'found': _T_Token_Type;
|
|
193
|
+
readonly 'found': _i_imports_token._T_Token_Type;
|
|
292
194
|
}
|
|
293
195
|
]>;
|
|
294
196
|
namespace expected {
|
|
@@ -315,7 +217,7 @@ export declare namespace Parse_Error {
|
|
|
315
217
|
readonly 'cause': _i_core._T_State_Group<null, readonly ['missing token', null] | readonly [
|
|
316
218
|
'unexpected token',
|
|
317
219
|
{
|
|
318
|
-
readonly 'found': _T_Token_Type;
|
|
220
|
+
readonly 'found': _i_imports_token._T_Token_Type;
|
|
319
221
|
}
|
|
320
222
|
]>;
|
|
321
223
|
readonly 'expected': _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['!', null] | readonly [')', null] | readonly [',', null] | readonly [':', null] | readonly ['>', null] | readonly ['@', null] | readonly [']', null] | readonly ['a string', null] | readonly ['a value', null] | readonly ['}', null]>>;
|
|
@@ -330,7 +232,7 @@ export declare namespace Parse_Error {
|
|
|
330
232
|
readonly 'cause': _i_core._T_State_Group<null, readonly ['missing token', null] | readonly [
|
|
331
233
|
'unexpected token',
|
|
332
234
|
{
|
|
333
|
-
readonly 'found': _T_Token_Type;
|
|
235
|
+
readonly 'found': _i_imports_token._T_Token_Type;
|
|
334
236
|
}
|
|
335
237
|
]>;
|
|
336
238
|
readonly 'expected': _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['!', null] | readonly [')', null] | readonly [',', null] | readonly [':', null] | readonly ['>', null] | readonly ['@', null] | readonly [']', null] | readonly ['a string', null] | readonly ['a value', null] | readonly ['}', null]>>;
|
|
@@ -346,7 +248,7 @@ export declare namespace Parse_Error {
|
|
|
346
248
|
readonly 'cause': _i_core._T_State_Group<null, readonly ['missing token', null] | readonly [
|
|
347
249
|
'unexpected token',
|
|
348
250
|
{
|
|
349
|
-
readonly 'found': _T_Token_Type;
|
|
251
|
+
readonly 'found': _i_imports_token._T_Token_Type;
|
|
350
252
|
}
|
|
351
253
|
]>;
|
|
352
254
|
readonly 'expected': _i_core._T_List<null, _i_core._T_State_Group<null, readonly ['!', null] | readonly [')', null] | readonly [',', null] | readonly [':', null] | readonly ['>', null] | readonly ['@', null] | readonly [']', null] | readonly ['a string', null] | readonly ['a value', null] | readonly ['}', null]>>;
|
|
@@ -364,53 +266,3 @@ export declare namespace Parse_Result {
|
|
|
364
266
|
}
|
|
365
267
|
type SG = readonly ['failure', _T_Parse_Error] | readonly ['success', _i_imports_ast._T_Document];
|
|
366
268
|
}
|
|
367
|
-
export declare namespace Token_Type {
|
|
368
|
-
namespace SG {
|
|
369
|
-
type $ex_ = null;
|
|
370
|
-
type $po_ = null;
|
|
371
|
-
type $pc_ = null;
|
|
372
|
-
type $sr_ = null;
|
|
373
|
-
type $cm_ = null;
|
|
374
|
-
type $cl_ = null;
|
|
375
|
-
type $st_ = null;
|
|
376
|
-
type $gt_ = null;
|
|
377
|
-
type $at_ = null;
|
|
378
|
-
type $bo_ = null;
|
|
379
|
-
type $bc_ = null;
|
|
380
|
-
namespace _string {
|
|
381
|
-
namespace _type {
|
|
382
|
-
}
|
|
383
|
-
type _type = _i_imports_ast._T_String_Type;
|
|
384
|
-
type value = string;
|
|
385
|
-
}
|
|
386
|
-
type _string = {
|
|
387
|
-
readonly 'type': _i_imports_ast._T_String_Type;
|
|
388
|
-
readonly 'value': string;
|
|
389
|
-
};
|
|
390
|
-
type $co_ = null;
|
|
391
|
-
type $vb_ = null;
|
|
392
|
-
type $cc_ = null;
|
|
393
|
-
type $ti_ = null;
|
|
394
|
-
}
|
|
395
|
-
type SG = readonly ['!', null] | readonly ['(', null] | readonly [')', null] | readonly ['*', null] | readonly [',', null] | readonly [':', null] | readonly ['<', null] | readonly ['>', null] | readonly ['@', null] | readonly ['[', null] | readonly [']', null] | readonly [
|
|
396
|
-
'string',
|
|
397
|
-
{
|
|
398
|
-
readonly 'type': _i_imports_ast._T_String_Type;
|
|
399
|
-
readonly 'value': string;
|
|
400
|
-
}
|
|
401
|
-
] | readonly ['{', null] | readonly ['|', null] | readonly ['}', null] | readonly ['~', null];
|
|
402
|
-
}
|
|
403
|
-
export declare namespace Tokenizer_Result {
|
|
404
|
-
namespace end {
|
|
405
|
-
}
|
|
406
|
-
type end = _i_imports_ast._T_Location;
|
|
407
|
-
namespace leading_trivia {
|
|
408
|
-
}
|
|
409
|
-
type leading_trivia = _i_imports_ast._T_Trivia;
|
|
410
|
-
namespace tokens {
|
|
411
|
-
namespace L {
|
|
412
|
-
}
|
|
413
|
-
type L = _T_Annotated_Token;
|
|
414
|
-
}
|
|
415
|
-
type tokens = _i_core._T_List<null, _T_Annotated_Token>;
|
|
416
|
-
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import * as _i_in from "../../core/astn_source";
|
|
2
|
+
import * as _i_out from "./unconstrained";
|
|
3
|
+
export type _T_Parse_Error = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Parse_Error;
|
|
4
|
+
export type _T_Parse_Result = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Parse_Result;
|
|
5
|
+
export type Parse_Error = _T_Parse_Error;
|
|
6
|
+
export type Parse_Result = _T_Parse_Result;
|
|
7
|
+
export declare namespace _T_Parse_Error {
|
|
8
|
+
namespace CONTEXT {
|
|
9
|
+
}
|
|
10
|
+
type CONTEXT = _i_in._T_Value;
|
|
11
|
+
namespace PARAMS {
|
|
12
|
+
}
|
|
13
|
+
namespace RESULT {
|
|
14
|
+
}
|
|
15
|
+
type RESULT = _i_out._T_Parse_Error;
|
|
16
|
+
}
|
|
17
|
+
export declare namespace _T_Parse_Result {
|
|
18
|
+
namespace CONTEXT {
|
|
19
|
+
}
|
|
20
|
+
type CONTEXT = _i_in._T_Value;
|
|
21
|
+
namespace PARAMS {
|
|
22
|
+
}
|
|
23
|
+
namespace RESULT {
|
|
24
|
+
}
|
|
25
|
+
type RESULT = _i_out._T_Parse_Result;
|
|
26
|
+
}
|
|
27
|
+
export declare namespace Parse_Error {
|
|
28
|
+
namespace CONTEXT {
|
|
29
|
+
}
|
|
30
|
+
type CONTEXT = _i_in._T_Value;
|
|
31
|
+
namespace PARAMS {
|
|
32
|
+
}
|
|
33
|
+
namespace RESULT {
|
|
34
|
+
}
|
|
35
|
+
type RESULT = _i_out._T_Parse_Error;
|
|
36
|
+
}
|
|
37
|
+
export declare namespace Parse_Result {
|
|
38
|
+
namespace CONTEXT {
|
|
39
|
+
}
|
|
40
|
+
type CONTEXT = _i_in._T_Value;
|
|
41
|
+
namespace PARAMS {
|
|
42
|
+
}
|
|
43
|
+
namespace RESULT {
|
|
44
|
+
}
|
|
45
|
+
type RESULT = _i_out._T_Parse_Result;
|
|
46
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5tYXJzaGFsbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvcGFyc2VfcmVzdWx0L3VubWFyc2hhbGwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
|
|
@@ -0,0 +1,126 @@
|
|
|
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': {
|
|
6
|
+
readonly 'Position': ($$_: number, $$_p: null) => string;
|
|
7
|
+
};
|
|
8
|
+
readonly 'default number': ($$_: number, $$_p: null) => string;
|
|
9
|
+
};
|
|
10
|
+
export type _T_s_Document = ($$_: _i_in._T_Document, $$_p: {
|
|
11
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
12
|
+
}) => _i_out._T_Value;
|
|
13
|
+
export type _T_s_Value = ($$_: _i_in._T_Value, $$_p: {
|
|
14
|
+
readonly 'value serializers': _T_Value_Serializers;
|
|
15
|
+
}) => _i_out._T_Value;
|
|
16
|
+
export type Value_Serializers = _T_Value_Serializers;
|
|
17
|
+
export type s_Document = _T_s_Document;
|
|
18
|
+
export type s_Value = _T_s_Value;
|
|
19
|
+
export declare namespace _T_Value_Serializers {
|
|
20
|
+
namespace _boolean {
|
|
21
|
+
type CONTEXT = boolean;
|
|
22
|
+
namespace PARAMS {
|
|
23
|
+
}
|
|
24
|
+
type RESULT = string;
|
|
25
|
+
}
|
|
26
|
+
type _boolean = ($$_: boolean, $$_p: null) => string;
|
|
27
|
+
namespace custom_numbers {
|
|
28
|
+
namespace Position {
|
|
29
|
+
type CONTEXT = number;
|
|
30
|
+
namespace PARAMS {
|
|
31
|
+
}
|
|
32
|
+
type RESULT = string;
|
|
33
|
+
}
|
|
34
|
+
type Position = ($$_: number, $$_p: null) => string;
|
|
35
|
+
}
|
|
36
|
+
type custom_numbers = {
|
|
37
|
+
readonly 'Position': ($$_: number, $$_p: null) => string;
|
|
38
|
+
};
|
|
39
|
+
namespace default_number {
|
|
40
|
+
type CONTEXT = number;
|
|
41
|
+
namespace PARAMS {
|
|
42
|
+
}
|
|
43
|
+
type RESULT = string;
|
|
44
|
+
}
|
|
45
|
+
type default_number = ($$_: number, $$_p: null) => string;
|
|
46
|
+
}
|
|
47
|
+
export declare namespace _T_s_Document {
|
|
48
|
+
namespace CONTEXT {
|
|
49
|
+
}
|
|
50
|
+
type CONTEXT = _i_in._T_Document;
|
|
51
|
+
namespace PARAMS {
|
|
52
|
+
namespace value_serializers {
|
|
53
|
+
}
|
|
54
|
+
type value_serializers = _T_Value_Serializers;
|
|
55
|
+
}
|
|
56
|
+
namespace RESULT {
|
|
57
|
+
}
|
|
58
|
+
type RESULT = _i_out._T_Value;
|
|
59
|
+
}
|
|
60
|
+
export declare namespace _T_s_Value {
|
|
61
|
+
namespace CONTEXT {
|
|
62
|
+
}
|
|
63
|
+
type CONTEXT = _i_in._T_Value;
|
|
64
|
+
namespace PARAMS {
|
|
65
|
+
namespace value_serializers {
|
|
66
|
+
}
|
|
67
|
+
type value_serializers = _T_Value_Serializers;
|
|
68
|
+
}
|
|
69
|
+
namespace RESULT {
|
|
70
|
+
}
|
|
71
|
+
type RESULT = _i_out._T_Value;
|
|
72
|
+
}
|
|
73
|
+
export declare namespace Value_Serializers {
|
|
74
|
+
namespace _boolean {
|
|
75
|
+
type CONTEXT = boolean;
|
|
76
|
+
namespace PARAMS {
|
|
77
|
+
}
|
|
78
|
+
type RESULT = string;
|
|
79
|
+
}
|
|
80
|
+
type _boolean = ($$_: boolean, $$_p: null) => string;
|
|
81
|
+
namespace custom_numbers {
|
|
82
|
+
namespace Position {
|
|
83
|
+
type CONTEXT = number;
|
|
84
|
+
namespace PARAMS {
|
|
85
|
+
}
|
|
86
|
+
type RESULT = string;
|
|
87
|
+
}
|
|
88
|
+
type Position = ($$_: number, $$_p: null) => string;
|
|
89
|
+
}
|
|
90
|
+
type custom_numbers = {
|
|
91
|
+
readonly 'Position': ($$_: number, $$_p: null) => string;
|
|
92
|
+
};
|
|
93
|
+
namespace default_number {
|
|
94
|
+
type CONTEXT = number;
|
|
95
|
+
namespace PARAMS {
|
|
96
|
+
}
|
|
97
|
+
type RESULT = string;
|
|
98
|
+
}
|
|
99
|
+
type default_number = ($$_: number, $$_p: null) => string;
|
|
100
|
+
}
|
|
101
|
+
export declare namespace s_Document {
|
|
102
|
+
namespace CONTEXT {
|
|
103
|
+
}
|
|
104
|
+
type CONTEXT = _i_in._T_Document;
|
|
105
|
+
namespace PARAMS {
|
|
106
|
+
namespace value_serializers {
|
|
107
|
+
}
|
|
108
|
+
type value_serializers = _T_Value_Serializers;
|
|
109
|
+
}
|
|
110
|
+
namespace RESULT {
|
|
111
|
+
}
|
|
112
|
+
type RESULT = _i_out._T_Value;
|
|
113
|
+
}
|
|
114
|
+
export declare namespace s_Value {
|
|
115
|
+
namespace CONTEXT {
|
|
116
|
+
}
|
|
117
|
+
type CONTEXT = _i_in._T_Value;
|
|
118
|
+
namespace PARAMS {
|
|
119
|
+
namespace value_serializers {
|
|
120
|
+
}
|
|
121
|
+
type value_serializers = _T_Value_Serializers;
|
|
122
|
+
}
|
|
123
|
+
namespace RESULT {
|
|
124
|
+
}
|
|
125
|
+
type RESULT = _i_out._T_Value;
|
|
126
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFyc2hhbGwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvZ2VuZXJhdGVkL2ludGVyZmFjZS9zY2hlbWFzL3RhcmdldC9tYXJzaGFsbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|