astn 0.110.21 → 0.110.22
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/generated/implementation/generic/resolve.d.ts +41 -10
- package/dist/generated/implementation/generic/resolve.js +75 -50
- package/dist/generated/implementation/generic/unmarshall.d.ts +15 -10
- package/dist/generated/implementation/generic/unmarshall.js +124 -55
- package/dist/generated/implementation/schemas/ast/marshall.d.ts +6 -6
- package/dist/generated/implementation/schemas/ast/marshall.js +9 -4
- package/dist/generated/implementation/schemas/ast/unmarshall.js +142 -66
- package/dist/generated/implementation/schemas/ide/marshall.d.ts +3 -3
- package/dist/generated/implementation/schemas/ide/marshall.js +1 -1
- package/dist/generated/implementation/schemas/ide/unmarshall.js +26 -16
- package/dist/generated/implementation/schemas/parse_result/marshall.d.ts +2 -2
- package/dist/generated/implementation/schemas/parse_result/marshall.js +3 -3
- package/dist/generated/implementation/schemas/parse_result/unmarshall.js +50 -38
- package/dist/generated/implementation/schemas/target/marshall.d.ts +2 -2
- package/dist/generated/implementation/schemas/target/marshall.js +1 -1
- package/dist/generated/implementation/schemas/target/unmarshall.js +43 -29
- package/dist/generated/implementation/schemas/token/marshall.d.ts +10 -10
- package/dist/generated/implementation/schemas/token/marshall.js +8 -4
- package/dist/generated/implementation/schemas/token/unmarshall.js +93 -54
- package/dist/generated/interface/core/astn_source.d.ts +8 -8
- package/dist/generated/interface/core/astn_target.d.ts +15 -15
- package/dist/generated/interface/core/resolve.d.ts +6 -6
- package/dist/generated/interface/core/resolved.d.ts +46 -46
- package/dist/generated/interface/core/unconstrained.d.ts +10 -10
- package/dist/generated/interface/core/unresolved.d.ts +84 -87
- package/dist/generated/interface/schemas/ast/data_types/unconstrained.d.ts +952 -0
- package/dist/generated/interface/schemas/ast/data_types/unconstrained.js +3 -0
- package/dist/generated/interface/schemas/ast/marshall.d.ts +44 -87
- package/dist/generated/interface/schemas/ast/migrate_boilerplate.d.ts +2 -2
- package/dist/generated/interface/schemas/ast/unmarshall.d.ts +56 -7
- package/dist/generated/interface/schemas/ast/value_deserializers.d.ts +44 -0
- package/dist/generated/interface/schemas/ast/value_deserializers.js +3 -0
- package/dist/generated/interface/schemas/ast/value_serializers.d.ts +44 -0
- package/dist/generated/interface/schemas/ast/value_serializers.js +3 -0
- package/dist/generated/interface/schemas/ide/data_types/unconstrained.d.ts +190 -0
- package/dist/generated/interface/schemas/ide/data_types/unconstrained.js +3 -0
- package/dist/generated/interface/schemas/ide/marshall.d.ts +23 -66
- package/dist/generated/interface/schemas/ide/migrate_boilerplate.d.ts +2 -2
- package/dist/generated/interface/schemas/ide/unmarshall.d.ts +29 -4
- package/dist/generated/interface/schemas/ide/value_deserializers.d.ts +44 -0
- package/dist/generated/interface/schemas/ide/value_deserializers.js +3 -0
- package/dist/generated/interface/schemas/ide/value_serializers.d.ts +44 -0
- package/dist/generated/interface/schemas/ide/value_serializers.js +3 -0
- package/dist/generated/interface/schemas/parse_result/data_types/unconstrained.d.ts +268 -0
- package/dist/generated/interface/schemas/parse_result/data_types/unconstrained.js +3 -0
- package/dist/generated/interface/schemas/parse_result/marshall.d.ts +16 -59
- package/dist/generated/interface/schemas/parse_result/migrate_boilerplate.d.ts +2 -2
- package/dist/generated/interface/schemas/parse_result/unmarshall.d.ts +20 -3
- package/dist/generated/interface/schemas/parse_result/value_deserializers.d.ts +44 -0
- package/dist/generated/interface/schemas/parse_result/value_deserializers.js +3 -0
- package/dist/generated/interface/schemas/parse_result/value_serializers.d.ts +44 -0
- package/dist/generated/interface/schemas/parse_result/value_serializers.js +3 -0
- package/dist/generated/interface/schemas/target/data_types/unconstrained.d.ts +186 -0
- package/dist/generated/interface/schemas/target/data_types/unconstrained.js +3 -0
- package/dist/generated/interface/schemas/target/marshall.d.ts +16 -79
- package/dist/generated/interface/schemas/target/migrate_boilerplate.d.ts +2 -2
- package/dist/generated/interface/schemas/target/unmarshall.d.ts +20 -3
- package/dist/generated/interface/schemas/target/value_deserializers.d.ts +64 -0
- package/dist/generated/interface/schemas/target/value_deserializers.js +3 -0
- package/dist/generated/interface/schemas/target/value_serializers.d.ts +64 -0
- package/dist/generated/interface/schemas/target/value_serializers.js +3 -0
- package/dist/generated/interface/schemas/token/data_types/unconstrained.d.ts +328 -0
- package/dist/generated/interface/schemas/token/data_types/unconstrained.js +3 -0
- package/dist/generated/interface/schemas/token/marshall.d.ts +72 -115
- package/dist/generated/interface/schemas/token/migrate_boilerplate.d.ts +2 -2
- package/dist/generated/interface/schemas/token/unmarshall.d.ts +92 -11
- package/dist/generated/interface/schemas/token/value_deserializers.d.ts +44 -0
- package/dist/generated/interface/schemas/token/value_deserializers.js +3 -0
- package/dist/generated/interface/schemas/token/value_serializers.d.ts +44 -0
- package/dist/generated/interface/schemas/token/value_serializers.js +3 -0
- package/dist/parse/ast.d.ts +3 -3
- package/dist/parse/ast.js +1 -5
- package/dist/parse/astn_parse_generic.d.ts +2 -2
- package/dist/parse/parse.d.ts +1 -1
- package/dist/parse/token.d.ts +1 -1
- package/dist/parse/token.js +5 -1
- package/dist/serializers/parse_result.d.ts +1 -1
- package/dist/transformations/ast/ide.d.ts +3 -3
- package/dist/transformations/ast/ide.js +2 -1
- package/dist/transformations/ast/json_target.d.ts +1 -1
- package/dist/transformations/ast/json_target.js +2 -1
- package/dist/transformations/ast/temp_value_range.d.ts +7 -0
- package/dist/transformations/ast/temp_value_range.js +77 -0
- package/dist/transformations/target/fountain_pen_block.d.ts +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
import * as _i_core from "../../../core/unconstrained";
|
|
2
|
+
import * as _i_imports_token from "../../token/data_types/unconstrained";
|
|
3
|
+
export type _T_Key_Value_Pairs_To_Be_Sorted = _i_core._T_Dictionary<null, string>;
|
|
4
|
+
export type _T_Relative_Range = {
|
|
5
|
+
readonly 'end': _i_imports_token._T_Relative_Location;
|
|
6
|
+
readonly 'start': _i_imports_token._T_Relative_Location;
|
|
7
|
+
};
|
|
8
|
+
export type _T_Text_Edits = _i_core._T_List<null, _i_core._T_State_Group<null, readonly [
|
|
9
|
+
'delete',
|
|
10
|
+
{
|
|
11
|
+
readonly 'range': _T_Relative_Range;
|
|
12
|
+
}
|
|
13
|
+
] | readonly [
|
|
14
|
+
'insert',
|
|
15
|
+
{
|
|
16
|
+
readonly 'location': _i_imports_token._T_Relative_Location;
|
|
17
|
+
readonly 'text': string;
|
|
18
|
+
}
|
|
19
|
+
] | readonly [
|
|
20
|
+
'replace',
|
|
21
|
+
{
|
|
22
|
+
readonly 'range': _T_Relative_Range;
|
|
23
|
+
readonly 'text': string;
|
|
24
|
+
}
|
|
25
|
+
]>>;
|
|
26
|
+
export type Key_Value_Pairs_To_Be_Sorted = _T_Key_Value_Pairs_To_Be_Sorted;
|
|
27
|
+
export type Relative_Range = _T_Relative_Range;
|
|
28
|
+
export type Text_Edits = _T_Text_Edits;
|
|
29
|
+
export declare namespace _T_Key_Value_Pairs_To_Be_Sorted {
|
|
30
|
+
type D = string;
|
|
31
|
+
}
|
|
32
|
+
export declare namespace _T_Relative_Range {
|
|
33
|
+
namespace end {
|
|
34
|
+
}
|
|
35
|
+
type end = _i_imports_token._T_Relative_Location;
|
|
36
|
+
namespace start {
|
|
37
|
+
}
|
|
38
|
+
type start = _i_imports_token._T_Relative_Location;
|
|
39
|
+
}
|
|
40
|
+
export declare namespace _T_Text_Edits {
|
|
41
|
+
namespace L {
|
|
42
|
+
namespace SG {
|
|
43
|
+
namespace _delete {
|
|
44
|
+
namespace range {
|
|
45
|
+
}
|
|
46
|
+
type range = _T_Relative_Range;
|
|
47
|
+
}
|
|
48
|
+
type _delete = {
|
|
49
|
+
readonly 'range': _T_Relative_Range;
|
|
50
|
+
};
|
|
51
|
+
namespace insert {
|
|
52
|
+
namespace location {
|
|
53
|
+
}
|
|
54
|
+
type location = _i_imports_token._T_Relative_Location;
|
|
55
|
+
type text = string;
|
|
56
|
+
}
|
|
57
|
+
type insert = {
|
|
58
|
+
readonly 'location': _i_imports_token._T_Relative_Location;
|
|
59
|
+
readonly 'text': string;
|
|
60
|
+
};
|
|
61
|
+
namespace replace {
|
|
62
|
+
namespace range {
|
|
63
|
+
}
|
|
64
|
+
type range = _T_Relative_Range;
|
|
65
|
+
type text = string;
|
|
66
|
+
}
|
|
67
|
+
type replace = {
|
|
68
|
+
readonly 'range': _T_Relative_Range;
|
|
69
|
+
readonly 'text': string;
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
type SG = readonly [
|
|
73
|
+
'delete',
|
|
74
|
+
{
|
|
75
|
+
readonly 'range': _T_Relative_Range;
|
|
76
|
+
}
|
|
77
|
+
] | readonly [
|
|
78
|
+
'insert',
|
|
79
|
+
{
|
|
80
|
+
readonly 'location': _i_imports_token._T_Relative_Location;
|
|
81
|
+
readonly 'text': string;
|
|
82
|
+
}
|
|
83
|
+
] | readonly [
|
|
84
|
+
'replace',
|
|
85
|
+
{
|
|
86
|
+
readonly 'range': _T_Relative_Range;
|
|
87
|
+
readonly 'text': string;
|
|
88
|
+
}
|
|
89
|
+
];
|
|
90
|
+
}
|
|
91
|
+
type L = _i_core._T_State_Group<null, readonly [
|
|
92
|
+
'delete',
|
|
93
|
+
{
|
|
94
|
+
readonly 'range': _T_Relative_Range;
|
|
95
|
+
}
|
|
96
|
+
] | readonly [
|
|
97
|
+
'insert',
|
|
98
|
+
{
|
|
99
|
+
readonly 'location': _i_imports_token._T_Relative_Location;
|
|
100
|
+
readonly 'text': string;
|
|
101
|
+
}
|
|
102
|
+
] | readonly [
|
|
103
|
+
'replace',
|
|
104
|
+
{
|
|
105
|
+
readonly 'range': _T_Relative_Range;
|
|
106
|
+
readonly 'text': string;
|
|
107
|
+
}
|
|
108
|
+
]>;
|
|
109
|
+
}
|
|
110
|
+
export declare namespace Key_Value_Pairs_To_Be_Sorted {
|
|
111
|
+
type D = string;
|
|
112
|
+
}
|
|
113
|
+
export declare namespace Relative_Range {
|
|
114
|
+
namespace end {
|
|
115
|
+
}
|
|
116
|
+
type end = _i_imports_token._T_Relative_Location;
|
|
117
|
+
namespace start {
|
|
118
|
+
}
|
|
119
|
+
type start = _i_imports_token._T_Relative_Location;
|
|
120
|
+
}
|
|
121
|
+
export declare namespace Text_Edits {
|
|
122
|
+
namespace L {
|
|
123
|
+
namespace SG {
|
|
124
|
+
namespace _delete {
|
|
125
|
+
namespace range {
|
|
126
|
+
}
|
|
127
|
+
type range = _T_Relative_Range;
|
|
128
|
+
}
|
|
129
|
+
type _delete = {
|
|
130
|
+
readonly 'range': _T_Relative_Range;
|
|
131
|
+
};
|
|
132
|
+
namespace insert {
|
|
133
|
+
namespace location {
|
|
134
|
+
}
|
|
135
|
+
type location = _i_imports_token._T_Relative_Location;
|
|
136
|
+
type text = string;
|
|
137
|
+
}
|
|
138
|
+
type insert = {
|
|
139
|
+
readonly 'location': _i_imports_token._T_Relative_Location;
|
|
140
|
+
readonly 'text': string;
|
|
141
|
+
};
|
|
142
|
+
namespace replace {
|
|
143
|
+
namespace range {
|
|
144
|
+
}
|
|
145
|
+
type range = _T_Relative_Range;
|
|
146
|
+
type text = string;
|
|
147
|
+
}
|
|
148
|
+
type replace = {
|
|
149
|
+
readonly 'range': _T_Relative_Range;
|
|
150
|
+
readonly 'text': string;
|
|
151
|
+
};
|
|
152
|
+
}
|
|
153
|
+
type SG = readonly [
|
|
154
|
+
'delete',
|
|
155
|
+
{
|
|
156
|
+
readonly 'range': _T_Relative_Range;
|
|
157
|
+
}
|
|
158
|
+
] | readonly [
|
|
159
|
+
'insert',
|
|
160
|
+
{
|
|
161
|
+
readonly 'location': _i_imports_token._T_Relative_Location;
|
|
162
|
+
readonly 'text': string;
|
|
163
|
+
}
|
|
164
|
+
] | readonly [
|
|
165
|
+
'replace',
|
|
166
|
+
{
|
|
167
|
+
readonly 'range': _T_Relative_Range;
|
|
168
|
+
readonly 'text': string;
|
|
169
|
+
}
|
|
170
|
+
];
|
|
171
|
+
}
|
|
172
|
+
type L = _i_core._T_State_Group<null, readonly [
|
|
173
|
+
'delete',
|
|
174
|
+
{
|
|
175
|
+
readonly 'range': _T_Relative_Range;
|
|
176
|
+
}
|
|
177
|
+
] | readonly [
|
|
178
|
+
'insert',
|
|
179
|
+
{
|
|
180
|
+
readonly 'location': _i_imports_token._T_Relative_Location;
|
|
181
|
+
readonly 'text': string;
|
|
182
|
+
}
|
|
183
|
+
] | readonly [
|
|
184
|
+
'replace',
|
|
185
|
+
{
|
|
186
|
+
readonly 'range': _T_Relative_Range;
|
|
187
|
+
readonly 'text': string;
|
|
188
|
+
}
|
|
189
|
+
]>;
|
|
190
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5jb25zdHJhaW5lZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvaWRlL2RhdGFfdHlwZXMvdW5jb25zdHJhaW5lZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|
|
@@ -1,134 +1,91 @@
|
|
|
1
|
-
import * as _i_in from "./unconstrained";
|
|
1
|
+
import * as _i_in from "./data_types/unconstrained";
|
|
2
2
|
import * as _i_out from "../../core/astn_target";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
readonly '
|
|
6
|
-
readonly 'default number': ($$_: number, $$_p: null) => string;
|
|
7
|
-
};
|
|
8
|
-
export type _T_s_Key_Value_Pairs_To_Be_Sorted = ($$_: _i_in._T_Key_Value_Pairs_To_Be_Sorted, $$_p: {
|
|
9
|
-
readonly 'value serializers': _T_Value_Serializers;
|
|
3
|
+
import * as _i_vs from "./value_serializers";
|
|
4
|
+
export type _T_Key_Value_Pairs_To_Be_Sorted = ($$_: _i_in._T_Key_Value_Pairs_To_Be_Sorted, $$_p: {
|
|
5
|
+
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
10
6
|
}) => _i_out._T_Value;
|
|
11
|
-
export type
|
|
12
|
-
readonly 'value serializers': _T_Value_Serializers;
|
|
7
|
+
export type _T_Relative_Range = ($$_: _i_in._T_Relative_Range, $$_p: {
|
|
8
|
+
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
13
9
|
}) => _i_out._T_Value;
|
|
14
|
-
export type
|
|
15
|
-
readonly 'value serializers': _T_Value_Serializers;
|
|
10
|
+
export type _T_Text_Edits = ($$_: _i_in._T_Text_Edits, $$_p: {
|
|
11
|
+
readonly 'value serializers': _i_vs._T_Value_Serializers;
|
|
16
12
|
}) => _i_out._T_Value;
|
|
17
|
-
export type
|
|
18
|
-
export type
|
|
19
|
-
export type
|
|
20
|
-
export
|
|
21
|
-
export declare namespace _T_Value_Serializers {
|
|
22
|
-
namespace _boolean {
|
|
23
|
-
type CONTEXT = boolean;
|
|
24
|
-
namespace PARAMS {
|
|
25
|
-
}
|
|
26
|
-
type RESULT = string;
|
|
27
|
-
}
|
|
28
|
-
type _boolean = ($$_: boolean, $$_p: null) => string;
|
|
29
|
-
namespace custom_numbers {
|
|
30
|
-
}
|
|
31
|
-
type custom_numbers = null;
|
|
32
|
-
namespace default_number {
|
|
33
|
-
type CONTEXT = number;
|
|
34
|
-
namespace PARAMS {
|
|
35
|
-
}
|
|
36
|
-
type RESULT = string;
|
|
37
|
-
}
|
|
38
|
-
type default_number = ($$_: number, $$_p: null) => string;
|
|
39
|
-
}
|
|
40
|
-
export declare namespace _T_s_Key_Value_Pairs_To_Be_Sorted {
|
|
13
|
+
export type Key_Value_Pairs_To_Be_Sorted = _T_Key_Value_Pairs_To_Be_Sorted;
|
|
14
|
+
export type Relative_Range = _T_Relative_Range;
|
|
15
|
+
export type Text_Edits = _T_Text_Edits;
|
|
16
|
+
export declare namespace _T_Key_Value_Pairs_To_Be_Sorted {
|
|
41
17
|
namespace CONTEXT {
|
|
42
18
|
}
|
|
43
19
|
type CONTEXT = _i_in._T_Key_Value_Pairs_To_Be_Sorted;
|
|
44
20
|
namespace PARAMS {
|
|
45
21
|
namespace value_serializers {
|
|
46
22
|
}
|
|
47
|
-
type value_serializers = _T_Value_Serializers;
|
|
23
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
48
24
|
}
|
|
49
25
|
namespace RESULT {
|
|
50
26
|
}
|
|
51
27
|
type RESULT = _i_out._T_Value;
|
|
52
28
|
}
|
|
53
|
-
export declare namespace
|
|
29
|
+
export declare namespace _T_Relative_Range {
|
|
54
30
|
namespace CONTEXT {
|
|
55
31
|
}
|
|
56
32
|
type CONTEXT = _i_in._T_Relative_Range;
|
|
57
33
|
namespace PARAMS {
|
|
58
34
|
namespace value_serializers {
|
|
59
35
|
}
|
|
60
|
-
type value_serializers = _T_Value_Serializers;
|
|
36
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
61
37
|
}
|
|
62
38
|
namespace RESULT {
|
|
63
39
|
}
|
|
64
40
|
type RESULT = _i_out._T_Value;
|
|
65
41
|
}
|
|
66
|
-
export declare namespace
|
|
42
|
+
export declare namespace _T_Text_Edits {
|
|
67
43
|
namespace CONTEXT {
|
|
68
44
|
}
|
|
69
45
|
type CONTEXT = _i_in._T_Text_Edits;
|
|
70
46
|
namespace PARAMS {
|
|
71
47
|
namespace value_serializers {
|
|
72
48
|
}
|
|
73
|
-
type value_serializers = _T_Value_Serializers;
|
|
49
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
74
50
|
}
|
|
75
51
|
namespace RESULT {
|
|
76
52
|
}
|
|
77
53
|
type RESULT = _i_out._T_Value;
|
|
78
54
|
}
|
|
79
|
-
export declare namespace
|
|
80
|
-
namespace _boolean {
|
|
81
|
-
type CONTEXT = boolean;
|
|
82
|
-
namespace PARAMS {
|
|
83
|
-
}
|
|
84
|
-
type RESULT = string;
|
|
85
|
-
}
|
|
86
|
-
type _boolean = ($$_: boolean, $$_p: null) => string;
|
|
87
|
-
namespace custom_numbers {
|
|
88
|
-
}
|
|
89
|
-
type custom_numbers = null;
|
|
90
|
-
namespace default_number {
|
|
91
|
-
type CONTEXT = number;
|
|
92
|
-
namespace PARAMS {
|
|
93
|
-
}
|
|
94
|
-
type RESULT = string;
|
|
95
|
-
}
|
|
96
|
-
type default_number = ($$_: number, $$_p: null) => string;
|
|
97
|
-
}
|
|
98
|
-
export declare namespace s_Key_Value_Pairs_To_Be_Sorted {
|
|
55
|
+
export declare namespace Key_Value_Pairs_To_Be_Sorted {
|
|
99
56
|
namespace CONTEXT {
|
|
100
57
|
}
|
|
101
58
|
type CONTEXT = _i_in._T_Key_Value_Pairs_To_Be_Sorted;
|
|
102
59
|
namespace PARAMS {
|
|
103
60
|
namespace value_serializers {
|
|
104
61
|
}
|
|
105
|
-
type value_serializers = _T_Value_Serializers;
|
|
62
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
106
63
|
}
|
|
107
64
|
namespace RESULT {
|
|
108
65
|
}
|
|
109
66
|
type RESULT = _i_out._T_Value;
|
|
110
67
|
}
|
|
111
|
-
export declare namespace
|
|
68
|
+
export declare namespace Relative_Range {
|
|
112
69
|
namespace CONTEXT {
|
|
113
70
|
}
|
|
114
71
|
type CONTEXT = _i_in._T_Relative_Range;
|
|
115
72
|
namespace PARAMS {
|
|
116
73
|
namespace value_serializers {
|
|
117
74
|
}
|
|
118
|
-
type value_serializers = _T_Value_Serializers;
|
|
75
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
119
76
|
}
|
|
120
77
|
namespace RESULT {
|
|
121
78
|
}
|
|
122
79
|
type RESULT = _i_out._T_Value;
|
|
123
80
|
}
|
|
124
|
-
export declare namespace
|
|
81
|
+
export declare namespace Text_Edits {
|
|
125
82
|
namespace CONTEXT {
|
|
126
83
|
}
|
|
127
84
|
type CONTEXT = _i_in._T_Text_Edits;
|
|
128
85
|
namespace PARAMS {
|
|
129
86
|
namespace value_serializers {
|
|
130
87
|
}
|
|
131
|
-
type value_serializers = _T_Value_Serializers;
|
|
88
|
+
type value_serializers = _i_vs._T_Value_Serializers;
|
|
132
89
|
}
|
|
133
90
|
namespace RESULT {
|
|
134
91
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as _i_in from "./unconstrained";
|
|
2
|
-
import * as _i_out from "./unconstrained";
|
|
1
|
+
import * as _i_in from "./data_types/unconstrained";
|
|
2
|
+
import * as _i_out from "./data_types/unconstrained";
|
|
3
3
|
export type _T_Key_Value_Pairs_To_Be_Sorted = ($$_: _i_in._T_Key_Value_Pairs_To_Be_Sorted, $$_p: null) => _i_out._T_Key_Value_Pairs_To_Be_Sorted;
|
|
4
4
|
export type _T_Relative_Range = ($$_: _i_in._T_Relative_Range, $$_p: null) => _i_out._T_Relative_Range;
|
|
5
5
|
export type _T_Text_Edits = ($$_: _i_in._T_Text_Edits, $$_p: null) => _i_out._T_Text_Edits;
|
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
import * as _i_in from "../../core/astn_source";
|
|
2
|
-
import * as _i_out from "./unconstrained";
|
|
3
|
-
|
|
4
|
-
export type
|
|
5
|
-
|
|
2
|
+
import * as _i_out from "./data_types/unconstrained";
|
|
3
|
+
import * as _i_vd from "./value_deserializers";
|
|
4
|
+
export type _T_Key_Value_Pairs_To_Be_Sorted = ($$_: _i_in._T_Value, $$_p: {
|
|
5
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
6
|
+
}) => _i_out._T_Key_Value_Pairs_To_Be_Sorted;
|
|
7
|
+
export type _T_Relative_Range = ($$_: _i_in._T_Value, $$_p: {
|
|
8
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
9
|
+
}) => _i_out._T_Relative_Range;
|
|
10
|
+
export type _T_Text_Edits = ($$_: _i_in._T_Value, $$_p: {
|
|
11
|
+
readonly 'value deserializers': _i_vd._T_Value_Deserializers;
|
|
12
|
+
}) => _i_out._T_Text_Edits;
|
|
6
13
|
export type Key_Value_Pairs_To_Be_Sorted = _T_Key_Value_Pairs_To_Be_Sorted;
|
|
7
14
|
export type Relative_Range = _T_Relative_Range;
|
|
8
15
|
export type Text_Edits = _T_Text_Edits;
|
|
@@ -11,6 +18,9 @@ export declare namespace _T_Key_Value_Pairs_To_Be_Sorted {
|
|
|
11
18
|
}
|
|
12
19
|
type CONTEXT = _i_in._T_Value;
|
|
13
20
|
namespace PARAMS {
|
|
21
|
+
namespace value_deserializers {
|
|
22
|
+
}
|
|
23
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
14
24
|
}
|
|
15
25
|
namespace RESULT {
|
|
16
26
|
}
|
|
@@ -21,6 +31,9 @@ export declare namespace _T_Relative_Range {
|
|
|
21
31
|
}
|
|
22
32
|
type CONTEXT = _i_in._T_Value;
|
|
23
33
|
namespace PARAMS {
|
|
34
|
+
namespace value_deserializers {
|
|
35
|
+
}
|
|
36
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
24
37
|
}
|
|
25
38
|
namespace RESULT {
|
|
26
39
|
}
|
|
@@ -31,6 +44,9 @@ export declare namespace _T_Text_Edits {
|
|
|
31
44
|
}
|
|
32
45
|
type CONTEXT = _i_in._T_Value;
|
|
33
46
|
namespace PARAMS {
|
|
47
|
+
namespace value_deserializers {
|
|
48
|
+
}
|
|
49
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
34
50
|
}
|
|
35
51
|
namespace RESULT {
|
|
36
52
|
}
|
|
@@ -41,6 +57,9 @@ export declare namespace Key_Value_Pairs_To_Be_Sorted {
|
|
|
41
57
|
}
|
|
42
58
|
type CONTEXT = _i_in._T_Value;
|
|
43
59
|
namespace PARAMS {
|
|
60
|
+
namespace value_deserializers {
|
|
61
|
+
}
|
|
62
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
44
63
|
}
|
|
45
64
|
namespace RESULT {
|
|
46
65
|
}
|
|
@@ -51,6 +70,9 @@ export declare namespace Relative_Range {
|
|
|
51
70
|
}
|
|
52
71
|
type CONTEXT = _i_in._T_Value;
|
|
53
72
|
namespace PARAMS {
|
|
73
|
+
namespace value_deserializers {
|
|
74
|
+
}
|
|
75
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
54
76
|
}
|
|
55
77
|
namespace RESULT {
|
|
56
78
|
}
|
|
@@ -61,6 +83,9 @@ export declare namespace Text_Edits {
|
|
|
61
83
|
}
|
|
62
84
|
type CONTEXT = _i_in._T_Value;
|
|
63
85
|
namespace PARAMS {
|
|
86
|
+
namespace value_deserializers {
|
|
87
|
+
}
|
|
88
|
+
type value_deserializers = _i_vd._T_Value_Deserializers;
|
|
64
89
|
}
|
|
65
90
|
namespace RESULT {
|
|
66
91
|
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export type _T_Value_Deserializers = {
|
|
2
|
+
readonly 'boolean': ($$_: string, $$_p: null) => boolean;
|
|
3
|
+
readonly 'custom numbers': null;
|
|
4
|
+
readonly 'default number': ($$_: string, $$_p: null) => number;
|
|
5
|
+
};
|
|
6
|
+
export type Value_Deserializers = _T_Value_Deserializers;
|
|
7
|
+
export declare namespace _T_Value_Deserializers {
|
|
8
|
+
namespace _boolean {
|
|
9
|
+
type CONTEXT = string;
|
|
10
|
+
namespace PARAMS {
|
|
11
|
+
}
|
|
12
|
+
type RESULT = boolean;
|
|
13
|
+
}
|
|
14
|
+
type _boolean = ($$_: string, $$_p: null) => boolean;
|
|
15
|
+
namespace custom_numbers {
|
|
16
|
+
}
|
|
17
|
+
type custom_numbers = null;
|
|
18
|
+
namespace default_number {
|
|
19
|
+
type CONTEXT = string;
|
|
20
|
+
namespace PARAMS {
|
|
21
|
+
}
|
|
22
|
+
type RESULT = number;
|
|
23
|
+
}
|
|
24
|
+
type default_number = ($$_: string, $$_p: null) => number;
|
|
25
|
+
}
|
|
26
|
+
export declare namespace Value_Deserializers {
|
|
27
|
+
namespace _boolean {
|
|
28
|
+
type CONTEXT = string;
|
|
29
|
+
namespace PARAMS {
|
|
30
|
+
}
|
|
31
|
+
type RESULT = boolean;
|
|
32
|
+
}
|
|
33
|
+
type _boolean = ($$_: string, $$_p: null) => boolean;
|
|
34
|
+
namespace custom_numbers {
|
|
35
|
+
}
|
|
36
|
+
type custom_numbers = null;
|
|
37
|
+
namespace default_number {
|
|
38
|
+
type CONTEXT = string;
|
|
39
|
+
namespace PARAMS {
|
|
40
|
+
}
|
|
41
|
+
type RESULT = number;
|
|
42
|
+
}
|
|
43
|
+
type default_number = ($$_: string, $$_p: null) => number;
|
|
44
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsdWVfZGVzZXJpYWxpemVycy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvaWRlL3ZhbHVlX2Rlc2VyaWFsaXplcnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export type _T_Value_Serializers = {
|
|
2
|
+
readonly 'boolean': ($$_: boolean, $$_p: null) => string;
|
|
3
|
+
readonly 'custom numbers': null;
|
|
4
|
+
readonly 'default number': ($$_: number, $$_p: null) => string;
|
|
5
|
+
};
|
|
6
|
+
export type Value_Serializers = _T_Value_Serializers;
|
|
7
|
+
export declare namespace _T_Value_Serializers {
|
|
8
|
+
namespace _boolean {
|
|
9
|
+
type CONTEXT = boolean;
|
|
10
|
+
namespace PARAMS {
|
|
11
|
+
}
|
|
12
|
+
type RESULT = string;
|
|
13
|
+
}
|
|
14
|
+
type _boolean = ($$_: boolean, $$_p: null) => string;
|
|
15
|
+
namespace custom_numbers {
|
|
16
|
+
}
|
|
17
|
+
type custom_numbers = null;
|
|
18
|
+
namespace default_number {
|
|
19
|
+
type CONTEXT = number;
|
|
20
|
+
namespace PARAMS {
|
|
21
|
+
}
|
|
22
|
+
type RESULT = string;
|
|
23
|
+
}
|
|
24
|
+
type default_number = ($$_: number, $$_p: null) => string;
|
|
25
|
+
}
|
|
26
|
+
export declare namespace Value_Serializers {
|
|
27
|
+
namespace _boolean {
|
|
28
|
+
type CONTEXT = boolean;
|
|
29
|
+
namespace PARAMS {
|
|
30
|
+
}
|
|
31
|
+
type RESULT = string;
|
|
32
|
+
}
|
|
33
|
+
type _boolean = ($$_: boolean, $$_p: null) => string;
|
|
34
|
+
namespace custom_numbers {
|
|
35
|
+
}
|
|
36
|
+
type custom_numbers = null;
|
|
37
|
+
namespace default_number {
|
|
38
|
+
type CONTEXT = number;
|
|
39
|
+
namespace PARAMS {
|
|
40
|
+
}
|
|
41
|
+
type RESULT = string;
|
|
42
|
+
}
|
|
43
|
+
type default_number = ($$_: number, $$_p: null) => string;
|
|
44
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsdWVfc2VyaWFsaXplcnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvZ2VuZXJhdGVkL2ludGVyZmFjZS9zY2hlbWFzL2lkZS92YWx1ZV9zZXJpYWxpemVycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|