astn-core 0.5.102 → 0.5.104
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/implementation/manual/refiners/annotated_characters/text.d.ts +2 -2
- package/dist/implementation/manual/refiners/annotated_characters/text.js +2 -2
- package/dist/implementation/manual/refiners/parse_tree/list_of_characters.d.ts +2 -2
- package/dist/implementation/manual/refiners/parse_tree/list_of_characters.js +3 -3
- package/dist/implementation/manual/refiners/parse_tree/text.d.ts +2 -2
- package/dist/implementation/manual/refiners/parse_tree/text.js +3 -3
- package/dist/implementation/manual/refiners/parse_tree/token.d.ts +9 -9
- package/dist/implementation/manual/refiners/parse_tree/token.js +42 -42
- package/dist/implementation/manual/refiners/parse_tree/tokenizer_result.d.ts +2 -2
- package/dist/implementation/manual/refiners/parse_tree/tokenizer_result.js +3 -3
- package/dist/implementation/manual/refiners/token/annotated_character.d.ts +6 -5
- package/dist/implementation/manual/refiners/token/annotated_character.js +23 -23
- package/dist/implementation/manual/refiners/unmarshalled/parse_tree.d.ts +11 -10
- package/dist/implementation/manual/refiners/unmarshalled/parse_tree.js +33 -33
- package/dist/implementation/manual/transformers/deserialize/fountain_pen.d.ts +2 -2
- package/dist/implementation/manual/transformers/deserialize/fountain_pen.js +6 -6
- package/dist/implementation/manual/transformers/deserialize/location.d.ts +2 -2
- package/dist/implementation/manual/transformers/deserialize/location.js +6 -6
- package/dist/implementation/manual/transformers/deserialize_parse_tree/fountain_pen.d.ts +2 -2
- package/dist/implementation/manual/transformers/deserialize_parse_tree/fountain_pen.js +18 -18
- package/dist/implementation/manual/transformers/deserialize_parse_tree/location.d.ts +2 -2
- package/dist/implementation/manual/transformers/deserialize_parse_tree/location.js +9 -9
- package/dist/implementation/manual/transformers/location/fountain_pen.d.ts +4 -4
- package/dist/implementation/manual/transformers/location/fountain_pen.js +14 -14
- package/dist/implementation/manual/transformers/parse_tree/full_value_range.d.ts +9 -9
- package/dist/implementation/manual/transformers/parse_tree/full_value_range.js +28 -28
- package/dist/implementation/manual/transformers/parse_tree/start_token_range.d.ts +3 -3
- package/dist/implementation/manual/transformers/parse_tree/start_token_range.js +22 -22
- package/dist/implementation/manual/transformers/primitives/text.d.ts +6 -6
- package/dist/implementation/manual/transformers/primitives/text.js +18 -18
- package/dist/implementation/manual/transformers/sealed_target/fountain_pen.js +21 -21
- package/dist/implementation/manual/transformers/sealed_target/list_of_characters.d.ts +3 -3
- package/dist/implementation/manual/transformers/sealed_target/list_of_characters.js +1 -1
- package/dist/implementation/manual/transformers/sealed_target/text.d.ts +3 -3
- package/dist/implementation/manual/transformers/sealed_target/text.js +1 -1
- package/dist/implementation/manual/transformers/unmarshall/fountain_pen.d.ts +2 -2
- package/dist/implementation/manual/transformers/unmarshall/fountain_pen.js +35 -35
- package/dist/implementation/manual/transformers/unmarshall/location.d.ts +2 -2
- package/dist/implementation/manual/transformers/unmarshall/location.js +1 -1
- package/dist/interface/generated/liana/schemas/deserialize_parse_tree/data.d.ts +4 -4
- package/dist/interface/generated/liana/schemas/parse_tree/data.d.ts +6 -6
- package/dist/interface/generated/liana/schemas/sealed_target/data.d.ts +4 -4
- package/dist/interface/generated/liana/schemas/token/data.d.ts +4 -4
- package/dist/interface/to_be_generated/annotated_characters.d.ts +2 -2
- package/dist/interface/to_be_generated/unmarshall.d.ts +3 -3
- package/dist/interface/to_be_generated/unmarshalled.d.ts +5 -5
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as p_di from 'pareto-core/dist/data/interface';
|
|
2
2
|
import * as d_location from "../../interface/generated/liana/schemas/location/data";
|
|
3
3
|
export type Error = {
|
|
4
4
|
'type': Error_Type;
|
|
@@ -14,7 +14,7 @@ export type Dictionary_Error = ['duplicate entry', string];
|
|
|
14
14
|
export type Type_Error = ['duplicate property', string] | [
|
|
15
15
|
'unexpected properties',
|
|
16
16
|
{
|
|
17
|
-
'found':
|
|
18
|
-
'expected':
|
|
17
|
+
'found': p_di.Dictionary<d_location.Range>;
|
|
18
|
+
'expected': p_di.Dictionary<null>;
|
|
19
19
|
}
|
|
20
20
|
] | ['missing property', string];
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as p_di from 'pareto-core/dist/data/interface';
|
|
2
2
|
import * as d_parse_tree from "../generated/liana/schemas/parse_tree/data";
|
|
3
3
|
export type Dictionary = {
|
|
4
4
|
'value': d_parse_tree.Value;
|
|
5
|
-
'entries':
|
|
5
|
+
'entries': p_di.Dictionary<d_parse_tree.ID_Value_Pairs.L>;
|
|
6
6
|
};
|
|
7
7
|
export type Verbose_Group = {
|
|
8
8
|
'value': d_parse_tree.Value;
|
|
9
|
-
'properties':
|
|
9
|
+
'properties': p_di.Dictionary<d_parse_tree.ID_Value_Pairs.L>;
|
|
10
10
|
};
|
|
11
11
|
export type List = {
|
|
12
12
|
'value': d_parse_tree.Value;
|
|
13
|
-
'items':
|
|
13
|
+
'items': p_di.List<d_parse_tree.Items.L>;
|
|
14
14
|
};
|
|
15
15
|
export type Optional = {
|
|
16
16
|
'value': d_parse_tree.Value;
|
|
17
|
-
'optional':
|
|
17
|
+
'optional': p_di.Optional_Value<d_parse_tree.Value>;
|
|
18
18
|
};
|
|
19
19
|
export type Nothing = {
|
|
20
20
|
'value': d_parse_tree.Value;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "astn-core",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.104",
|
|
4
4
|
"author": "Corno",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"description": "The TypeScript library for parsing and formatting ASTN (Abstract Syntax Tree Notation) - a human-editable data format for structured content",
|