pareto 0.78.1 → 0.78.3
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/bin/compile_temp_schemas.js +17 -3
- package/dist/bin/seal.js +7 -3
- package/dist/bin/serialize_schemas.js +7 -3
- package/dist/globals.d.ts +2 -0
- package/dist/implementation/commands/compile_temp_schemas.d.ts +19 -0
- package/dist/implementation/commands/compile_temp_schemas.js +131 -0
- package/dist/implementation/commands/seal.d.ts +8 -0
- package/dist/{bin/validate.js → implementation/commands/seal.js} +13 -5
- package/dist/implementation/commands/serialize_schemas.d.ts +8 -0
- package/dist/implementation/commands/serialize_schemas.js +61 -0
- 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 +2 -2
- package/dist/implementation/generated/pareto/generic/parse/parse.js +4 -3
- 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/implementation/generated/pareto/generic/unmarshall.js +4 -4
- package/dist/implementation/generated/pareto/schemas/module/resolve.js +33 -33
- package/dist/implementation/generated/pareto/schemas/schema/resolve.js +2 -2
- package/dist/implementation/{algorithms/operations → operations}/impure/tbd/path.d.ts +1 -1
- package/dist/implementation/operations/impure/tbd/path.js +63 -0
- package/dist/implementation/queries/load_pareto_document.d.ts +23 -0
- package/dist/implementation/queries/load_pareto_document.js +64 -0
- package/dist/implementation/queries/load_pareto_file.d.ts +14 -0
- package/dist/implementation/queries/load_pareto_file.js +40 -0
- package/dist/implementation/refiners/load_schema.d.ts +6 -0
- package/dist/implementation/refiners/load_schema.js +83 -0
- package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_implementation.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_implementation.js +2 -2
- package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_interface.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_interface.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_implementation.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_implementation.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_interface.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_interface.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/deserialize.d.ts +2 -2
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/deserialize.js +7 -7
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/main.d.ts +3 -3
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/main.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/marshall.d.ts +3 -3
- package/dist/implementation/transformations/schema/exupery_implementation/marshall.js +142 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/migrate_boilerplate.d.ts +2 -2
- package/dist/implementation/transformations/schema/exupery_implementation/migrate_boilerplate.js +105 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/resolve.d.ts +5 -5
- package/dist/implementation/transformations/schema/exupery_implementation/resolve.js +300 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/serialize.d.ts +2 -2
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/serialize.js +7 -7
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/unmarshall.d.ts +3 -3
- package/dist/implementation/transformations/schema/exupery_implementation/unmarshall.js +158 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/deserialize.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/deserialize.js +1 -1
- package/dist/implementation/transformations/schema/exupery_interface/dummy_resolve.js +13 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/main.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/main.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/marshall.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/marshall.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/migrate_boilerplate.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/migrate_boilerplate.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/resolve.d.ts +2 -2
- package/dist/implementation/transformations/schema/exupery_interface/resolve.js +110 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/serialize.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/serialize.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/types.d.ts +1 -1
- package/dist/implementation/transformations/schema/exupery_interface/types.js +192 -0
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/unmarshall.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/unmarshall.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_deserializers.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_deserializers.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_serializers.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_serializers.js +1 -1
- package/dist/implementation/transformations/temp/astn_schema.d.ts +10 -0
- package/dist/implementation/transformations/temp/astn_schema.js +140 -0
- package/dist/implementation/{algorithms/transformations → transformations}/temp/unmarshall_astn_ast.d.ts +2 -2
- package/dist/implementation/{algorithms/transformations → transformations}/temp/unmarshall_astn_ast.js +2 -2
- package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_errors/fountain_pen.d.ts +1 -1
- package/dist/implementation/transformations/unmarshall_errors/fountain_pen.js +86 -0
- package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_result/astn_authoring_target.d.ts +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_result/astn_authoring_target.js +1 -1
- package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_result/unmarshall_errors.d.ts +2 -2
- package/dist/implementation/transformations/unmarshall_result/unmarshall_errors.js +344 -0
- package/dist/interface/algorithms/procedures/{unguaranteed/compile.js → compile.js} +1 -1
- package/dist/interface/algorithms/procedures/{unguaranteed/seal.js → seal.js} +1 -1
- package/dist/interface/algorithms/procedures/{unguaranteed/serialize_schemas.js → serialize_schemas.js} +1 -1
- package/dist/interface/algorithms/procedures/{unguaranteed/validate.js → validate.js} +1 -1
- package/dist/interface/algorithms/queries/load_pareto_document.js +5 -0
- package/dist/interface/algorithms/queries/{unguaranteed/load_pareto_file.js → load_pareto_file.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/astn_schema/data_types/resolve.d.ts +71 -71
- package/dist/interface/generated/pareto/schemas/parse_tree/data_types/source.d.ts +14 -14
- package/dist/interface/generated/pareto/schemas/parse_tree/data_types/target.d.ts +14 -14
- package/dist/interface/generated/pareto/schemas/schema/data_types/resolve.d.ts +428 -428
- package/dist/interface/generated/pareto/schemas/schema/data_types/source.d.ts +67 -67
- package/dist/interface/generated/pareto/schemas/schema/data_types/target.d.ts +67 -67
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_error.d.ts +12 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_error.js +36 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_log.d.ts +12 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_log.js +36 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_directory.d.ts +12 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_directory.js +56 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_file.d.ts +10 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_file.js +45 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_node.d.ts +12 -0
- package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_node.js +58 -0
- package/dist/modules/pareto-fountain-pen-directory/interface/temp_types.d.ts +30 -0
- package/dist/modules/pareto-fountain-pen-directory/interface/temp_types.js +3 -0
- package/dist/temp/resolvers/module.js +2 -2
- package/dist/temp/resolvers/schema.js +2 -2
- package/dist/temp/temp_unmashall_result_types.d.ts +4 -4
- package/dist/temp/temporary_schemas/all.d.ts +4 -1
- package/dist/temp/temporary_schemas/all.js +65 -17
- package/dist/temp/temporary_schemas/exupery-resources/schema_tree.astn.js +37 -31
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.globals.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.globals.astn.js +6 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.module.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.module.astn.js +8 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.types.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_procedure_executable/$.types.astn.js +20 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.globals.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.globals.astn.js +6 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.module.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.module.astn.js +8 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.types.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_query_executable/$.types.astn.js +23 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.globals.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.globals.astn.js +6 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.module.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.module.astn.js +8 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.types.astn.d.ts +3 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_any_smelly_procedure_executable/$.types.astn.js +26 -0
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_procedure_executable/$.types.astn.js +1 -2
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_query_executable/$.types.astn.js +1 -2
- package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_smelly_procedure_executable/$.types.astn.js +1 -2
- package/dist/temp/temporary_schemas/exupery-resources/schemas/get_instream_data/$.types.astn.js +2 -1
- package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding_oude_model/$.types.astn.js +10 -5
- package/package.json +9 -9
- package/dist/bin/validate.d.ts +0 -2
- package/dist/exceptional/deserializers/load_schema.d.ts +0 -6
- package/dist/exceptional/deserializers/load_schema.js +0 -83
- package/dist/implementation/algorithms/operations/impure/tbd/path.js +0 -16
- package/dist/implementation/algorithms/procedures/unguaranteed/compile_temp_schemas.d.ts +0 -3
- package/dist/implementation/algorithms/procedures/unguaranteed/compile_temp_schemas.js +0 -152
- package/dist/implementation/algorithms/procedures/unguaranteed/seal.d.ts +0 -3
- package/dist/implementation/algorithms/procedures/unguaranteed/seal.js +0 -38
- package/dist/implementation/algorithms/procedures/unguaranteed/serialize_schemas.d.ts +0 -3
- package/dist/implementation/algorithms/procedures/unguaranteed/serialize_schemas.js +0 -62
- package/dist/implementation/algorithms/procedures/unguaranteed/validate.d.ts +0 -3
- package/dist/implementation/algorithms/procedures/unguaranteed/validate.js +0 -45
- package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_document.d.ts +0 -14
- package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_document.js +0 -75
- package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_file.d.ts +0 -8
- package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_file.js +0 -48
- package/dist/implementation/algorithms/transformations/schema/exupery_implementation/marshall.js +0 -142
- package/dist/implementation/algorithms/transformations/schema/exupery_implementation/migrate_boilerplate.js +0 -105
- package/dist/implementation/algorithms/transformations/schema/exupery_implementation/resolve.js +0 -300
- package/dist/implementation/algorithms/transformations/schema/exupery_implementation/unmarshall.js +0 -158
- package/dist/implementation/algorithms/transformations/schema/exupery_interface/dummy_resolve.js +0 -13
- package/dist/implementation/algorithms/transformations/schema/exupery_interface/resolve.js +0 -110
- package/dist/implementation/algorithms/transformations/schema/exupery_interface/types.js +0 -192
- package/dist/implementation/algorithms/transformations/temp/astn_schema.d.ts +0 -10
- package/dist/implementation/algorithms/transformations/temp/astn_schema.js +0 -140
- package/dist/implementation/algorithms/transformations/unmarshall_errors/fountain_pen.js +0 -86
- package/dist/implementation/algorithms/transformations/unmarshall_result/unmarshall_errors.js +0 -344
- package/dist/interface/algorithms/queries/unguaranteed/load_pareto_document.js +0 -5
- /package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/dummy_resolve.d.ts +0 -0
- /package/dist/interface/algorithms/procedures/{unguaranteed/compile.d.ts → compile.d.ts} +0 -0
- /package/dist/interface/algorithms/procedures/{unguaranteed/seal.d.ts → seal.d.ts} +0 -0
- /package/dist/interface/algorithms/procedures/{unguaranteed/serialize_schemas.d.ts → serialize_schemas.d.ts} +0 -0
- /package/dist/interface/algorithms/procedures/{unguaranteed/validate.d.ts → validate.d.ts} +0 -0
- /package/dist/interface/algorithms/queries/{unguaranteed/load_pareto_document.d.ts → load_pareto_document.d.ts} +0 -0
- /package/dist/interface/algorithms/queries/{unguaranteed/load_pareto_file.d.ts → load_pareto_file.d.ts} +0 -0
|
@@ -24,23 +24,23 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.r_Operations = exports.r_Module = void 0;
|
|
27
|
-
const
|
|
27
|
+
const _ea = __importStar(require("exupery-core-alg"));
|
|
28
28
|
const _i_generic = __importStar(require("../../generic/resolve"));
|
|
29
29
|
const _i_r_schema = __importStar(require("../schema/resolve"));
|
|
30
|
-
const r_Module = ($, $p) =>
|
|
30
|
+
const r_Module = ($, $p) => _ea.block(() => {
|
|
31
31
|
const l2s = $p['location 2 string'];
|
|
32
32
|
const params = $p['parameters'];
|
|
33
|
-
return
|
|
34
|
-
const p_schema_tree =
|
|
33
|
+
return _ea.block(() => {
|
|
34
|
+
const p_schema_tree = _ea.cc($['schema tree'], ($) => _i_r_schema.r_Schema_Tree($, {
|
|
35
35
|
'location 2 string': l2s,
|
|
36
36
|
'parameters': ({
|
|
37
37
|
'lookups': ({
|
|
38
|
-
'sibling schemas':
|
|
38
|
+
'sibling schemas': _ea.list_literal([]),
|
|
39
39
|
}),
|
|
40
40
|
'values': null,
|
|
41
41
|
}),
|
|
42
42
|
}));
|
|
43
|
-
const p_operations =
|
|
43
|
+
const p_operations = _ea.cc($['operations'], ($) => (0, exports.r_Operations)($, {
|
|
44
44
|
'location 2 string': l2s,
|
|
45
45
|
'parameters': ({
|
|
46
46
|
'lookups': null,
|
|
@@ -54,52 +54,52 @@ const r_Module = ($, $p) => _pa.block(() => {
|
|
|
54
54
|
});
|
|
55
55
|
});
|
|
56
56
|
exports.r_Module = r_Module;
|
|
57
|
-
const r_Operations = ($, $p) =>
|
|
57
|
+
const r_Operations = ($, $p) => _ea.block(() => {
|
|
58
58
|
const l2s = $p['location 2 string'];
|
|
59
59
|
const params = $p['parameters'];
|
|
60
|
-
return
|
|
60
|
+
return _ea.block(() => {
|
|
61
61
|
return _i_generic.resolve_dictionary($, {
|
|
62
62
|
'location 2 string': l2s,
|
|
63
|
-
'map': ($, $p) =>
|
|
64
|
-
return
|
|
63
|
+
'map': ($, $p) => _ea.block(() => {
|
|
64
|
+
return _ea.cc($['value'], ($) => _ea.cc($['state group'], ($) => {
|
|
65
65
|
switch ($[0]) {
|
|
66
|
-
case 'operation': return
|
|
67
|
-
return
|
|
68
|
-
const p_type_parameters =
|
|
66
|
+
case 'operation': return _ea.ss($, ($) => ['operation', _ea.block(() => {
|
|
67
|
+
return _ea.block(() => {
|
|
68
|
+
const p_type_parameters = _ea.cc($['type parameters'], ($) => _i_r_schema.r_Type_Parameters($, {
|
|
69
69
|
'location 2 string': l2s,
|
|
70
70
|
'parameters': ({
|
|
71
71
|
'lookups': null,
|
|
72
72
|
'values': null,
|
|
73
73
|
}),
|
|
74
74
|
}));
|
|
75
|
-
const p_context =
|
|
75
|
+
const p_context = _ea.cc($['context'], ($) => _i_r_schema.r_Type_Node($, {
|
|
76
76
|
'location 2 string': l2s,
|
|
77
77
|
'parameters': ({
|
|
78
78
|
'lookups': ({
|
|
79
|
-
'noncircular sibling types':
|
|
80
|
-
'possibly circular dependent sibling types':
|
|
79
|
+
'noncircular sibling types': _ea.not_set(),
|
|
80
|
+
'possibly circular dependent sibling types': _ea.not_set(),
|
|
81
81
|
}),
|
|
82
82
|
'values': ({
|
|
83
|
-
'globals':
|
|
84
|
-
'imports':
|
|
83
|
+
'globals': _ea.not_set(),
|
|
84
|
+
'imports': _ea.not_set(),
|
|
85
85
|
'type parameters': p_type_parameters,
|
|
86
86
|
}),
|
|
87
87
|
}),
|
|
88
88
|
}));
|
|
89
|
-
const p_parameters =
|
|
89
|
+
const p_parameters = _ea.cc($['parameters'], ($) => _ea.block(() => {
|
|
90
90
|
return _i_generic.resolve_dictionary($, {
|
|
91
91
|
'location 2 string': l2s,
|
|
92
|
-
'map': ($, $p) =>
|
|
93
|
-
return
|
|
92
|
+
'map': ($, $p) => _ea.block(() => {
|
|
93
|
+
return _ea.cc($['value'], ($) => _i_r_schema.r_Type_Node($, {
|
|
94
94
|
'location 2 string': l2s,
|
|
95
95
|
'parameters': ({
|
|
96
96
|
'lookups': ({
|
|
97
|
-
'noncircular sibling types':
|
|
98
|
-
'possibly circular dependent sibling types':
|
|
97
|
+
'noncircular sibling types': _ea.not_set(),
|
|
98
|
+
'possibly circular dependent sibling types': _ea.not_set(),
|
|
99
99
|
}),
|
|
100
100
|
'values': ({
|
|
101
|
-
'globals':
|
|
102
|
-
'imports':
|
|
101
|
+
'globals': _ea.not_set(),
|
|
102
|
+
'imports': _ea.not_set(),
|
|
103
103
|
'type parameters': p_type_parameters,
|
|
104
104
|
}),
|
|
105
105
|
}),
|
|
@@ -107,16 +107,16 @@ const r_Operations = ($, $p) => _pa.block(() => {
|
|
|
107
107
|
}),
|
|
108
108
|
});
|
|
109
109
|
}));
|
|
110
|
-
const p_result =
|
|
110
|
+
const p_result = _ea.cc($['result'], ($) => _i_r_schema.r_Type_Node($, {
|
|
111
111
|
'location 2 string': l2s,
|
|
112
112
|
'parameters': ({
|
|
113
113
|
'lookups': ({
|
|
114
|
-
'noncircular sibling types':
|
|
115
|
-
'possibly circular dependent sibling types':
|
|
114
|
+
'noncircular sibling types': _ea.not_set(),
|
|
115
|
+
'possibly circular dependent sibling types': _ea.not_set(),
|
|
116
116
|
}),
|
|
117
117
|
'values': ({
|
|
118
|
-
'globals':
|
|
119
|
-
'imports':
|
|
118
|
+
'globals': _ea.not_set(),
|
|
119
|
+
'imports': _ea.not_set(),
|
|
120
120
|
'type parameters': p_type_parameters,
|
|
121
121
|
}),
|
|
122
122
|
}),
|
|
@@ -129,7 +129,7 @@ const r_Operations = ($, $p) => _pa.block(() => {
|
|
|
129
129
|
});
|
|
130
130
|
});
|
|
131
131
|
})]);
|
|
132
|
-
case 'set': return
|
|
132
|
+
case 'set': return _ea.ss($, ($) => ['set', _ea.block(() => {
|
|
133
133
|
return (0, exports.r_Operations)($, {
|
|
134
134
|
'location 2 string': l2s,
|
|
135
135
|
'parameters': ({
|
|
@@ -138,7 +138,7 @@ const r_Operations = ($, $p) => _pa.block(() => {
|
|
|
138
138
|
}),
|
|
139
139
|
});
|
|
140
140
|
})]);
|
|
141
|
-
default: return
|
|
141
|
+
default: return _ea.au($[0]);
|
|
142
142
|
}
|
|
143
143
|
}));
|
|
144
144
|
}),
|
|
@@ -146,4 +146,4 @@ const r_Operations = ($, $p) => _pa.block(() => {
|
|
|
146
146
|
});
|
|
147
147
|
});
|
|
148
148
|
exports.r_Operations = r_Operations;
|
|
149
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
149
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbXBsZW1lbnRhdGlvbi9nZW5lcmF0ZWQvcGFyZXRvL3NjaGVtYXMvbW9kdWxlL3Jlc29sdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSxzREFBdUM7QUFHdkMsa0VBQW1EO0FBRW5ELCtEQUFnRDtBQUl6QyxNQUFNLFFBQVEsR0FBNEIsQ0FBQyxDQUFDLEVBQUUsRUFBRSxFQUFFLEVBQUUsQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLEdBQUcsRUFBRTtJQUN2RSxNQUFNLEdBQUcsR0FBRyxFQUFFLENBQUMsbUJBQW1CLENBQUMsQ0FBQTtJQUNuQyxNQUFNLE1BQU0sR0FBRyxFQUFFLENBQUMsWUFBWSxDQUFDLENBQUE7SUFDL0IsT0FBTyxHQUFHLENBQUMsS0FBSyxDQUFDLEdBQUcsRUFBRTtRQUNsQixNQUFNLGFBQWEsR0FBaUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsYUFBYSxDQUFDLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLFdBQVcsQ0FBQyxhQUFhLENBQ3pHLENBQUMsRUFDRDtZQUNJLG1CQUFtQixFQUFFLEdBQUc7WUFDeEIsWUFBWSxFQUFFLENBQUM7Z0JBQ1gsU0FBUyxFQUFFLENBQUM7b0JBQ1IsaUJBQWlCLEVBQUUsR0FBRyxDQUFDLFlBQVksQ0FBQyxFQUNuQyxDQUFDO2lCQUNMLENBQUM7Z0JBQ0YsUUFBUSxFQUFFLElBQUk7YUFDakIsQ0FBQztTQUNMLENBQ0osQ0FBQyxDQUFBO1FBQ0YsTUFBTSxZQUFZLEdBQWdDLEdBQUcsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLFlBQVksQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxJQUFBLG9CQUFZLEVBQ3pGLENBQUMsRUFDRDtZQUNJLG1CQUFtQixFQUFFLEdBQUc7WUFDeEIsWUFBWSxFQUFFLENBQUM7Z0JBQ1gsU0FBUyxFQUFFLElBQUk7Z0JBQ2YsUUFBUSxFQUFFLElBQUk7YUFDakIsQ0FBQztTQUNMLENBQ0osQ0FBQyxDQUFBO1FBQ0YsT0FBTyxDQUFDO1lBQ0osWUFBWSxFQUFFLFlBQVk7WUFDMUIsYUFBYSxFQUFFLGFBQWE7U0FDL0IsQ0FBQyxDQUFBO0lBQ04sQ0FBQyxDQUFDLENBQUE7QUFDTixDQUFDLENBQUMsQ0FBQTtBQWhDVyxRQUFBLFFBQVEsWUFnQ25CO0FBQ0ssTUFBTSxZQUFZLEdBQWdDLENBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxHQUFHLEVBQUU7SUFDL0UsTUFBTSxHQUFHLEdBQUcsRUFBRSxDQUFDLG1CQUFtQixDQUFDLENBQUE7SUFDbkMsTUFBTSxNQUFNLEdBQUcsRUFBRSxDQUFDLFlBQVksQ0FBQyxDQUFBO0lBQy9CLE9BQU8sR0FBRyxDQUFDLEtBQUssQ0FBQyxHQUFHLEVBQUU7UUFDbEIsT0FBTyxVQUFVLENBQUMsa0JBQWtCLENBQ2hDLENBQUMsRUFDRDtZQUNJLG1CQUFtQixFQUFFLEdBQUc7WUFDeEIsS0FBSyxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxHQUFHLEVBQUU7Z0JBQzdCLE9BQU8sR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLGFBQWEsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUEwQixFQUFFO29CQUNwRixRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO3dCQUNYLEtBQUssV0FBVyxDQUFDLENBQUMsT0FBTyxHQUFHLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxXQUFXLEVBQUUsR0FBRyxDQUFDLEtBQUssQ0FBQyxHQUFHLEVBQUU7Z0NBQ25FLE9BQU8sR0FBRyxDQUFDLEtBQUssQ0FBQyxHQUFHLEVBQUU7b0NBQ2xCLE1BQU0saUJBQWlCLEdBQXdELEdBQUcsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLGlCQUFpQixDQUFDLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLFdBQVcsQ0FBQyxpQkFBaUIsQ0FDNUksQ0FBQyxFQUNEO3dDQUNJLG1CQUFtQixFQUFFLEdBQUc7d0NBQ3hCLFlBQVksRUFBRSxDQUFDOzRDQUNYLFNBQVMsRUFBRSxJQUFJOzRDQUNmLFFBQVEsRUFBRSxJQUFJO3lDQUNqQixDQUFDO3FDQUNMLENBQ0osQ0FBQyxDQUFBO29DQUNGLE1BQU0sU0FBUyxHQUFnRCxHQUFHLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsV0FBVyxDQUFDLFdBQVcsQ0FDOUcsQ0FBQyxFQUNEO3dDQUNJLG1CQUFtQixFQUFFLEdBQUc7d0NBQ3hCLFlBQVksRUFBRSxDQUFDOzRDQUNYLFNBQVMsRUFBRSxDQUFDO2dEQUNSLDJCQUEyQixFQUFFLEdBQUcsQ0FBQyxPQUFPLEVBQUU7Z0RBQzFDLDJDQUEyQyxFQUFFLEdBQUcsQ0FBQyxPQUFPLEVBQUU7NkNBQzdELENBQUM7NENBQ0YsUUFBUSxFQUFFLENBQUM7Z0RBQ1AsU0FBUyxFQUFFLEdBQUcsQ0FBQyxPQUFPLEVBQUU7Z0RBQ3hCLFNBQVMsRUFBRSxHQUFHLENBQUMsT0FBTyxFQUFFO2dEQUN4QixpQkFBaUIsRUFBRSxpQkFBaUI7NkNBQ3ZDLENBQUM7eUNBQ0wsQ0FBQztxQ0FDTCxDQUNKLENBQUMsQ0FBQTtvQ0FDRixNQUFNLFlBQVksR0FBbUQsR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsWUFBWSxDQUFDLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUMsR0FBRyxFQUFFO3dDQUMvRyxPQUFPLFVBQVUsQ0FBQyxrQkFBa0IsQ0FDaEMsQ0FBQyxFQUNEOzRDQUNJLG1CQUFtQixFQUFFLEdBQUc7NENBQ3hCLEtBQUssRUFBRSxDQUFDLENBQUMsRUFBRSxFQUFFLEVBQUUsRUFBRSxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUMsR0FBRyxFQUFFO2dEQUM3QixPQUFPLEdBQUcsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxXQUFXLENBQUMsV0FBVyxDQUNwRCxDQUFDLEVBQ0Q7b0RBQ0ksbUJBQW1CLEVBQUUsR0FBRztvREFDeEIsWUFBWSxFQUFFLENBQUM7d0RBQ1gsU0FBUyxFQUFFLENBQUM7NERBQ1IsMkJBQTJCLEVBQUUsR0FBRyxDQUFDLE9BQU8sRUFBRTs0REFDMUMsMkNBQTJDLEVBQUUsR0FBRyxDQUFDLE9BQU8sRUFBRTt5REFDN0QsQ0FBQzt3REFDRixRQUFRLEVBQUUsQ0FBQzs0REFDUCxTQUFTLEVBQUUsR0FBRyxDQUFDLE9BQU8sRUFBRTs0REFDeEIsU0FBUyxFQUFFLEdBQUcsQ0FBQyxPQUFPLEVBQUU7NERBQ3hCLGlCQUFpQixFQUFFLGlCQUFpQjt5REFDdkMsQ0FBQztxREFDTCxDQUFDO2lEQUNMLENBQ0osQ0FBQyxDQUFBOzRDQUNOLENBQUMsQ0FBQzt5Q0FDTCxDQUNKLENBQUE7b0NBQ0wsQ0FBQyxDQUFDLENBQUMsQ0FBQTtvQ0FDSCxNQUFNLFFBQVEsR0FBK0MsR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsUUFBUSxDQUFDLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLFdBQVcsQ0FBQyxXQUFXLENBQzNHLENBQUMsRUFDRDt3Q0FDSSxtQkFBbUIsRUFBRSxHQUFHO3dDQUN4QixZQUFZLEVBQUUsQ0FBQzs0Q0FDWCxTQUFTLEVBQUUsQ0FBQztnREFDUiwyQkFBMkIsRUFBRSxHQUFHLENBQUMsT0FBTyxFQUFFO2dEQUMxQywyQ0FBMkMsRUFBRSxHQUFHLENBQUMsT0FBTyxFQUFFOzZDQUM3RCxDQUFDOzRDQUNGLFFBQVEsRUFBRSxDQUFDO2dEQUNQLFNBQVMsRUFBRSxHQUFHLENBQUMsT0FBTyxFQUFFO2dEQUN4QixTQUFTLEVBQUUsR0FBRyxDQUFDLE9BQU8sRUFBRTtnREFDeEIsaUJBQWlCLEVBQUUsaUJBQWlCOzZDQUN2QyxDQUFDO3lDQUNMLENBQUM7cUNBQ0wsQ0FDSixDQUFDLENBQUE7b0NBQ0YsT0FBTyxDQUFDO3dDQUNKLFNBQVMsRUFBRSxTQUFTO3dDQUNwQixZQUFZLEVBQUUsWUFBWTt3Q0FDMUIsUUFBUSxFQUFFLFFBQVE7d0NBQ2xCLGlCQUFpQixFQUFFLGlCQUFpQjtxQ0FDdkMsQ0FBQyxDQUFBO2dDQUNOLENBQUMsQ0FBQyxDQUFBOzRCQUNOLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQTt3QkFDSixLQUFLLEtBQUssQ0FBQyxDQUFDLE9BQU8sR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsS0FBSyxFQUFFLEdBQUcsQ0FBQyxLQUFLLENBQUMsR0FBRyxFQUFFO2dDQUN2RCxPQUFPLElBQUEsb0JBQVksRUFDZixDQUFDLEVBQ0Q7b0NBQ0ksbUJBQW1CLEVBQUUsR0FBRztvQ0FDeEIsWUFBWSxFQUFFLENBQUM7d0NBQ1gsU0FBUyxFQUFFLE1BQU0sQ0FBQyxTQUFTLENBQUM7d0NBQzVCLFFBQVEsRUFBRSxNQUFNLENBQUMsUUFBUSxDQUFDO3FDQUM3QixDQUFDO2lDQUNMLENBQ0osQ0FBQTs0QkFDTCxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUE7d0JBQ0osT0FBTyxDQUFDLENBQUMsT0FBTyxHQUFHLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFBO29CQUNoQyxDQUFDO2dCQUNMLENBQUMsQ0FBQyxDQUFDLENBQUE7WUFDUCxDQUFDLENBQUM7U0FDTCxDQUNKLENBQUE7SUFDTCxDQUFDLENBQUMsQ0FBQTtBQUNOLENBQUMsQ0FBQyxDQUFBO0FBL0dXLFFBQUEsWUFBWSxnQkErR3ZCIn0=
|