pareto-fountain-pen 0.3.9 → 0.3.11
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/algorithms/procedures/console_error.d.ts +4 -5
- package/dist/implementation/algorithms/procedures/console_error.js +3 -3
- package/dist/implementation/algorithms/procedures/console_log.d.ts +4 -5
- package/dist/implementation/algorithms/procedures/console_log.js +3 -3
- package/dist/implementation/algorithms/procedures/write_to_directory.d.ts +6 -7
- package/dist/implementation/algorithms/procedures/write_to_directory.js +9 -11
- package/dist/implementation/algorithms/procedures/write_to_file.d.ts +5 -6
- package/dist/implementation/algorithms/procedures/write_to_file.js +6 -6
- package/dist/implementation/algorithms/procedures/write_to_node.d.ts +6 -7
- package/dist/implementation/algorithms/procedures/write_to_node.js +6 -6
- package/dist/implementation/algorithms/transformations/block/{string.js → text.js} +1 -1
- package/dist/implementation/generated/pareto/generic/parse/ast.js +21 -21
- package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.d.ts +1 -1
- package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.js +1 -1
- package/dist/implementation/generated/pareto/generic/parse/parse.d.ts +1 -1
- package/dist/implementation/generated/pareto/generic/parse/parse.js +1 -1
- package/dist/implementation/generated/pareto/generic/parse/string_iterator.d.ts +1 -1
- package/dist/implementation/generated/pareto/generic/parse/string_iterator.js +4 -4
- package/dist/implementation/generated/pareto/generic/parse/token.js +5 -5
- package/dist/implementation/generated/pareto/generic/resolve.d.ts +4 -4
- package/dist/implementation/generated/pareto/generic/resolve.js +2 -2
- package/dist/interface/generated/pareto/core/astn_source.d.ts +3 -3
- package/dist/interface/generated/pareto/core/astn_target.d.ts +7 -7
- package/dist/interface/generated/pareto/core/parse_result.d.ts +1 -1
- package/dist/interface/generated/pareto/core/resolve.d.ts +2 -2
- package/dist/interface/generated/pareto/core/resolved.d.ts +12 -12
- package/dist/interface/generated/pareto/core/token.d.ts +3 -3
- package/dist/interface/generated/pareto/core/unconstrained.d.ts +3 -3
- package/dist/interface/generated/pareto/core/unresolved.d.ts +10 -10
- package/dist/interface/generated/pareto/schemas/block/data_types/source.d.ts +11 -11
- package/dist/interface/generated/pareto/schemas/block/data_types/target.d.ts +11 -11
- package/dist/shorthands/block.d.ts +5 -5
- package/dist/shorthands/block.js +1 -1
- package/package.json +2 -4
- /package/dist/implementation/algorithms/transformations/block/{string.d.ts → text.d.ts} +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _et from 'exupery-core-types';
|
|
2
2
|
import * as _i_core from "../../../core/unconstrained";
|
|
3
|
-
export type _T_Block_Part = _i_core._T_State_Group<null, readonly ['snippet', string] | readonly ['indent', _T_Group] | readonly ['sub block', _T_Block] | readonly ['optional',
|
|
3
|
+
export type _T_Block_Part = _i_core._T_State_Group<null, readonly ['snippet', string] | readonly ['indent', _T_Group] | readonly ['sub block', _T_Block] | readonly ['optional', _et.Optional_Value<_T_Block_Part>] | readonly ['nothing', null]>;
|
|
4
4
|
export type _T_Block = _i_core._T_List<null, _T_Block_Part>;
|
|
5
|
-
export type _T_Group_Part = _i_core._T_State_Group<null, readonly ['nested block', _T_Block] | readonly ['block', string] | readonly ['sub group', _T_Group] | readonly ['optional',
|
|
5
|
+
export type _T_Group_Part = _i_core._T_State_Group<null, readonly ['nested block', _T_Block] | readonly ['block', string] | readonly ['sub group', _T_Group] | readonly ['optional', _et.Optional_Value<_T_Group_Part>] | readonly ['nothing', null]>;
|
|
6
6
|
export type _T_Group = _i_core._T_List<null, _T_Group_Part>;
|
|
7
7
|
export type _T_Node = _i_core._T_State_Group<null, readonly ['file', _T_Group] | readonly ['directory', _T_Directory]>;
|
|
8
8
|
export type _T_Directory = _i_core._T_Dictionary<null, _T_Node>;
|
|
@@ -26,10 +26,10 @@ export declare namespace _T_Block_Part {
|
|
|
26
26
|
}
|
|
27
27
|
type O = _T_Block_Part;
|
|
28
28
|
}
|
|
29
|
-
type optional =
|
|
29
|
+
type optional = _et.Optional_Value<_T_Block_Part>;
|
|
30
30
|
type nothing = null;
|
|
31
31
|
}
|
|
32
|
-
type SG = readonly ['snippet', string] | readonly ['indent', _T_Group] | readonly ['sub block', _T_Block] | readonly ['optional',
|
|
32
|
+
type SG = readonly ['snippet', string] | readonly ['indent', _T_Group] | readonly ['sub block', _T_Block] | readonly ['optional', _et.Optional_Value<_T_Block_Part>] | readonly ['nothing', null];
|
|
33
33
|
}
|
|
34
34
|
export declare namespace _T_Block {
|
|
35
35
|
namespace L {
|
|
@@ -50,10 +50,10 @@ export declare namespace _T_Group_Part {
|
|
|
50
50
|
}
|
|
51
51
|
type O = _T_Group_Part;
|
|
52
52
|
}
|
|
53
|
-
type optional =
|
|
53
|
+
type optional = _et.Optional_Value<_T_Group_Part>;
|
|
54
54
|
type nothing = null;
|
|
55
55
|
}
|
|
56
|
-
type SG = readonly ['nested block', _T_Block] | readonly ['block', string] | readonly ['sub group', _T_Group] | readonly ['optional',
|
|
56
|
+
type SG = readonly ['nested block', _T_Block] | readonly ['block', string] | readonly ['sub group', _T_Group] | readonly ['optional', _et.Optional_Value<_T_Group_Part>] | readonly ['nothing', null];
|
|
57
57
|
}
|
|
58
58
|
export declare namespace _T_Group {
|
|
59
59
|
namespace L {
|
|
@@ -90,10 +90,10 @@ export declare namespace Block_Part {
|
|
|
90
90
|
}
|
|
91
91
|
type O = _T_Block_Part;
|
|
92
92
|
}
|
|
93
|
-
type optional =
|
|
93
|
+
type optional = _et.Optional_Value<_T_Block_Part>;
|
|
94
94
|
type nothing = null;
|
|
95
95
|
}
|
|
96
|
-
type SG = readonly ['snippet', string] | readonly ['indent', _T_Group] | readonly ['sub block', _T_Block] | readonly ['optional',
|
|
96
|
+
type SG = readonly ['snippet', string] | readonly ['indent', _T_Group] | readonly ['sub block', _T_Block] | readonly ['optional', _et.Optional_Value<_T_Block_Part>] | readonly ['nothing', null];
|
|
97
97
|
}
|
|
98
98
|
export declare namespace Block {
|
|
99
99
|
namespace L {
|
|
@@ -114,10 +114,10 @@ export declare namespace Group_Part {
|
|
|
114
114
|
}
|
|
115
115
|
type O = _T_Group_Part;
|
|
116
116
|
}
|
|
117
|
-
type optional =
|
|
117
|
+
type optional = _et.Optional_Value<_T_Group_Part>;
|
|
118
118
|
type nothing = null;
|
|
119
119
|
}
|
|
120
|
-
type SG = readonly ['nested block', _T_Block] | readonly ['block', string] | readonly ['sub group', _T_Group] | readonly ['optional',
|
|
120
|
+
type SG = readonly ['nested block', _T_Block] | readonly ['block', string] | readonly ['sub group', _T_Group] | readonly ['optional', _et.Optional_Value<_T_Group_Part>] | readonly ['nothing', null];
|
|
121
121
|
}
|
|
122
122
|
export declare namespace Group {
|
|
123
123
|
namespace L {
|
|
@@ -3,15 +3,15 @@ import * as _target from "../interface/generated/pareto/schemas/block/data_types
|
|
|
3
3
|
import * as sh from 'exupery-core-data/dist/shorthands/unconstrained';
|
|
4
4
|
export declare namespace g {
|
|
5
5
|
const simple_block: (block: string) => _target.Group_Part;
|
|
6
|
-
const nested_block: (snippets: sh.
|
|
7
|
-
const sub: (group_parts: sh.
|
|
6
|
+
const nested_block: (snippets: sh.Raw_Or_Normal_List<_target.Block.L>) => _target.Group_Part;
|
|
7
|
+
const sub: (group_parts: sh.Raw_Or_Normal_List<_target.Group.L>) => _target.Group_Part;
|
|
8
8
|
const nothing: () => _target.Group_Part;
|
|
9
9
|
const optional: (Group_Part: _et.Optional_Value<_target.Group.L>) => _target.Group_Part;
|
|
10
10
|
}
|
|
11
11
|
export declare namespace b {
|
|
12
|
-
const indent: (blocks: sh.
|
|
12
|
+
const indent: (blocks: sh.Raw_Or_Normal_List<_target.Group.L>) => _target.Block_Part;
|
|
13
13
|
const snippet: (snippet: string) => _target.Block_Part;
|
|
14
|
-
const sub: (block_parts: sh.
|
|
14
|
+
const sub: (block_parts: sh.Raw_Or_Normal_List<_target.Block.L>) => _target.Block_Part;
|
|
15
15
|
const nothing: () => _target.Block_Part;
|
|
16
16
|
const optional: (block_part: _et.Optional_Value<_target.Block.L>) => _target.Block_Part;
|
|
17
17
|
}
|
|
@@ -20,4 +20,4 @@ export declare namespace n {
|
|
|
20
20
|
const directory: (children: sh.Raw_Or_Normal_Dictionary<_target.Node>) => _target.Node;
|
|
21
21
|
}
|
|
22
22
|
export declare const directory: (children: sh.Raw_Or_Normal_Dictionary<_target.Node>) => _target.Directory;
|
|
23
|
-
export declare const group: (Group_Parts: sh.
|
|
23
|
+
export declare const group: (Group_Parts: sh.Raw_Or_Normal_List<_target.Group.L>) => _target.Group;
|
package/dist/shorthands/block.js
CHANGED
|
@@ -50,4 +50,4 @@ const directory = (children) => sh.wrap_dictionary(children);
|
|
|
50
50
|
exports.directory = directory;
|
|
51
51
|
const group = (Group_Parts) => sh.wrap_list(Group_Parts);
|
|
52
52
|
exports.group = group;
|
|
53
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
53
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmxvY2suanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvc2hvcnRoYW5kcy9ibG9jay50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUtBLG9GQUFxRTtBQUVyRSxJQUFpQixDQUFDLENBWWpCO0FBWkQsV0FBaUIsQ0FBQztJQUVELGNBQVksR0FBRyxDQUFDLEtBQWEsRUFBc0IsRUFBRSxDQUFDLENBQUMsT0FBTyxFQUFFLEtBQUssQ0FBQyxDQUFBO0lBRXRFLGNBQVksR0FBRyxDQUFDLFFBQWdELEVBQXNCLEVBQUUsQ0FBQyxDQUFDLGNBQWMsRUFBRSxFQUFFLENBQUMsU0FBUyxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUE7SUFFakksS0FBRyxHQUFHLENBQUMsV0FBbUQsRUFBc0IsRUFBRSxDQUFDLENBQUMsV0FBVyxFQUFFLEVBQUUsQ0FBQyxTQUFTLENBQUMsV0FBVyxDQUFDLENBQUMsQ0FBQTtJQUUzSCxTQUFPLEdBQUcsR0FBdUIsRUFBRSxDQUFDLENBQUMsU0FBUyxFQUFFLElBQUksQ0FBQyxDQUFBO0lBRXJELFVBQVEsR0FBRyxDQUFDLFVBQStDLEVBQXNCLEVBQUUsQ0FBQyxDQUFDLFVBQVUsRUFBRSxVQUFVLENBQUMsQ0FBQTtBQUU3SCxDQUFDLEVBWmdCLENBQUMsaUJBQUQsQ0FBQyxRQVlqQjtBQUVELElBQWlCLENBQUMsQ0FZakI7QUFaRCxXQUFpQixDQUFDO0lBRUQsUUFBTSxHQUFHLENBQUMsTUFBOEMsRUFBc0IsRUFBRSxDQUFDLENBQUMsUUFBUSxFQUFFLEVBQUUsQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQTtJQUVqSCxTQUFPLEdBQUcsQ0FBQyxPQUFlLEVBQXNCLEVBQUUsQ0FBQyxDQUFDLFNBQVMsRUFBRSxPQUFPLENBQUMsQ0FBQTtJQUV2RSxLQUFHLEdBQUcsQ0FBQyxXQUFtRCxFQUFzQixFQUFFLENBQUMsQ0FBQyxXQUFXLEVBQUUsRUFBRSxDQUFDLFNBQVMsQ0FBQyxXQUFXLENBQUMsQ0FBQyxDQUFBO0lBRTNILFNBQU8sR0FBRyxHQUF1QixFQUFFLENBQUMsQ0FBQyxTQUFTLEVBQUUsSUFBSSxDQUFDLENBQUE7SUFFckQsVUFBUSxHQUFHLENBQUMsVUFBK0MsRUFBc0IsRUFBRSxDQUFDLENBQUMsVUFBVSxFQUFFLFVBQVUsQ0FBQyxDQUFBO0FBRTdILENBQUMsRUFaZ0IsQ0FBQyxpQkFBRCxDQUFDLFFBWWpCO0FBRUQsSUFBaUIsQ0FBQyxDQVNqQjtBQVRELFdBQWlCLENBQUM7SUFFRCxNQUFJLEdBQUcsQ0FDaEIsS0FBb0IsRUFDUixFQUFFLENBQUMsQ0FBQyxNQUFNLEVBQUUsS0FBSyxDQUFDLENBQUE7SUFFckIsV0FBUyxHQUFHLENBQ3JCLFFBQW1ELEVBQ3ZDLEVBQUUsQ0FBQyxDQUFDLFdBQVcsRUFBRSxFQUFFLENBQUMsZUFBZSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUE7QUFDbEUsQ0FBQyxFQVRnQixDQUFDLGlCQUFELENBQUMsUUFTakI7QUFFTSxNQUFNLFNBQVMsR0FBRyxDQUNyQixRQUFtRCxFQUNsQyxFQUFFLENBQUMsRUFBRSxDQUFDLGVBQWUsQ0FBQyxRQUFRLENBQUMsQ0FBQTtBQUZ2QyxRQUFBLFNBQVMsYUFFOEI7QUFFN0MsTUFBTSxLQUFLLEdBQUcsQ0FBQyxXQUFtRCxFQUFpQixFQUFFLENBQUMsRUFBRSxDQUFDLFNBQVMsQ0FBQyxXQUFXLENBQUMsQ0FBQTtBQUF6RyxRQUFBLEtBQUssU0FBb0cifQ==
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pareto-fountain-pen",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.11",
|
|
4
4
|
"description": "A TypeScript library for easily generating source code files with proper indentation in the pareto programming style/language",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -31,10 +31,8 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"exupery-core-alg": "^0.5.10",
|
|
34
|
-
"exupery-core-bin": "^0.3.26",
|
|
35
34
|
"exupery-core-data": "^0.3.1",
|
|
36
35
|
"exupery-core-dev": "^0.3.1",
|
|
37
|
-
"
|
|
38
|
-
"pareto-standard-operations": "^0.3.7"
|
|
36
|
+
"pareto-standard-operations": "^0.3.8"
|
|
39
37
|
}
|
|
40
38
|
}
|
|
File without changes
|