pareto-graphviz 0.1.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.
Files changed (107) hide show
  1. package/dist/exceptional/serializers/json.d.ts +5 -0
  2. package/dist/exceptional/serializers/json.js +36 -0
  3. package/dist/globals.d.ts +26 -0
  4. package/dist/globals.js +2 -0
  5. package/dist/implementation/algorithms/operations/impure/text/serialize_string.d.ts +1 -0
  6. package/dist/implementation/algorithms/operations/impure/text/serialize_string.js +12 -0
  7. package/dist/implementation/algorithms/transformations/json/fountain_pen_block.d.ts +4 -0
  8. package/dist/implementation/algorithms/transformations/json/fountain_pen_block.js +88 -0
  9. package/dist/implementation/generated/pareto/generic/parse/ast.d.ts +10 -0
  10. package/dist/implementation/generated/pareto/generic/parse/ast.js +245 -0
  11. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.d.ts +13 -0
  12. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.js +50 -0
  13. package/dist/implementation/generated/pareto/generic/parse/parse.d.ts +6 -0
  14. package/dist/implementation/generated/pareto/generic/parse/parse.js +66 -0
  15. package/dist/implementation/generated/pareto/generic/parse/string_iterator.d.ts +40 -0
  16. package/dist/implementation/generated/pareto/generic/parse/string_iterator.js +109 -0
  17. package/dist/implementation/generated/pareto/generic/parse/token.d.ts +9 -0
  18. package/dist/implementation/generated/pareto/generic/parse/token.js +519 -0
  19. package/dist/implementation/generated/pareto/generic/resolve.d.ts +109 -0
  20. package/dist/implementation/generated/pareto/generic/resolve.js +276 -0
  21. package/dist/implementation/generated/pareto/generic/serialize.d.ts +4 -0
  22. package/dist/implementation/generated/pareto/generic/serialize.js +93 -0
  23. package/dist/implementation/generated/pareto/generic/unmarshall.d.ts +42 -0
  24. package/dist/implementation/generated/pareto/generic/unmarshall.js +247 -0
  25. package/dist/implementation/generated/pareto/schemas/graphviz/deserialize.d.ts +2 -0
  26. package/dist/implementation/generated/pareto/schemas/graphviz/deserialize.js +30 -0
  27. package/dist/implementation/generated/pareto/schemas/graphviz/marshall.d.ts +2 -0
  28. package/dist/implementation/generated/pareto/schemas/graphviz/marshall.js +42 -0
  29. package/dist/implementation/generated/pareto/schemas/graphviz/serialize.d.ts +2 -0
  30. package/dist/implementation/generated/pareto/schemas/graphviz/serialize.js +33 -0
  31. package/dist/implementation/generated/pareto/schemas/graphviz/unmarshall.d.ts +2 -0
  32. package/dist/implementation/generated/pareto/schemas/graphviz/unmarshall.js +53 -0
  33. package/dist/implementation/generated/pareto/schemas/json/deserialize.d.ts +3 -0
  34. package/dist/implementation/generated/pareto/schemas/json/deserialize.js +32 -0
  35. package/dist/implementation/generated/pareto/schemas/json/marshall.d.ts +3 -0
  36. package/dist/implementation/generated/pareto/schemas/json/marshall.js +110 -0
  37. package/dist/implementation/generated/pareto/schemas/json/serialize.d.ts +3 -0
  38. package/dist/implementation/generated/pareto/schemas/json/serialize.js +37 -0
  39. package/dist/implementation/generated/pareto/schemas/json/unmarshall.d.ts +3 -0
  40. package/dist/implementation/generated/pareto/schemas/json/unmarshall.js +81 -0
  41. package/dist/implementation/transformers/graphviz/fountain_pen.d.ts +4 -0
  42. package/dist/implementation/transformers/graphviz/fountain_pen.js +43 -0
  43. package/dist/index.d.ts +1 -0
  44. package/dist/index.js +5 -0
  45. package/dist/interface/algorithms/operations/impure/text/serialize_string.d.ts +1 -0
  46. package/dist/interface/algorithms/operations/impure/text/serialize_string.js +5 -0
  47. package/dist/interface/algorithms/transformations/json/fountain_pen_block.d.ts +1 -0
  48. package/dist/interface/algorithms/transformations/json/fountain_pen_block.js +5 -0
  49. package/dist/interface/generated/pareto/core/astn_source.d.ts +123 -0
  50. package/dist/interface/generated/pareto/core/astn_source.js +3 -0
  51. package/dist/interface/generated/pareto/core/astn_target.d.ts +186 -0
  52. package/dist/interface/generated/pareto/core/astn_target.js +3 -0
  53. package/dist/interface/generated/pareto/core/parse_result.d.ts +25 -0
  54. package/dist/interface/generated/pareto/core/parse_result.js +3 -0
  55. package/dist/interface/generated/pareto/core/resolve.d.ts +11 -0
  56. package/dist/interface/generated/pareto/core/resolve.js +3 -0
  57. package/dist/interface/generated/pareto/core/resolved.d.ts +117 -0
  58. package/dist/interface/generated/pareto/core/resolved.js +3 -0
  59. package/dist/interface/generated/pareto/core/token.d.ts +49 -0
  60. package/dist/interface/generated/pareto/core/token.js +3 -0
  61. package/dist/interface/generated/pareto/core/unconstrained.d.ts +19 -0
  62. package/dist/interface/generated/pareto/core/unconstrained.js +3 -0
  63. package/dist/interface/generated/pareto/core/unresolved.d.ts +181 -0
  64. package/dist/interface/generated/pareto/core/unresolved.js +3 -0
  65. package/dist/interface/generated/pareto/schemas/graphviz/data_types/resolve.d.ts +1 -0
  66. package/dist/interface/generated/pareto/schemas/graphviz/data_types/resolve.js +7 -0
  67. package/dist/interface/generated/pareto/schemas/graphviz/data_types/source.d.ts +49 -0
  68. package/dist/interface/generated/pareto/schemas/graphviz/data_types/source.js +3 -0
  69. package/dist/interface/generated/pareto/schemas/graphviz/data_types/target.d.ts +49 -0
  70. package/dist/interface/generated/pareto/schemas/graphviz/data_types/target.js +3 -0
  71. package/dist/interface/generated/pareto/schemas/graphviz/deserialize.d.ts +28 -0
  72. package/dist/interface/generated/pareto/schemas/graphviz/deserialize.js +3 -0
  73. package/dist/interface/generated/pareto/schemas/graphviz/marshall.d.ts +33 -0
  74. package/dist/interface/generated/pareto/schemas/graphviz/marshall.js +3 -0
  75. package/dist/interface/generated/pareto/schemas/graphviz/migrate_boilerplate.d.ts +24 -0
  76. package/dist/interface/generated/pareto/schemas/graphviz/migrate_boilerplate.js +3 -0
  77. package/dist/interface/generated/pareto/schemas/graphviz/serialize.d.ts +28 -0
  78. package/dist/interface/generated/pareto/schemas/graphviz/serialize.js +3 -0
  79. package/dist/interface/generated/pareto/schemas/graphviz/unmarshall.d.ts +33 -0
  80. package/dist/interface/generated/pareto/schemas/graphviz/unmarshall.js +3 -0
  81. package/dist/interface/generated/pareto/schemas/graphviz/value_deserializers.d.ts +64 -0
  82. package/dist/interface/generated/pareto/schemas/graphviz/value_deserializers.js +3 -0
  83. package/dist/interface/generated/pareto/schemas/graphviz/value_serializers.d.ts +64 -0
  84. package/dist/interface/generated/pareto/schemas/graphviz/value_serializers.js +3 -0
  85. package/dist/interface/generated/pareto/schemas/json/data_types/resolve.d.ts +1 -0
  86. package/dist/interface/generated/pareto/schemas/json/data_types/resolve.js +7 -0
  87. package/dist/interface/generated/pareto/schemas/json/data_types/source.d.ts +169 -0
  88. package/dist/interface/generated/pareto/schemas/json/data_types/source.js +3 -0
  89. package/dist/interface/generated/pareto/schemas/json/data_types/target.d.ts +169 -0
  90. package/dist/interface/generated/pareto/schemas/json/data_types/target.js +3 -0
  91. package/dist/interface/generated/pareto/schemas/json/deserialize.d.ts +54 -0
  92. package/dist/interface/generated/pareto/schemas/json/deserialize.js +3 -0
  93. package/dist/interface/generated/pareto/schemas/json/marshall.d.ts +63 -0
  94. package/dist/interface/generated/pareto/schemas/json/marshall.js +3 -0
  95. package/dist/interface/generated/pareto/schemas/json/migrate_boilerplate.d.ts +46 -0
  96. package/dist/interface/generated/pareto/schemas/json/migrate_boilerplate.js +3 -0
  97. package/dist/interface/generated/pareto/schemas/json/serialize.d.ts +54 -0
  98. package/dist/interface/generated/pareto/schemas/json/serialize.js +3 -0
  99. package/dist/interface/generated/pareto/schemas/json/unmarshall.d.ts +63 -0
  100. package/dist/interface/generated/pareto/schemas/json/unmarshall.js +3 -0
  101. package/dist/interface/generated/pareto/schemas/json/value_deserializers.d.ts +64 -0
  102. package/dist/interface/generated/pareto/schemas/json/value_deserializers.js +3 -0
  103. package/dist/interface/generated/pareto/schemas/json/value_serializers.d.ts +64 -0
  104. package/dist/interface/generated/pareto/schemas/json/value_serializers.js +3 -0
  105. package/dist/shorthands/json.d.ts +8 -0
  106. package/dist/shorthands/json.js +12 -0
  107. package/package.json +36 -0
