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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _et from 'exupery-core-types';
|
|
2
2
|
import * as _i_resolve from "../../../core/resolve";
|
|
3
3
|
import * as _i_resolved from "./source";
|
|
4
4
|
import * as _i_unresolved from "./target";
|
|
@@ -10,13 +10,13 @@ export type _T_Benchmark = <F_Source>($$_: _i_unresolved._T_Benchmark<F_Source>,
|
|
|
10
10
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
11
11
|
};
|
|
12
12
|
readonly 'values': {
|
|
13
|
-
readonly 'current dictionary':
|
|
14
|
-
readonly 'current ordered dictionary':
|
|
13
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
14
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
15
15
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
16
|
-
readonly 'imports':
|
|
17
|
-
readonly 'linked entry':
|
|
18
|
-
readonly 'list cursor':
|
|
19
|
-
readonly 'option constraints':
|
|
16
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
17
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
18
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
19
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
20
20
|
readonly 'signature': _i_resolved._T_Signature;
|
|
21
21
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
22
22
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -40,8 +40,8 @@ export type _T_Dictionary = <F_Source>($$_: _i_unresolved._T_Dictionary<F_Source
|
|
|
40
40
|
readonly 'possibly circular dependent sibling types': _i_resolve._T_Cyclic_Lookup<_i_resolved._T_Types.D>;
|
|
41
41
|
};
|
|
42
42
|
readonly 'values': {
|
|
43
|
-
readonly 'globals':
|
|
44
|
-
readonly 'imports':
|
|
43
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
44
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
45
45
|
readonly 'type parameters': _i_resolved._T_Type_Parameters;
|
|
46
46
|
};
|
|
47
47
|
};
|
|
@@ -61,8 +61,8 @@ export type _T_Group = <F_Source>($$_: _i_unresolved._T_Group<F_Source>, $$_p: {
|
|
|
61
61
|
readonly 'possibly circular dependent sibling types': _i_resolve._T_Cyclic_Lookup<_i_resolved._T_Types.D>;
|
|
62
62
|
};
|
|
63
63
|
readonly 'values': {
|
|
64
|
-
readonly 'globals':
|
|
65
|
-
readonly 'imports':
|
|
64
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
65
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
66
66
|
readonly 'type parameters': _i_resolved._T_Type_Parameters;
|
|
67
67
|
};
|
|
68
68
|
};
|
|
@@ -75,13 +75,13 @@ export type _T_Guaranteed_Value_Selection = <F_Source>($$_: _i_unresolved._T_Gua
|
|
|
75
75
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
76
76
|
};
|
|
77
77
|
readonly 'values': {
|
|
78
|
-
readonly 'current dictionary':
|
|
79
|
-
readonly 'current ordered dictionary':
|
|
78
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
79
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
80
80
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
81
|
-
readonly 'imports':
|
|
82
|
-
readonly 'linked entry':
|
|
83
|
-
readonly 'list cursor':
|
|
84
|
-
readonly 'option constraints':
|
|
81
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
82
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
83
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
84
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
85
85
|
readonly 'signature': _i_resolved._T_Signature;
|
|
86
86
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
87
87
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -105,13 +105,13 @@ export type _T_Lookup_Selection = <F_Source>($$_: _i_unresolved._T_Lookup_Select
|
|
|
105
105
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
106
106
|
};
|
|
107
107
|
readonly 'values': {
|
|
108
|
-
readonly 'current dictionary':
|
|
109
|
-
readonly 'current ordered dictionary':
|
|
108
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
109
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
110
110
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
111
|
-
readonly 'imports':
|
|
112
|
-
readonly 'linked entry':
|
|
113
|
-
readonly 'list cursor':
|
|
114
|
-
readonly 'option constraints':
|
|
111
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
112
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
113
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
114
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
115
115
|
readonly 'signature': _i_resolved._T_Signature;
|
|
116
116
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
117
117
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -126,13 +126,13 @@ export type _T_Node_Resolver = <F_Source>($$_: _i_unresolved._T_Node_Resolver<F_
|
|
|
126
126
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
127
127
|
};
|
|
128
128
|
readonly 'values': {
|
|
129
|
-
readonly 'current dictionary':
|
|
130
|
-
readonly 'current ordered dictionary':
|
|
129
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
130
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
131
131
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
132
|
-
readonly 'imports':
|
|
133
|
-
readonly 'linked entry':
|
|
134
|
-
readonly 'list cursor':
|
|
135
|
-
readonly 'option constraints':
|
|
132
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
133
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
134
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
135
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
136
136
|
readonly 'signature': _i_resolved._T_Signature;
|
|
137
137
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
138
138
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -147,13 +147,13 @@ export type _T_Node_Resolver_Group = <F_Source>($$_: _i_unresolved._T_Node_Resol
|
|
|
147
147
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
148
148
|
};
|
|
149
149
|
readonly 'values': {
|
|
150
|
-
readonly 'current dictionary':
|
|
151
|
-
readonly 'current ordered dictionary':
|
|
150
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
151
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
152
152
|
readonly 'definition': _i_resolved._T_Group;
|
|
153
|
-
readonly 'imports':
|
|
154
|
-
readonly 'linked entry':
|
|
155
|
-
readonly 'list cursor':
|
|
156
|
-
readonly 'option constraints':
|
|
153
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
154
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
155
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
156
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
157
157
|
readonly 'signature': _i_resolved._T_Signature;
|
|
158
158
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
159
159
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -167,7 +167,7 @@ export type _T_Node_Resolver_List_Result = <F_Source>($$_: _i_unresolved._T_Node
|
|
|
167
167
|
readonly 'types': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Types.D>;
|
|
168
168
|
};
|
|
169
169
|
readonly 'values': {
|
|
170
|
-
readonly 'imports':
|
|
170
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
171
171
|
};
|
|
172
172
|
};
|
|
173
173
|
}) => _i_resolved._T_Node_Resolver_List_Result;
|
|
@@ -186,13 +186,13 @@ export type _T_Option_Constraints = <F_Source>($$_: _i_unresolved._T_Option_Cons
|
|
|
186
186
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
187
187
|
};
|
|
188
188
|
readonly 'values': {
|
|
189
|
-
readonly 'current dictionary':
|
|
190
|
-
readonly 'current ordered dictionary':
|
|
189
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
190
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
191
191
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
192
|
-
readonly 'imports':
|
|
193
|
-
readonly 'linked entry':
|
|
194
|
-
readonly 'list cursor':
|
|
195
|
-
readonly 'option constraints':
|
|
192
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
193
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
194
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
195
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
196
196
|
readonly 'signature': _i_resolved._T_Signature;
|
|
197
197
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
198
198
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -207,13 +207,13 @@ export type _T_Optional_Value_Initialization = <F_Source>($$_: _i_unresolved._T_
|
|
|
207
207
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
208
208
|
};
|
|
209
209
|
readonly 'values': {
|
|
210
|
-
readonly 'current dictionary':
|
|
211
|
-
readonly 'current ordered dictionary':
|
|
210
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
211
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
212
212
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
213
|
-
readonly 'imports':
|
|
214
|
-
readonly 'linked entry':
|
|
215
|
-
readonly 'list cursor':
|
|
216
|
-
readonly 'option constraints':
|
|
213
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
214
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
215
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
216
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
217
217
|
readonly 'signature': _i_resolved._T_Signature;
|
|
218
218
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
219
219
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -228,13 +228,13 @@ export type _T_Possible_Value_Selection = <F_Source>($$_: _i_unresolved._T_Possi
|
|
|
228
228
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
229
229
|
};
|
|
230
230
|
readonly 'values': {
|
|
231
|
-
readonly 'current dictionary':
|
|
232
|
-
readonly 'current ordered dictionary':
|
|
231
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
232
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
233
233
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
234
|
-
readonly 'imports':
|
|
235
|
-
readonly 'linked entry':
|
|
236
|
-
readonly 'list cursor':
|
|
237
|
-
readonly 'option constraints':
|
|
234
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
235
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
236
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
237
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
238
238
|
readonly 'signature': _i_resolved._T_Signature;
|
|
239
239
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
240
240
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -380,8 +380,8 @@ export type _T_Type = <F_Source>($$_: _i_unresolved._T_Type<F_Source>, $$_p: {
|
|
|
380
380
|
readonly 'possibly circular dependent sibling types': _i_resolve._T_Cyclic_Lookup<_i_resolved._T_Types.D>;
|
|
381
381
|
};
|
|
382
382
|
readonly 'values': {
|
|
383
|
-
readonly 'globals':
|
|
384
|
-
readonly 'imports':
|
|
383
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
384
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
385
385
|
};
|
|
386
386
|
};
|
|
387
387
|
}) => _i_resolved._T_Type;
|
|
@@ -393,8 +393,8 @@ export type _T_Type_Node = <F_Source>($$_: _i_unresolved._T_Type_Node<F_Source>,
|
|
|
393
393
|
readonly 'possibly circular dependent sibling types': _i_resolve._T_Cyclic_Lookup<_i_resolved._T_Types.D>;
|
|
394
394
|
};
|
|
395
395
|
readonly 'values': {
|
|
396
|
-
readonly 'globals':
|
|
397
|
-
readonly 'imports':
|
|
396
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
397
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
398
398
|
readonly 'type parameters': _i_resolved._T_Type_Parameters;
|
|
399
399
|
};
|
|
400
400
|
};
|
|
@@ -406,7 +406,7 @@ export type _T_Type_Node_Reference = <F_Source>($$_: _i_unresolved._T_Type_Node_
|
|
|
406
406
|
readonly 'types': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Types.D>;
|
|
407
407
|
};
|
|
408
408
|
readonly 'values': {
|
|
409
|
-
readonly 'imports':
|
|
409
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
410
410
|
};
|
|
411
411
|
};
|
|
412
412
|
}) => _i_resolved._T_Type_Node_Reference;
|
|
@@ -424,7 +424,7 @@ export type _T_Type_Reference = <F_Source>($$_: _i_unresolved._T_Type_Reference<
|
|
|
424
424
|
readonly 'types': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Types.D>;
|
|
425
425
|
};
|
|
426
426
|
readonly 'values': {
|
|
427
|
-
readonly 'imports':
|
|
427
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
428
428
|
};
|
|
429
429
|
};
|
|
430
430
|
}) => _i_resolved._T_Type_Reference;
|
|
@@ -440,8 +440,8 @@ export type _T_Types = <F_Source>($$_: _i_unresolved._T_Types<F_Source>, $$_p: {
|
|
|
440
440
|
readonly 'parameters': {
|
|
441
441
|
readonly 'lookups': null;
|
|
442
442
|
readonly 'values': {
|
|
443
|
-
readonly 'globals':
|
|
444
|
-
readonly 'imports':
|
|
443
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
444
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
445
445
|
};
|
|
446
446
|
};
|
|
447
447
|
}) => _i_resolved._T_Types;
|
|
@@ -516,13 +516,13 @@ export declare namespace _T_Benchmark {
|
|
|
516
516
|
}
|
|
517
517
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
518
518
|
}
|
|
519
|
-
type current_dictionary<F_Source> =
|
|
519
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
520
520
|
namespace current_ordered_dictionary {
|
|
521
521
|
namespace O {
|
|
522
522
|
}
|
|
523
523
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
524
524
|
}
|
|
525
|
-
type current_ordered_dictionary<F_Source> =
|
|
525
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
526
526
|
namespace definition {
|
|
527
527
|
}
|
|
528
528
|
type definition<F_Source> = _i_resolved._T_Type_Node;
|
|
@@ -531,25 +531,25 @@ export declare namespace _T_Benchmark {
|
|
|
531
531
|
}
|
|
532
532
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
533
533
|
}
|
|
534
|
-
type imports<F_Source> =
|
|
534
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
535
535
|
namespace linked_entry {
|
|
536
536
|
namespace O {
|
|
537
537
|
}
|
|
538
538
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
539
539
|
}
|
|
540
|
-
type linked_entry<F_Source> =
|
|
540
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
541
541
|
namespace list_cursor {
|
|
542
542
|
namespace O {
|
|
543
543
|
}
|
|
544
544
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
545
545
|
}
|
|
546
|
-
type list_cursor<F_Source> =
|
|
546
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
547
547
|
namespace option_constraints {
|
|
548
548
|
namespace O {
|
|
549
549
|
}
|
|
550
550
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
551
551
|
}
|
|
552
|
-
type option_constraints<F_Source> =
|
|
552
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
553
553
|
namespace signature {
|
|
554
554
|
}
|
|
555
555
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -561,13 +561,13 @@ export declare namespace _T_Benchmark {
|
|
|
561
561
|
type types<F_Source> = _i_resolved._T_Types;
|
|
562
562
|
}
|
|
563
563
|
type values<F_Source> = {
|
|
564
|
-
readonly 'current dictionary':
|
|
565
|
-
readonly 'current ordered dictionary':
|
|
564
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
565
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
566
566
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
567
|
-
readonly 'imports':
|
|
568
|
-
readonly 'linked entry':
|
|
569
|
-
readonly 'list cursor':
|
|
570
|
-
readonly 'option constraints':
|
|
567
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
568
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
569
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
570
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
571
571
|
readonly 'signature': _i_resolved._T_Signature;
|
|
572
572
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
573
573
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -579,13 +579,13 @@ export declare namespace _T_Benchmark {
|
|
|
579
579
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
580
580
|
};
|
|
581
581
|
readonly 'values': {
|
|
582
|
-
readonly 'current dictionary':
|
|
583
|
-
readonly 'current ordered dictionary':
|
|
582
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
583
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
584
584
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
585
|
-
readonly 'imports':
|
|
586
|
-
readonly 'linked entry':
|
|
587
|
-
readonly 'list cursor':
|
|
588
|
-
readonly 'option constraints':
|
|
585
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
586
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
587
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
588
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
589
589
|
readonly 'signature': _i_resolved._T_Signature;
|
|
590
590
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
591
591
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -665,20 +665,20 @@ export declare namespace _T_Dictionary {
|
|
|
665
665
|
}
|
|
666
666
|
type O<F_Source> = _i_resolved._T_Globals;
|
|
667
667
|
}
|
|
668
|
-
type globals<F_Source> =
|
|
668
|
+
type globals<F_Source> = _et.Optional_Value<_i_resolved._T_Globals>;
|
|
669
669
|
namespace imports {
|
|
670
670
|
namespace O {
|
|
671
671
|
}
|
|
672
672
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
673
673
|
}
|
|
674
|
-
type imports<F_Source> =
|
|
674
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
675
675
|
namespace type_parameters {
|
|
676
676
|
}
|
|
677
677
|
type type_parameters<F_Source> = _i_resolved._T_Type_Parameters;
|
|
678
678
|
}
|
|
679
679
|
type values<F_Source> = {
|
|
680
|
-
readonly 'globals':
|
|
681
|
-
readonly 'imports':
|
|
680
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
681
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
682
682
|
readonly 'type parameters': _i_resolved._T_Type_Parameters;
|
|
683
683
|
};
|
|
684
684
|
}
|
|
@@ -688,8 +688,8 @@ export declare namespace _T_Dictionary {
|
|
|
688
688
|
readonly 'possibly circular dependent sibling types': _i_resolve._T_Cyclic_Lookup<_i_resolved._T_Types.D>;
|
|
689
689
|
};
|
|
690
690
|
readonly 'values': {
|
|
691
|
-
readonly 'globals':
|
|
692
|
-
readonly 'imports':
|
|
691
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
692
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
693
693
|
readonly 'type parameters': _i_resolved._T_Type_Parameters;
|
|
694
694
|
};
|
|
695
695
|
};
|
|
@@ -760,20 +760,20 @@ export declare namespace _T_Group {
|
|
|
760
760
|
}
|
|
761
761
|
type O<F_Source> = _i_resolved._T_Globals;
|
|
762
762
|
}
|
|
763
|
-
type globals<F_Source> =
|
|
763
|
+
type globals<F_Source> = _et.Optional_Value<_i_resolved._T_Globals>;
|
|
764
764
|
namespace imports {
|
|
765
765
|
namespace O {
|
|
766
766
|
}
|
|
767
767
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
768
768
|
}
|
|
769
|
-
type imports<F_Source> =
|
|
769
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
770
770
|
namespace type_parameters {
|
|
771
771
|
}
|
|
772
772
|
type type_parameters<F_Source> = _i_resolved._T_Type_Parameters;
|
|
773
773
|
}
|
|
774
774
|
type values<F_Source> = {
|
|
775
|
-
readonly 'globals':
|
|
776
|
-
readonly 'imports':
|
|
775
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
776
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
777
777
|
readonly 'type parameters': _i_resolved._T_Type_Parameters;
|
|
778
778
|
};
|
|
779
779
|
}
|
|
@@ -783,8 +783,8 @@ export declare namespace _T_Group {
|
|
|
783
783
|
readonly 'possibly circular dependent sibling types': _i_resolve._T_Cyclic_Lookup<_i_resolved._T_Types.D>;
|
|
784
784
|
};
|
|
785
785
|
readonly 'values': {
|
|
786
|
-
readonly 'globals':
|
|
787
|
-
readonly 'imports':
|
|
786
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
787
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
788
788
|
readonly 'type parameters': _i_resolved._T_Type_Parameters;
|
|
789
789
|
};
|
|
790
790
|
};
|
|
@@ -828,13 +828,13 @@ export declare namespace _T_Guaranteed_Value_Selection {
|
|
|
828
828
|
}
|
|
829
829
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
830
830
|
}
|
|
831
|
-
type current_dictionary<F_Source> =
|
|
831
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
832
832
|
namespace current_ordered_dictionary {
|
|
833
833
|
namespace O {
|
|
834
834
|
}
|
|
835
835
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
836
836
|
}
|
|
837
|
-
type current_ordered_dictionary<F_Source> =
|
|
837
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
838
838
|
namespace definition {
|
|
839
839
|
}
|
|
840
840
|
type definition<F_Source> = _i_resolved._T_Type_Node;
|
|
@@ -843,25 +843,25 @@ export declare namespace _T_Guaranteed_Value_Selection {
|
|
|
843
843
|
}
|
|
844
844
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
845
845
|
}
|
|
846
|
-
type imports<F_Source> =
|
|
846
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
847
847
|
namespace linked_entry {
|
|
848
848
|
namespace O {
|
|
849
849
|
}
|
|
850
850
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
851
851
|
}
|
|
852
|
-
type linked_entry<F_Source> =
|
|
852
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
853
853
|
namespace list_cursor {
|
|
854
854
|
namespace O {
|
|
855
855
|
}
|
|
856
856
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
857
857
|
}
|
|
858
|
-
type list_cursor<F_Source> =
|
|
858
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
859
859
|
namespace option_constraints {
|
|
860
860
|
namespace O {
|
|
861
861
|
}
|
|
862
862
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
863
863
|
}
|
|
864
|
-
type option_constraints<F_Source> =
|
|
864
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
865
865
|
namespace signature {
|
|
866
866
|
}
|
|
867
867
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -873,13 +873,13 @@ export declare namespace _T_Guaranteed_Value_Selection {
|
|
|
873
873
|
type types<F_Source> = _i_resolved._T_Types;
|
|
874
874
|
}
|
|
875
875
|
type values<F_Source> = {
|
|
876
|
-
readonly 'current dictionary':
|
|
877
|
-
readonly 'current ordered dictionary':
|
|
876
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
877
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
878
878
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
879
|
-
readonly 'imports':
|
|
880
|
-
readonly 'linked entry':
|
|
881
|
-
readonly 'list cursor':
|
|
882
|
-
readonly 'option constraints':
|
|
879
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
880
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
881
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
882
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
883
883
|
readonly 'signature': _i_resolved._T_Signature;
|
|
884
884
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
885
885
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -891,13 +891,13 @@ export declare namespace _T_Guaranteed_Value_Selection {
|
|
|
891
891
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
892
892
|
};
|
|
893
893
|
readonly 'values': {
|
|
894
|
-
readonly 'current dictionary':
|
|
895
|
-
readonly 'current ordered dictionary':
|
|
894
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
895
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
896
896
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
897
|
-
readonly 'imports':
|
|
898
|
-
readonly 'linked entry':
|
|
899
|
-
readonly 'list cursor':
|
|
900
|
-
readonly 'option constraints':
|
|
897
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
898
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
899
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
900
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
901
901
|
readonly 'signature': _i_resolved._T_Signature;
|
|
902
902
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
903
903
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -980,13 +980,13 @@ export declare namespace _T_Lookup_Selection {
|
|
|
980
980
|
}
|
|
981
981
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
982
982
|
}
|
|
983
|
-
type current_dictionary<F_Source> =
|
|
983
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
984
984
|
namespace current_ordered_dictionary {
|
|
985
985
|
namespace O {
|
|
986
986
|
}
|
|
987
987
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
988
988
|
}
|
|
989
|
-
type current_ordered_dictionary<F_Source> =
|
|
989
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
990
990
|
namespace definition {
|
|
991
991
|
}
|
|
992
992
|
type definition<F_Source> = _i_resolved._T_Type_Node;
|
|
@@ -995,25 +995,25 @@ export declare namespace _T_Lookup_Selection {
|
|
|
995
995
|
}
|
|
996
996
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
997
997
|
}
|
|
998
|
-
type imports<F_Source> =
|
|
998
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
999
999
|
namespace linked_entry {
|
|
1000
1000
|
namespace O {
|
|
1001
1001
|
}
|
|
1002
1002
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
1003
1003
|
}
|
|
1004
|
-
type linked_entry<F_Source> =
|
|
1004
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1005
1005
|
namespace list_cursor {
|
|
1006
1006
|
namespace O {
|
|
1007
1007
|
}
|
|
1008
1008
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
1009
1009
|
}
|
|
1010
|
-
type list_cursor<F_Source> =
|
|
1010
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1011
1011
|
namespace option_constraints {
|
|
1012
1012
|
namespace O {
|
|
1013
1013
|
}
|
|
1014
1014
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
1015
1015
|
}
|
|
1016
|
-
type option_constraints<F_Source> =
|
|
1016
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1017
1017
|
namespace signature {
|
|
1018
1018
|
}
|
|
1019
1019
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -1025,13 +1025,13 @@ export declare namespace _T_Lookup_Selection {
|
|
|
1025
1025
|
type types<F_Source> = _i_resolved._T_Types;
|
|
1026
1026
|
}
|
|
1027
1027
|
type values<F_Source> = {
|
|
1028
|
-
readonly 'current dictionary':
|
|
1029
|
-
readonly 'current ordered dictionary':
|
|
1028
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1029
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1030
1030
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
1031
|
-
readonly 'imports':
|
|
1032
|
-
readonly 'linked entry':
|
|
1033
|
-
readonly 'list cursor':
|
|
1034
|
-
readonly 'option constraints':
|
|
1031
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1032
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1033
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1034
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1035
1035
|
readonly 'signature': _i_resolved._T_Signature;
|
|
1036
1036
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
1037
1037
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -1043,13 +1043,13 @@ export declare namespace _T_Lookup_Selection {
|
|
|
1043
1043
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
1044
1044
|
};
|
|
1045
1045
|
readonly 'values': {
|
|
1046
|
-
readonly 'current dictionary':
|
|
1047
|
-
readonly 'current ordered dictionary':
|
|
1046
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1047
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1048
1048
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
1049
|
-
readonly 'imports':
|
|
1050
|
-
readonly 'linked entry':
|
|
1051
|
-
readonly 'list cursor':
|
|
1052
|
-
readonly 'option constraints':
|
|
1049
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1050
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1051
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1052
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1053
1053
|
readonly 'signature': _i_resolved._T_Signature;
|
|
1054
1054
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
1055
1055
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -1095,13 +1095,13 @@ export declare namespace _T_Node_Resolver {
|
|
|
1095
1095
|
}
|
|
1096
1096
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
1097
1097
|
}
|
|
1098
|
-
type current_dictionary<F_Source> =
|
|
1098
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1099
1099
|
namespace current_ordered_dictionary {
|
|
1100
1100
|
namespace O {
|
|
1101
1101
|
}
|
|
1102
1102
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
1103
1103
|
}
|
|
1104
|
-
type current_ordered_dictionary<F_Source> =
|
|
1104
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1105
1105
|
namespace definition {
|
|
1106
1106
|
}
|
|
1107
1107
|
type definition<F_Source> = _i_resolved._T_Type_Node;
|
|
@@ -1110,25 +1110,25 @@ export declare namespace _T_Node_Resolver {
|
|
|
1110
1110
|
}
|
|
1111
1111
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
1112
1112
|
}
|
|
1113
|
-
type imports<F_Source> =
|
|
1113
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1114
1114
|
namespace linked_entry {
|
|
1115
1115
|
namespace O {
|
|
1116
1116
|
}
|
|
1117
1117
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
1118
1118
|
}
|
|
1119
|
-
type linked_entry<F_Source> =
|
|
1119
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1120
1120
|
namespace list_cursor {
|
|
1121
1121
|
namespace O {
|
|
1122
1122
|
}
|
|
1123
1123
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
1124
1124
|
}
|
|
1125
|
-
type list_cursor<F_Source> =
|
|
1125
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1126
1126
|
namespace option_constraints {
|
|
1127
1127
|
namespace O {
|
|
1128
1128
|
}
|
|
1129
1129
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
1130
1130
|
}
|
|
1131
|
-
type option_constraints<F_Source> =
|
|
1131
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1132
1132
|
namespace signature {
|
|
1133
1133
|
}
|
|
1134
1134
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -1140,13 +1140,13 @@ export declare namespace _T_Node_Resolver {
|
|
|
1140
1140
|
type types<F_Source> = _i_resolved._T_Types;
|
|
1141
1141
|
}
|
|
1142
1142
|
type values<F_Source> = {
|
|
1143
|
-
readonly 'current dictionary':
|
|
1144
|
-
readonly 'current ordered dictionary':
|
|
1143
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1144
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1145
1145
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
1146
|
-
readonly 'imports':
|
|
1147
|
-
readonly 'linked entry':
|
|
1148
|
-
readonly 'list cursor':
|
|
1149
|
-
readonly 'option constraints':
|
|
1146
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1147
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1148
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1149
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1150
1150
|
readonly 'signature': _i_resolved._T_Signature;
|
|
1151
1151
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
1152
1152
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -1158,13 +1158,13 @@ export declare namespace _T_Node_Resolver {
|
|
|
1158
1158
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
1159
1159
|
};
|
|
1160
1160
|
readonly 'values': {
|
|
1161
|
-
readonly 'current dictionary':
|
|
1162
|
-
readonly 'current ordered dictionary':
|
|
1161
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1162
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1163
1163
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
1164
|
-
readonly 'imports':
|
|
1165
|
-
readonly 'linked entry':
|
|
1166
|
-
readonly 'list cursor':
|
|
1167
|
-
readonly 'option constraints':
|
|
1164
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1165
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1166
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1167
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1168
1168
|
readonly 'signature': _i_resolved._T_Signature;
|
|
1169
1169
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
1170
1170
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -1210,13 +1210,13 @@ export declare namespace _T_Node_Resolver_Group {
|
|
|
1210
1210
|
}
|
|
1211
1211
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
1212
1212
|
}
|
|
1213
|
-
type current_dictionary<F_Source> =
|
|
1213
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1214
1214
|
namespace current_ordered_dictionary {
|
|
1215
1215
|
namespace O {
|
|
1216
1216
|
}
|
|
1217
1217
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
1218
1218
|
}
|
|
1219
|
-
type current_ordered_dictionary<F_Source> =
|
|
1219
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1220
1220
|
namespace definition {
|
|
1221
1221
|
}
|
|
1222
1222
|
type definition<F_Source> = _i_resolved._T_Group;
|
|
@@ -1225,25 +1225,25 @@ export declare namespace _T_Node_Resolver_Group {
|
|
|
1225
1225
|
}
|
|
1226
1226
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
1227
1227
|
}
|
|
1228
|
-
type imports<F_Source> =
|
|
1228
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1229
1229
|
namespace linked_entry {
|
|
1230
1230
|
namespace O {
|
|
1231
1231
|
}
|
|
1232
1232
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
1233
1233
|
}
|
|
1234
|
-
type linked_entry<F_Source> =
|
|
1234
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1235
1235
|
namespace list_cursor {
|
|
1236
1236
|
namespace O {
|
|
1237
1237
|
}
|
|
1238
1238
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
1239
1239
|
}
|
|
1240
|
-
type list_cursor<F_Source> =
|
|
1240
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1241
1241
|
namespace option_constraints {
|
|
1242
1242
|
namespace O {
|
|
1243
1243
|
}
|
|
1244
1244
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
1245
1245
|
}
|
|
1246
|
-
type option_constraints<F_Source> =
|
|
1246
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1247
1247
|
namespace signature {
|
|
1248
1248
|
}
|
|
1249
1249
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -1255,13 +1255,13 @@ export declare namespace _T_Node_Resolver_Group {
|
|
|
1255
1255
|
type types<F_Source> = _i_resolved._T_Types;
|
|
1256
1256
|
}
|
|
1257
1257
|
type values<F_Source> = {
|
|
1258
|
-
readonly 'current dictionary':
|
|
1259
|
-
readonly 'current ordered dictionary':
|
|
1258
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1259
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1260
1260
|
readonly 'definition': _i_resolved._T_Group;
|
|
1261
|
-
readonly 'imports':
|
|
1262
|
-
readonly 'linked entry':
|
|
1263
|
-
readonly 'list cursor':
|
|
1264
|
-
readonly 'option constraints':
|
|
1261
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1262
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1263
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1264
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1265
1265
|
readonly 'signature': _i_resolved._T_Signature;
|
|
1266
1266
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
1267
1267
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -1273,13 +1273,13 @@ export declare namespace _T_Node_Resolver_Group {
|
|
|
1273
1273
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
1274
1274
|
};
|
|
1275
1275
|
readonly 'values': {
|
|
1276
|
-
readonly 'current dictionary':
|
|
1277
|
-
readonly 'current ordered dictionary':
|
|
1276
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1277
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1278
1278
|
readonly 'definition': _i_resolved._T_Group;
|
|
1279
|
-
readonly 'imports':
|
|
1280
|
-
readonly 'linked entry':
|
|
1281
|
-
readonly 'list cursor':
|
|
1282
|
-
readonly 'option constraints':
|
|
1279
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1280
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1281
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1282
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1283
1283
|
readonly 'signature': _i_resolved._T_Signature;
|
|
1284
1284
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
1285
1285
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -1318,10 +1318,10 @@ export declare namespace _T_Node_Resolver_List_Result {
|
|
|
1318
1318
|
}
|
|
1319
1319
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
1320
1320
|
}
|
|
1321
|
-
type imports<F_Source> =
|
|
1321
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1322
1322
|
}
|
|
1323
1323
|
type values<F_Source> = {
|
|
1324
|
-
readonly 'imports':
|
|
1324
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1325
1325
|
};
|
|
1326
1326
|
}
|
|
1327
1327
|
type parameters<F_Source> = {
|
|
@@ -1329,7 +1329,7 @@ export declare namespace _T_Node_Resolver_List_Result {
|
|
|
1329
1329
|
readonly 'types': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Types.D>;
|
|
1330
1330
|
};
|
|
1331
1331
|
readonly 'values': {
|
|
1332
|
-
readonly 'imports':
|
|
1332
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1333
1333
|
};
|
|
1334
1334
|
};
|
|
1335
1335
|
}
|
|
@@ -1399,13 +1399,13 @@ export declare namespace _T_Option_Constraints {
|
|
|
1399
1399
|
}
|
|
1400
1400
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
1401
1401
|
}
|
|
1402
|
-
type current_dictionary<F_Source> =
|
|
1402
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1403
1403
|
namespace current_ordered_dictionary {
|
|
1404
1404
|
namespace O {
|
|
1405
1405
|
}
|
|
1406
1406
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
1407
1407
|
}
|
|
1408
|
-
type current_ordered_dictionary<F_Source> =
|
|
1408
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1409
1409
|
namespace definition {
|
|
1410
1410
|
}
|
|
1411
1411
|
type definition<F_Source> = _i_resolved._T_Type_Node;
|
|
@@ -1414,25 +1414,25 @@ export declare namespace _T_Option_Constraints {
|
|
|
1414
1414
|
}
|
|
1415
1415
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
1416
1416
|
}
|
|
1417
|
-
type imports<F_Source> =
|
|
1417
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1418
1418
|
namespace linked_entry {
|
|
1419
1419
|
namespace O {
|
|
1420
1420
|
}
|
|
1421
1421
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
1422
1422
|
}
|
|
1423
|
-
type linked_entry<F_Source> =
|
|
1423
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1424
1424
|
namespace list_cursor {
|
|
1425
1425
|
namespace O {
|
|
1426
1426
|
}
|
|
1427
1427
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
1428
1428
|
}
|
|
1429
|
-
type list_cursor<F_Source> =
|
|
1429
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1430
1430
|
namespace option_constraints {
|
|
1431
1431
|
namespace O {
|
|
1432
1432
|
}
|
|
1433
1433
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
1434
1434
|
}
|
|
1435
|
-
type option_constraints<F_Source> =
|
|
1435
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1436
1436
|
namespace signature {
|
|
1437
1437
|
}
|
|
1438
1438
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -1444,13 +1444,13 @@ export declare namespace _T_Option_Constraints {
|
|
|
1444
1444
|
type types<F_Source> = _i_resolved._T_Types;
|
|
1445
1445
|
}
|
|
1446
1446
|
type values<F_Source> = {
|
|
1447
|
-
readonly 'current dictionary':
|
|
1448
|
-
readonly 'current ordered dictionary':
|
|
1447
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1448
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1449
1449
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
1450
|
-
readonly 'imports':
|
|
1451
|
-
readonly 'linked entry':
|
|
1452
|
-
readonly 'list cursor':
|
|
1453
|
-
readonly 'option constraints':
|
|
1450
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1451
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1452
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1453
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1454
1454
|
readonly 'signature': _i_resolved._T_Signature;
|
|
1455
1455
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
1456
1456
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -1462,13 +1462,13 @@ export declare namespace _T_Option_Constraints {
|
|
|
1462
1462
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
1463
1463
|
};
|
|
1464
1464
|
readonly 'values': {
|
|
1465
|
-
readonly 'current dictionary':
|
|
1466
|
-
readonly 'current ordered dictionary':
|
|
1465
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1466
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1467
1467
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
1468
|
-
readonly 'imports':
|
|
1469
|
-
readonly 'linked entry':
|
|
1470
|
-
readonly 'list cursor':
|
|
1471
|
-
readonly 'option constraints':
|
|
1468
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1469
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1470
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1471
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1472
1472
|
readonly 'signature': _i_resolved._T_Signature;
|
|
1473
1473
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
1474
1474
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -1514,13 +1514,13 @@ export declare namespace _T_Optional_Value_Initialization {
|
|
|
1514
1514
|
}
|
|
1515
1515
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
1516
1516
|
}
|
|
1517
|
-
type current_dictionary<F_Source> =
|
|
1517
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1518
1518
|
namespace current_ordered_dictionary {
|
|
1519
1519
|
namespace O {
|
|
1520
1520
|
}
|
|
1521
1521
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
1522
1522
|
}
|
|
1523
|
-
type current_ordered_dictionary<F_Source> =
|
|
1523
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1524
1524
|
namespace definition {
|
|
1525
1525
|
}
|
|
1526
1526
|
type definition<F_Source> = _i_resolved._T_Type_Node;
|
|
@@ -1529,25 +1529,25 @@ export declare namespace _T_Optional_Value_Initialization {
|
|
|
1529
1529
|
}
|
|
1530
1530
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
1531
1531
|
}
|
|
1532
|
-
type imports<F_Source> =
|
|
1532
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1533
1533
|
namespace linked_entry {
|
|
1534
1534
|
namespace O {
|
|
1535
1535
|
}
|
|
1536
1536
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
1537
1537
|
}
|
|
1538
|
-
type linked_entry<F_Source> =
|
|
1538
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1539
1539
|
namespace list_cursor {
|
|
1540
1540
|
namespace O {
|
|
1541
1541
|
}
|
|
1542
1542
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
1543
1543
|
}
|
|
1544
|
-
type list_cursor<F_Source> =
|
|
1544
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1545
1545
|
namespace option_constraints {
|
|
1546
1546
|
namespace O {
|
|
1547
1547
|
}
|
|
1548
1548
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
1549
1549
|
}
|
|
1550
|
-
type option_constraints<F_Source> =
|
|
1550
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1551
1551
|
namespace signature {
|
|
1552
1552
|
}
|
|
1553
1553
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -1559,13 +1559,13 @@ export declare namespace _T_Optional_Value_Initialization {
|
|
|
1559
1559
|
type types<F_Source> = _i_resolved._T_Types;
|
|
1560
1560
|
}
|
|
1561
1561
|
type values<F_Source> = {
|
|
1562
|
-
readonly 'current dictionary':
|
|
1563
|
-
readonly 'current ordered dictionary':
|
|
1562
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1563
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1564
1564
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
1565
|
-
readonly 'imports':
|
|
1566
|
-
readonly 'linked entry':
|
|
1567
|
-
readonly 'list cursor':
|
|
1568
|
-
readonly 'option constraints':
|
|
1565
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1566
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1567
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1568
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1569
1569
|
readonly 'signature': _i_resolved._T_Signature;
|
|
1570
1570
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
1571
1571
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -1577,13 +1577,13 @@ export declare namespace _T_Optional_Value_Initialization {
|
|
|
1577
1577
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
1578
1578
|
};
|
|
1579
1579
|
readonly 'values': {
|
|
1580
|
-
readonly 'current dictionary':
|
|
1581
|
-
readonly 'current ordered dictionary':
|
|
1580
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1581
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1582
1582
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
1583
|
-
readonly 'imports':
|
|
1584
|
-
readonly 'linked entry':
|
|
1585
|
-
readonly 'list cursor':
|
|
1586
|
-
readonly 'option constraints':
|
|
1583
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1584
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1585
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1586
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1587
1587
|
readonly 'signature': _i_resolved._T_Signature;
|
|
1588
1588
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
1589
1589
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -1629,13 +1629,13 @@ export declare namespace _T_Possible_Value_Selection {
|
|
|
1629
1629
|
}
|
|
1630
1630
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
1631
1631
|
}
|
|
1632
|
-
type current_dictionary<F_Source> =
|
|
1632
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1633
1633
|
namespace current_ordered_dictionary {
|
|
1634
1634
|
namespace O {
|
|
1635
1635
|
}
|
|
1636
1636
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
1637
1637
|
}
|
|
1638
|
-
type current_ordered_dictionary<F_Source> =
|
|
1638
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1639
1639
|
namespace definition {
|
|
1640
1640
|
}
|
|
1641
1641
|
type definition<F_Source> = _i_resolved._T_Type_Node;
|
|
@@ -1644,25 +1644,25 @@ export declare namespace _T_Possible_Value_Selection {
|
|
|
1644
1644
|
}
|
|
1645
1645
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
1646
1646
|
}
|
|
1647
|
-
type imports<F_Source> =
|
|
1647
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1648
1648
|
namespace linked_entry {
|
|
1649
1649
|
namespace O {
|
|
1650
1650
|
}
|
|
1651
1651
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
1652
1652
|
}
|
|
1653
|
-
type linked_entry<F_Source> =
|
|
1653
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1654
1654
|
namespace list_cursor {
|
|
1655
1655
|
namespace O {
|
|
1656
1656
|
}
|
|
1657
1657
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
1658
1658
|
}
|
|
1659
|
-
type list_cursor<F_Source> =
|
|
1659
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1660
1660
|
namespace option_constraints {
|
|
1661
1661
|
namespace O {
|
|
1662
1662
|
}
|
|
1663
1663
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
1664
1664
|
}
|
|
1665
|
-
type option_constraints<F_Source> =
|
|
1665
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1666
1666
|
namespace signature {
|
|
1667
1667
|
}
|
|
1668
1668
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -1674,13 +1674,13 @@ export declare namespace _T_Possible_Value_Selection {
|
|
|
1674
1674
|
type types<F_Source> = _i_resolved._T_Types;
|
|
1675
1675
|
}
|
|
1676
1676
|
type values<F_Source> = {
|
|
1677
|
-
readonly 'current dictionary':
|
|
1678
|
-
readonly 'current ordered dictionary':
|
|
1677
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1678
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1679
1679
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
1680
|
-
readonly 'imports':
|
|
1681
|
-
readonly 'linked entry':
|
|
1682
|
-
readonly 'list cursor':
|
|
1683
|
-
readonly 'option constraints':
|
|
1680
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1681
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1682
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1683
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1684
1684
|
readonly 'signature': _i_resolved._T_Signature;
|
|
1685
1685
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
1686
1686
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -1692,13 +1692,13 @@ export declare namespace _T_Possible_Value_Selection {
|
|
|
1692
1692
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
1693
1693
|
};
|
|
1694
1694
|
readonly 'values': {
|
|
1695
|
-
readonly 'current dictionary':
|
|
1696
|
-
readonly 'current ordered dictionary':
|
|
1695
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1696
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
1697
1697
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
1698
|
-
readonly 'imports':
|
|
1699
|
-
readonly 'linked entry':
|
|
1700
|
-
readonly 'list cursor':
|
|
1701
|
-
readonly 'option constraints':
|
|
1698
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
1699
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
1700
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
1701
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
1702
1702
|
readonly 'signature': _i_resolved._T_Signature;
|
|
1703
1703
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
1704
1704
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -2266,17 +2266,17 @@ export declare namespace _T_Type {
|
|
|
2266
2266
|
}
|
|
2267
2267
|
type O<F_Source> = _i_resolved._T_Globals;
|
|
2268
2268
|
}
|
|
2269
|
-
type globals<F_Source> =
|
|
2269
|
+
type globals<F_Source> = _et.Optional_Value<_i_resolved._T_Globals>;
|
|
2270
2270
|
namespace imports {
|
|
2271
2271
|
namespace O {
|
|
2272
2272
|
}
|
|
2273
2273
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
2274
2274
|
}
|
|
2275
|
-
type imports<F_Source> =
|
|
2275
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2276
2276
|
}
|
|
2277
2277
|
type values<F_Source> = {
|
|
2278
|
-
readonly 'globals':
|
|
2279
|
-
readonly 'imports':
|
|
2278
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
2279
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2280
2280
|
};
|
|
2281
2281
|
}
|
|
2282
2282
|
type parameters<F_Source> = {
|
|
@@ -2285,8 +2285,8 @@ export declare namespace _T_Type {
|
|
|
2285
2285
|
readonly 'possibly circular dependent sibling types': _i_resolve._T_Cyclic_Lookup<_i_resolved._T_Types.D>;
|
|
2286
2286
|
};
|
|
2287
2287
|
readonly 'values': {
|
|
2288
|
-
readonly 'globals':
|
|
2289
|
-
readonly 'imports':
|
|
2288
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
2289
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2290
2290
|
};
|
|
2291
2291
|
};
|
|
2292
2292
|
}
|
|
@@ -2329,20 +2329,20 @@ export declare namespace _T_Type_Node {
|
|
|
2329
2329
|
}
|
|
2330
2330
|
type O<F_Source> = _i_resolved._T_Globals;
|
|
2331
2331
|
}
|
|
2332
|
-
type globals<F_Source> =
|
|
2332
|
+
type globals<F_Source> = _et.Optional_Value<_i_resolved._T_Globals>;
|
|
2333
2333
|
namespace imports {
|
|
2334
2334
|
namespace O {
|
|
2335
2335
|
}
|
|
2336
2336
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
2337
2337
|
}
|
|
2338
|
-
type imports<F_Source> =
|
|
2338
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2339
2339
|
namespace type_parameters {
|
|
2340
2340
|
}
|
|
2341
2341
|
type type_parameters<F_Source> = _i_resolved._T_Type_Parameters;
|
|
2342
2342
|
}
|
|
2343
2343
|
type values<F_Source> = {
|
|
2344
|
-
readonly 'globals':
|
|
2345
|
-
readonly 'imports':
|
|
2344
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
2345
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2346
2346
|
readonly 'type parameters': _i_resolved._T_Type_Parameters;
|
|
2347
2347
|
};
|
|
2348
2348
|
}
|
|
@@ -2352,8 +2352,8 @@ export declare namespace _T_Type_Node {
|
|
|
2352
2352
|
readonly 'possibly circular dependent sibling types': _i_resolve._T_Cyclic_Lookup<_i_resolved._T_Types.D>;
|
|
2353
2353
|
};
|
|
2354
2354
|
readonly 'values': {
|
|
2355
|
-
readonly 'globals':
|
|
2356
|
-
readonly 'imports':
|
|
2355
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
2356
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2357
2357
|
readonly 'type parameters': _i_resolved._T_Type_Parameters;
|
|
2358
2358
|
};
|
|
2359
2359
|
};
|
|
@@ -2390,10 +2390,10 @@ export declare namespace _T_Type_Node_Reference {
|
|
|
2390
2390
|
}
|
|
2391
2391
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
2392
2392
|
}
|
|
2393
|
-
type imports<F_Source> =
|
|
2393
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2394
2394
|
}
|
|
2395
2395
|
type values<F_Source> = {
|
|
2396
|
-
readonly 'imports':
|
|
2396
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2397
2397
|
};
|
|
2398
2398
|
}
|
|
2399
2399
|
type parameters<F_Source> = {
|
|
@@ -2401,7 +2401,7 @@ export declare namespace _T_Type_Node_Reference {
|
|
|
2401
2401
|
readonly 'types': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Types.D>;
|
|
2402
2402
|
};
|
|
2403
2403
|
readonly 'values': {
|
|
2404
|
-
readonly 'imports':
|
|
2404
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2405
2405
|
};
|
|
2406
2406
|
};
|
|
2407
2407
|
}
|
|
@@ -2464,10 +2464,10 @@ export declare namespace _T_Type_Reference {
|
|
|
2464
2464
|
}
|
|
2465
2465
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
2466
2466
|
}
|
|
2467
|
-
type imports<F_Source> =
|
|
2467
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2468
2468
|
}
|
|
2469
2469
|
type values<F_Source> = {
|
|
2470
|
-
readonly 'imports':
|
|
2470
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2471
2471
|
};
|
|
2472
2472
|
}
|
|
2473
2473
|
type parameters<F_Source> = {
|
|
@@ -2475,7 +2475,7 @@ export declare namespace _T_Type_Reference {
|
|
|
2475
2475
|
readonly 'types': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Types.D>;
|
|
2476
2476
|
};
|
|
2477
2477
|
readonly 'values': {
|
|
2478
|
-
readonly 'imports':
|
|
2478
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2479
2479
|
};
|
|
2480
2480
|
};
|
|
2481
2481
|
}
|
|
@@ -2530,24 +2530,24 @@ export declare namespace _T_Types {
|
|
|
2530
2530
|
}
|
|
2531
2531
|
type O<F_Source> = _i_resolved._T_Globals;
|
|
2532
2532
|
}
|
|
2533
|
-
type globals<F_Source> =
|
|
2533
|
+
type globals<F_Source> = _et.Optional_Value<_i_resolved._T_Globals>;
|
|
2534
2534
|
namespace imports {
|
|
2535
2535
|
namespace O {
|
|
2536
2536
|
}
|
|
2537
2537
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
2538
2538
|
}
|
|
2539
|
-
type imports<F_Source> =
|
|
2539
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2540
2540
|
}
|
|
2541
2541
|
type values<F_Source> = {
|
|
2542
|
-
readonly 'globals':
|
|
2543
|
-
readonly 'imports':
|
|
2542
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
2543
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2544
2544
|
};
|
|
2545
2545
|
}
|
|
2546
2546
|
type parameters<F_Source> = {
|
|
2547
2547
|
readonly 'lookups': null;
|
|
2548
2548
|
readonly 'values': {
|
|
2549
|
-
readonly 'globals':
|
|
2550
|
-
readonly 'imports':
|
|
2549
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
2550
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2551
2551
|
};
|
|
2552
2552
|
};
|
|
2553
2553
|
}
|
|
@@ -2590,13 +2590,13 @@ export declare namespace Benchmark {
|
|
|
2590
2590
|
}
|
|
2591
2591
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
2592
2592
|
}
|
|
2593
|
-
type current_dictionary<F_Source> =
|
|
2593
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
2594
2594
|
namespace current_ordered_dictionary {
|
|
2595
2595
|
namespace O {
|
|
2596
2596
|
}
|
|
2597
2597
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
2598
2598
|
}
|
|
2599
|
-
type current_ordered_dictionary<F_Source> =
|
|
2599
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
2600
2600
|
namespace definition {
|
|
2601
2601
|
}
|
|
2602
2602
|
type definition<F_Source> = _i_resolved._T_Type_Node;
|
|
@@ -2605,25 +2605,25 @@ export declare namespace Benchmark {
|
|
|
2605
2605
|
}
|
|
2606
2606
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
2607
2607
|
}
|
|
2608
|
-
type imports<F_Source> =
|
|
2608
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2609
2609
|
namespace linked_entry {
|
|
2610
2610
|
namespace O {
|
|
2611
2611
|
}
|
|
2612
2612
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
2613
2613
|
}
|
|
2614
|
-
type linked_entry<F_Source> =
|
|
2614
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
2615
2615
|
namespace list_cursor {
|
|
2616
2616
|
namespace O {
|
|
2617
2617
|
}
|
|
2618
2618
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
2619
2619
|
}
|
|
2620
|
-
type list_cursor<F_Source> =
|
|
2620
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
2621
2621
|
namespace option_constraints {
|
|
2622
2622
|
namespace O {
|
|
2623
2623
|
}
|
|
2624
2624
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
2625
2625
|
}
|
|
2626
|
-
type option_constraints<F_Source> =
|
|
2626
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
2627
2627
|
namespace signature {
|
|
2628
2628
|
}
|
|
2629
2629
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -2635,13 +2635,13 @@ export declare namespace Benchmark {
|
|
|
2635
2635
|
type types<F_Source> = _i_resolved._T_Types;
|
|
2636
2636
|
}
|
|
2637
2637
|
type values<F_Source> = {
|
|
2638
|
-
readonly 'current dictionary':
|
|
2639
|
-
readonly 'current ordered dictionary':
|
|
2638
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
2639
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
2640
2640
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
2641
|
-
readonly 'imports':
|
|
2642
|
-
readonly 'linked entry':
|
|
2643
|
-
readonly 'list cursor':
|
|
2644
|
-
readonly 'option constraints':
|
|
2641
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2642
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
2643
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
2644
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
2645
2645
|
readonly 'signature': _i_resolved._T_Signature;
|
|
2646
2646
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
2647
2647
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -2653,13 +2653,13 @@ export declare namespace Benchmark {
|
|
|
2653
2653
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
2654
2654
|
};
|
|
2655
2655
|
readonly 'values': {
|
|
2656
|
-
readonly 'current dictionary':
|
|
2657
|
-
readonly 'current ordered dictionary':
|
|
2656
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
2657
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
2658
2658
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
2659
|
-
readonly 'imports':
|
|
2660
|
-
readonly 'linked entry':
|
|
2661
|
-
readonly 'list cursor':
|
|
2662
|
-
readonly 'option constraints':
|
|
2659
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2660
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
2661
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
2662
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
2663
2663
|
readonly 'signature': _i_resolved._T_Signature;
|
|
2664
2664
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
2665
2665
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -2739,20 +2739,20 @@ export declare namespace Dictionary {
|
|
|
2739
2739
|
}
|
|
2740
2740
|
type O<F_Source> = _i_resolved._T_Globals;
|
|
2741
2741
|
}
|
|
2742
|
-
type globals<F_Source> =
|
|
2742
|
+
type globals<F_Source> = _et.Optional_Value<_i_resolved._T_Globals>;
|
|
2743
2743
|
namespace imports {
|
|
2744
2744
|
namespace O {
|
|
2745
2745
|
}
|
|
2746
2746
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
2747
2747
|
}
|
|
2748
|
-
type imports<F_Source> =
|
|
2748
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2749
2749
|
namespace type_parameters {
|
|
2750
2750
|
}
|
|
2751
2751
|
type type_parameters<F_Source> = _i_resolved._T_Type_Parameters;
|
|
2752
2752
|
}
|
|
2753
2753
|
type values<F_Source> = {
|
|
2754
|
-
readonly 'globals':
|
|
2755
|
-
readonly 'imports':
|
|
2754
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
2755
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2756
2756
|
readonly 'type parameters': _i_resolved._T_Type_Parameters;
|
|
2757
2757
|
};
|
|
2758
2758
|
}
|
|
@@ -2762,8 +2762,8 @@ export declare namespace Dictionary {
|
|
|
2762
2762
|
readonly 'possibly circular dependent sibling types': _i_resolve._T_Cyclic_Lookup<_i_resolved._T_Types.D>;
|
|
2763
2763
|
};
|
|
2764
2764
|
readonly 'values': {
|
|
2765
|
-
readonly 'globals':
|
|
2766
|
-
readonly 'imports':
|
|
2765
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
2766
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2767
2767
|
readonly 'type parameters': _i_resolved._T_Type_Parameters;
|
|
2768
2768
|
};
|
|
2769
2769
|
};
|
|
@@ -2834,20 +2834,20 @@ export declare namespace Group {
|
|
|
2834
2834
|
}
|
|
2835
2835
|
type O<F_Source> = _i_resolved._T_Globals;
|
|
2836
2836
|
}
|
|
2837
|
-
type globals<F_Source> =
|
|
2837
|
+
type globals<F_Source> = _et.Optional_Value<_i_resolved._T_Globals>;
|
|
2838
2838
|
namespace imports {
|
|
2839
2839
|
namespace O {
|
|
2840
2840
|
}
|
|
2841
2841
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
2842
2842
|
}
|
|
2843
|
-
type imports<F_Source> =
|
|
2843
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2844
2844
|
namespace type_parameters {
|
|
2845
2845
|
}
|
|
2846
2846
|
type type_parameters<F_Source> = _i_resolved._T_Type_Parameters;
|
|
2847
2847
|
}
|
|
2848
2848
|
type values<F_Source> = {
|
|
2849
|
-
readonly 'globals':
|
|
2850
|
-
readonly 'imports':
|
|
2849
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
2850
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2851
2851
|
readonly 'type parameters': _i_resolved._T_Type_Parameters;
|
|
2852
2852
|
};
|
|
2853
2853
|
}
|
|
@@ -2857,8 +2857,8 @@ export declare namespace Group {
|
|
|
2857
2857
|
readonly 'possibly circular dependent sibling types': _i_resolve._T_Cyclic_Lookup<_i_resolved._T_Types.D>;
|
|
2858
2858
|
};
|
|
2859
2859
|
readonly 'values': {
|
|
2860
|
-
readonly 'globals':
|
|
2861
|
-
readonly 'imports':
|
|
2860
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
2861
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2862
2862
|
readonly 'type parameters': _i_resolved._T_Type_Parameters;
|
|
2863
2863
|
};
|
|
2864
2864
|
};
|
|
@@ -2902,13 +2902,13 @@ export declare namespace Guaranteed_Value_Selection {
|
|
|
2902
2902
|
}
|
|
2903
2903
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
2904
2904
|
}
|
|
2905
|
-
type current_dictionary<F_Source> =
|
|
2905
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
2906
2906
|
namespace current_ordered_dictionary {
|
|
2907
2907
|
namespace O {
|
|
2908
2908
|
}
|
|
2909
2909
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
2910
2910
|
}
|
|
2911
|
-
type current_ordered_dictionary<F_Source> =
|
|
2911
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
2912
2912
|
namespace definition {
|
|
2913
2913
|
}
|
|
2914
2914
|
type definition<F_Source> = _i_resolved._T_Type_Node;
|
|
@@ -2917,25 +2917,25 @@ export declare namespace Guaranteed_Value_Selection {
|
|
|
2917
2917
|
}
|
|
2918
2918
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
2919
2919
|
}
|
|
2920
|
-
type imports<F_Source> =
|
|
2920
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2921
2921
|
namespace linked_entry {
|
|
2922
2922
|
namespace O {
|
|
2923
2923
|
}
|
|
2924
2924
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
2925
2925
|
}
|
|
2926
|
-
type linked_entry<F_Source> =
|
|
2926
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
2927
2927
|
namespace list_cursor {
|
|
2928
2928
|
namespace O {
|
|
2929
2929
|
}
|
|
2930
2930
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
2931
2931
|
}
|
|
2932
|
-
type list_cursor<F_Source> =
|
|
2932
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
2933
2933
|
namespace option_constraints {
|
|
2934
2934
|
namespace O {
|
|
2935
2935
|
}
|
|
2936
2936
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
2937
2937
|
}
|
|
2938
|
-
type option_constraints<F_Source> =
|
|
2938
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
2939
2939
|
namespace signature {
|
|
2940
2940
|
}
|
|
2941
2941
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -2947,13 +2947,13 @@ export declare namespace Guaranteed_Value_Selection {
|
|
|
2947
2947
|
type types<F_Source> = _i_resolved._T_Types;
|
|
2948
2948
|
}
|
|
2949
2949
|
type values<F_Source> = {
|
|
2950
|
-
readonly 'current dictionary':
|
|
2951
|
-
readonly 'current ordered dictionary':
|
|
2950
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
2951
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
2952
2952
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
2953
|
-
readonly 'imports':
|
|
2954
|
-
readonly 'linked entry':
|
|
2955
|
-
readonly 'list cursor':
|
|
2956
|
-
readonly 'option constraints':
|
|
2953
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2954
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
2955
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
2956
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
2957
2957
|
readonly 'signature': _i_resolved._T_Signature;
|
|
2958
2958
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
2959
2959
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -2965,13 +2965,13 @@ export declare namespace Guaranteed_Value_Selection {
|
|
|
2965
2965
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
2966
2966
|
};
|
|
2967
2967
|
readonly 'values': {
|
|
2968
|
-
readonly 'current dictionary':
|
|
2969
|
-
readonly 'current ordered dictionary':
|
|
2968
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
2969
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
2970
2970
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
2971
|
-
readonly 'imports':
|
|
2972
|
-
readonly 'linked entry':
|
|
2973
|
-
readonly 'list cursor':
|
|
2974
|
-
readonly 'option constraints':
|
|
2971
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
2972
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
2973
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
2974
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
2975
2975
|
readonly 'signature': _i_resolved._T_Signature;
|
|
2976
2976
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
2977
2977
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -3054,13 +3054,13 @@ export declare namespace Lookup_Selection {
|
|
|
3054
3054
|
}
|
|
3055
3055
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
3056
3056
|
}
|
|
3057
|
-
type current_dictionary<F_Source> =
|
|
3057
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3058
3058
|
namespace current_ordered_dictionary {
|
|
3059
3059
|
namespace O {
|
|
3060
3060
|
}
|
|
3061
3061
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
3062
3062
|
}
|
|
3063
|
-
type current_ordered_dictionary<F_Source> =
|
|
3063
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3064
3064
|
namespace definition {
|
|
3065
3065
|
}
|
|
3066
3066
|
type definition<F_Source> = _i_resolved._T_Type_Node;
|
|
@@ -3069,25 +3069,25 @@ export declare namespace Lookup_Selection {
|
|
|
3069
3069
|
}
|
|
3070
3070
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
3071
3071
|
}
|
|
3072
|
-
type imports<F_Source> =
|
|
3072
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3073
3073
|
namespace linked_entry {
|
|
3074
3074
|
namespace O {
|
|
3075
3075
|
}
|
|
3076
3076
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
3077
3077
|
}
|
|
3078
|
-
type linked_entry<F_Source> =
|
|
3078
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3079
3079
|
namespace list_cursor {
|
|
3080
3080
|
namespace O {
|
|
3081
3081
|
}
|
|
3082
3082
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
3083
3083
|
}
|
|
3084
|
-
type list_cursor<F_Source> =
|
|
3084
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3085
3085
|
namespace option_constraints {
|
|
3086
3086
|
namespace O {
|
|
3087
3087
|
}
|
|
3088
3088
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
3089
3089
|
}
|
|
3090
|
-
type option_constraints<F_Source> =
|
|
3090
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3091
3091
|
namespace signature {
|
|
3092
3092
|
}
|
|
3093
3093
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -3099,13 +3099,13 @@ export declare namespace Lookup_Selection {
|
|
|
3099
3099
|
type types<F_Source> = _i_resolved._T_Types;
|
|
3100
3100
|
}
|
|
3101
3101
|
type values<F_Source> = {
|
|
3102
|
-
readonly 'current dictionary':
|
|
3103
|
-
readonly 'current ordered dictionary':
|
|
3102
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3103
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3104
3104
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
3105
|
-
readonly 'imports':
|
|
3106
|
-
readonly 'linked entry':
|
|
3107
|
-
readonly 'list cursor':
|
|
3108
|
-
readonly 'option constraints':
|
|
3105
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3106
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3107
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3108
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3109
3109
|
readonly 'signature': _i_resolved._T_Signature;
|
|
3110
3110
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
3111
3111
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -3117,13 +3117,13 @@ export declare namespace Lookup_Selection {
|
|
|
3117
3117
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
3118
3118
|
};
|
|
3119
3119
|
readonly 'values': {
|
|
3120
|
-
readonly 'current dictionary':
|
|
3121
|
-
readonly 'current ordered dictionary':
|
|
3120
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3121
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3122
3122
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
3123
|
-
readonly 'imports':
|
|
3124
|
-
readonly 'linked entry':
|
|
3125
|
-
readonly 'list cursor':
|
|
3126
|
-
readonly 'option constraints':
|
|
3123
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3124
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3125
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3126
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3127
3127
|
readonly 'signature': _i_resolved._T_Signature;
|
|
3128
3128
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
3129
3129
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -3169,13 +3169,13 @@ export declare namespace Node_Resolver {
|
|
|
3169
3169
|
}
|
|
3170
3170
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
3171
3171
|
}
|
|
3172
|
-
type current_dictionary<F_Source> =
|
|
3172
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3173
3173
|
namespace current_ordered_dictionary {
|
|
3174
3174
|
namespace O {
|
|
3175
3175
|
}
|
|
3176
3176
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
3177
3177
|
}
|
|
3178
|
-
type current_ordered_dictionary<F_Source> =
|
|
3178
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3179
3179
|
namespace definition {
|
|
3180
3180
|
}
|
|
3181
3181
|
type definition<F_Source> = _i_resolved._T_Type_Node;
|
|
@@ -3184,25 +3184,25 @@ export declare namespace Node_Resolver {
|
|
|
3184
3184
|
}
|
|
3185
3185
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
3186
3186
|
}
|
|
3187
|
-
type imports<F_Source> =
|
|
3187
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3188
3188
|
namespace linked_entry {
|
|
3189
3189
|
namespace O {
|
|
3190
3190
|
}
|
|
3191
3191
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
3192
3192
|
}
|
|
3193
|
-
type linked_entry<F_Source> =
|
|
3193
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3194
3194
|
namespace list_cursor {
|
|
3195
3195
|
namespace O {
|
|
3196
3196
|
}
|
|
3197
3197
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
3198
3198
|
}
|
|
3199
|
-
type list_cursor<F_Source> =
|
|
3199
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3200
3200
|
namespace option_constraints {
|
|
3201
3201
|
namespace O {
|
|
3202
3202
|
}
|
|
3203
3203
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
3204
3204
|
}
|
|
3205
|
-
type option_constraints<F_Source> =
|
|
3205
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3206
3206
|
namespace signature {
|
|
3207
3207
|
}
|
|
3208
3208
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -3214,13 +3214,13 @@ export declare namespace Node_Resolver {
|
|
|
3214
3214
|
type types<F_Source> = _i_resolved._T_Types;
|
|
3215
3215
|
}
|
|
3216
3216
|
type values<F_Source> = {
|
|
3217
|
-
readonly 'current dictionary':
|
|
3218
|
-
readonly 'current ordered dictionary':
|
|
3217
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3218
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3219
3219
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
3220
|
-
readonly 'imports':
|
|
3221
|
-
readonly 'linked entry':
|
|
3222
|
-
readonly 'list cursor':
|
|
3223
|
-
readonly 'option constraints':
|
|
3220
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3221
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3222
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3223
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3224
3224
|
readonly 'signature': _i_resolved._T_Signature;
|
|
3225
3225
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
3226
3226
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -3232,13 +3232,13 @@ export declare namespace Node_Resolver {
|
|
|
3232
3232
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
3233
3233
|
};
|
|
3234
3234
|
readonly 'values': {
|
|
3235
|
-
readonly 'current dictionary':
|
|
3236
|
-
readonly 'current ordered dictionary':
|
|
3235
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3236
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3237
3237
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
3238
|
-
readonly 'imports':
|
|
3239
|
-
readonly 'linked entry':
|
|
3240
|
-
readonly 'list cursor':
|
|
3241
|
-
readonly 'option constraints':
|
|
3238
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3239
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3240
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3241
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3242
3242
|
readonly 'signature': _i_resolved._T_Signature;
|
|
3243
3243
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
3244
3244
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -3284,13 +3284,13 @@ export declare namespace Node_Resolver_Group {
|
|
|
3284
3284
|
}
|
|
3285
3285
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
3286
3286
|
}
|
|
3287
|
-
type current_dictionary<F_Source> =
|
|
3287
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3288
3288
|
namespace current_ordered_dictionary {
|
|
3289
3289
|
namespace O {
|
|
3290
3290
|
}
|
|
3291
3291
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
3292
3292
|
}
|
|
3293
|
-
type current_ordered_dictionary<F_Source> =
|
|
3293
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3294
3294
|
namespace definition {
|
|
3295
3295
|
}
|
|
3296
3296
|
type definition<F_Source> = _i_resolved._T_Group;
|
|
@@ -3299,25 +3299,25 @@ export declare namespace Node_Resolver_Group {
|
|
|
3299
3299
|
}
|
|
3300
3300
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
3301
3301
|
}
|
|
3302
|
-
type imports<F_Source> =
|
|
3302
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3303
3303
|
namespace linked_entry {
|
|
3304
3304
|
namespace O {
|
|
3305
3305
|
}
|
|
3306
3306
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
3307
3307
|
}
|
|
3308
|
-
type linked_entry<F_Source> =
|
|
3308
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3309
3309
|
namespace list_cursor {
|
|
3310
3310
|
namespace O {
|
|
3311
3311
|
}
|
|
3312
3312
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
3313
3313
|
}
|
|
3314
|
-
type list_cursor<F_Source> =
|
|
3314
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3315
3315
|
namespace option_constraints {
|
|
3316
3316
|
namespace O {
|
|
3317
3317
|
}
|
|
3318
3318
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
3319
3319
|
}
|
|
3320
|
-
type option_constraints<F_Source> =
|
|
3320
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3321
3321
|
namespace signature {
|
|
3322
3322
|
}
|
|
3323
3323
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -3329,13 +3329,13 @@ export declare namespace Node_Resolver_Group {
|
|
|
3329
3329
|
type types<F_Source> = _i_resolved._T_Types;
|
|
3330
3330
|
}
|
|
3331
3331
|
type values<F_Source> = {
|
|
3332
|
-
readonly 'current dictionary':
|
|
3333
|
-
readonly 'current ordered dictionary':
|
|
3332
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3333
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3334
3334
|
readonly 'definition': _i_resolved._T_Group;
|
|
3335
|
-
readonly 'imports':
|
|
3336
|
-
readonly 'linked entry':
|
|
3337
|
-
readonly 'list cursor':
|
|
3338
|
-
readonly 'option constraints':
|
|
3335
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3336
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3337
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3338
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3339
3339
|
readonly 'signature': _i_resolved._T_Signature;
|
|
3340
3340
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
3341
3341
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -3347,13 +3347,13 @@ export declare namespace Node_Resolver_Group {
|
|
|
3347
3347
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
3348
3348
|
};
|
|
3349
3349
|
readonly 'values': {
|
|
3350
|
-
readonly 'current dictionary':
|
|
3351
|
-
readonly 'current ordered dictionary':
|
|
3350
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3351
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3352
3352
|
readonly 'definition': _i_resolved._T_Group;
|
|
3353
|
-
readonly 'imports':
|
|
3354
|
-
readonly 'linked entry':
|
|
3355
|
-
readonly 'list cursor':
|
|
3356
|
-
readonly 'option constraints':
|
|
3353
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3354
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3355
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3356
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3357
3357
|
readonly 'signature': _i_resolved._T_Signature;
|
|
3358
3358
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
3359
3359
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -3392,10 +3392,10 @@ export declare namespace Node_Resolver_List_Result {
|
|
|
3392
3392
|
}
|
|
3393
3393
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
3394
3394
|
}
|
|
3395
|
-
type imports<F_Source> =
|
|
3395
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3396
3396
|
}
|
|
3397
3397
|
type values<F_Source> = {
|
|
3398
|
-
readonly 'imports':
|
|
3398
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3399
3399
|
};
|
|
3400
3400
|
}
|
|
3401
3401
|
type parameters<F_Source> = {
|
|
@@ -3403,7 +3403,7 @@ export declare namespace Node_Resolver_List_Result {
|
|
|
3403
3403
|
readonly 'types': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Types.D>;
|
|
3404
3404
|
};
|
|
3405
3405
|
readonly 'values': {
|
|
3406
|
-
readonly 'imports':
|
|
3406
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3407
3407
|
};
|
|
3408
3408
|
};
|
|
3409
3409
|
}
|
|
@@ -3473,13 +3473,13 @@ export declare namespace Option_Constraints {
|
|
|
3473
3473
|
}
|
|
3474
3474
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
3475
3475
|
}
|
|
3476
|
-
type current_dictionary<F_Source> =
|
|
3476
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3477
3477
|
namespace current_ordered_dictionary {
|
|
3478
3478
|
namespace O {
|
|
3479
3479
|
}
|
|
3480
3480
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
3481
3481
|
}
|
|
3482
|
-
type current_ordered_dictionary<F_Source> =
|
|
3482
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3483
3483
|
namespace definition {
|
|
3484
3484
|
}
|
|
3485
3485
|
type definition<F_Source> = _i_resolved._T_Type_Node;
|
|
@@ -3488,25 +3488,25 @@ export declare namespace Option_Constraints {
|
|
|
3488
3488
|
}
|
|
3489
3489
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
3490
3490
|
}
|
|
3491
|
-
type imports<F_Source> =
|
|
3491
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3492
3492
|
namespace linked_entry {
|
|
3493
3493
|
namespace O {
|
|
3494
3494
|
}
|
|
3495
3495
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
3496
3496
|
}
|
|
3497
|
-
type linked_entry<F_Source> =
|
|
3497
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3498
3498
|
namespace list_cursor {
|
|
3499
3499
|
namespace O {
|
|
3500
3500
|
}
|
|
3501
3501
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
3502
3502
|
}
|
|
3503
|
-
type list_cursor<F_Source> =
|
|
3503
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3504
3504
|
namespace option_constraints {
|
|
3505
3505
|
namespace O {
|
|
3506
3506
|
}
|
|
3507
3507
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
3508
3508
|
}
|
|
3509
|
-
type option_constraints<F_Source> =
|
|
3509
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3510
3510
|
namespace signature {
|
|
3511
3511
|
}
|
|
3512
3512
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -3518,13 +3518,13 @@ export declare namespace Option_Constraints {
|
|
|
3518
3518
|
type types<F_Source> = _i_resolved._T_Types;
|
|
3519
3519
|
}
|
|
3520
3520
|
type values<F_Source> = {
|
|
3521
|
-
readonly 'current dictionary':
|
|
3522
|
-
readonly 'current ordered dictionary':
|
|
3521
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3522
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3523
3523
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
3524
|
-
readonly 'imports':
|
|
3525
|
-
readonly 'linked entry':
|
|
3526
|
-
readonly 'list cursor':
|
|
3527
|
-
readonly 'option constraints':
|
|
3524
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3525
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3526
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3527
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3528
3528
|
readonly 'signature': _i_resolved._T_Signature;
|
|
3529
3529
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
3530
3530
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -3536,13 +3536,13 @@ export declare namespace Option_Constraints {
|
|
|
3536
3536
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
3537
3537
|
};
|
|
3538
3538
|
readonly 'values': {
|
|
3539
|
-
readonly 'current dictionary':
|
|
3540
|
-
readonly 'current ordered dictionary':
|
|
3539
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3540
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3541
3541
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
3542
|
-
readonly 'imports':
|
|
3543
|
-
readonly 'linked entry':
|
|
3544
|
-
readonly 'list cursor':
|
|
3545
|
-
readonly 'option constraints':
|
|
3542
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3543
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3544
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3545
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3546
3546
|
readonly 'signature': _i_resolved._T_Signature;
|
|
3547
3547
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
3548
3548
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -3588,13 +3588,13 @@ export declare namespace Optional_Value_Initialization {
|
|
|
3588
3588
|
}
|
|
3589
3589
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
3590
3590
|
}
|
|
3591
|
-
type current_dictionary<F_Source> =
|
|
3591
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3592
3592
|
namespace current_ordered_dictionary {
|
|
3593
3593
|
namespace O {
|
|
3594
3594
|
}
|
|
3595
3595
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
3596
3596
|
}
|
|
3597
|
-
type current_ordered_dictionary<F_Source> =
|
|
3597
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3598
3598
|
namespace definition {
|
|
3599
3599
|
}
|
|
3600
3600
|
type definition<F_Source> = _i_resolved._T_Type_Node;
|
|
@@ -3603,25 +3603,25 @@ export declare namespace Optional_Value_Initialization {
|
|
|
3603
3603
|
}
|
|
3604
3604
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
3605
3605
|
}
|
|
3606
|
-
type imports<F_Source> =
|
|
3606
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3607
3607
|
namespace linked_entry {
|
|
3608
3608
|
namespace O {
|
|
3609
3609
|
}
|
|
3610
3610
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
3611
3611
|
}
|
|
3612
|
-
type linked_entry<F_Source> =
|
|
3612
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3613
3613
|
namespace list_cursor {
|
|
3614
3614
|
namespace O {
|
|
3615
3615
|
}
|
|
3616
3616
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
3617
3617
|
}
|
|
3618
|
-
type list_cursor<F_Source> =
|
|
3618
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3619
3619
|
namespace option_constraints {
|
|
3620
3620
|
namespace O {
|
|
3621
3621
|
}
|
|
3622
3622
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
3623
3623
|
}
|
|
3624
|
-
type option_constraints<F_Source> =
|
|
3624
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3625
3625
|
namespace signature {
|
|
3626
3626
|
}
|
|
3627
3627
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -3633,13 +3633,13 @@ export declare namespace Optional_Value_Initialization {
|
|
|
3633
3633
|
type types<F_Source> = _i_resolved._T_Types;
|
|
3634
3634
|
}
|
|
3635
3635
|
type values<F_Source> = {
|
|
3636
|
-
readonly 'current dictionary':
|
|
3637
|
-
readonly 'current ordered dictionary':
|
|
3636
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3637
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3638
3638
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
3639
|
-
readonly 'imports':
|
|
3640
|
-
readonly 'linked entry':
|
|
3641
|
-
readonly 'list cursor':
|
|
3642
|
-
readonly 'option constraints':
|
|
3639
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3640
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3641
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3642
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3643
3643
|
readonly 'signature': _i_resolved._T_Signature;
|
|
3644
3644
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
3645
3645
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -3651,13 +3651,13 @@ export declare namespace Optional_Value_Initialization {
|
|
|
3651
3651
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
3652
3652
|
};
|
|
3653
3653
|
readonly 'values': {
|
|
3654
|
-
readonly 'current dictionary':
|
|
3655
|
-
readonly 'current ordered dictionary':
|
|
3654
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3655
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3656
3656
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
3657
|
-
readonly 'imports':
|
|
3658
|
-
readonly 'linked entry':
|
|
3659
|
-
readonly 'list cursor':
|
|
3660
|
-
readonly 'option constraints':
|
|
3657
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3658
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3659
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3660
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3661
3661
|
readonly 'signature': _i_resolved._T_Signature;
|
|
3662
3662
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
3663
3663
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -3703,13 +3703,13 @@ export declare namespace Possible_Value_Selection {
|
|
|
3703
3703
|
}
|
|
3704
3704
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
3705
3705
|
}
|
|
3706
|
-
type current_dictionary<F_Source> =
|
|
3706
|
+
type current_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3707
3707
|
namespace current_ordered_dictionary {
|
|
3708
3708
|
namespace O {
|
|
3709
3709
|
}
|
|
3710
3710
|
type O<F_Source> = _i_resolved._T_Dictionary;
|
|
3711
3711
|
}
|
|
3712
|
-
type current_ordered_dictionary<F_Source> =
|
|
3712
|
+
type current_ordered_dictionary<F_Source> = _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3713
3713
|
namespace definition {
|
|
3714
3714
|
}
|
|
3715
3715
|
type definition<F_Source> = _i_resolved._T_Type_Node;
|
|
@@ -3718,25 +3718,25 @@ export declare namespace Possible_Value_Selection {
|
|
|
3718
3718
|
}
|
|
3719
3719
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
3720
3720
|
}
|
|
3721
|
-
type imports<F_Source> =
|
|
3721
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3722
3722
|
namespace linked_entry {
|
|
3723
3723
|
namespace O {
|
|
3724
3724
|
}
|
|
3725
3725
|
type O<F_Source> = _i_resolved._T_Benchmark;
|
|
3726
3726
|
}
|
|
3727
|
-
type linked_entry<F_Source> =
|
|
3727
|
+
type linked_entry<F_Source> = _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3728
3728
|
namespace list_cursor {
|
|
3729
3729
|
namespace O {
|
|
3730
3730
|
}
|
|
3731
3731
|
type O<F_Source> = _i_resolved._T_Node_Resolver_List_Result;
|
|
3732
3732
|
}
|
|
3733
|
-
type list_cursor<F_Source> =
|
|
3733
|
+
type list_cursor<F_Source> = _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3734
3734
|
namespace option_constraints {
|
|
3735
3735
|
namespace O {
|
|
3736
3736
|
}
|
|
3737
3737
|
type O<F_Source> = _i_resolved._T_Option_Constraints;
|
|
3738
3738
|
}
|
|
3739
|
-
type option_constraints<F_Source> =
|
|
3739
|
+
type option_constraints<F_Source> = _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3740
3740
|
namespace signature {
|
|
3741
3741
|
}
|
|
3742
3742
|
type signature<F_Source> = _i_resolved._T_Signature;
|
|
@@ -3748,13 +3748,13 @@ export declare namespace Possible_Value_Selection {
|
|
|
3748
3748
|
type types<F_Source> = _i_resolved._T_Types;
|
|
3749
3749
|
}
|
|
3750
3750
|
type values<F_Source> = {
|
|
3751
|
-
readonly 'current dictionary':
|
|
3752
|
-
readonly 'current ordered dictionary':
|
|
3751
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3752
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3753
3753
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
3754
|
-
readonly 'imports':
|
|
3755
|
-
readonly 'linked entry':
|
|
3756
|
-
readonly 'list cursor':
|
|
3757
|
-
readonly 'option constraints':
|
|
3754
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3755
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3756
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3757
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3758
3758
|
readonly 'signature': _i_resolved._T_Signature;
|
|
3759
3759
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
3760
3760
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -3766,13 +3766,13 @@ export declare namespace Possible_Value_Selection {
|
|
|
3766
3766
|
readonly 'sibling property resolvers': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Node_Resolver_Group.D>;
|
|
3767
3767
|
};
|
|
3768
3768
|
readonly 'values': {
|
|
3769
|
-
readonly 'current dictionary':
|
|
3770
|
-
readonly 'current ordered dictionary':
|
|
3769
|
+
readonly 'current dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3770
|
+
readonly 'current ordered dictionary': _et.Optional_Value<_i_resolved._T_Dictionary>;
|
|
3771
3771
|
readonly 'definition': _i_resolved._T_Type_Node;
|
|
3772
|
-
readonly 'imports':
|
|
3773
|
-
readonly 'linked entry':
|
|
3774
|
-
readonly 'list cursor':
|
|
3775
|
-
readonly 'option constraints':
|
|
3772
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
3773
|
+
readonly 'linked entry': _et.Optional_Value<_i_resolved._T_Benchmark>;
|
|
3774
|
+
readonly 'list cursor': _et.Optional_Value<_i_resolved._T_Node_Resolver_List_Result>;
|
|
3775
|
+
readonly 'option constraints': _et.Optional_Value<_i_resolved._T_Option_Constraints>;
|
|
3776
3776
|
readonly 'signature': _i_resolved._T_Signature;
|
|
3777
3777
|
readonly 'signatures': _i_resolved._T_Signatures;
|
|
3778
3778
|
readonly 'types': _i_resolved._T_Types;
|
|
@@ -4340,17 +4340,17 @@ export declare namespace Type {
|
|
|
4340
4340
|
}
|
|
4341
4341
|
type O<F_Source> = _i_resolved._T_Globals;
|
|
4342
4342
|
}
|
|
4343
|
-
type globals<F_Source> =
|
|
4343
|
+
type globals<F_Source> = _et.Optional_Value<_i_resolved._T_Globals>;
|
|
4344
4344
|
namespace imports {
|
|
4345
4345
|
namespace O {
|
|
4346
4346
|
}
|
|
4347
4347
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
4348
4348
|
}
|
|
4349
|
-
type imports<F_Source> =
|
|
4349
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
4350
4350
|
}
|
|
4351
4351
|
type values<F_Source> = {
|
|
4352
|
-
readonly 'globals':
|
|
4353
|
-
readonly 'imports':
|
|
4352
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
4353
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
4354
4354
|
};
|
|
4355
4355
|
}
|
|
4356
4356
|
type parameters<F_Source> = {
|
|
@@ -4359,8 +4359,8 @@ export declare namespace Type {
|
|
|
4359
4359
|
readonly 'possibly circular dependent sibling types': _i_resolve._T_Cyclic_Lookup<_i_resolved._T_Types.D>;
|
|
4360
4360
|
};
|
|
4361
4361
|
readonly 'values': {
|
|
4362
|
-
readonly 'globals':
|
|
4363
|
-
readonly 'imports':
|
|
4362
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
4363
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
4364
4364
|
};
|
|
4365
4365
|
};
|
|
4366
4366
|
}
|
|
@@ -4403,20 +4403,20 @@ export declare namespace Type_Node {
|
|
|
4403
4403
|
}
|
|
4404
4404
|
type O<F_Source> = _i_resolved._T_Globals;
|
|
4405
4405
|
}
|
|
4406
|
-
type globals<F_Source> =
|
|
4406
|
+
type globals<F_Source> = _et.Optional_Value<_i_resolved._T_Globals>;
|
|
4407
4407
|
namespace imports {
|
|
4408
4408
|
namespace O {
|
|
4409
4409
|
}
|
|
4410
4410
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
4411
4411
|
}
|
|
4412
|
-
type imports<F_Source> =
|
|
4412
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
4413
4413
|
namespace type_parameters {
|
|
4414
4414
|
}
|
|
4415
4415
|
type type_parameters<F_Source> = _i_resolved._T_Type_Parameters;
|
|
4416
4416
|
}
|
|
4417
4417
|
type values<F_Source> = {
|
|
4418
|
-
readonly 'globals':
|
|
4419
|
-
readonly 'imports':
|
|
4418
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
4419
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
4420
4420
|
readonly 'type parameters': _i_resolved._T_Type_Parameters;
|
|
4421
4421
|
};
|
|
4422
4422
|
}
|
|
@@ -4426,8 +4426,8 @@ export declare namespace Type_Node {
|
|
|
4426
4426
|
readonly 'possibly circular dependent sibling types': _i_resolve._T_Cyclic_Lookup<_i_resolved._T_Types.D>;
|
|
4427
4427
|
};
|
|
4428
4428
|
readonly 'values': {
|
|
4429
|
-
readonly 'globals':
|
|
4430
|
-
readonly 'imports':
|
|
4429
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
4430
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
4431
4431
|
readonly 'type parameters': _i_resolved._T_Type_Parameters;
|
|
4432
4432
|
};
|
|
4433
4433
|
};
|
|
@@ -4464,10 +4464,10 @@ export declare namespace Type_Node_Reference {
|
|
|
4464
4464
|
}
|
|
4465
4465
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
4466
4466
|
}
|
|
4467
|
-
type imports<F_Source> =
|
|
4467
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
4468
4468
|
}
|
|
4469
4469
|
type values<F_Source> = {
|
|
4470
|
-
readonly 'imports':
|
|
4470
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
4471
4471
|
};
|
|
4472
4472
|
}
|
|
4473
4473
|
type parameters<F_Source> = {
|
|
@@ -4475,7 +4475,7 @@ export declare namespace Type_Node_Reference {
|
|
|
4475
4475
|
readonly 'types': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Types.D>;
|
|
4476
4476
|
};
|
|
4477
4477
|
readonly 'values': {
|
|
4478
|
-
readonly 'imports':
|
|
4478
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
4479
4479
|
};
|
|
4480
4480
|
};
|
|
4481
4481
|
}
|
|
@@ -4538,10 +4538,10 @@ export declare namespace Type_Reference {
|
|
|
4538
4538
|
}
|
|
4539
4539
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
4540
4540
|
}
|
|
4541
|
-
type imports<F_Source> =
|
|
4541
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
4542
4542
|
}
|
|
4543
4543
|
type values<F_Source> = {
|
|
4544
|
-
readonly 'imports':
|
|
4544
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
4545
4545
|
};
|
|
4546
4546
|
}
|
|
4547
4547
|
type parameters<F_Source> = {
|
|
@@ -4549,7 +4549,7 @@ export declare namespace Type_Reference {
|
|
|
4549
4549
|
readonly 'types': _i_resolve._T_Acyclic_Lookup<_i_resolved._T_Types.D>;
|
|
4550
4550
|
};
|
|
4551
4551
|
readonly 'values': {
|
|
4552
|
-
readonly 'imports':
|
|
4552
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
4553
4553
|
};
|
|
4554
4554
|
};
|
|
4555
4555
|
}
|
|
@@ -4604,24 +4604,24 @@ export declare namespace Types {
|
|
|
4604
4604
|
}
|
|
4605
4605
|
type O<F_Source> = _i_resolved._T_Globals;
|
|
4606
4606
|
}
|
|
4607
|
-
type globals<F_Source> =
|
|
4607
|
+
type globals<F_Source> = _et.Optional_Value<_i_resolved._T_Globals>;
|
|
4608
4608
|
namespace imports {
|
|
4609
4609
|
namespace O {
|
|
4610
4610
|
}
|
|
4611
4611
|
type O<F_Source> = _i_resolved._T_Imports;
|
|
4612
4612
|
}
|
|
4613
|
-
type imports<F_Source> =
|
|
4613
|
+
type imports<F_Source> = _et.Optional_Value<_i_resolved._T_Imports>;
|
|
4614
4614
|
}
|
|
4615
4615
|
type values<F_Source> = {
|
|
4616
|
-
readonly 'globals':
|
|
4617
|
-
readonly 'imports':
|
|
4616
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
4617
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
4618
4618
|
};
|
|
4619
4619
|
}
|
|
4620
4620
|
type parameters<F_Source> = {
|
|
4621
4621
|
readonly 'lookups': null;
|
|
4622
4622
|
readonly 'values': {
|
|
4623
|
-
readonly 'globals':
|
|
4624
|
-
readonly 'imports':
|
|
4623
|
+
readonly 'globals': _et.Optional_Value<_i_resolved._T_Globals>;
|
|
4624
|
+
readonly 'imports': _et.Optional_Value<_i_resolved._T_Imports>;
|
|
4625
4625
|
};
|
|
4626
4626
|
};
|
|
4627
4627
|
}
|