pareto-fountain-pen 0.1.41 → 0.3.0
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/exceptional/serialize/block.js +2 -2
- package/dist/exceptional/serialize/semi_lines.js +8 -8
- package/dist/implementation/{procedures → algorithms/procedures}/guaranteed/console_error.d.ts +1 -1
- package/dist/implementation/{procedures → algorithms/procedures}/guaranteed/console_error.js +2 -2
- package/dist/implementation/{procedures → algorithms/procedures}/guaranteed/console_log.d.ts +1 -1
- package/dist/implementation/{procedures → algorithms/procedures}/guaranteed/console_log.js +2 -2
- package/dist/implementation/{procedures → algorithms/procedures}/unguaranteed/write_to_directory.d.ts +1 -1
- package/dist/implementation/{procedures → algorithms/procedures}/unguaranteed/write_to_directory.js +4 -4
- package/dist/implementation/{procedures → algorithms/procedures}/unguaranteed/write_to_file.d.ts +1 -1
- package/dist/implementation/{procedures → algorithms/procedures}/unguaranteed/write_to_file.js +4 -4
- package/dist/implementation/{procedures → algorithms/procedures}/unguaranteed/write_to_node.d.ts +1 -1
- package/dist/implementation/{procedures → algorithms/procedures}/unguaranteed/write_to_node.js +1 -1
- package/dist/implementation/{transformations → algorithms/transformations}/block/lines.d.ts +2 -2
- package/dist/implementation/{transformations → algorithms/transformations}/block/lines.js +1 -1
- package/dist/implementation/algorithms/transformations/block/semi_lines.d.ts +4 -0
- package/dist/implementation/{transformations → algorithms/transformations}/block/semi_lines.js +1 -1
- package/dist/implementation/{transformations → algorithms/transformations}/semi_lines/lines.d.ts +2 -2
- package/dist/implementation/algorithms/transformations/semi_lines/lines.js +45 -0
- package/dist/implementation/generated/pareto/generic/parse/ast.d.ts +10 -0
- package/dist/implementation/generated/pareto/generic/parse/ast.js +245 -0
- package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.d.ts +13 -0
- package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.js +50 -0
- package/dist/implementation/generated/pareto/generic/parse/parse.d.ts +6 -0
- package/dist/implementation/generated/pareto/generic/parse/parse.js +65 -0
- package/dist/implementation/generated/pareto/generic/parse/string_iterator.d.ts +40 -0
- package/dist/implementation/generated/pareto/generic/parse/string_iterator.js +109 -0
- package/dist/implementation/generated/pareto/generic/parse/token.d.ts +9 -0
- package/dist/implementation/generated/pareto/generic/parse/token.js +519 -0
- package/dist/implementation/generated/pareto/generic/resolve.js +7 -7
- package/dist/implementation/generated/pareto/generic/serialize.d.ts +4 -0
- package/dist/implementation/generated/pareto/generic/serialize.js +93 -0
- package/dist/implementation/generated/pareto/generic/unmarshall.d.ts +26 -26
- package/dist/implementation/generated/pareto/generic/unmarshall.js +38 -29
- package/dist/implementation/generated/pareto/schemas/block/deserialize.d.ts +7 -0
- package/dist/implementation/generated/pareto/schemas/block/deserialize.js +40 -0
- package/dist/implementation/generated/pareto/schemas/block/serialize.d.ts +7 -0
- package/dist/implementation/generated/pareto/schemas/block/serialize.js +53 -0
- package/dist/implementation/generated/pareto/schemas/lines/deserialize.d.ts +3 -0
- package/dist/implementation/generated/pareto/schemas/lines/deserialize.js +32 -0
- package/dist/implementation/generated/pareto/schemas/lines/serialize.d.ts +3 -0
- package/dist/implementation/generated/pareto/schemas/lines/serialize.js +37 -0
- package/dist/implementation/generated/pareto/schemas/semi_lines/deserialize.d.ts +3 -0
- package/dist/implementation/generated/pareto/schemas/semi_lines/deserialize.js +32 -0
- package/dist/implementation/generated/pareto/schemas/semi_lines/serialize.d.ts +3 -0
- package/dist/implementation/generated/pareto/schemas/semi_lines/serialize.js +37 -0
- package/dist/implementation/generated/pareto/schemas/text/deserialize.d.ts +3 -0
- package/dist/implementation/generated/pareto/schemas/text/deserialize.js +32 -0
- package/dist/implementation/generated/pareto/schemas/text/serialize.d.ts +3 -0
- package/dist/implementation/generated/pareto/schemas/text/serialize.js +37 -0
- package/dist/interface/algorithms/procedures/guaranteed/console_error.d.ts +1 -0
- package/dist/interface/algorithms/procedures/guaranteed/console_error.js +5 -0
- package/dist/interface/algorithms/procedures/guaranteed/console_log.d.ts +1 -0
- package/dist/interface/algorithms/procedures/guaranteed/console_log.js +5 -0
- package/dist/interface/algorithms/procedures/unguaranteed/write_to_directory.d.ts +1 -0
- package/dist/interface/algorithms/procedures/unguaranteed/write_to_directory.js +5 -0
- package/dist/interface/algorithms/procedures/unguaranteed/write_to_file.d.ts +1 -0
- package/dist/interface/algorithms/procedures/unguaranteed/write_to_file.js +5 -0
- package/dist/interface/algorithms/procedures/unguaranteed/write_to_node.d.ts +1 -0
- package/dist/interface/algorithms/procedures/unguaranteed/write_to_node.js +5 -0
- package/dist/interface/algorithms/transformations/block/lines.d.ts +1 -0
- package/dist/interface/algorithms/transformations/block/lines.js +5 -0
- package/dist/interface/algorithms/transformations/block/semi_lines.d.ts +1 -0
- package/dist/interface/algorithms/transformations/block/semi_lines.js +5 -0
- package/dist/interface/algorithms/transformations/semi_lines/lines.d.ts +1 -0
- package/dist/interface/algorithms/transformations/semi_lines/lines.js +5 -0
- package/dist/interface/generated/pareto/core/astn_source.d.ts +15 -0
- package/dist/interface/generated/pareto/core/parse_result.d.ts +25 -0
- package/dist/interface/generated/pareto/core/parse_result.js +3 -0
- package/dist/interface/generated/pareto/core/resolve.d.ts +1 -1
- package/dist/interface/generated/pareto/core/resolved.d.ts +3 -3
- package/dist/interface/generated/pareto/core/token.d.ts +49 -0
- package/dist/interface/generated/pareto/core/token.js +3 -0
- package/dist/interface/generated/pareto/schemas/block/deserialize.d.ts +158 -0
- package/dist/interface/generated/pareto/schemas/block/deserialize.js +3 -0
- package/dist/interface/generated/pareto/schemas/block/serialize.d.ts +158 -0
- package/dist/interface/generated/pareto/schemas/block/serialize.js +3 -0
- package/dist/interface/generated/pareto/schemas/lines/deserialize.d.ts +54 -0
- package/dist/interface/generated/pareto/schemas/lines/deserialize.js +3 -0
- package/dist/interface/generated/pareto/schemas/lines/serialize.d.ts +54 -0
- package/dist/interface/generated/pareto/schemas/lines/serialize.js +3 -0
- package/dist/interface/generated/pareto/schemas/semi_lines/deserialize.d.ts +54 -0
- package/dist/interface/generated/pareto/schemas/semi_lines/deserialize.js +3 -0
- package/dist/interface/generated/pareto/schemas/semi_lines/serialize.d.ts +54 -0
- package/dist/interface/generated/pareto/schemas/semi_lines/serialize.js +3 -0
- package/dist/interface/generated/pareto/schemas/text/deserialize.d.ts +54 -0
- package/dist/interface/generated/pareto/schemas/text/deserialize.js +3 -0
- package/dist/interface/generated/pareto/schemas/text/serialize.d.ts +54 -0
- package/dist/interface/generated/pareto/schemas/text/serialize.js +3 -0
- package/dist/shorthands/block.d.ts +1 -1
- package/dist/temp/temp_types.d.ts +2 -2
- package/package.json +7 -14
- package/dist/implementation/transformations/block/semi_lines.d.ts +0 -4
- package/dist/implementation/transformations/semi_lines/lines.js +0 -45
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.Node = exports.Group_Part = exports.Group = exports.Directory = exports.Block_Part = exports.Block = void 0;
|
|
27
|
+
const _i_marshall = __importStar(require("./marshall"));
|
|
28
|
+
const _i_serialize = __importStar(require("../../generic/serialize"));
|
|
29
|
+
const Block = ($, $p) => _i_serialize.Document(_i_marshall.Block($, {
|
|
30
|
+
'value serializers': $p['value serializers'],
|
|
31
|
+
}));
|
|
32
|
+
exports.Block = Block;
|
|
33
|
+
const Block_Part = ($, $p) => _i_serialize.Document(_i_marshall.Block_Part($, {
|
|
34
|
+
'value serializers': $p['value serializers'],
|
|
35
|
+
}));
|
|
36
|
+
exports.Block_Part = Block_Part;
|
|
37
|
+
const Directory = ($, $p) => _i_serialize.Document(_i_marshall.Directory($, {
|
|
38
|
+
'value serializers': $p['value serializers'],
|
|
39
|
+
}));
|
|
40
|
+
exports.Directory = Directory;
|
|
41
|
+
const Group = ($, $p) => _i_serialize.Document(_i_marshall.Group($, {
|
|
42
|
+
'value serializers': $p['value serializers'],
|
|
43
|
+
}));
|
|
44
|
+
exports.Group = Group;
|
|
45
|
+
const Group_Part = ($, $p) => _i_serialize.Document(_i_marshall.Group_Part($, {
|
|
46
|
+
'value serializers': $p['value serializers'],
|
|
47
|
+
}));
|
|
48
|
+
exports.Group_Part = Group_Part;
|
|
49
|
+
const Node = ($, $p) => _i_serialize.Document(_i_marshall.Node($, {
|
|
50
|
+
'value serializers': $p['value serializers'],
|
|
51
|
+
}));
|
|
52
|
+
exports.Node = Node;
|
|
53
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ltcGxlbWVudGF0aW9uL2dlbmVyYXRlZC9wYXJldG8vc2NoZW1hcy9ibG9jay9zZXJpYWxpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFHQSx3REFBeUM7QUFDekMsc0VBQXVEO0FBSWhELE1BQU0sS0FBSyxHQUEyQixDQUFDLENBQUMsRUFBRSxFQUFFLEVBQUUsRUFBRSxDQUFDLFlBQVksQ0FBQyxRQUFRLENBQ3pFLFdBQVcsQ0FBQyxLQUFLLENBQ2IsQ0FBQyxFQUNEO0lBQ0ksbUJBQW1CLEVBQUUsRUFBRSxDQUFDLG1CQUFtQixDQUFDO0NBQy9DLENBQ0osQ0FDSixDQUFBO0FBUFksUUFBQSxLQUFLLFNBT2pCO0FBQ00sTUFBTSxVQUFVLEdBQWdDLENBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FDbkYsV0FBVyxDQUFDLFVBQVUsQ0FDbEIsQ0FBQyxFQUNEO0lBQ0ksbUJBQW1CLEVBQUUsRUFBRSxDQUFDLG1CQUFtQixDQUFDO0NBQy9DLENBQ0osQ0FDSixDQUFBO0FBUFksUUFBQSxVQUFVLGNBT3RCO0FBQ00sTUFBTSxTQUFTLEdBQStCLENBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FDakYsV0FBVyxDQUFDLFNBQVMsQ0FDakIsQ0FBQyxFQUNEO0lBQ0ksbUJBQW1CLEVBQUUsRUFBRSxDQUFDLG1CQUFtQixDQUFDO0NBQy9DLENBQ0osQ0FDSixDQUFBO0FBUFksUUFBQSxTQUFTLGFBT3JCO0FBQ00sTUFBTSxLQUFLLEdBQTJCLENBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FDekUsV0FBVyxDQUFDLEtBQUssQ0FDYixDQUFDLEVBQ0Q7SUFDSSxtQkFBbUIsRUFBRSxFQUFFLENBQUMsbUJBQW1CLENBQUM7Q0FDL0MsQ0FDSixDQUNKLENBQUE7QUFQWSxRQUFBLEtBQUssU0FPakI7QUFDTSxNQUFNLFVBQVUsR0FBZ0MsQ0FBQyxDQUFDLEVBQUUsRUFBRSxFQUFFLEVBQUUsQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUNuRixXQUFXLENBQUMsVUFBVSxDQUNsQixDQUFDLEVBQ0Q7SUFDSSxtQkFBbUIsRUFBRSxFQUFFLENBQUMsbUJBQW1CLENBQUM7Q0FDL0MsQ0FDSixDQUNKLENBQUE7QUFQWSxRQUFBLFVBQVUsY0FPdEI7QUFDTSxNQUFNLElBQUksR0FBMEIsQ0FBQyxDQUFDLEVBQUUsRUFBRSxFQUFFLEVBQUUsQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUN2RSxXQUFXLENBQUMsSUFBSSxDQUNaLENBQUMsRUFDRDtJQUNJLG1CQUFtQixFQUFFLEVBQUUsQ0FBQyxtQkFBbUIsQ0FBQztDQUMvQyxDQUNKLENBQ0osQ0FBQTtBQVBZLFFBQUEsSUFBSSxRQU9oQiJ9
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.Lines = exports.Directory = void 0;
|
|
27
|
+
const _pd = __importStar(require("exupery-core-dev"));
|
|
28
|
+
const Directory = ($, $p) => _pd.implement_me();
|
|
29
|
+
exports.Directory = Directory;
|
|
30
|
+
const Lines = ($, $p) => _pd.implement_me();
|
|
31
|
+
exports.Lines = Lines;
|
|
32
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZXJpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW1wbGVtZW50YXRpb24vZ2VuZXJhdGVkL3BhcmV0by9zY2hlbWFzL2xpbmVzL2Rlc2VyaWFsaXplLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQ0Esc0RBQXVDO0FBTWhDLE1BQU0sU0FBUyxHQUErQixDQUFDLENBQUMsRUFBRSxFQUFFLEVBQUUsRUFBRSxDQUFDLEdBQUcsQ0FBQyxZQUFZLEVBQUUsQ0FBQTtBQUFyRSxRQUFBLFNBQVMsYUFBNEQ7QUFDM0UsTUFBTSxLQUFLLEdBQTJCLENBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsR0FBRyxDQUFDLFlBQVksRUFBRSxDQUFBO0FBQTdELFFBQUEsS0FBSyxTQUF3RCJ9
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.Lines = exports.Directory = void 0;
|
|
27
|
+
const _i_marshall = __importStar(require("./marshall"));
|
|
28
|
+
const _i_serialize = __importStar(require("../../generic/serialize"));
|
|
29
|
+
const Directory = ($, $p) => _i_serialize.Document(_i_marshall.Directory($, {
|
|
30
|
+
'value serializers': $p['value serializers'],
|
|
31
|
+
}));
|
|
32
|
+
exports.Directory = Directory;
|
|
33
|
+
const Lines = ($, $p) => _i_serialize.Document(_i_marshall.Lines($, {
|
|
34
|
+
'value serializers': $p['value serializers'],
|
|
35
|
+
}));
|
|
36
|
+
exports.Lines = Lines;
|
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ltcGxlbWVudGF0aW9uL2dlbmVyYXRlZC9wYXJldG8vc2NoZW1hcy9saW5lcy9zZXJpYWxpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFHQSx3REFBeUM7QUFDekMsc0VBQXVEO0FBSWhELE1BQU0sU0FBUyxHQUErQixDQUFDLENBQUMsRUFBRSxFQUFFLEVBQUUsRUFBRSxDQUFDLFlBQVksQ0FBQyxRQUFRLENBQ2pGLFdBQVcsQ0FBQyxTQUFTLENBQ2pCLENBQUMsRUFDRDtJQUNJLG1CQUFtQixFQUFFLEVBQUUsQ0FBQyxtQkFBbUIsQ0FBQztDQUMvQyxDQUNKLENBQ0osQ0FBQTtBQVBZLFFBQUEsU0FBUyxhQU9yQjtBQUNNLE1BQU0sS0FBSyxHQUEyQixDQUFDLENBQUMsRUFBRSxFQUFFLEVBQUUsRUFBRSxDQUFDLFlBQVksQ0FBQyxRQUFRLENBQ3pFLFdBQVcsQ0FBQyxLQUFLLENBQ2IsQ0FBQyxFQUNEO0lBQ0ksbUJBQW1CLEVBQUUsRUFBRSxDQUFDLG1CQUFtQixDQUFDO0NBQy9DLENBQ0osQ0FDSixDQUFBO0FBUFksUUFBQSxLQUFLLFNBT2pCIn0=
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.Lines = exports.Directory = void 0;
|
|
27
|
+
const _pd = __importStar(require("exupery-core-dev"));
|
|
28
|
+
const Directory = ($, $p) => _pd.implement_me();
|
|
29
|
+
exports.Directory = Directory;
|
|
30
|
+
const Lines = ($, $p) => _pd.implement_me();
|
|
31
|
+
exports.Lines = Lines;
|
|
32
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZXJpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW1wbGVtZW50YXRpb24vZ2VuZXJhdGVkL3BhcmV0by9zY2hlbWFzL3NlbWlfbGluZXMvZGVzZXJpYWxpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFDQSxzREFBdUM7QUFNaEMsTUFBTSxTQUFTLEdBQStCLENBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsR0FBRyxDQUFDLFlBQVksRUFBRSxDQUFBO0FBQXJFLFFBQUEsU0FBUyxhQUE0RDtBQUMzRSxNQUFNLEtBQUssR0FBMkIsQ0FBQyxDQUFDLEVBQUUsRUFBRSxFQUFFLEVBQUUsQ0FBQyxHQUFHLENBQUMsWUFBWSxFQUFFLENBQUE7QUFBN0QsUUFBQSxLQUFLLFNBQXdEIn0=
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.Lines = exports.Directory = void 0;
|
|
27
|
+
const _i_marshall = __importStar(require("./marshall"));
|
|
28
|
+
const _i_serialize = __importStar(require("../../generic/serialize"));
|
|
29
|
+
const Directory = ($, $p) => _i_serialize.Document(_i_marshall.Directory($, {
|
|
30
|
+
'value serializers': $p['value serializers'],
|
|
31
|
+
}));
|
|
32
|
+
exports.Directory = Directory;
|
|
33
|
+
const Lines = ($, $p) => _i_serialize.Document(_i_marshall.Lines($, {
|
|
34
|
+
'value serializers': $p['value serializers'],
|
|
35
|
+
}));
|
|
36
|
+
exports.Lines = Lines;
|
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ltcGxlbWVudGF0aW9uL2dlbmVyYXRlZC9wYXJldG8vc2NoZW1hcy9zZW1pX2xpbmVzL3NlcmlhbGl6ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUdBLHdEQUF5QztBQUN6QyxzRUFBdUQ7QUFJaEQsTUFBTSxTQUFTLEdBQStCLENBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FDakYsV0FBVyxDQUFDLFNBQVMsQ0FDakIsQ0FBQyxFQUNEO0lBQ0ksbUJBQW1CLEVBQUUsRUFBRSxDQUFDLG1CQUFtQixDQUFDO0NBQy9DLENBQ0osQ0FDSixDQUFBO0FBUFksUUFBQSxTQUFTLGFBT3JCO0FBQ00sTUFBTSxLQUFLLEdBQTJCLENBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FDekUsV0FBVyxDQUFDLEtBQUssQ0FDYixDQUFDLEVBQ0Q7SUFDSSxtQkFBbUIsRUFBRSxFQUFFLENBQUMsbUJBQW1CLENBQUM7Q0FDL0MsQ0FDSixDQUNKLENBQUE7QUFQWSxRQUFBLEtBQUssU0FPakIifQ==
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.Lines = exports.Directory = void 0;
|
|
27
|
+
const _pd = __importStar(require("exupery-core-dev"));
|
|
28
|
+
const Directory = ($, $p) => _pd.implement_me();
|
|
29
|
+
exports.Directory = Directory;
|
|
30
|
+
const Lines = ($, $p) => _pd.implement_me();
|
|
31
|
+
exports.Lines = Lines;
|
|
32
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZXJpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW1wbGVtZW50YXRpb24vZ2VuZXJhdGVkL3BhcmV0by9zY2hlbWFzL3RleHQvZGVzZXJpYWxpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFDQSxzREFBdUM7QUFNaEMsTUFBTSxTQUFTLEdBQStCLENBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsR0FBRyxDQUFDLFlBQVksRUFBRSxDQUFBO0FBQXJFLFFBQUEsU0FBUyxhQUE0RDtBQUMzRSxNQUFNLEtBQUssR0FBMkIsQ0FBQyxDQUFDLEVBQUUsRUFBRSxFQUFFLEVBQUUsQ0FBQyxHQUFHLENBQUMsWUFBWSxFQUFFLENBQUE7QUFBN0QsUUFBQSxLQUFLLFNBQXdEIn0=
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.Lines = exports.Directory = void 0;
|
|
27
|
+
const _i_marshall = __importStar(require("./marshall"));
|
|
28
|
+
const _i_serialize = __importStar(require("../../generic/serialize"));
|
|
29
|
+
const Directory = ($, $p) => _i_serialize.Document(_i_marshall.Directory($, {
|
|
30
|
+
'value serializers': $p['value serializers'],
|
|
31
|
+
}));
|
|
32
|
+
exports.Directory = Directory;
|
|
33
|
+
const Lines = ($, $p) => _i_serialize.Document(_i_marshall.Lines($, {
|
|
34
|
+
'value serializers': $p['value serializers'],
|
|
35
|
+
}));
|
|
36
|
+
exports.Lines = Lines;
|
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ltcGxlbWVudGF0aW9uL2dlbmVyYXRlZC9wYXJldG8vc2NoZW1hcy90ZXh0L3NlcmlhbGl6ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUdBLHdEQUF5QztBQUN6QyxzRUFBdUQ7QUFJaEQsTUFBTSxTQUFTLEdBQStCLENBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FDakYsV0FBVyxDQUFDLFNBQVMsQ0FDakIsQ0FBQyxFQUNEO0lBQ0ksbUJBQW1CLEVBQUUsRUFBRSxDQUFDLG1CQUFtQixDQUFDO0NBQy9DLENBQ0osQ0FDSixDQUFBO0FBUFksUUFBQSxTQUFTLGFBT3JCO0FBQ00sTUFBTSxLQUFLLEdBQTJCLENBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FDekUsV0FBVyxDQUFDLEtBQUssQ0FDYixDQUFDLEVBQ0Q7SUFDSSxtQkFBbUIsRUFBRSxFQUFFLENBQUMsbUJBQW1CLENBQUM7Q0FDL0MsQ0FDSixDQUNKLENBQUE7QUFQWSxRQUFBLEtBQUssU0FPakIifQ==
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type Signature = () => void;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Generated interface for procedures/guaranteed/console_error.ts
|
|
3
|
+
// This file defines the type signature for the implementation
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc29sZV9lcnJvci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvYWxnb3JpdGhtcy9wcm9jZWR1cmVzL2d1YXJhbnRlZWQvY29uc29sZV9lcnJvci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsaUVBQWlFO0FBQ2pFLDhEQUE4RCJ9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type Signature = () => void;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Generated interface for procedures/guaranteed/console_log.ts
|
|
3
|
+
// This file defines the type signature for the implementation
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc29sZV9sb2cuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2FsZ29yaXRobXMvcHJvY2VkdXJlcy9ndWFyYW50ZWVkL2NvbnNvbGVfbG9nLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSwrREFBK0Q7QUFDL0QsOERBQThEIn0=
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type Signature = () => void;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Generated interface for procedures/unguaranteed/write_to_directory.ts
|
|
3
|
+
// This file defines the type signature for the implementation
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGVfdG9fZGlyZWN0b3J5LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9hbGdvcml0aG1zL3Byb2NlZHVyZXMvdW5ndWFyYW50ZWVkL3dyaXRlX3RvX2RpcmVjdG9yeS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsd0VBQXdFO0FBQ3hFLDhEQUE4RCJ9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type Signature = () => void;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Generated interface for procedures/unguaranteed/write_to_file.ts
|
|
3
|
+
// This file defines the type signature for the implementation
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGVfdG9fZmlsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvYWxnb3JpdGhtcy9wcm9jZWR1cmVzL3VuZ3VhcmFudGVlZC93cml0ZV90b19maWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxtRUFBbUU7QUFDbkUsOERBQThEIn0=
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type Signature = () => void;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Generated interface for procedures/unguaranteed/write_to_node.ts
|
|
3
|
+
// This file defines the type signature for the implementation
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGVfdG9fbm9kZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvYWxnb3JpdGhtcy9wcm9jZWR1cmVzL3VuZ3VhcmFudGVlZC93cml0ZV90b19ub2RlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxtRUFBbUU7QUFDbkUsOERBQThEIn0=
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type Signature = () => void;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Generated interface for transformations/block/lines.ts
|
|
3
|
+
// This file defines the type signature for the implementation
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGluZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2FsZ29yaXRobXMvdHJhbnNmb3JtYXRpb25zL2Jsb2NrL2xpbmVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSx5REFBeUQ7QUFDekQsOERBQThEIn0=
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type Signature = () => void;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Generated interface for transformations/block/semi_lines.ts
|
|
3
|
+
// This file defines the type signature for the implementation
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VtaV9saW5lcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvYWxnb3JpdGhtcy90cmFuc2Zvcm1hdGlvbnMvYmxvY2svc2VtaV9saW5lcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsOERBQThEO0FBQzlELDhEQUE4RCJ9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type Signature = () => void;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Generated interface for transformations/semi_lines/lines.ts
|
|
3
|
+
// This file defines the type signature for the implementation
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGluZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2FsZ29yaXRobXMvdHJhbnNmb3JtYXRpb25zL3NlbWlfbGluZXMvbGluZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLDhEQUE4RDtBQUM5RCw4REFBOEQifQ==
|
|
@@ -62,6 +62,11 @@ export type _T_Document = {
|
|
|
62
62
|
export type _T_Elements = _et.Array<{
|
|
63
63
|
readonly 'value': _T_Value;
|
|
64
64
|
}>;
|
|
65
|
+
export declare namespace _T_Elements {
|
|
66
|
+
type L = {
|
|
67
|
+
readonly 'value': _T_Value;
|
|
68
|
+
};
|
|
69
|
+
}
|
|
65
70
|
export type _T_Key_Value_Pairs = _et.Array<{
|
|
66
71
|
readonly ',': _et.Optional_Value<_T_Structural_Token>;
|
|
67
72
|
readonly 'key': _T_String;
|
|
@@ -70,6 +75,16 @@ export type _T_Key_Value_Pairs = _et.Array<{
|
|
|
70
75
|
readonly 'value': _T_Value;
|
|
71
76
|
}>;
|
|
72
77
|
}>;
|
|
78
|
+
export declare namespace _T_Key_Value_Pairs {
|
|
79
|
+
type L = {
|
|
80
|
+
readonly ',': _et.Optional_Value<_T_Structural_Token>;
|
|
81
|
+
readonly 'key': _T_String;
|
|
82
|
+
readonly 'value': _et.Optional_Value<{
|
|
83
|
+
readonly ':': _T_Structural_Token;
|
|
84
|
+
readonly 'value': _T_Value;
|
|
85
|
+
}>;
|
|
86
|
+
};
|
|
87
|
+
}
|
|
73
88
|
export type _T_String = {
|
|
74
89
|
readonly 'range': _T_Range;
|
|
75
90
|
readonly 'trailing trivia': _T_Trivia;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as _et from 'exupery-core-types';
|
|
2
|
+
import * as _i_imports_token from "./token";
|
|
3
|
+
import * as _i_imports_ast from "./astn_source";
|
|
4
|
+
export type _T_Parse_Error = {
|
|
5
|
+
readonly 'range': _i_imports_token._T_Range;
|
|
6
|
+
readonly 'type': _T_Parse_Error._type;
|
|
7
|
+
};
|
|
8
|
+
export declare namespace _T_Parse_Error {
|
|
9
|
+
type _type = readonly [
|
|
10
|
+
'lexer',
|
|
11
|
+
Lexer_Error
|
|
12
|
+
] | readonly ['parser', Parser_Error];
|
|
13
|
+
}
|
|
14
|
+
export type Lexer_Error = readonly ['dangling slash', null] | readonly ['invalid unicode escape sequence', null] | readonly ['missing character after escape', null] | readonly ['unexpected character', number] | readonly ['unexpected control character', number] | readonly ['unexpected end of input', null] | readonly ['unexpected end of line in delimited string', null] | readonly ['unknown escape character', null] | readonly ['unterminated block comment', null] | readonly ['unterminated string', null] | readonly ['unterminated unicode escape sequence', null];
|
|
15
|
+
export type Parser_Error = {
|
|
16
|
+
readonly 'cause': readonly ['missing token', null] | readonly [
|
|
17
|
+
'unexpected token',
|
|
18
|
+
{
|
|
19
|
+
readonly 'found': _i_imports_token._T_Token_Type;
|
|
20
|
+
}
|
|
21
|
+
];
|
|
22
|
+
readonly 'expected': _et.Array<Expected>;
|
|
23
|
+
};
|
|
24
|
+
export type Expected = readonly ['!', null] | readonly ['#', null] | readonly [')', null] | readonly [',', null] | readonly [':', null] | readonly ['>', null] | readonly ['@', null] | readonly [']', null] | readonly ['a string', null] | readonly ['a value', null] | readonly ['}', null];
|
|
25
|
+
export type _T_Parse_Result = readonly ['failure', _T_Parse_Error] | readonly ['success', _i_imports_ast._T_Document];
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFyc2VfcmVzdWx0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvcGFyZXRvL2NvcmUvcGFyc2VfcmVzdWx0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -4,7 +4,7 @@ export type _T_Location_2_String<Source> = Location_to_String<Source>;
|
|
|
4
4
|
export type Non_Circular_Result<T> = ['error', ['circular', _et.Array<string>]] | ['resolved', T];
|
|
5
5
|
export type Acyclic_Lookup<T> = _et.Optional_Value<_et.Lookup<Non_Circular_Result<T>>>;
|
|
6
6
|
export type _T_Acyclic_Lookup<T> = Acyclic_Lookup<T>;
|
|
7
|
-
export type Possibly_Circular_Result<T> = _et.
|
|
7
|
+
export type Possibly_Circular_Result<T> = _et.Circular_Dependency<T>;
|
|
8
8
|
export type Cyclic_Lookup<T> = _et.Optional_Value<_et.Lookup<Possibly_Circular_Result<T>>>;
|
|
9
9
|
export type _T_Cyclic_Lookup<T> = Cyclic_Lookup<T>;
|
|
10
10
|
export type Lookup_Stack<T> = _et.Array<Acyclic_Lookup<T>>;
|
|
@@ -10,7 +10,7 @@ export type _T_Ordered_Dictionary<M_Source, T_D> = {
|
|
|
10
10
|
}>;
|
|
11
11
|
};
|
|
12
12
|
export type _T_Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry> = {
|
|
13
|
-
readonly 'entry': _pt.
|
|
13
|
+
readonly 'entry': _pt.Circular_Dependency<T_Dictionary_Entry>;
|
|
14
14
|
readonly 'key': string;
|
|
15
15
|
};
|
|
16
16
|
export type _T_Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry> = {
|
|
@@ -61,7 +61,7 @@ export declare namespace _T_Reference_To_Circular_Dependent_Sibling {
|
|
|
61
61
|
namespace entry {
|
|
62
62
|
type C<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
|
|
63
63
|
}
|
|
64
|
-
type entry<M_Source, T_Dictionary_Entry> = _pt.
|
|
64
|
+
type entry<M_Source, T_Dictionary_Entry> = _pt.Circular_Dependency<T_Dictionary_Entry>;
|
|
65
65
|
type key<M_Source, T_Dictionary_Entry> = string;
|
|
66
66
|
}
|
|
67
67
|
export declare namespace _T_Reference_To_Normal_Dictionary_Entry {
|
|
@@ -103,7 +103,7 @@ export declare namespace Reference_To_Circular_Dependent_Sibling {
|
|
|
103
103
|
namespace entry {
|
|
104
104
|
type C<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
|
|
105
105
|
}
|
|
106
|
-
type entry<M_Source, T_Dictionary_Entry> = _pt.
|
|
106
|
+
type entry<M_Source, T_Dictionary_Entry> = _pt.Circular_Dependency<T_Dictionary_Entry>;
|
|
107
107
|
type key<M_Source, T_Dictionary_Entry> = string;
|
|
108
108
|
}
|
|
109
109
|
export declare namespace Reference_To_Normal_Dictionary_Entry {
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import * as _et from 'exupery-core-types';
|
|
2
|
+
export type _T_Annotated_Token = {
|
|
3
|
+
readonly 'end': _T_Location;
|
|
4
|
+
readonly 'start': _T_Location;
|
|
5
|
+
readonly 'trailing trivia': _T_Trivia;
|
|
6
|
+
readonly 'type': _T_Token_Type;
|
|
7
|
+
};
|
|
8
|
+
export type _T_Delimited_String = string;
|
|
9
|
+
export type _T_Location = {
|
|
10
|
+
readonly 'absolute': number;
|
|
11
|
+
readonly 'relative': _T_Relative_Location;
|
|
12
|
+
};
|
|
13
|
+
export type _T_Range = {
|
|
14
|
+
readonly 'end': _T_Location;
|
|
15
|
+
readonly 'start': _T_Location;
|
|
16
|
+
};
|
|
17
|
+
export type _T_Relative_Location = {
|
|
18
|
+
readonly 'column': number;
|
|
19
|
+
readonly 'line': number;
|
|
20
|
+
};
|
|
21
|
+
export type _T_String_Type = readonly ['apostrophed', null] | readonly ['backticked', null] | readonly ['quoted', null] | readonly ['undelimited', null];
|
|
22
|
+
export type _T_Token_Type = readonly ['!', null] | readonly ['#', null] | readonly ['(', null] | readonly [')', null] | readonly ['*', null] | readonly [':', null] | readonly ['<', null] | readonly ['>', null] | readonly ['@', null] | readonly ['[', null] | readonly [']', null] | readonly [
|
|
23
|
+
'string',
|
|
24
|
+
{
|
|
25
|
+
readonly 'type': _T_String_Type;
|
|
26
|
+
readonly 'value': _T_Delimited_String;
|
|
27
|
+
}
|
|
28
|
+
] | readonly ['{', null] | readonly ['|', null] | readonly ['}', null] | readonly ['~', null];
|
|
29
|
+
export type _T_Tokenizer_Result = {
|
|
30
|
+
readonly 'end': _T_Location;
|
|
31
|
+
readonly 'leading trivia': _T_Trivia;
|
|
32
|
+
readonly 'tokens': _et.Array<_T_Annotated_Token>;
|
|
33
|
+
};
|
|
34
|
+
export declare namespace _T_Tokenizer_Result {
|
|
35
|
+
type tokens = _et.Array<_T_Annotated_Token>;
|
|
36
|
+
}
|
|
37
|
+
export type _T_Trivia = {
|
|
38
|
+
readonly 'comments': _et.Array<{
|
|
39
|
+
readonly 'content': string;
|
|
40
|
+
readonly 'range': _T_Range;
|
|
41
|
+
readonly 'trailing whitespace': _T_Whitespace;
|
|
42
|
+
readonly 'type': readonly ['block', null] | readonly ['line', null];
|
|
43
|
+
}>;
|
|
44
|
+
readonly 'leading whitespace': _T_Whitespace;
|
|
45
|
+
};
|
|
46
|
+
export type _T_Whitespace = {
|
|
47
|
+
readonly 'range': _T_Range;
|
|
48
|
+
readonly 'value': string;
|
|
49
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9rZW4uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vY29yZS90b2tlbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|