@@ -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.Document = exports.Value = void 0;
27
+ const _i_serialize = __importStar(require("../../generic/serialize"));
28
+ const _i_marshall = __importStar(require("./marshall"));
29
+ const Value = ($, $p) => _i_serialize.Document(_i_marshall.Value($, {
30
+ 'value serializers': $p['value serializers'],
31
+ }));
32
+ exports.Value = Value;
33
+ const Document = ($, $p) => _i_serialize.Document(_i_marshall.Document($, {
34
+ 'value serializers': $p['value serializers'],
35
+ }));
36
+ exports.Document = Document;
37
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ltcGxlbWVudGF0aW9uL2dlbmVyYXRlZC9wYXJldG8vc2NoZW1hcy9qc29uL3NlcmlhbGl6ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUlBLHNFQUF1RDtBQUN2RCx3REFBeUM7QUFHbEMsTUFBTSxLQUFLLEdBQTJCLENBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsWUFBWSxDQUFDLFFBQVEsQ0FDekUsV0FBVyxDQUFDLEtBQUssQ0FDYixDQUFDLEVBQ0Q7SUFDSSxtQkFBbUIsRUFBRSxFQUFFLENBQUMsbUJBQW1CLENBQUM7Q0FDL0MsQ0FDSixDQUNKLENBQUE7QUFQWSxRQUFBLEtBQUssU0FPakI7QUFDTSxNQUFNLFFBQVEsR0FBOEIsQ0FBQyxDQUFDLEVBQUUsRUFBRSxFQUFFLEVBQUUsQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUMvRSxXQUFXLENBQUMsUUFBUSxDQUNoQixDQUFDLEVBQ0Q7SUFDSSxtQkFBbUIsRUFBRSxFQUFFLENBQUMsbUJBQW1CLENBQUM7Q0FDL0MsQ0FDSixDQUNKLENBQUE7QUFQWSxRQUFBLFFBQVEsWUFPcEIifQ==
@@ -0,0 +1,3 @@
1
+ import * as _i_signatures from "../../../../../interface/generated/pareto/schemas/json/unmarshall";
2
+ export declare const Value: _i_signatures._T_Value;
3
+ export declare const Document: _i_signatures._T_Document;
@@ -0,0 +1,81 @@
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.Document = exports.Value = void 0;
27
+ const _pa = __importStar(require("exupery-core-alg"));
28
+ const _i_generic = __importStar(require("../../generic/unmarshall"));
29
+ const Value = ($, $p) => _i_generic.process_unconstrained_state_group($, {
30
+ 'states': _pa.dictionary_literal({
31
+ 'array': ($) => ['array', _i_generic.process_unconstrained_list($, {
32
+ 'value': ($) => (0, exports.Value)($, {
33
+ 'value deserializers': $p['value deserializers'],
34
+ }),
35
+ })],
36
+ 'object': ($) => ['object', _i_generic.process_unconstrained_state_group($, {
37
+ 'states': _pa.dictionary_literal({
38
+ 'key value array': ($) => ['key value array', _i_generic.process_unconstrained_list($, {
39
+ 'value': ($) => _i_generic.process_group($, {
40
+ 'properties': ($) => ({
41
+ 'key': _pa.cc(_i_generic.get_entry($, {
42
+ 'key': "key",
43
+ }), ($) => _i_generic.process_text($, null)),
44
+ 'value': _pa.cc(_i_generic.get_entry($, {
45
+ 'key': "value",
46
+ }), ($) => (0, exports.Value)($, {
47
+ 'value deserializers': $p['value deserializers'],
48
+ })),
49
+ }),
50
+ }),
51
+ })],
52
+ 'dictionary': ($) => ['dictionary', _i_generic.process_unconstrained_dictionary($, {
53
+ 'value': ($) => (0, exports.Value)($, {
54
+ 'value deserializers': $p['value deserializers'],
55
+ }),
56
+ })],
57
+ }),
58
+ })],
59
+ 'number': ($) => ['number', _i_generic.process_unconstrained_state_group($, {
60
+ 'states': _pa.dictionary_literal({
61
+ 'integer': ($) => ['integer', _i_generic.process_number($, {
62
+ 'deserializer': $p['value deserializers']['default number'],
63
+ })],
64
+ 'float': ($) => ['float', _i_generic.process_number($, {
65
+ 'deserializer': $p['value deserializers']['default number'],
66
+ })],
67
+ }),
68
+ })],
69
+ 'string': ($) => ['string', _i_generic.process_text($, null)],
70
+ 'boolean': ($) => ['boolean', _i_generic.process_boolean($, {
71
+ 'deserializer': $p['value deserializers']['boolean'],
72
+ })],
73
+ 'null': ($) => ['null', _i_generic.process_nothing($, null)],
74
+ }),
75
+ });
76
+ exports.Value = Value;
77
+ const Document = ($, $p) => (0, exports.Value)($, {
78
+ 'value deserializers': $p['value deserializers'],
79
+ });
80
+ exports.Document = Document;
81
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5tYXJzaGFsbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbXBsZW1lbnRhdGlvbi9nZW5lcmF0ZWQvcGFyZXRvL3NjaGVtYXMvanNvbi91bm1hcnNoYWxsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsc0RBQXVDO0FBR3ZDLHFFQUFzRDtBQU0vQyxNQUFNLEtBQUssR0FBMkIsQ0FBQyxDQUFDLEVBQUUsRUFBRSxFQUFFLEVBQUUsQ0FBQyxVQUFVLENBQUMsaUNBQWlDLENBQ2hHLENBQUMsRUFDRDtJQUNJLFFBQVEsRUFBRSxHQUFHLENBQUMsa0JBQWtCLENBQUM7UUFDN0IsT0FBTyxFQUFFLENBQUMsQ0FBQyxFQUFzQixFQUFFLENBQUMsQ0FBQyxPQUFPLEVBQUUsVUFBVSxDQUFDLDBCQUEwQixDQUMvRSxDQUFDLEVBQ0Q7Z0JBQ0ksT0FBTyxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxJQUFBLGFBQUssRUFDakIsQ0FBQyxFQUNEO29CQUNJLHFCQUFxQixFQUFFLEVBQUUsQ0FBQyxxQkFBcUIsQ0FBQztpQkFDbkQsQ0FDSjthQUNKLENBQ0osQ0FBQztRQUNGLFFBQVEsRUFBRSxDQUFDLENBQUMsRUFBc0IsRUFBRSxDQUFDLENBQUMsUUFBUSxFQUFFLFVBQVUsQ0FBQyxpQ0FBaUMsQ0FDeEYsQ0FBQyxFQUNEO2dCQUNJLFFBQVEsRUFBRSxHQUFHLENBQUMsa0JBQWtCLENBQUM7b0JBQzdCLGlCQUFpQixFQUFFLENBQUMsQ0FBQyxFQUFpQyxFQUFFLENBQUMsQ0FBQyxpQkFBaUIsRUFBRSxVQUFVLENBQUMsMEJBQTBCLENBQzlHLENBQUMsRUFDRDs0QkFDSSxPQUFPLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLFVBQVUsQ0FBQyxhQUFhLENBQ3BDLENBQUMsRUFDRDtnQ0FDSSxZQUFZLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUM7b0NBQ2xCLEtBQUssRUFBRSxHQUFHLENBQUMsRUFBRSxDQUFDLFVBQVUsQ0FBQyxTQUFTLENBQzlCLENBQUMsRUFDRDt3Q0FDSSxLQUFLLEVBQUUsS0FBSztxQ0FDZixDQUNKLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLFVBQVUsQ0FBQyxZQUFZLENBQzdCLENBQUMsRUFDRCxJQUFJLENBQ1AsQ0FBQztvQ0FDRixPQUFPLEVBQUUsR0FBRyxDQUFDLEVBQUUsQ0FBQyxVQUFVLENBQUMsU0FBUyxDQUNoQyxDQUFDLEVBQ0Q7d0NBQ0ksS0FBSyxFQUFFLE9BQU87cUNBQ2pCLENBQ0osRUFBRSxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsSUFBQSxhQUFLLEVBQ1gsQ0FBQyxFQUNEO3dDQUNJLHFCQUFxQixFQUFFLEVBQUUsQ0FBQyxxQkFBcUIsQ0FBQztxQ0FDbkQsQ0FDSixDQUFDO2lDQUNMLENBQUM7NkJBQ0wsQ0FDSjt5QkFDSixDQUNKLENBQUM7b0JBQ0YsWUFBWSxFQUFFLENBQUMsQ0FBQyxFQUFpQyxFQUFFLENBQUMsQ0FBQyxZQUFZLEVBQUUsVUFBVSxDQUFDLGdDQUFnQyxDQUMxRyxDQUFDLEVBQ0Q7NEJBQ0ksT0FBTyxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxJQUFBLGFBQUssRUFDakIsQ0FBQyxFQUNEO2dDQUNJLHFCQUFxQixFQUFFLEVBQUUsQ0FBQyxxQkFBcUIsQ0FBQzs2QkFDbkQsQ0FDSjt5QkFDSixDQUNKLENBQUM7aUJBQ0wsQ0FBQzthQUNMLENBQ0osQ0FBQztRQUNGLFFBQVEsRUFBRSxDQUFDLENBQUMsRUFBc0IsRUFBRSxDQUFDLENBQUMsUUFBUSxFQUFFLFVBQVUsQ0FBQyxpQ0FBaUMsQ0FDeEYsQ0FBQyxFQUNEO2dCQUNJLFFBQVEsRUFBRSxHQUFHLENBQUMsa0JBQWtCLENBQUM7b0JBQzdCLFNBQVMsRUFBRSxDQUFDLENBQUMsRUFBaUMsRUFBRSxDQUFDLENBQUMsU0FBUyxFQUFFLFVBQVUsQ0FBQyxjQUFjLENBQ2xGLENBQUMsRUFDRDs0QkFDSSxjQUFjLEVBQUUsRUFBRSxDQUFDLHFCQUFxQixDQUFDLENBQUMsZ0JBQWdCLENBQUM7eUJBQzlELENBQ0osQ0FBQztvQkFDRixPQUFPLEVBQUUsQ0FBQyxDQUFDLEVBQWlDLEVBQUUsQ0FBQyxDQUFDLE9BQU8sRUFBRSxVQUFVLENBQUMsY0FBYyxDQUM5RSxDQUFDLEVBQ0Q7NEJBQ0ksY0FBYyxFQUFFLEVBQUUsQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDLGdCQUFnQixDQUFDO3lCQUM5RCxDQUNKLENBQUM7aUJBQ0wsQ0FBQzthQUNMLENBQ0osQ0FBQztRQUNGLFFBQVEsRUFBRSxDQUFDLENBQUMsRUFBc0IsRUFBRSxDQUFDLENBQUMsUUFBUSxFQUFFLFVBQVUsQ0FBQyxZQUFZLENBQ25FLENBQUMsRUFDRCxJQUFJLENBQ1AsQ0FBQztRQUNGLFNBQVMsRUFBRSxDQUFDLENBQUMsRUFBc0IsRUFBRSxDQUFDLENBQUMsU0FBUyxFQUFFLFVBQVUsQ0FBQyxlQUFlLENBQ3hFLENBQUMsRUFDRDtnQkFDSSxjQUFjLEVBQUUsRUFBRSxDQUFDLHFCQUFxQixDQUFDLENBQUMsU0FBUyxDQUFDO2FBQ3ZELENBQ0osQ0FBQztRQUNGLE1BQU0sRUFBRSxDQUFDLENBQUMsRUFBc0IsRUFBRSxDQUFDLENBQUMsTUFBTSxFQUFFLFVBQVUsQ0FBQyxlQUFlLENBQ2xFLENBQUMsRUFDRCxJQUFJLENBQ1AsQ0FBQztLQUNMLENBQUM7Q0FDTCxDQUNKLENBQUE7QUFwR1ksUUFBQSxLQUFLLFNBb0dqQjtBQUNNLE1BQU0sUUFBUSxHQUE4QixDQUFDLENBQUMsRUFBRSxFQUFFLEVBQUUsRUFBRSxDQUFDLElBQUEsYUFBSyxFQUMvRCxDQUFDLEVBQ0Q7SUFDSSxxQkFBcUIsRUFBRSxFQUFFLENBQUMscUJBQXFCLENBQUM7Q0FDbkQsQ0FDSixDQUFBO0FBTFksUUFBQSxRQUFRLFlBS3BCIn0=
@@ -0,0 +1,4 @@
1
+ import * as _et from 'exupery-core-types';
2
+ import * as d_in from "../../../interface/generated/pareto/schemas/graphviz/data_types/source";
3
+ import * as d_out from "pareto-fountain-pen/dist/interface/generated/pareto/schemas/block/data_types/target";
4
+ export declare const Graph: _et.Transformer<d_out.Block_Part, d_in.Graph>;
@@ -0,0 +1,43 @@
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.Graph = void 0;
27
+ const sh = __importStar(require("pareto-fountain-pen/dist/shorthands/block"));
28
+ const Graph = ($) => {
29
+ return sh.b.sub([
30
+ sh.b.snippet(`graph {`),
31
+ sh.b.indent([
32
+ sh.g.sub($.nodes.deprecated_to_array(() => 1).map(($) => sh.g.nested_block([
33
+ sh.b.snippet(`${$.key} ;`),
34
+ ]))),
35
+ sh.g.sub($.edges.map(($) => sh.g.nested_block([
36
+ sh.b.snippet(`${$.from} -> ${$.to} ;`),
37
+ ])))
38
+ ]),
39
+ sh.b.snippet(`}`),
40
+ ]);
41
+ };
42
+ exports.Graph = Graph;
43
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm91bnRhaW5fcGVuLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2ltcGxlbWVudGF0aW9uL3RyYW5zZm9ybWVycy9ncmFwaHZpei9mb3VudGFpbl9wZW4udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFNQSw4RUFBK0Q7QUFFeEQsTUFBTSxLQUFLLEdBQWtELENBQUMsQ0FBQyxFQUFFLEVBQUU7SUFDdEUsT0FBTyxFQUFFLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQztRQUVaLEVBQUUsQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLFNBQVMsQ0FBQztRQUN2QixFQUFFLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQztZQUNSLEVBQUUsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsbUJBQW1CLENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLFlBQVksQ0FBQztnQkFDdkUsRUFBRSxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUM7YUFDN0IsQ0FBQyxDQUFDLENBQUM7WUFDSixFQUFFLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxZQUFZLENBQUM7Z0JBQzFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUksT0FBTyxDQUFDLENBQUMsRUFBRSxJQUFJLENBQUM7YUFDekMsQ0FBQyxDQUFDLENBQUM7U0FDUCxDQUFDO1FBQ0YsRUFBRSxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDO0tBQ3BCLENBQUMsQ0FBQTtBQUNOLENBQUMsQ0FBQTtBQWRZLFFBQUEsS0FBSyxTQWNqQiJ9
@@ -0,0 +1 @@
1
+ export declare const dont_import_the_root_of_this_package_but_the_specific_file_or_files_needed = 42;
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.dont_import_the_root_of_this_package_but_the_specific_file_or_files_needed = void 0;
4
+ exports.dont_import_the_root_of_this_package_but_the_specific_file_or_files_needed = 42;
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQWEsUUFBQSwwRUFBMEUsR0FBRyxFQUFFLENBQUEifQ==
@@ -0,0 +1 @@
1
+ export type Signature = () => void;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ // Generated interface for operations/impure/text/serialize_string.ts
3
+ // This file defines the type signature for the implementation
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplX3N0cmluZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvYWxnb3JpdGhtcy9vcGVyYXRpb25zL2ltcHVyZS90ZXh0L3NlcmlhbGl6ZV9zdHJpbmcudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLHFFQUFxRTtBQUNyRSw4REFBOEQifQ==
@@ -0,0 +1 @@
1
+ export type Signature = () => void;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ // Generated interface for transformations/json/fountain_pen_block.ts
3
+ // This file defines the type signature for the implementation
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm91bnRhaW5fcGVuX2Jsb2NrLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9hbGdvcml0aG1zL3RyYW5zZm9ybWF0aW9ucy9qc29uL2ZvdW50YWluX3Blbl9ibG9jay50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEscUVBQXFFO0FBQ3JFLDhEQUE4RCJ9
@@ -0,0 +1,123 @@
1
+ import * as _et from 'exupery-core-types';
2
+ export type _T_Value = readonly [
3
+ 'indexed collection',
4
+ readonly [
5
+ 'dictionary',
6
+ {
7
+ readonly 'entries': _T_Key_Value_Pairs;
8
+ readonly '{': _T_Structural_Token;
9
+ readonly '}': _T_Structural_Token;
10
+ }
11
+ ] | readonly [
12
+ 'verbose group',
13
+ {
14
+ readonly '(': _T_Structural_Token;
15
+ readonly ')': _T_Structural_Token;
16
+ readonly 'entries': _T_Key_Value_Pairs;
17
+ }
18
+ ]
19
+ ] | readonly [
20
+ 'not set',
21
+ {
22
+ readonly '~': _T_Structural_Token;
23
+ }
24
+ ] | readonly [
25
+ 'ordered collection',
26
+ readonly [
27
+ 'concise group',
28
+ {
29
+ readonly '<': _T_Structural_Token;
30
+ readonly '>': _T_Structural_Token;
31
+ readonly 'elements': _T_Elements;
32
+ }
33
+ ] | readonly [
34
+ 'list',
35
+ {
36
+ readonly '[': _T_Structural_Token;
37
+ readonly ']': _T_Structural_Token;
38
+ readonly 'elements': _T_Elements;
39
+ }
40
+ ]
41
+ ] | readonly [
42
+ 'set optional value',
43
+ {
44
+ readonly '*': _T_Structural_Token;
45
+ readonly 'value': _T_Value;
46
+ }
47
+ ] | readonly ['string', _T_String] | readonly [
48
+ 'tagged value',
49
+ {
50
+ readonly 'state': _T_String;
51
+ readonly 'value': _T_Value;
52
+ readonly '|': _T_Structural_Token;
53
+ }
54
+ ];
55
+ export type _T_Document = {
56
+ readonly 'content': _T_Value;
57
+ readonly 'header': _et.Optional_Value<{
58
+ readonly '!': _T_Structural_Token;
59
+ readonly 'value': _T_Value;
60
+ }>;
61
+ };
62
+ export type _T_Elements = _et.List<{
63
+ readonly 'value': _T_Value;
64
+ }>;
65
+ export declare namespace _T_Elements {
66
+ type L = {
67
+ readonly 'value': _T_Value;
68
+ };
69
+ }
70
+ export type _T_Key_Value_Pairs = _et.List<{
71
+ readonly ',': _et.Optional_Value<_T_Structural_Token>;
72
+ readonly 'key': _T_String;
73
+ readonly 'value': _et.Optional_Value<{
74
+ readonly ':': _T_Structural_Token;
75
+ readonly 'value': _T_Value;
76
+ }>;
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
+ }
88
+ export type _T_String = {
89
+ readonly 'range': _T_Range;
90
+ readonly 'trailing trivia': _T_Trivia;
91
+ readonly 'type': _T_String_Type;
92
+ readonly 'value': string;
93
+ };
94
+ export type _T_Structural_Token = {
95
+ readonly 'range': _T_Range;
96
+ readonly 'trailing trivia': _T_Trivia;
97
+ };
98
+ export type _T_Range = {
99
+ readonly 'end': _T_Location;
100
+ readonly 'start': _T_Location;
101
+ };
102
+ export type _T_Location = {
103
+ readonly 'absolute': number;
104
+ readonly 'relative': _T_Relative_Location;
105
+ };
106
+ export type _T_Relative_Location = {
107
+ readonly 'column': number;
108
+ readonly 'line': number;
109
+ };
110
+ export type _T_Trivia = {
111
+ readonly 'comments': _et.List<{
112
+ readonly 'content': string;
113
+ readonly 'range': _T_Range;
114
+ readonly 'trailing whitespace': _T_Whitespace;
115
+ readonly 'type': readonly ['block', null] | readonly ['line', null];
116
+ }>;
117
+ readonly 'leading whitespace': _T_Whitespace;
118
+ };
119
+ export type _T_Whitespace = {
120
+ readonly 'range': _T_Range;
121
+ readonly 'value': string;
122
+ };
123
+ export type _T_String_Type = readonly ['apostrophed', null] | readonly ['backticked', null] | readonly ['quoted', null] | readonly ['undelimited', null];
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXN0bl9zb3VyY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vY29yZS9hc3RuX3NvdXJjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,186 @@
1
+ import * as _et from 'exupery-core-types';
2
+ export type _T_Document = _T_Value;
3
+ export type _T_Value = readonly ['dictionary', _et.Dictionary<_T_Value>] | readonly ['list', _et.List<_T_Value>] | readonly ['nothing', null] | readonly [
4
+ 'optional',
5
+ readonly ['not set', null] | readonly ['set', _T_Value]
6
+ ] | readonly [
7
+ 'state',
8
+ {
9
+ readonly 'state': string;
10
+ readonly 'value': _T_Value;
11
+ }
12
+ ] | readonly [
13
+ 'text',
14
+ {
15
+ readonly 'delimiter': readonly ['backtick', null] | readonly ['none', null] | readonly ['quote', null];
16
+ readonly 'value': string;
17
+ }
18
+ ] | readonly ['verbose group', _et.Dictionary<_T_Value>];
19
+ export type Document = _T_Document;
20
+ export type Value = _T_Value;
21
+ export declare namespace _T_Document {
22
+ }
23
+ export declare namespace _T_Value {
24
+ namespace SG {
25
+ namespace concise_group {
26
+ namespace L {
27
+ }
28
+ type L = _T_Value;
29
+ }
30
+ type concise_group = _et.List<_T_Value>;
31
+ namespace dictionary {
32
+ namespace D {
33
+ }
34
+ type D = _T_Value;
35
+ }
36
+ type dictionary = _et.Dictionary<_T_Value>;
37
+ namespace list {
38
+ namespace L {
39
+ }
40
+ type L = _T_Value;
41
+ }
42
+ type list = _et.List<_T_Value>;
43
+ type nothing = null;
44
+ namespace optional {
45
+ namespace SG {
46
+ type not_set = null;
47
+ namespace _set {
48
+ }
49
+ type _set = _T_Value;
50
+ }
51
+ type SG = readonly ['not set', null] | readonly ['set', _T_Value];
52
+ }
53
+ type optional = readonly ['not set', null] | readonly ['set', _T_Value];
54
+ namespace state {
55
+ type state = string;
56
+ namespace value {
57
+ }
58
+ type value = _T_Value;
59
+ }
60
+ type state = {
61
+ readonly 'state': string;
62
+ readonly 'value': _T_Value;
63
+ };
64
+ namespace text {
65
+ namespace delimiter {
66
+ namespace SG {
67
+ type backtick = null;
68
+ type none = null;
69
+ type quote = null;
70
+ }
71
+ type SG = readonly ['backtick', null] | readonly ['none', null] | readonly ['quote', null];
72
+ }
73
+ type delimiter = readonly ['backtick', null] | readonly ['none', null] | readonly ['quote', null];
74
+ type value = string;
75
+ }
76
+ type text = {
77
+ readonly 'delimiter': readonly ['backtick', null] | readonly ['none', null] | readonly ['quote', null];
78
+ readonly 'value': string;
79
+ };
80
+ namespace verbose_group {
81
+ namespace D {
82
+ }
83
+ type D = _T_Value;
84
+ }
85
+ type verbose_group = _et.Dictionary<_T_Value>;
86
+ }
87
+ type SG = readonly ['concise group', _et.List<_T_Value>] | readonly ['dictionary', _et.Dictionary<_T_Value>] | readonly ['list', _et.List<_T_Value>] | readonly ['nothing', null] | readonly [
88
+ 'optional',
89
+ readonly ['not set', null] | readonly ['set', _T_Value]
90
+ ] | readonly [
91
+ 'state',
92
+ {
93
+ readonly 'state': string;
94
+ readonly 'value': _T_Value;
95
+ }
96
+ ] | readonly [
97
+ 'text',
98
+ {
99
+ readonly 'delimiter': readonly ['backtick', null] | readonly ['none', null] | readonly ['quote', null];
100
+ readonly 'value': string;
101
+ }
102
+ ] | readonly ['verbose group', _et.Dictionary<_T_Value>];
103
+ }
104
+ export declare namespace Document {
105
+ }
106
+ export declare namespace Value {
107
+ namespace SG {
108
+ namespace concise_group {
109
+ namespace L {
110
+ }
111
+ type L = _T_Value;
112
+ }
113
+ type concise_group = _et.List<_T_Value>;
114
+ namespace dictionary {
115
+ namespace D {
116
+ }
117
+ type D = _T_Value;
118
+ }
119
+ type dictionary = _et.Dictionary<_T_Value>;
120
+ namespace list {
121
+ namespace L {
122
+ }
123
+ type L = _T_Value;
124
+ }
125
+ type list = _et.List<_T_Value>;
126
+ type nothing = null;
127
+ namespace optional {
128
+ namespace SG {
129
+ type not_set = null;
130
+ namespace _set {
131
+ }
132
+ type _set = _T_Value;
133
+ }
134
+ type SG = readonly ['not set', null] | readonly ['set', _T_Value];
135
+ }
136
+ type optional = readonly ['not set', null] | readonly ['set', _T_Value];
137
+ namespace state {
138
+ type state = string;
139
+ namespace value {
140
+ }
141
+ type value = _T_Value;
142
+ }
143
+ type state = {
144
+ readonly 'state': string;
145
+ readonly 'value': _T_Value;
146
+ };
147
+ namespace text {
148
+ namespace delimiter {
149
+ namespace SG {
150
+ type backtick = null;
151
+ type none = null;
152
+ type quote = null;
153
+ }
154
+ type SG = readonly ['backtick', null] | readonly ['none', null] | readonly ['quote', null];
155
+ }
156
+ type delimiter = readonly ['backtick', null] | readonly ['none', null] | readonly ['quote', null];
157
+ type value = string;
158
+ }
159
+ type text = {
160
+ readonly 'delimiter': readonly ['backtick', null] | readonly ['none', null] | readonly ['quote', null];
161
+ readonly 'value': string;
162
+ };
163
+ namespace verbose_group {
164
+ namespace D {
165
+ }
166
+ type D = _T_Value;
167
+ }
168
+ type verbose_group = _et.Dictionary<_T_Value>;
169
+ }
170
+ type SG = readonly ['concise group', _et.List<_T_Value>] | readonly ['dictionary', _et.Dictionary<_T_Value>] | readonly ['list', _et.List<_T_Value>] | readonly ['nothing', null] | readonly [
171
+ 'optional',
172
+ readonly ['not set', null] | readonly ['set', _T_Value]
173
+ ] | readonly [
174
+ 'state',
175
+ {
176
+ readonly 'state': string;
177
+ readonly 'value': _T_Value;
178
+ }
179
+ ] | readonly [
180
+ 'text',
181
+ {
182
+ readonly 'delimiter': readonly ['backtick', null] | readonly ['none', null] | readonly ['quote', null];
183
+ readonly 'value': string;
184
+ }
185
+ ] | readonly ['verbose group', _et.Dictionary<_T_Value>];
186
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXN0bl90YXJnZXQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vY29yZS9hc3RuX3RhcmdldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -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.List<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==
@@ -0,0 +1,11 @@
1
+ import * as _et from 'exupery-core-types';
2
+ export type Location_to_String<Source> = ($: Source) => string;
3
+ export type _T_Location_2_String<Source> = Location_to_String<Source>;
4
+ export type Non_Circular_Result<T> = ['error', ['circular', _et.List<string>]] | ['resolved', T];
5
+ export type Acyclic_Lookup<T> = _et.Optional_Value<_et.Lookup<Non_Circular_Result<T>>>;
6
+ export type _T_Acyclic_Lookup<T> = Acyclic_Lookup<T>;
7
+ export type Possibly_Circular_Result<T> = _et.Circular_Dependency<T>;
8
+ export type Cyclic_Lookup<T> = _et.Optional_Value<_et.Lookup<Possibly_Circular_Result<T>>>;
9
+ export type _T_Cyclic_Lookup<T> = Cyclic_Lookup<T>;
10
+ export type Lookup_Stack<T> = _et.List<Acyclic_Lookup<T>>;
11
+ export type _T_Lookup_Stack<T> = Lookup_Stack<T>;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL3BhcmV0by9jb3JlL3Jlc29sdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9