astn 0.110.20 → 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/{target_json → ast/data_types}/unconstrained.js +1 -1
- 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/{generic/astn_target.d.ts → interface/schemas/target/data_types/unconstrained.d.ts} +1 -1
- 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/{serializer.d.ts → value_serializers.d.ts} +0 -62
- 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
- package/dist/generated/generic/astn_target.js +0 -3
- package/dist/generated/generic/resolve.d.ts +0 -90
- package/dist/generated/generic/resolve.js +0 -251
- package/dist/generated/implementation/schemas/ast/migration_boilerplate.d.ts +0 -14
- package/dist/generated/implementation/schemas/ast/migration_boilerplate.js +0 -179
- package/dist/generated/implementation/schemas/ast/serializer.d.ts +0 -14
- package/dist/generated/implementation/schemas/ast/serializer.js +0 -328
- package/dist/generated/implementation/schemas/ide/migration_boilerplate.d.ts +0 -3
- package/dist/generated/implementation/schemas/ide/migration_boilerplate.js +0 -58
- package/dist/generated/implementation/schemas/ide/serializer.d.ts +0 -3
- package/dist/generated/implementation/schemas/ide/serializer.js +0 -72
- package/dist/generated/implementation/schemas/parse_result/migration_boilerplate.d.ts +0 -6
- package/dist/generated/implementation/schemas/parse_result/migration_boilerplate.js +0 -136
- package/dist/generated/implementation/schemas/parse_result/serializer.d.ts +0 -6
- package/dist/generated/implementation/schemas/parse_result/serializer.js +0 -288
- package/dist/generated/implementation/schemas/target/migration_boilerplate.d.ts +0 -3
- package/dist/generated/implementation/schemas/target/migration_boilerplate.js +0 -73
- package/dist/generated/implementation/schemas/target/serializer.d.ts +0 -3
- package/dist/generated/implementation/schemas/target/serializer.js +0 -122
- package/dist/generated/implementation/schemas/target_json/migration_boilerplate.d.ts +0 -3
- package/dist/generated/implementation/schemas/target_json/migration_boilerplate.js +0 -67
- package/dist/generated/interface/core/poormans_parser.d.ts +0 -184
- package/dist/generated/interface/core/poormans_parser.js +0 -3
- package/dist/generated/interface/generic/resolve.d.ts +0 -11
- package/dist/generated/interface/generic/resolve.js +0 -3
- package/dist/generated/interface/schemas/ast/migration_boilerplate.d.ts +0 -288
- package/dist/generated/interface/schemas/ast/migration_boilerplate.js +0 -3
- package/dist/generated/interface/schemas/ast/serializer.d.ts +0 -436
- package/dist/generated/interface/schemas/ast/serializer.js +0 -3
- package/dist/generated/interface/schemas/ide/migration_boilerplate.d.ts +0 -46
- package/dist/generated/interface/schemas/ide/migration_boilerplate.js +0 -3
- package/dist/generated/interface/schemas/ide/serializer.d.ts +0 -106
- package/dist/generated/interface/schemas/ide/serializer.js +0 -3
- package/dist/generated/interface/schemas/parse_result/migration_boilerplate.d.ts +0 -112
- package/dist/generated/interface/schemas/parse_result/migration_boilerplate.js +0 -3
- package/dist/generated/interface/schemas/parse_result/serializer.d.ts +0 -196
- package/dist/generated/interface/schemas/parse_result/serializer.js +0 -3
- package/dist/generated/interface/schemas/target/migration_boilerplate.d.ts +0 -46
- package/dist/generated/interface/schemas/target/migration_boilerplate.js +0 -3
- package/dist/generated/interface/schemas/target/serializer.js +0 -3
- package/dist/generated/interface/schemas/target_json/migration_boilerplate.d.ts +0 -46
- package/dist/generated/interface/schemas/target_json/migration_boilerplate.js +0 -3
- package/dist/generated/interface/schemas/target_json/unconstrained.d.ts +0 -169
- package/dist/index.d.ts +0 -6
- package/dist/index.js +0 -33
- package/dist/parse/parse_generic.d.ts +0 -8
- package/dist/parse/parse_generic.js +0 -65
- package/dist/parse/tokenize.d.ts +0 -8
- package/dist/parse/tokenize.js +0 -483
- package/dist/serializers/json.d.ts +0 -5
- package/dist/serializers/json.js +0 -36
- package/dist/transformations/target_json/fountain_pen_block.d.ts +0 -4
- package/dist/transformations/target_json/fountain_pen_block.js +0 -91
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvYXN0L3NlcmlhbGl6ZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import * as _i_in from "./unconstrained";
|
|
2
|
-
import * as _i_out from "./unconstrained";
|
|
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
|
-
export type _T_Text_Edits = ($$_: _i_in._T_Text_Edits, $$_p: null) => _i_out._T_Text_Edits;
|
|
5
|
-
export type Key_Value_Pairs_To_Be_Sorted = _T_Key_Value_Pairs_To_Be_Sorted;
|
|
6
|
-
export type Text_Edits = _T_Text_Edits;
|
|
7
|
-
export declare namespace _T_Key_Value_Pairs_To_Be_Sorted {
|
|
8
|
-
namespace CONTEXT {
|
|
9
|
-
}
|
|
10
|
-
type CONTEXT = _i_in._T_Key_Value_Pairs_To_Be_Sorted;
|
|
11
|
-
namespace PARAMS {
|
|
12
|
-
}
|
|
13
|
-
namespace RESULT {
|
|
14
|
-
}
|
|
15
|
-
type RESULT = _i_out._T_Key_Value_Pairs_To_Be_Sorted;
|
|
16
|
-
}
|
|
17
|
-
export declare namespace _T_Text_Edits {
|
|
18
|
-
namespace CONTEXT {
|
|
19
|
-
}
|
|
20
|
-
type CONTEXT = _i_in._T_Text_Edits;
|
|
21
|
-
namespace PARAMS {
|
|
22
|
-
}
|
|
23
|
-
namespace RESULT {
|
|
24
|
-
}
|
|
25
|
-
type RESULT = _i_out._T_Text_Edits;
|
|
26
|
-
}
|
|
27
|
-
export declare namespace Key_Value_Pairs_To_Be_Sorted {
|
|
28
|
-
namespace CONTEXT {
|
|
29
|
-
}
|
|
30
|
-
type CONTEXT = _i_in._T_Key_Value_Pairs_To_Be_Sorted;
|
|
31
|
-
namespace PARAMS {
|
|
32
|
-
}
|
|
33
|
-
namespace RESULT {
|
|
34
|
-
}
|
|
35
|
-
type RESULT = _i_out._T_Key_Value_Pairs_To_Be_Sorted;
|
|
36
|
-
}
|
|
37
|
-
export declare namespace Text_Edits {
|
|
38
|
-
namespace CONTEXT {
|
|
39
|
-
}
|
|
40
|
-
type CONTEXT = _i_in._T_Text_Edits;
|
|
41
|
-
namespace PARAMS {
|
|
42
|
-
}
|
|
43
|
-
namespace RESULT {
|
|
44
|
-
}
|
|
45
|
-
type RESULT = _i_out._T_Text_Edits;
|
|
46
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlncmF0aW9uX2JvaWxlcnBsYXRlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2dlbmVyYXRlZC9pbnRlcmZhY2Uvc2NoZW1hcy9pZGUvbWlncmF0aW9uX2JvaWxlcnBsYXRlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -1,106 +0,0 @@
|
|
|
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_Key_Value_Pairs_To_Be_Sorted = ($$_: _i_in._T_Key_Value_Pairs_To_Be_Sorted, $$_p: {
|
|
9
|
-
readonly 'value serializers': _T_Value_Serializers;
|
|
10
|
-
}) => _i_out._T_Value;
|
|
11
|
-
export type _T_s_Text_Edits = ($$_: _i_in._T_Text_Edits, $$_p: {
|
|
12
|
-
readonly 'value serializers': _T_Value_Serializers;
|
|
13
|
-
}) => _i_out._T_Value;
|
|
14
|
-
export type Value_Serializers = _T_Value_Serializers;
|
|
15
|
-
export type s_Key_Value_Pairs_To_Be_Sorted = _T_s_Key_Value_Pairs_To_Be_Sorted;
|
|
16
|
-
export type s_Text_Edits = _T_s_Text_Edits;
|
|
17
|
-
export declare namespace _T_Value_Serializers {
|
|
18
|
-
namespace _boolean {
|
|
19
|
-
type CONTEXT = boolean;
|
|
20
|
-
namespace PARAMS {
|
|
21
|
-
}
|
|
22
|
-
type RESULT = string;
|
|
23
|
-
}
|
|
24
|
-
type _boolean = ($$_: boolean, $$_p: null) => string;
|
|
25
|
-
namespace custom_numbers {
|
|
26
|
-
}
|
|
27
|
-
type custom_numbers = null;
|
|
28
|
-
namespace default_number {
|
|
29
|
-
type CONTEXT = number;
|
|
30
|
-
namespace PARAMS {
|
|
31
|
-
}
|
|
32
|
-
type RESULT = string;
|
|
33
|
-
}
|
|
34
|
-
type default_number = ($$_: number, $$_p: null) => string;
|
|
35
|
-
}
|
|
36
|
-
export declare namespace _T_s_Key_Value_Pairs_To_Be_Sorted {
|
|
37
|
-
namespace CONTEXT {
|
|
38
|
-
}
|
|
39
|
-
type CONTEXT = _i_in._T_Key_Value_Pairs_To_Be_Sorted;
|
|
40
|
-
namespace PARAMS {
|
|
41
|
-
namespace value_serializers {
|
|
42
|
-
}
|
|
43
|
-
type value_serializers = _T_Value_Serializers;
|
|
44
|
-
}
|
|
45
|
-
namespace RESULT {
|
|
46
|
-
}
|
|
47
|
-
type RESULT = _i_out._T_Value;
|
|
48
|
-
}
|
|
49
|
-
export declare namespace _T_s_Text_Edits {
|
|
50
|
-
namespace CONTEXT {
|
|
51
|
-
}
|
|
52
|
-
type CONTEXT = _i_in._T_Text_Edits;
|
|
53
|
-
namespace PARAMS {
|
|
54
|
-
namespace value_serializers {
|
|
55
|
-
}
|
|
56
|
-
type value_serializers = _T_Value_Serializers;
|
|
57
|
-
}
|
|
58
|
-
namespace RESULT {
|
|
59
|
-
}
|
|
60
|
-
type RESULT = _i_out._T_Value;
|
|
61
|
-
}
|
|
62
|
-
export declare namespace Value_Serializers {
|
|
63
|
-
namespace _boolean {
|
|
64
|
-
type CONTEXT = boolean;
|
|
65
|
-
namespace PARAMS {
|
|
66
|
-
}
|
|
67
|
-
type RESULT = string;
|
|
68
|
-
}
|
|
69
|
-
type _boolean = ($$_: boolean, $$_p: null) => string;
|
|
70
|
-
namespace custom_numbers {
|
|
71
|
-
}
|
|
72
|
-
type custom_numbers = null;
|
|
73
|
-
namespace default_number {
|
|
74
|
-
type CONTEXT = number;
|
|
75
|
-
namespace PARAMS {
|
|
76
|
-
}
|
|
77
|
-
type RESULT = string;
|
|
78
|
-
}
|
|
79
|
-
type default_number = ($$_: number, $$_p: null) => string;
|
|
80
|
-
}
|
|
81
|
-
export declare namespace s_Key_Value_Pairs_To_Be_Sorted {
|
|
82
|
-
namespace CONTEXT {
|
|
83
|
-
}
|
|
84
|
-
type CONTEXT = _i_in._T_Key_Value_Pairs_To_Be_Sorted;
|
|
85
|
-
namespace PARAMS {
|
|
86
|
-
namespace value_serializers {
|
|
87
|
-
}
|
|
88
|
-
type value_serializers = _T_Value_Serializers;
|
|
89
|
-
}
|
|
90
|
-
namespace RESULT {
|
|
91
|
-
}
|
|
92
|
-
type RESULT = _i_out._T_Value;
|
|
93
|
-
}
|
|
94
|
-
export declare namespace s_Text_Edits {
|
|
95
|
-
namespace CONTEXT {
|
|
96
|
-
}
|
|
97
|
-
type CONTEXT = _i_in._T_Text_Edits;
|
|
98
|
-
namespace PARAMS {
|
|
99
|
-
namespace value_serializers {
|
|
100
|
-
}
|
|
101
|
-
type value_serializers = _T_Value_Serializers;
|
|
102
|
-
}
|
|
103
|
-
namespace RESULT {
|
|
104
|
-
}
|
|
105
|
-
type RESULT = _i_out._T_Value;
|
|
106
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvaWRlL3NlcmlhbGl6ZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
import * as _i_in from "./unconstrained";
|
|
2
|
-
import * as _i_out from "./unconstrained";
|
|
3
|
-
export type _T_Annotated_Token = ($$_: _i_in._T_Annotated_Token, $$_p: null) => _i_out._T_Annotated_Token;
|
|
4
|
-
export type _T_Parse_Error = ($$_: _i_in._T_Parse_Error, $$_p: null) => _i_out._T_Parse_Error;
|
|
5
|
-
export type _T_Parse_Result = ($$_: _i_in._T_Parse_Result, $$_p: null) => _i_out._T_Parse_Result;
|
|
6
|
-
export type _T_Token_Type = ($$_: _i_in._T_Token_Type, $$_p: null) => _i_out._T_Token_Type;
|
|
7
|
-
export type _T_Tokenizer_Result = ($$_: _i_in._T_Tokenizer_Result, $$_p: null) => _i_out._T_Tokenizer_Result;
|
|
8
|
-
export type Annotated_Token = _T_Annotated_Token;
|
|
9
|
-
export type Parse_Error = _T_Parse_Error;
|
|
10
|
-
export type Parse_Result = _T_Parse_Result;
|
|
11
|
-
export type Token_Type = _T_Token_Type;
|
|
12
|
-
export type Tokenizer_Result = _T_Tokenizer_Result;
|
|
13
|
-
export declare namespace _T_Annotated_Token {
|
|
14
|
-
namespace CONTEXT {
|
|
15
|
-
}
|
|
16
|
-
type CONTEXT = _i_in._T_Annotated_Token;
|
|
17
|
-
namespace PARAMS {
|
|
18
|
-
}
|
|
19
|
-
namespace RESULT {
|
|
20
|
-
}
|
|
21
|
-
type RESULT = _i_out._T_Annotated_Token;
|
|
22
|
-
}
|
|
23
|
-
export declare namespace _T_Parse_Error {
|
|
24
|
-
namespace CONTEXT {
|
|
25
|
-
}
|
|
26
|
-
type CONTEXT = _i_in._T_Parse_Error;
|
|
27
|
-
namespace PARAMS {
|
|
28
|
-
}
|
|
29
|
-
namespace RESULT {
|
|
30
|
-
}
|
|
31
|
-
type RESULT = _i_out._T_Parse_Error;
|
|
32
|
-
}
|
|
33
|
-
export declare namespace _T_Parse_Result {
|
|
34
|
-
namespace CONTEXT {
|
|
35
|
-
}
|
|
36
|
-
type CONTEXT = _i_in._T_Parse_Result;
|
|
37
|
-
namespace PARAMS {
|
|
38
|
-
}
|
|
39
|
-
namespace RESULT {
|
|
40
|
-
}
|
|
41
|
-
type RESULT = _i_out._T_Parse_Result;
|
|
42
|
-
}
|
|
43
|
-
export declare namespace _T_Token_Type {
|
|
44
|
-
namespace CONTEXT {
|
|
45
|
-
}
|
|
46
|
-
type CONTEXT = _i_in._T_Token_Type;
|
|
47
|
-
namespace PARAMS {
|
|
48
|
-
}
|
|
49
|
-
namespace RESULT {
|
|
50
|
-
}
|
|
51
|
-
type RESULT = _i_out._T_Token_Type;
|
|
52
|
-
}
|
|
53
|
-
export declare namespace _T_Tokenizer_Result {
|
|
54
|
-
namespace CONTEXT {
|
|
55
|
-
}
|
|
56
|
-
type CONTEXT = _i_in._T_Tokenizer_Result;
|
|
57
|
-
namespace PARAMS {
|
|
58
|
-
}
|
|
59
|
-
namespace RESULT {
|
|
60
|
-
}
|
|
61
|
-
type RESULT = _i_out._T_Tokenizer_Result;
|
|
62
|
-
}
|
|
63
|
-
export declare namespace Annotated_Token {
|
|
64
|
-
namespace CONTEXT {
|
|
65
|
-
}
|
|
66
|
-
type CONTEXT = _i_in._T_Annotated_Token;
|
|
67
|
-
namespace PARAMS {
|
|
68
|
-
}
|
|
69
|
-
namespace RESULT {
|
|
70
|
-
}
|
|
71
|
-
type RESULT = _i_out._T_Annotated_Token;
|
|
72
|
-
}
|
|
73
|
-
export declare namespace Parse_Error {
|
|
74
|
-
namespace CONTEXT {
|
|
75
|
-
}
|
|
76
|
-
type CONTEXT = _i_in._T_Parse_Error;
|
|
77
|
-
namespace PARAMS {
|
|
78
|
-
}
|
|
79
|
-
namespace RESULT {
|
|
80
|
-
}
|
|
81
|
-
type RESULT = _i_out._T_Parse_Error;
|
|
82
|
-
}
|
|
83
|
-
export declare namespace Parse_Result {
|
|
84
|
-
namespace CONTEXT {
|
|
85
|
-
}
|
|
86
|
-
type CONTEXT = _i_in._T_Parse_Result;
|
|
87
|
-
namespace PARAMS {
|
|
88
|
-
}
|
|
89
|
-
namespace RESULT {
|
|
90
|
-
}
|
|
91
|
-
type RESULT = _i_out._T_Parse_Result;
|
|
92
|
-
}
|
|
93
|
-
export declare namespace Token_Type {
|
|
94
|
-
namespace CONTEXT {
|
|
95
|
-
}
|
|
96
|
-
type CONTEXT = _i_in._T_Token_Type;
|
|
97
|
-
namespace PARAMS {
|
|
98
|
-
}
|
|
99
|
-
namespace RESULT {
|
|
100
|
-
}
|
|
101
|
-
type RESULT = _i_out._T_Token_Type;
|
|
102
|
-
}
|
|
103
|
-
export declare namespace Tokenizer_Result {
|
|
104
|
-
namespace CONTEXT {
|
|
105
|
-
}
|
|
106
|
-
type CONTEXT = _i_in._T_Tokenizer_Result;
|
|
107
|
-
namespace PARAMS {
|
|
108
|
-
}
|
|
109
|
-
namespace RESULT {
|
|
110
|
-
}
|
|
111
|
-
type RESULT = _i_out._T_Tokenizer_Result;
|
|
112
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlncmF0aW9uX2JvaWxlcnBsYXRlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2dlbmVyYXRlZC9pbnRlcmZhY2Uvc2NoZW1hcy9wYXJzZV9yZXN1bHQvbWlncmF0aW9uX2JvaWxlcnBsYXRlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -1,196 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvcGFyc2VfcmVzdWx0L3NlcmlhbGl6ZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
|
|
@@ -1,46 +0,0 @@
|
|
|
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_Value = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Value;
|
|
5
|
-
export type Document = _T_Document;
|
|
6
|
-
export type Value = _T_Value;
|
|
7
|
-
export declare namespace _T_Document {
|
|
8
|
-
namespace CONTEXT {
|
|
9
|
-
}
|
|
10
|
-
type CONTEXT = _i_in._T_Document;
|
|
11
|
-
namespace PARAMS {
|
|
12
|
-
}
|
|
13
|
-
namespace RESULT {
|
|
14
|
-
}
|
|
15
|
-
type RESULT = _i_out._T_Document;
|
|
16
|
-
}
|
|
17
|
-
export declare namespace _T_Value {
|
|
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_Value;
|
|
26
|
-
}
|
|
27
|
-
export declare namespace Document {
|
|
28
|
-
namespace CONTEXT {
|
|
29
|
-
}
|
|
30
|
-
type CONTEXT = _i_in._T_Document;
|
|
31
|
-
namespace PARAMS {
|
|
32
|
-
}
|
|
33
|
-
namespace RESULT {
|
|
34
|
-
}
|
|
35
|
-
type RESULT = _i_out._T_Document;
|
|
36
|
-
}
|
|
37
|
-
export declare namespace Value {
|
|
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_Value;
|
|
46
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlncmF0aW9uX2JvaWxlcnBsYXRlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2dlbmVyYXRlZC9pbnRlcmZhY2Uvc2NoZW1hcy90YXJnZXQvbWlncmF0aW9uX2JvaWxlcnBsYXRlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvdGFyZ2V0L3NlcmlhbGl6ZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
|
|
@@ -1,46 +0,0 @@
|
|
|
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_Value = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Value;
|
|
5
|
-
export type Document = _T_Document;
|
|
6
|
-
export type Value = _T_Value;
|
|
7
|
-
export declare namespace _T_Document {
|
|
8
|
-
namespace CONTEXT {
|
|
9
|
-
}
|
|
10
|
-
type CONTEXT = _i_in._T_Document;
|
|
11
|
-
namespace PARAMS {
|
|
12
|
-
}
|
|
13
|
-
namespace RESULT {
|
|
14
|
-
}
|
|
15
|
-
type RESULT = _i_out._T_Document;
|
|
16
|
-
}
|
|
17
|
-
export declare namespace _T_Value {
|
|
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_Value;
|
|
26
|
-
}
|
|
27
|
-
export declare namespace Document {
|
|
28
|
-
namespace CONTEXT {
|
|
29
|
-
}
|
|
30
|
-
type CONTEXT = _i_in._T_Document;
|
|
31
|
-
namespace PARAMS {
|
|
32
|
-
}
|
|
33
|
-
namespace RESULT {
|
|
34
|
-
}
|
|
35
|
-
type RESULT = _i_out._T_Document;
|
|
36
|
-
}
|
|
37
|
-
export declare namespace Value {
|
|
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_Value;
|
|
46
|
-
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlncmF0aW9uX2JvaWxlcnBsYXRlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2dlbmVyYXRlZC9pbnRlcmZhY2Uvc2NoZW1hcy90YXJnZXRfanNvbi9taWdyYXRpb25fYm9pbGVycGxhdGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
|