astn 0.111.7 → 0.111.9
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/authoring_parse/ast.d.ts +10 -0
- package/dist/authoring_parse/ast.js +266 -0
- package/dist/authoring_parse/astn_parse_generic.d.ts +13 -0
- package/dist/authoring_parse/astn_parse_generic.js +50 -0
- package/dist/authoring_parse/parse.d.ts +6 -0
- package/dist/authoring_parse/parse.js +65 -0
- package/dist/authoring_parse/string_iterator.d.ts +41 -0
- package/dist/authoring_parse/string_iterator.js +113 -0
- package/dist/authoring_parse/token.d.ts +9 -0
- package/dist/authoring_parse/token.js +511 -0
- package/dist/generated/implementation/schemas/{ast → authoring_ast}/marshall.d.ts +1 -1
- package/dist/generated/implementation/schemas/authoring_ast/marshall.js +259 -0
- package/dist/generated/implementation/schemas/{ast → authoring_ast}/unmarshall.d.ts +1 -1
- package/dist/generated/implementation/schemas/authoring_ast/unmarshall.js +335 -0
- package/dist/generated/implementation/schemas/authoring_parse_result/marshall.d.ts +3 -0
- package/dist/generated/implementation/schemas/authoring_parse_result/marshall.js +188 -0
- package/dist/generated/implementation/schemas/authoring_parse_result/unmarshall.d.ts +3 -0
- package/dist/generated/implementation/schemas/authoring_parse_result/unmarshall.js +116 -0
- package/dist/generated/implementation/schemas/sealed_ast/marshall.d.ts +7 -0
- package/dist/generated/implementation/schemas/sealed_ast/marshall.js +208 -0
- package/dist/generated/implementation/schemas/sealed_ast/unmarshall.d.ts +7 -0
- package/dist/generated/implementation/schemas/sealed_ast/unmarshall.js +279 -0
- package/dist/generated/implementation/schemas/{parse_result → sealed_parse_result}/marshall.d.ts +1 -1
- package/dist/generated/implementation/schemas/{parse_result → sealed_parse_result}/marshall.js +6 -2
- package/dist/generated/implementation/schemas/{parse_result → sealed_parse_result}/unmarshall.d.ts +1 -1
- package/dist/generated/implementation/schemas/{parse_result → sealed_parse_result}/unmarshall.js +3 -2
- package/dist/generated/interface/schemas/{parse_result → authoring_ast}/data_types/resolve.js +1 -1
- package/dist/generated/interface/schemas/authoring_ast/data_types/source.d.ts +985 -0
- package/dist/generated/interface/schemas/{ast → authoring_ast}/data_types/source.js +1 -1
- package/dist/generated/interface/schemas/authoring_ast/data_types/target.d.ts +985 -0
- package/dist/generated/interface/schemas/{parse_result → authoring_ast}/data_types/target.js +1 -1
- package/dist/generated/interface/schemas/{parse_result → authoring_ast}/marshall.js +1 -1
- package/dist/generated/interface/schemas/{parse_result → authoring_ast}/migrate_boilerplate.js +1 -1
- package/dist/generated/interface/schemas/{ast → authoring_ast}/unmarshall.js +1 -1
- package/dist/generated/interface/schemas/{parse_result → authoring_ast}/value_deserializers.js +1 -1
- package/dist/generated/interface/schemas/{parse_result → authoring_ast}/value_serializers.js +1 -1
- package/dist/generated/interface/schemas/authoring_parse_result/data_types/resolve.js +7 -0
- package/dist/generated/interface/schemas/authoring_parse_result/data_types/source.d.ts +270 -0
- package/dist/generated/interface/schemas/authoring_parse_result/data_types/source.js +3 -0
- package/dist/generated/interface/schemas/authoring_parse_result/data_types/target.d.ts +270 -0
- package/dist/generated/interface/schemas/authoring_parse_result/data_types/target.js +3 -0
- package/dist/generated/interface/schemas/authoring_parse_result/marshall.js +3 -0
- package/dist/generated/interface/schemas/authoring_parse_result/migrate_boilerplate.js +3 -0
- package/dist/generated/interface/schemas/authoring_parse_result/unmarshall.js +3 -0
- package/dist/generated/interface/schemas/authoring_parse_result/value_deserializers.js +3 -0
- package/dist/generated/interface/schemas/authoring_parse_result/value_serializers.js +3 -0
- package/dist/generated/interface/schemas/sealed_ast/data_types/resolve.d.ts +1 -0
- package/dist/generated/interface/schemas/{ast → sealed_ast}/data_types/resolve.js +1 -1
- package/dist/generated/interface/schemas/{ast → sealed_ast}/data_types/source.d.ts +128 -249
- package/dist/generated/interface/schemas/{parse_result → sealed_ast}/data_types/source.js +1 -1
- package/dist/generated/interface/schemas/{ast → sealed_ast}/data_types/target.d.ts +128 -249
- package/dist/generated/interface/schemas/{ast → sealed_ast}/data_types/target.js +1 -1
- package/dist/generated/interface/schemas/sealed_ast/marshall.d.ts +183 -0
- package/dist/generated/interface/schemas/{ast → sealed_ast}/marshall.js +1 -1
- package/dist/generated/interface/schemas/sealed_ast/migrate_boilerplate.d.ts +134 -0
- package/dist/generated/interface/schemas/{ast → sealed_ast}/migrate_boilerplate.js +1 -1
- package/dist/generated/interface/schemas/sealed_ast/unmarshall.d.ts +183 -0
- package/dist/generated/interface/schemas/{parse_result → sealed_ast}/unmarshall.js +1 -1
- package/dist/generated/interface/schemas/sealed_ast/value_deserializers.d.ts +44 -0
- package/dist/generated/interface/schemas/{ast → sealed_ast}/value_deserializers.js +1 -1
- package/dist/generated/interface/schemas/sealed_ast/value_serializers.d.ts +44 -0
- package/dist/generated/interface/schemas/{ast → sealed_ast}/value_serializers.js +1 -1
- package/dist/generated/interface/schemas/sealed_parse_result/data_types/resolve.d.ts +1 -0
- package/dist/generated/interface/schemas/sealed_parse_result/data_types/resolve.js +7 -0
- package/dist/generated/interface/schemas/{parse_result → sealed_parse_result}/data_types/source.d.ts +16 -14
- package/dist/generated/interface/schemas/sealed_parse_result/data_types/source.js +3 -0
- package/dist/generated/interface/schemas/{parse_result → sealed_parse_result}/data_types/target.d.ts +16 -14
- package/dist/generated/interface/schemas/sealed_parse_result/data_types/target.js +3 -0
- package/dist/generated/interface/schemas/sealed_parse_result/marshall.d.ts +63 -0
- package/dist/generated/interface/schemas/sealed_parse_result/marshall.js +3 -0
- package/dist/generated/interface/schemas/sealed_parse_result/migrate_boilerplate.d.ts +46 -0
- package/dist/generated/interface/schemas/sealed_parse_result/migrate_boilerplate.js +3 -0
- package/dist/generated/interface/schemas/sealed_parse_result/unmarshall.d.ts +63 -0
- package/dist/generated/interface/schemas/sealed_parse_result/unmarshall.js +3 -0
- package/dist/generated/interface/schemas/sealed_parse_result/value_deserializers.d.ts +44 -0
- package/dist/generated/interface/schemas/sealed_parse_result/value_deserializers.js +3 -0
- package/dist/generated/interface/schemas/sealed_parse_result/value_serializers.d.ts +44 -0
- package/dist/generated/interface/schemas/sealed_parse_result/value_serializers.js +3 -0
- package/dist/parse/ast.d.ts +2 -2
- package/dist/parse/ast.js +22 -3
- package/dist/parse/astn_parse_generic.d.ts +1 -1
- package/dist/parse/parse.d.ts +2 -2
- package/dist/parse/parse.js +5 -2
- package/dist/procedures/convert_to_json.js +2 -2
- package/dist/procedures/validate_astn.js +2 -2
- package/dist/sealed_parse/ast.d.ts +10 -0
- package/dist/sealed_parse/ast.js +245 -0
- package/dist/sealed_parse/astn_parse_generic.d.ts +13 -0
- package/dist/sealed_parse/astn_parse_generic.js +50 -0
- package/dist/sealed_parse/parse.d.ts +6 -0
- package/dist/sealed_parse/parse.js +65 -0
- package/dist/sealed_parse/string_iterator.d.ts +41 -0
- package/dist/sealed_parse/string_iterator.js +113 -0
- package/dist/sealed_parse/token.d.ts +9 -0
- package/dist/sealed_parse/token.js +511 -0
- package/dist/serializers/parse_result.d.ts +1 -1
- package/dist/serializers/parse_result.js +2 -1
- package/dist/transformations/ast/ide.d.ts +1 -1
- package/dist/transformations/ast/ide.js +11 -3
- package/dist/transformations/ast/json_target.d.ts +1 -1
- package/dist/transformations/ast/json_target.js +11 -5
- package/dist/transformations/ast/temp_value_range.d.ts +1 -1
- package/dist/transformations/ast/temp_value_range.js +8 -2
- package/package.json +3 -3
- package/dist/generated/implementation/schemas/ast/marshall.js +0 -241
- package/dist/generated/implementation/schemas/ast/unmarshall.js +0 -316
- /package/dist/generated/interface/schemas/{ast → authoring_ast}/data_types/resolve.d.ts +0 -0
- /package/dist/generated/interface/schemas/{ast → authoring_ast}/marshall.d.ts +0 -0
- /package/dist/generated/interface/schemas/{ast → authoring_ast}/migrate_boilerplate.d.ts +0 -0
- /package/dist/generated/interface/schemas/{ast → authoring_ast}/unmarshall.d.ts +0 -0
- /package/dist/generated/interface/schemas/{ast → authoring_ast}/value_deserializers.d.ts +0 -0
- /package/dist/generated/interface/schemas/{ast → authoring_ast}/value_serializers.d.ts +0 -0
- /package/dist/generated/interface/schemas/{parse_result → authoring_parse_result}/data_types/resolve.d.ts +0 -0
- /package/dist/generated/interface/schemas/{parse_result → authoring_parse_result}/marshall.d.ts +0 -0
- /package/dist/generated/interface/schemas/{parse_result → authoring_parse_result}/migrate_boilerplate.d.ts +0 -0
- /package/dist/generated/interface/schemas/{parse_result → authoring_parse_result}/unmarshall.d.ts +0 -0
- /package/dist/generated/interface/schemas/{parse_result → authoring_parse_result}/value_deserializers.d.ts +0 -0
- /package/dist/generated/interface/schemas/{parse_result → authoring_parse_result}/value_serializers.d.ts +0 -0
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsdWVfZGVzZXJpYWxpemVycy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvYXV0aG9yaW5nX3BhcnNlX3Jlc3VsdC92YWx1ZV9kZXNlcmlhbGl6ZXJzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsdWVfc2VyaWFsaXplcnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvZ2VuZXJhdGVkL2ludGVyZmFjZS9zY2hlbWFzL2F1dGhvcmluZ19wYXJzZV9yZXN1bHQvdmFsdWVfc2VyaWFsaXplcnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -4,4 +4,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
4
4
|
// **** FRIENDLY NAMES FOR THE GLOBAL TYPES
|
|
5
5
|
// **** ALIASES FOR NESTED TYPE WITH PREFIXED ROOT NAMES
|
|
6
6
|
// *** ALIASES FOR NESTED TYPES
|
|
7
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvc2VhbGVkX2FzdC9kYXRhX3R5cGVzL3Jlc29sdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFNQSxhQUFhO0FBRWIsMkNBQTJDO0FBRTNDLHdEQUF3RDtBQUV4RCwrQkFBK0IifQ==
|
|
@@ -1,7 +1,35 @@
|
|
|
1
1
|
import * as _pt from 'exupery-core-types';
|
|
2
2
|
import * as _i_core from "../../../core/resolved";
|
|
3
3
|
import * as _i_imports_token from "../../token/data_types/source";
|
|
4
|
-
export type
|
|
4
|
+
export type _T_Document = {
|
|
5
|
+
readonly 'content': _T_Value;
|
|
6
|
+
readonly 'header': _pt.Optional_Value<{
|
|
7
|
+
readonly '!': _T_Structural_Token;
|
|
8
|
+
readonly 'value': _T_Value;
|
|
9
|
+
}>;
|
|
10
|
+
};
|
|
11
|
+
export type _T_Elements = _i_core._T_List<null, {
|
|
12
|
+
readonly 'value': _T_Value;
|
|
13
|
+
}>;
|
|
14
|
+
export type _T_Key_Value_Pairs = _i_core._T_List<null, {
|
|
15
|
+
readonly ',': _pt.Optional_Value<_T_Structural_Token>;
|
|
16
|
+
readonly 'key': _T_String;
|
|
17
|
+
readonly 'value': _pt.Optional_Value<{
|
|
18
|
+
readonly ':': _T_Structural_Token;
|
|
19
|
+
readonly 'value': _T_Value;
|
|
20
|
+
}>;
|
|
21
|
+
}>;
|
|
22
|
+
export type _T_String = {
|
|
23
|
+
readonly 'range': _i_imports_token._T_Range;
|
|
24
|
+
readonly 'trailing trivia': _i_imports_token._T_Trivia;
|
|
25
|
+
readonly 'type': _i_imports_token._T_String_Type;
|
|
26
|
+
readonly 'value': string;
|
|
27
|
+
};
|
|
28
|
+
export type _T_Structural_Token = {
|
|
29
|
+
readonly 'range': _i_imports_token._T_Range;
|
|
30
|
+
readonly 'trailing trivia': _i_imports_token._T_Trivia;
|
|
31
|
+
};
|
|
32
|
+
export type _T_Value = _i_core._T_State_Group<null, readonly [
|
|
5
33
|
'indexed collection',
|
|
6
34
|
_i_core._T_State_Group<null, readonly [
|
|
7
35
|
'dictionary',
|
|
@@ -54,56 +82,105 @@ export type _T_Concrete_Value = _i_core._T_State_Group<null, readonly [
|
|
|
54
82
|
readonly '|': _T_Structural_Token;
|
|
55
83
|
}
|
|
56
84
|
]>;
|
|
57
|
-
export type _T_Document = {
|
|
58
|
-
readonly 'content': _T_Value;
|
|
59
|
-
readonly 'header': _pt.Optional_Value<{
|
|
60
|
-
readonly '!': _T_Structural_Token;
|
|
61
|
-
readonly 'value': _T_Value;
|
|
62
|
-
}>;
|
|
63
|
-
};
|
|
64
|
-
export type _T_Elements = _i_core._T_List<null, {
|
|
65
|
-
readonly 'value': _T_Value;
|
|
66
|
-
}>;
|
|
67
|
-
export type _T_Key_Value_Pairs = _i_core._T_List<null, {
|
|
68
|
-
readonly ',': _pt.Optional_Value<_T_Structural_Token>;
|
|
69
|
-
readonly 'key': _T_String;
|
|
70
|
-
readonly 'value': _pt.Optional_Value<{
|
|
71
|
-
readonly ':': _T_Structural_Token;
|
|
72
|
-
readonly 'value': _T_Value;
|
|
73
|
-
}>;
|
|
74
|
-
}>;
|
|
75
|
-
export type _T_String = {
|
|
76
|
-
readonly 'range': _i_imports_token._T_Range;
|
|
77
|
-
readonly 'trailing trivia': _i_imports_token._T_Trivia;
|
|
78
|
-
readonly 'type': _i_imports_token._T_String_Type;
|
|
79
|
-
readonly 'value': string;
|
|
80
|
-
};
|
|
81
|
-
export type _T_Structural_Token = {
|
|
82
|
-
readonly 'range': _i_imports_token._T_Range;
|
|
83
|
-
readonly 'trailing trivia': _i_imports_token._T_Trivia;
|
|
84
|
-
};
|
|
85
|
-
export type _T_Value = {
|
|
86
|
-
readonly 'type': _i_core._T_State_Group<null, readonly ['concrete', _T_Concrete_Value] | readonly [
|
|
87
|
-
'include',
|
|
88
|
-
{
|
|
89
|
-
readonly '@': _T_Structural_Token;
|
|
90
|
-
readonly 'path': _T_String;
|
|
91
|
-
}
|
|
92
|
-
] | readonly [
|
|
93
|
-
'missing data',
|
|
94
|
-
{
|
|
95
|
-
readonly '#': _T_Structural_Token;
|
|
96
|
-
}
|
|
97
|
-
]>;
|
|
98
|
-
};
|
|
99
|
-
export type Concrete_Value = _T_Concrete_Value;
|
|
100
85
|
export type Document = _T_Document;
|
|
101
86
|
export type Elements = _T_Elements;
|
|
102
87
|
export type Key_Value_Pairs = _T_Key_Value_Pairs;
|
|
103
88
|
export type String = _T_String;
|
|
104
89
|
export type Structural_Token = _T_Structural_Token;
|
|
105
90
|
export type Value = _T_Value;
|
|
106
|
-
export declare namespace
|
|
91
|
+
export declare namespace _T_Document {
|
|
92
|
+
namespace content {
|
|
93
|
+
}
|
|
94
|
+
type content = _T_Value;
|
|
95
|
+
namespace header {
|
|
96
|
+
namespace O {
|
|
97
|
+
namespace $ex_ {
|
|
98
|
+
}
|
|
99
|
+
type $ex_ = _T_Structural_Token;
|
|
100
|
+
namespace value {
|
|
101
|
+
}
|
|
102
|
+
type value = _T_Value;
|
|
103
|
+
}
|
|
104
|
+
type O = {
|
|
105
|
+
readonly '!': _T_Structural_Token;
|
|
106
|
+
readonly 'value': _T_Value;
|
|
107
|
+
};
|
|
108
|
+
}
|
|
109
|
+
type header = _pt.Optional_Value<{
|
|
110
|
+
readonly '!': _T_Structural_Token;
|
|
111
|
+
readonly 'value': _T_Value;
|
|
112
|
+
}>;
|
|
113
|
+
}
|
|
114
|
+
export declare namespace _T_Elements {
|
|
115
|
+
namespace L {
|
|
116
|
+
namespace value {
|
|
117
|
+
}
|
|
118
|
+
type value = _T_Value;
|
|
119
|
+
}
|
|
120
|
+
type L = {
|
|
121
|
+
readonly 'value': _T_Value;
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
export declare namespace _T_Key_Value_Pairs {
|
|
125
|
+
namespace L {
|
|
126
|
+
namespace $cm_ {
|
|
127
|
+
namespace O {
|
|
128
|
+
}
|
|
129
|
+
type O = _T_Structural_Token;
|
|
130
|
+
}
|
|
131
|
+
type $cm_ = _pt.Optional_Value<_T_Structural_Token>;
|
|
132
|
+
namespace key {
|
|
133
|
+
}
|
|
134
|
+
type key = _T_String;
|
|
135
|
+
namespace value {
|
|
136
|
+
namespace O {
|
|
137
|
+
namespace $cl_ {
|
|
138
|
+
}
|
|
139
|
+
type $cl_ = _T_Structural_Token;
|
|
140
|
+
namespace value {
|
|
141
|
+
}
|
|
142
|
+
type value = _T_Value;
|
|
143
|
+
}
|
|
144
|
+
type O = {
|
|
145
|
+
readonly ':': _T_Structural_Token;
|
|
146
|
+
readonly 'value': _T_Value;
|
|
147
|
+
};
|
|
148
|
+
}
|
|
149
|
+
type value = _pt.Optional_Value<{
|
|
150
|
+
readonly ':': _T_Structural_Token;
|
|
151
|
+
readonly 'value': _T_Value;
|
|
152
|
+
}>;
|
|
153
|
+
}
|
|
154
|
+
type L = {
|
|
155
|
+
readonly ',': _pt.Optional_Value<_T_Structural_Token>;
|
|
156
|
+
readonly 'key': _T_String;
|
|
157
|
+
readonly 'value': _pt.Optional_Value<{
|
|
158
|
+
readonly ':': _T_Structural_Token;
|
|
159
|
+
readonly 'value': _T_Value;
|
|
160
|
+
}>;
|
|
161
|
+
};
|
|
162
|
+
}
|
|
163
|
+
export declare namespace _T_String {
|
|
164
|
+
namespace range {
|
|
165
|
+
}
|
|
166
|
+
type range = _i_imports_token._T_Range;
|
|
167
|
+
namespace trailing_trivia {
|
|
168
|
+
}
|
|
169
|
+
type trailing_trivia = _i_imports_token._T_Trivia;
|
|
170
|
+
namespace _type {
|
|
171
|
+
}
|
|
172
|
+
type _type = _i_imports_token._T_String_Type;
|
|
173
|
+
type value = string;
|
|
174
|
+
}
|
|
175
|
+
export declare namespace _T_Structural_Token {
|
|
176
|
+
namespace range {
|
|
177
|
+
}
|
|
178
|
+
type range = _i_imports_token._T_Range;
|
|
179
|
+
namespace trailing_trivia {
|
|
180
|
+
}
|
|
181
|
+
type trailing_trivia = _i_imports_token._T_Trivia;
|
|
182
|
+
}
|
|
183
|
+
export declare namespace _T_Value {
|
|
107
184
|
namespace SG {
|
|
108
185
|
namespace indexed_collection {
|
|
109
186
|
namespace SG {
|
|
@@ -331,7 +408,7 @@ export declare namespace _T_Concrete_Value {
|
|
|
331
408
|
}
|
|
332
409
|
];
|
|
333
410
|
}
|
|
334
|
-
export declare namespace
|
|
411
|
+
export declare namespace Document {
|
|
335
412
|
namespace content {
|
|
336
413
|
}
|
|
337
414
|
type content = _T_Value;
|
|
@@ -354,7 +431,7 @@ export declare namespace _T_Document {
|
|
|
354
431
|
readonly 'value': _T_Value;
|
|
355
432
|
}>;
|
|
356
433
|
}
|
|
357
|
-
export declare namespace
|
|
434
|
+
export declare namespace Elements {
|
|
358
435
|
namespace L {
|
|
359
436
|
namespace value {
|
|
360
437
|
}
|
|
@@ -364,7 +441,7 @@ export declare namespace _T_Elements {
|
|
|
364
441
|
readonly 'value': _T_Value;
|
|
365
442
|
};
|
|
366
443
|
}
|
|
367
|
-
export declare namespace
|
|
444
|
+
export declare namespace Key_Value_Pairs {
|
|
368
445
|
namespace L {
|
|
369
446
|
namespace $cm_ {
|
|
370
447
|
namespace O {
|
|
@@ -403,7 +480,7 @@ export declare namespace _T_Key_Value_Pairs {
|
|
|
403
480
|
}>;
|
|
404
481
|
};
|
|
405
482
|
}
|
|
406
|
-
export declare namespace
|
|
483
|
+
export declare namespace String {
|
|
407
484
|
namespace range {
|
|
408
485
|
}
|
|
409
486
|
type range = _i_imports_token._T_Range;
|
|
@@ -415,7 +492,7 @@ export declare namespace _T_String {
|
|
|
415
492
|
type _type = _i_imports_token._T_String_Type;
|
|
416
493
|
type value = string;
|
|
417
494
|
}
|
|
418
|
-
export declare namespace
|
|
495
|
+
export declare namespace Structural_Token {
|
|
419
496
|
namespace range {
|
|
420
497
|
}
|
|
421
498
|
type range = _i_imports_token._T_Range;
|
|
@@ -423,60 +500,7 @@ export declare namespace _T_Structural_Token {
|
|
|
423
500
|
}
|
|
424
501
|
type trailing_trivia = _i_imports_token._T_Trivia;
|
|
425
502
|
}
|
|
426
|
-
export declare namespace
|
|
427
|
-
namespace _type {
|
|
428
|
-
namespace SG {
|
|
429
|
-
namespace concrete {
|
|
430
|
-
}
|
|
431
|
-
type concrete = _T_Concrete_Value;
|
|
432
|
-
namespace include {
|
|
433
|
-
namespace $at_ {
|
|
434
|
-
}
|
|
435
|
-
type $at_ = _T_Structural_Token;
|
|
436
|
-
namespace path {
|
|
437
|
-
}
|
|
438
|
-
type path = _T_String;
|
|
439
|
-
}
|
|
440
|
-
type include = {
|
|
441
|
-
readonly '@': _T_Structural_Token;
|
|
442
|
-
readonly 'path': _T_String;
|
|
443
|
-
};
|
|
444
|
-
namespace missing_data {
|
|
445
|
-
namespace $ha_ {
|
|
446
|
-
}
|
|
447
|
-
type $ha_ = _T_Structural_Token;
|
|
448
|
-
}
|
|
449
|
-
type missing_data = {
|
|
450
|
-
readonly '#': _T_Structural_Token;
|
|
451
|
-
};
|
|
452
|
-
}
|
|
453
|
-
type SG = readonly ['concrete', _T_Concrete_Value] | readonly [
|
|
454
|
-
'include',
|
|
455
|
-
{
|
|
456
|
-
readonly '@': _T_Structural_Token;
|
|
457
|
-
readonly 'path': _T_String;
|
|
458
|
-
}
|
|
459
|
-
] | readonly [
|
|
460
|
-
'missing data',
|
|
461
|
-
{
|
|
462
|
-
readonly '#': _T_Structural_Token;
|
|
463
|
-
}
|
|
464
|
-
];
|
|
465
|
-
}
|
|
466
|
-
type _type = _i_core._T_State_Group<null, readonly ['concrete', _T_Concrete_Value] | readonly [
|
|
467
|
-
'include',
|
|
468
|
-
{
|
|
469
|
-
readonly '@': _T_Structural_Token;
|
|
470
|
-
readonly 'path': _T_String;
|
|
471
|
-
}
|
|
472
|
-
] | readonly [
|
|
473
|
-
'missing data',
|
|
474
|
-
{
|
|
475
|
-
readonly '#': _T_Structural_Token;
|
|
476
|
-
}
|
|
477
|
-
]>;
|
|
478
|
-
}
|
|
479
|
-
export declare namespace Concrete_Value {
|
|
503
|
+
export declare namespace Value {
|
|
480
504
|
namespace SG {
|
|
481
505
|
namespace indexed_collection {
|
|
482
506
|
namespace SG {
|
|
@@ -704,148 +728,3 @@ export declare namespace Concrete_Value {
|
|
|
704
728
|
}
|
|
705
729
|
];
|
|
706
730
|
}
|
|
707
|
-
export declare namespace Document {
|
|
708
|
-
namespace content {
|
|
709
|
-
}
|
|
710
|
-
type content = _T_Value;
|
|
711
|
-
namespace header {
|
|
712
|
-
namespace O {
|
|
713
|
-
namespace $ex_ {
|
|
714
|
-
}
|
|
715
|
-
type $ex_ = _T_Structural_Token;
|
|
716
|
-
namespace value {
|
|
717
|
-
}
|
|
718
|
-
type value = _T_Value;
|
|
719
|
-
}
|
|
720
|
-
type O = {
|
|
721
|
-
readonly '!': _T_Structural_Token;
|
|
722
|
-
readonly 'value': _T_Value;
|
|
723
|
-
};
|
|
724
|
-
}
|
|
725
|
-
type header = _pt.Optional_Value<{
|
|
726
|
-
readonly '!': _T_Structural_Token;
|
|
727
|
-
readonly 'value': _T_Value;
|
|
728
|
-
}>;
|
|
729
|
-
}
|
|
730
|
-
export declare namespace Elements {
|
|
731
|
-
namespace L {
|
|
732
|
-
namespace value {
|
|
733
|
-
}
|
|
734
|
-
type value = _T_Value;
|
|
735
|
-
}
|
|
736
|
-
type L = {
|
|
737
|
-
readonly 'value': _T_Value;
|
|
738
|
-
};
|
|
739
|
-
}
|
|
740
|
-
export declare namespace Key_Value_Pairs {
|
|
741
|
-
namespace L {
|
|
742
|
-
namespace $cm_ {
|
|
743
|
-
namespace O {
|
|
744
|
-
}
|
|
745
|
-
type O = _T_Structural_Token;
|
|
746
|
-
}
|
|
747
|
-
type $cm_ = _pt.Optional_Value<_T_Structural_Token>;
|
|
748
|
-
namespace key {
|
|
749
|
-
}
|
|
750
|
-
type key = _T_String;
|
|
751
|
-
namespace value {
|
|
752
|
-
namespace O {
|
|
753
|
-
namespace $cl_ {
|
|
754
|
-
}
|
|
755
|
-
type $cl_ = _T_Structural_Token;
|
|
756
|
-
namespace value {
|
|
757
|
-
}
|
|
758
|
-
type value = _T_Value;
|
|
759
|
-
}
|
|
760
|
-
type O = {
|
|
761
|
-
readonly ':': _T_Structural_Token;
|
|
762
|
-
readonly 'value': _T_Value;
|
|
763
|
-
};
|
|
764
|
-
}
|
|
765
|
-
type value = _pt.Optional_Value<{
|
|
766
|
-
readonly ':': _T_Structural_Token;
|
|
767
|
-
readonly 'value': _T_Value;
|
|
768
|
-
}>;
|
|
769
|
-
}
|
|
770
|
-
type L = {
|
|
771
|
-
readonly ',': _pt.Optional_Value<_T_Structural_Token>;
|
|
772
|
-
readonly 'key': _T_String;
|
|
773
|
-
readonly 'value': _pt.Optional_Value<{
|
|
774
|
-
readonly ':': _T_Structural_Token;
|
|
775
|
-
readonly 'value': _T_Value;
|
|
776
|
-
}>;
|
|
777
|
-
};
|
|
778
|
-
}
|
|
779
|
-
export declare namespace String {
|
|
780
|
-
namespace range {
|
|
781
|
-
}
|
|
782
|
-
type range = _i_imports_token._T_Range;
|
|
783
|
-
namespace trailing_trivia {
|
|
784
|
-
}
|
|
785
|
-
type trailing_trivia = _i_imports_token._T_Trivia;
|
|
786
|
-
namespace _type {
|
|
787
|
-
}
|
|
788
|
-
type _type = _i_imports_token._T_String_Type;
|
|
789
|
-
type value = string;
|
|
790
|
-
}
|
|
791
|
-
export declare namespace Structural_Token {
|
|
792
|
-
namespace range {
|
|
793
|
-
}
|
|
794
|
-
type range = _i_imports_token._T_Range;
|
|
795
|
-
namespace trailing_trivia {
|
|
796
|
-
}
|
|
797
|
-
type trailing_trivia = _i_imports_token._T_Trivia;
|
|
798
|
-
}
|
|
799
|
-
export declare namespace Value {
|
|
800
|
-
namespace _type {
|
|
801
|
-
namespace SG {
|
|
802
|
-
namespace concrete {
|
|
803
|
-
}
|
|
804
|
-
type concrete = _T_Concrete_Value;
|
|
805
|
-
namespace include {
|
|
806
|
-
namespace $at_ {
|
|
807
|
-
}
|
|
808
|
-
type $at_ = _T_Structural_Token;
|
|
809
|
-
namespace path {
|
|
810
|
-
}
|
|
811
|
-
type path = _T_String;
|
|
812
|
-
}
|
|
813
|
-
type include = {
|
|
814
|
-
readonly '@': _T_Structural_Token;
|
|
815
|
-
readonly 'path': _T_String;
|
|
816
|
-
};
|
|
817
|
-
namespace missing_data {
|
|
818
|
-
namespace $ha_ {
|
|
819
|
-
}
|
|
820
|
-
type $ha_ = _T_Structural_Token;
|
|
821
|
-
}
|
|
822
|
-
type missing_data = {
|
|
823
|
-
readonly '#': _T_Structural_Token;
|
|
824
|
-
};
|
|
825
|
-
}
|
|
826
|
-
type SG = readonly ['concrete', _T_Concrete_Value] | readonly [
|
|
827
|
-
'include',
|
|
828
|
-
{
|
|
829
|
-
readonly '@': _T_Structural_Token;
|
|
830
|
-
readonly 'path': _T_String;
|
|
831
|
-
}
|
|
832
|
-
] | readonly [
|
|
833
|
-
'missing data',
|
|
834
|
-
{
|
|
835
|
-
readonly '#': _T_Structural_Token;
|
|
836
|
-
}
|
|
837
|
-
];
|
|
838
|
-
}
|
|
839
|
-
type _type = _i_core._T_State_Group<null, readonly ['concrete', _T_Concrete_Value] | readonly [
|
|
840
|
-
'include',
|
|
841
|
-
{
|
|
842
|
-
readonly '@': _T_Structural_Token;
|
|
843
|
-
readonly 'path': _T_String;
|
|
844
|
-
}
|
|
845
|
-
] | readonly [
|
|
846
|
-
'missing data',
|
|
847
|
-
{
|
|
848
|
-
readonly '#': _T_Structural_Token;
|
|
849
|
-
}
|
|
850
|
-
]>;
|
|
851
|
-
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic291cmNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2dlbmVyYXRlZC9pbnRlcmZhY2Uvc2NoZW1hcy9zZWFsZWRfYXN0L2RhdGFfdHlwZXMvc291cmNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|