pareto 0.78.2 → 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.
Files changed (150) hide show
  1. package/dist/bin/compile_temp_schemas.js +17 -14
  2. package/dist/bin/seal.js +7 -9
  3. package/dist/bin/serialize_schemas.js +7 -9
  4. package/dist/globals.d.ts +2 -0
  5. package/dist/implementation/commands/compile_temp_schemas.d.ts +19 -0
  6. package/dist/implementation/commands/compile_temp_schemas.js +131 -0
  7. package/dist/implementation/commands/seal.d.ts +8 -0
  8. package/dist/{bin/validate.js → implementation/commands/seal.js} +13 -7
  9. package/dist/implementation/commands/serialize_schemas.d.ts +8 -0
  10. package/dist/implementation/commands/serialize_schemas.js +61 -0
  11. package/dist/implementation/generated/pareto/generic/parse/ast.js +21 -21
  12. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.d.ts +1 -1
  13. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.js +1 -1
  14. package/dist/implementation/generated/pareto/generic/parse/parse.d.ts +1 -1
  15. package/dist/implementation/generated/pareto/generic/parse/parse.js +4 -3
  16. package/dist/implementation/generated/pareto/generic/parse/string_iterator.d.ts +1 -1
  17. package/dist/implementation/generated/pareto/generic/parse/string_iterator.js +4 -4
  18. package/dist/implementation/generated/pareto/generic/parse/token.js +5 -5
  19. package/dist/implementation/generated/pareto/generic/resolve.d.ts +4 -4
  20. package/dist/implementation/generated/pareto/generic/resolve.js +2 -2
  21. package/dist/implementation/generated/pareto/schemas/module/resolve.js +33 -33
  22. package/dist/implementation/generated/pareto/schemas/schema/resolve.js +2 -2
  23. package/dist/implementation/{algorithms/operations → operations}/impure/tbd/path.d.ts +1 -1
  24. package/dist/implementation/{algorithms/operations → operations}/impure/tbd/path.js +1 -1
  25. package/dist/implementation/{algorithms/queries/unguaranteed → queries}/load_pareto_document.d.ts +10 -7
  26. package/dist/implementation/queries/load_pareto_document.js +64 -0
  27. package/dist/implementation/{algorithms/queries/unguaranteed → queries}/load_pareto_file.d.ts +3 -5
  28. package/dist/implementation/queries/load_pareto_file.js +40 -0
  29. package/dist/{exceptional/deserializers → implementation/refiners}/load_schema.d.ts +2 -2
  30. package/dist/implementation/refiners/load_schema.js +83 -0
  31. package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_implementation.d.ts +1 -1
  32. package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_implementation.js +2 -2
  33. package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_interface.d.ts +1 -1
  34. package/dist/implementation/{algorithms/transformations → transformations}/module/exupery_interface.js +1 -1
  35. package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_implementation.d.ts +1 -1
  36. package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_implementation.js +1 -1
  37. package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_interface.d.ts +1 -1
  38. package/dist/implementation/{algorithms/transformations → transformations}/module/temp_typescript_interface.js +1 -1
  39. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/deserialize.d.ts +2 -2
  40. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/deserialize.js +7 -7
  41. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/main.d.ts +3 -3
  42. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/main.js +1 -1
  43. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/marshall.d.ts +3 -3
  44. package/dist/implementation/transformations/schema/exupery_implementation/marshall.js +142 -0
  45. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/migrate_boilerplate.d.ts +2 -2
  46. package/dist/implementation/transformations/schema/exupery_implementation/migrate_boilerplate.js +105 -0
  47. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/resolve.d.ts +5 -5
  48. package/dist/implementation/transformations/schema/exupery_implementation/resolve.js +300 -0
  49. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/serialize.d.ts +2 -2
  50. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/serialize.js +7 -7
  51. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_implementation/unmarshall.d.ts +3 -3
  52. package/dist/implementation/transformations/schema/exupery_implementation/unmarshall.js +158 -0
  53. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/deserialize.d.ts +1 -1
  54. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/deserialize.js +1 -1
  55. package/dist/implementation/transformations/schema/exupery_interface/dummy_resolve.js +13 -0
  56. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/main.d.ts +1 -1
  57. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/main.js +1 -1
  58. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/marshall.d.ts +1 -1
  59. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/marshall.js +1 -1
  60. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/migrate_boilerplate.d.ts +1 -1
  61. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/migrate_boilerplate.js +1 -1
  62. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/resolve.d.ts +2 -2
  63. package/dist/implementation/transformations/schema/exupery_interface/resolve.js +110 -0
  64. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/serialize.d.ts +1 -1
  65. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/serialize.js +1 -1
  66. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/types.d.ts +1 -1
  67. package/dist/implementation/transformations/schema/exupery_interface/types.js +192 -0
  68. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/unmarshall.d.ts +1 -1
  69. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/unmarshall.js +1 -1
  70. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_deserializers.d.ts +1 -1
  71. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_deserializers.js +1 -1
  72. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_serializers.d.ts +1 -1
  73. package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/value_serializers.js +1 -1
  74. package/dist/implementation/transformations/temp/astn_schema.d.ts +10 -0
  75. package/dist/implementation/transformations/temp/astn_schema.js +140 -0
  76. package/dist/implementation/{algorithms/transformations → transformations}/temp/unmarshall_astn_ast.d.ts +2 -2
  77. package/dist/implementation/{algorithms/transformations → transformations}/temp/unmarshall_astn_ast.js +2 -2
  78. package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_errors/fountain_pen.d.ts +1 -1
  79. package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_errors/fountain_pen.js +1 -1
  80. package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_result/astn_authoring_target.d.ts +1 -1
  81. package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_result/astn_authoring_target.js +1 -1
  82. package/dist/implementation/{algorithms/transformations → transformations}/unmarshall_result/unmarshall_errors.d.ts +2 -2
  83. package/dist/implementation/transformations/unmarshall_result/unmarshall_errors.js +344 -0
  84. package/dist/interface/algorithms/procedures/{unguaranteed/compile.js → compile.js} +1 -1
  85. package/dist/interface/algorithms/procedures/{unguaranteed/seal.js → seal.js} +1 -1
  86. package/dist/interface/algorithms/procedures/{unguaranteed/serialize_schemas.js → serialize_schemas.js} +1 -1
  87. package/dist/interface/algorithms/procedures/{unguaranteed/validate.js → validate.js} +1 -1
  88. package/dist/interface/algorithms/queries/load_pareto_document.js +5 -0
  89. package/dist/interface/algorithms/queries/{unguaranteed/load_pareto_file.js → load_pareto_file.js} +2 -2
  90. package/dist/interface/generated/pareto/core/astn_source.d.ts +3 -3
  91. package/dist/interface/generated/pareto/core/astn_target.d.ts +7 -7
  92. package/dist/interface/generated/pareto/core/parse_result.d.ts +1 -1
  93. package/dist/interface/generated/pareto/core/resolve.d.ts +2 -2
  94. package/dist/interface/generated/pareto/core/resolved.d.ts +12 -12
  95. package/dist/interface/generated/pareto/core/token.d.ts +3 -3
  96. package/dist/interface/generated/pareto/core/unconstrained.d.ts +3 -3
  97. package/dist/interface/generated/pareto/core/unresolved.d.ts +10 -10
  98. package/dist/interface/generated/pareto/schemas/astn_schema/data_types/resolve.d.ts +71 -71
  99. package/dist/interface/generated/pareto/schemas/parse_tree/data_types/source.d.ts +14 -14
  100. package/dist/interface/generated/pareto/schemas/parse_tree/data_types/target.d.ts +14 -14
  101. package/dist/interface/generated/pareto/schemas/schema/data_types/resolve.d.ts +428 -428
  102. package/dist/interface/generated/pareto/schemas/schema/data_types/source.d.ts +67 -67
  103. package/dist/interface/generated/pareto/schemas/schema/data_types/target.d.ts +67 -67
  104. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_error.d.ts +12 -0
  105. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_error.js +36 -0
  106. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_log.d.ts +12 -0
  107. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/console_log.js +36 -0
  108. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_directory.d.ts +12 -0
  109. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_directory.js +56 -0
  110. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_file.d.ts +10 -0
  111. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_file.js +45 -0
  112. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_node.d.ts +12 -0
  113. package/dist/modules/pareto-fountain-pen-directory/implementation/commands/write_to_node.js +58 -0
  114. package/dist/modules/pareto-fountain-pen-directory/interface/temp_types.d.ts +30 -0
  115. package/dist/modules/pareto-fountain-pen-directory/interface/temp_types.js +3 -0
  116. package/dist/temp/resolvers/module.js +2 -2
  117. package/dist/temp/resolvers/schema.js +2 -2
  118. package/dist/temp/temp_unmashall_result_types.d.ts +4 -4
  119. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding_oude_model/$.types.astn.js +10 -5
  120. package/package.json +9 -9
  121. package/dist/bin/validate.d.ts +0 -2
  122. package/dist/exceptional/deserializers/load_schema.js +0 -83
  123. package/dist/implementation/algorithms/procedures/unguaranteed/compile_temp_schemas.d.ts +0 -19
  124. package/dist/implementation/algorithms/procedures/unguaranteed/compile_temp_schemas.js +0 -148
  125. package/dist/implementation/algorithms/procedures/unguaranteed/seal.d.ts +0 -9
  126. package/dist/implementation/algorithms/procedures/unguaranteed/seal.js +0 -41
  127. package/dist/implementation/algorithms/procedures/unguaranteed/serialize_schemas.d.ts +0 -9
  128. package/dist/implementation/algorithms/procedures/unguaranteed/serialize_schemas.js +0 -60
  129. package/dist/implementation/algorithms/procedures/unguaranteed/validate.d.ts +0 -4
  130. package/dist/implementation/algorithms/procedures/unguaranteed/validate.js +0 -45
  131. package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_document.js +0 -74
  132. package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_file.js +0 -17
  133. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/marshall.js +0 -142
  134. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/migrate_boilerplate.js +0 -105
  135. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/resolve.js +0 -300
  136. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/unmarshall.js +0 -158
  137. package/dist/implementation/algorithms/transformations/schema/exupery_interface/dummy_resolve.js +0 -13
  138. package/dist/implementation/algorithms/transformations/schema/exupery_interface/resolve.js +0 -110
  139. package/dist/implementation/algorithms/transformations/schema/exupery_interface/types.js +0 -192
  140. package/dist/implementation/algorithms/transformations/temp/astn_schema.d.ts +0 -10
  141. package/dist/implementation/algorithms/transformations/temp/astn_schema.js +0 -140
  142. package/dist/implementation/algorithms/transformations/unmarshall_result/unmarshall_errors.js +0 -344
  143. package/dist/interface/algorithms/queries/unguaranteed/load_pareto_document.js +0 -5
  144. /package/dist/implementation/{algorithms/transformations → transformations}/schema/exupery_interface/dummy_resolve.d.ts +0 -0
  145. /package/dist/interface/algorithms/procedures/{unguaranteed/compile.d.ts → compile.d.ts} +0 -0
  146. /package/dist/interface/algorithms/procedures/{unguaranteed/seal.d.ts → seal.d.ts} +0 -0
  147. /package/dist/interface/algorithms/procedures/{unguaranteed/serialize_schemas.d.ts → serialize_schemas.d.ts} +0 -0
  148. /package/dist/interface/algorithms/procedures/{unguaranteed/validate.d.ts → validate.d.ts} +0 -0
  149. /package/dist/interface/algorithms/queries/{unguaranteed/load_pareto_document.d.ts → load_pareto_document.d.ts} +0 -0
  150. /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 _pt from 'exupery-core-types';
1
+ import * as _et from 'exupery-core-types';
2
2
  import * as _i_core from "../../../core/resolved";
3
3
  export type _T_Benchmark = {
4
4
  readonly 'dense': boolean;
@@ -30,7 +30,7 @@ export type _T_Globals = {
30
30
  readonly 'text types': _i_core._T_Dictionary<null, _T_Text_Type>;
31
31
  };
32
32
  export type _T_Group = _i_core._T_Ordered_Dictionary<null, {
33
- readonly 'description': _pt.Optional_Value<string>;
33
+ readonly 'description': _et.Optional_Value<string>;
34
34
  readonly 'node': _T_Type_Node;
35
35
  }>;
36
36
  export type _T_Guaranteed_Value_Selection = {
@@ -93,15 +93,15 @@ export type _T_Lookup_Selection = {
93
93
  export type _T_Node_Resolver = _i_core._T_State_Group<null, readonly ['boolean', null] | readonly [
94
94
  'component',
95
95
  {
96
- readonly 'arguments': _pt.Optional_Value<{
97
- readonly 'lookups': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
96
+ readonly 'arguments': _et.Optional_Value<{
97
+ readonly 'lookups': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
98
98
  'stack',
99
99
  {
100
100
  readonly 'element': _T_Lookup_Selection;
101
101
  readonly 'stack': _T_Lookup_Selection;
102
102
  }
103
103
  ]>>>;
104
- readonly 'values': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
104
+ readonly 'values': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
105
105
  }>;
106
106
  readonly 'constraints': _T_Property_Constraints;
107
107
  readonly 'location': _i_core._T_State_Group<null, readonly [
@@ -116,7 +116,7 @@ export type _T_Node_Resolver = _i_core._T_State_Group<null, readonly ['boolean',
116
116
  ] | readonly [
117
117
  'dictionary',
118
118
  {
119
- readonly 'benchmark': _pt.Optional_Value<_T_Benchmark>;
119
+ readonly 'benchmark': _et.Optional_Value<_T_Benchmark>;
120
120
  readonly 'definition': _i_core._T_Derived_Reference<null, _T_Dictionary>;
121
121
  readonly 'resolver': _T_Node_Resolver;
122
122
  }
@@ -125,7 +125,7 @@ export type _T_Node_Resolver = _i_core._T_State_Group<null, readonly ['boolean',
125
125
  {
126
126
  readonly 'definition': _i_core._T_Derived_Reference<null, _T_Type_Node.SG.list>;
127
127
  readonly 'resolver': _T_Node_Resolver;
128
- readonly 'result': _pt.Optional_Value<_T_Node_Resolver_List_Result>;
128
+ readonly 'result': _et.Optional_Value<_T_Node_Resolver_List_Result>;
129
129
  }
130
130
  ] | readonly ['nothing', null] | readonly ['number', null] | readonly [
131
131
  'optional',
@@ -175,7 +175,7 @@ export type _T_Number_Type = {
175
175
  ] | readonly [
176
176
  'exact',
177
177
  {
178
- readonly 'decimal separator offset': _pt.Optional_Value<number>;
178
+ readonly 'decimal separator offset': _et.Optional_Value<number>;
179
179
  readonly 'type': _i_core._T_State_Group<null, readonly ['integer', null] | readonly ['natural', null] | readonly ['positive natural', null]>;
180
180
  }
181
181
  ]>;
@@ -298,7 +298,7 @@ export type _T_Type_Node = _i_core._T_State_Group<null, readonly ['boolean', nul
298
298
  ] | readonly [
299
299
  'state group',
300
300
  _i_core._T_Dictionary<null, {
301
- readonly 'description': _pt.Optional_Value<string>;
301
+ readonly 'description': _et.Optional_Value<string>;
302
302
  readonly 'node': _T_Type_Node;
303
303
  }>
304
304
  ] | readonly [
@@ -470,13 +470,13 @@ export declare namespace _T_Group {
470
470
  namespace description {
471
471
  type O = string;
472
472
  }
473
- type description = _pt.Optional_Value<string>;
473
+ type description = _et.Optional_Value<string>;
474
474
  namespace node {
475
475
  }
476
476
  type node = _T_Type_Node;
477
477
  }
478
478
  type D = {
479
- readonly 'description': _pt.Optional_Value<string>;
479
+ readonly 'description': _et.Optional_Value<string>;
480
480
  readonly 'node': _T_Type_Node;
481
481
  };
482
482
  }
@@ -904,7 +904,7 @@ export declare namespace _T_Node_Resolver {
904
904
  }
905
905
  ]>>;
906
906
  }
907
- type lookups = _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
907
+ type lookups = _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
908
908
  'stack',
909
909
  {
910
910
  readonly 'element': _T_Lookup_Selection;
@@ -934,28 +934,28 @@ export declare namespace _T_Node_Resolver {
934
934
  }
935
935
  type O = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>;
936
936
  }
937
- type values = _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
937
+ type values = _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
938
938
  }
939
939
  type O = {
940
- readonly 'lookups': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
940
+ readonly 'lookups': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
941
941
  'stack',
942
942
  {
943
943
  readonly 'element': _T_Lookup_Selection;
944
944
  readonly 'stack': _T_Lookup_Selection;
945
945
  }
946
946
  ]>>>;
947
- readonly 'values': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
947
+ readonly 'values': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
948
948
  };
949
949
  }
950
- type _arguments = _pt.Optional_Value<{
951
- readonly 'lookups': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
950
+ type _arguments = _et.Optional_Value<{
951
+ readonly 'lookups': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
952
952
  'stack',
953
953
  {
954
954
  readonly 'element': _T_Lookup_Selection;
955
955
  readonly 'stack': _T_Lookup_Selection;
956
956
  }
957
957
  ]>>>;
958
- readonly 'values': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
958
+ readonly 'values': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
959
959
  }>;
960
960
  namespace constraints {
961
961
  }
@@ -1010,15 +1010,15 @@ export declare namespace _T_Node_Resolver {
1010
1010
  type signature = _i_core._T_Derived_Reference<null, _T_Signatures.D>;
1011
1011
  }
1012
1012
  type component = {
1013
- readonly 'arguments': _pt.Optional_Value<{
1014
- readonly 'lookups': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
1013
+ readonly 'arguments': _et.Optional_Value<{
1014
+ readonly 'lookups': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
1015
1015
  'stack',
1016
1016
  {
1017
1017
  readonly 'element': _T_Lookup_Selection;
1018
1018
  readonly 'stack': _T_Lookup_Selection;
1019
1019
  }
1020
1020
  ]>>>;
1021
- readonly 'values': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
1021
+ readonly 'values': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
1022
1022
  }>;
1023
1023
  readonly 'constraints': _T_Property_Constraints;
1024
1024
  readonly 'location': _i_core._T_State_Group<null, readonly [
@@ -1036,7 +1036,7 @@ export declare namespace _T_Node_Resolver {
1036
1036
  }
1037
1037
  type O = _T_Benchmark;
1038
1038
  }
1039
- type benchmark = _pt.Optional_Value<_T_Benchmark>;
1039
+ type benchmark = _et.Optional_Value<_T_Benchmark>;
1040
1040
  namespace definition {
1041
1041
  namespace Type {
1042
1042
  }
@@ -1048,7 +1048,7 @@ export declare namespace _T_Node_Resolver {
1048
1048
  type resolver = _T_Node_Resolver;
1049
1049
  }
1050
1050
  type dictionary = {
1051
- readonly 'benchmark': _pt.Optional_Value<_T_Benchmark>;
1051
+ readonly 'benchmark': _et.Optional_Value<_T_Benchmark>;
1052
1052
  readonly 'definition': _i_core._T_Derived_Reference<null, _T_Dictionary>;
1053
1053
  readonly 'resolver': _T_Node_Resolver;
1054
1054
  };
@@ -1070,12 +1070,12 @@ export declare namespace _T_Node_Resolver {
1070
1070
  }
1071
1071
  type O = _T_Node_Resolver_List_Result;
1072
1072
  }
1073
- type result = _pt.Optional_Value<_T_Node_Resolver_List_Result>;
1073
+ type result = _et.Optional_Value<_T_Node_Resolver_List_Result>;
1074
1074
  }
1075
1075
  type list = {
1076
1076
  readonly 'definition': _i_core._T_Derived_Reference<null, _T_Type_Node.SG.list>;
1077
1077
  readonly 'resolver': _T_Node_Resolver;
1078
- readonly 'result': _pt.Optional_Value<_T_Node_Resolver_List_Result>;
1078
+ readonly 'result': _et.Optional_Value<_T_Node_Resolver_List_Result>;
1079
1079
  };
1080
1080
  type nothing = null;
1081
1081
  type _number = null;
@@ -1210,15 +1210,15 @@ export declare namespace _T_Node_Resolver {
1210
1210
  type SG = readonly ['boolean', null] | readonly [
1211
1211
  'component',
1212
1212
  {
1213
- readonly 'arguments': _pt.Optional_Value<{
1214
- readonly 'lookups': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
1213
+ readonly 'arguments': _et.Optional_Value<{
1214
+ readonly 'lookups': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
1215
1215
  'stack',
1216
1216
  {
1217
1217
  readonly 'element': _T_Lookup_Selection;
1218
1218
  readonly 'stack': _T_Lookup_Selection;
1219
1219
  }
1220
1220
  ]>>>;
1221
- readonly 'values': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
1221
+ readonly 'values': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
1222
1222
  }>;
1223
1223
  readonly 'constraints': _T_Property_Constraints;
1224
1224
  readonly 'location': _i_core._T_State_Group<null, readonly [
@@ -1233,7 +1233,7 @@ export declare namespace _T_Node_Resolver {
1233
1233
  ] | readonly [
1234
1234
  'dictionary',
1235
1235
  {
1236
- readonly 'benchmark': _pt.Optional_Value<_T_Benchmark>;
1236
+ readonly 'benchmark': _et.Optional_Value<_T_Benchmark>;
1237
1237
  readonly 'definition': _i_core._T_Derived_Reference<null, _T_Dictionary>;
1238
1238
  readonly 'resolver': _T_Node_Resolver;
1239
1239
  }
@@ -1242,7 +1242,7 @@ export declare namespace _T_Node_Resolver {
1242
1242
  {
1243
1243
  readonly 'definition': _i_core._T_Derived_Reference<null, _T_Type_Node.SG.list>;
1244
1244
  readonly 'resolver': _T_Node_Resolver;
1245
- readonly 'result': _pt.Optional_Value<_T_Node_Resolver_List_Result>;
1245
+ readonly 'result': _et.Optional_Value<_T_Node_Resolver_List_Result>;
1246
1246
  }
1247
1247
  ] | readonly ['nothing', null] | readonly ['number', null] | readonly [
1248
1248
  'optional',
@@ -1311,7 +1311,7 @@ export declare namespace _T_Number_Type {
1311
1311
  namespace decimal_separator_offset {
1312
1312
  type O = number;
1313
1313
  }
1314
- type decimal_separator_offset = _pt.Optional_Value<number>;
1314
+ type decimal_separator_offset = _et.Optional_Value<number>;
1315
1315
  namespace _type {
1316
1316
  namespace SG {
1317
1317
  type integer = null;
@@ -1323,7 +1323,7 @@ export declare namespace _T_Number_Type {
1323
1323
  type _type = _i_core._T_State_Group<null, readonly ['integer', null] | readonly ['natural', null] | readonly ['positive natural', null]>;
1324
1324
  }
1325
1325
  type exact = {
1326
- readonly 'decimal separator offset': _pt.Optional_Value<number>;
1326
+ readonly 'decimal separator offset': _et.Optional_Value<number>;
1327
1327
  readonly 'type': _i_core._T_State_Group<null, readonly ['integer', null] | readonly ['natural', null] | readonly ['positive natural', null]>;
1328
1328
  };
1329
1329
  }
@@ -1335,7 +1335,7 @@ export declare namespace _T_Number_Type {
1335
1335
  ] | readonly [
1336
1336
  'exact',
1337
1337
  {
1338
- readonly 'decimal separator offset': _pt.Optional_Value<number>;
1338
+ readonly 'decimal separator offset': _et.Optional_Value<number>;
1339
1339
  readonly 'type': _i_core._T_State_Group<null, readonly ['integer', null] | readonly ['natural', null] | readonly ['positive natural', null]>;
1340
1340
  }
1341
1341
  ];
@@ -1348,7 +1348,7 @@ export declare namespace _T_Number_Type {
1348
1348
  ] | readonly [
1349
1349
  'exact',
1350
1350
  {
1351
- readonly 'decimal separator offset': _pt.Optional_Value<number>;
1351
+ readonly 'decimal separator offset': _et.Optional_Value<number>;
1352
1352
  readonly 'type': _i_core._T_State_Group<null, readonly ['integer', null] | readonly ['natural', null] | readonly ['positive natural', null]>;
1353
1353
  }
1354
1354
  ]>;
@@ -1920,18 +1920,18 @@ export declare namespace _T_Type_Node {
1920
1920
  namespace description {
1921
1921
  type O = string;
1922
1922
  }
1923
- type description = _pt.Optional_Value<string>;
1923
+ type description = _et.Optional_Value<string>;
1924
1924
  namespace node {
1925
1925
  }
1926
1926
  type node = _T_Type_Node;
1927
1927
  }
1928
1928
  type D = {
1929
- readonly 'description': _pt.Optional_Value<string>;
1929
+ readonly 'description': _et.Optional_Value<string>;
1930
1930
  readonly 'node': _T_Type_Node;
1931
1931
  };
1932
1932
  }
1933
1933
  type state_group = _i_core._T_Dictionary<null, {
1934
- readonly 'description': _pt.Optional_Value<string>;
1934
+ readonly 'description': _et.Optional_Value<string>;
1935
1935
  readonly 'node': _T_Type_Node;
1936
1936
  }>;
1937
1937
  namespace text {
@@ -1982,7 +1982,7 @@ export declare namespace _T_Type_Node {
1982
1982
  ] | readonly [
1983
1983
  'state group',
1984
1984
  _i_core._T_Dictionary<null, {
1985
- readonly 'description': _pt.Optional_Value<string>;
1985
+ readonly 'description': _et.Optional_Value<string>;
1986
1986
  readonly 'node': _T_Type_Node;
1987
1987
  }>
1988
1988
  ] | readonly [
@@ -2200,13 +2200,13 @@ export declare namespace Group {
2200
2200
  namespace description {
2201
2201
  type O = string;
2202
2202
  }
2203
- type description = _pt.Optional_Value<string>;
2203
+ type description = _et.Optional_Value<string>;
2204
2204
  namespace node {
2205
2205
  }
2206
2206
  type node = _T_Type_Node;
2207
2207
  }
2208
2208
  type D = {
2209
- readonly 'description': _pt.Optional_Value<string>;
2209
+ readonly 'description': _et.Optional_Value<string>;
2210
2210
  readonly 'node': _T_Type_Node;
2211
2211
  };
2212
2212
  }
@@ -2634,7 +2634,7 @@ export declare namespace Node_Resolver {
2634
2634
  }
2635
2635
  ]>>;
2636
2636
  }
2637
- type lookups = _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
2637
+ type lookups = _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
2638
2638
  'stack',
2639
2639
  {
2640
2640
  readonly 'element': _T_Lookup_Selection;
@@ -2664,28 +2664,28 @@ export declare namespace Node_Resolver {
2664
2664
  }
2665
2665
  type O = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>;
2666
2666
  }
2667
- type values = _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
2667
+ type values = _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
2668
2668
  }
2669
2669
  type O = {
2670
- readonly 'lookups': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
2670
+ readonly 'lookups': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
2671
2671
  'stack',
2672
2672
  {
2673
2673
  readonly 'element': _T_Lookup_Selection;
2674
2674
  readonly 'stack': _T_Lookup_Selection;
2675
2675
  }
2676
2676
  ]>>>;
2677
- readonly 'values': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
2677
+ readonly 'values': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
2678
2678
  };
2679
2679
  }
2680
- type _arguments = _pt.Optional_Value<{
2681
- readonly 'lookups': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
2680
+ type _arguments = _et.Optional_Value<{
2681
+ readonly 'lookups': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
2682
2682
  'stack',
2683
2683
  {
2684
2684
  readonly 'element': _T_Lookup_Selection;
2685
2685
  readonly 'stack': _T_Lookup_Selection;
2686
2686
  }
2687
2687
  ]>>>;
2688
- readonly 'values': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
2688
+ readonly 'values': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
2689
2689
  }>;
2690
2690
  namespace constraints {
2691
2691
  }
@@ -2740,15 +2740,15 @@ export declare namespace Node_Resolver {
2740
2740
  type signature = _i_core._T_Derived_Reference<null, _T_Signatures.D>;
2741
2741
  }
2742
2742
  type component = {
2743
- readonly 'arguments': _pt.Optional_Value<{
2744
- readonly 'lookups': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
2743
+ readonly 'arguments': _et.Optional_Value<{
2744
+ readonly 'lookups': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
2745
2745
  'stack',
2746
2746
  {
2747
2747
  readonly 'element': _T_Lookup_Selection;
2748
2748
  readonly 'stack': _T_Lookup_Selection;
2749
2749
  }
2750
2750
  ]>>>;
2751
- readonly 'values': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
2751
+ readonly 'values': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
2752
2752
  }>;
2753
2753
  readonly 'constraints': _T_Property_Constraints;
2754
2754
  readonly 'location': _i_core._T_State_Group<null, readonly [
@@ -2766,7 +2766,7 @@ export declare namespace Node_Resolver {
2766
2766
  }
2767
2767
  type O = _T_Benchmark;
2768
2768
  }
2769
- type benchmark = _pt.Optional_Value<_T_Benchmark>;
2769
+ type benchmark = _et.Optional_Value<_T_Benchmark>;
2770
2770
  namespace definition {
2771
2771
  namespace Type {
2772
2772
  }
@@ -2778,7 +2778,7 @@ export declare namespace Node_Resolver {
2778
2778
  type resolver = _T_Node_Resolver;
2779
2779
  }
2780
2780
  type dictionary = {
2781
- readonly 'benchmark': _pt.Optional_Value<_T_Benchmark>;
2781
+ readonly 'benchmark': _et.Optional_Value<_T_Benchmark>;
2782
2782
  readonly 'definition': _i_core._T_Derived_Reference<null, _T_Dictionary>;
2783
2783
  readonly 'resolver': _T_Node_Resolver;
2784
2784
  };
@@ -2800,12 +2800,12 @@ export declare namespace Node_Resolver {
2800
2800
  }
2801
2801
  type O = _T_Node_Resolver_List_Result;
2802
2802
  }
2803
- type result = _pt.Optional_Value<_T_Node_Resolver_List_Result>;
2803
+ type result = _et.Optional_Value<_T_Node_Resolver_List_Result>;
2804
2804
  }
2805
2805
  type list = {
2806
2806
  readonly 'definition': _i_core._T_Derived_Reference<null, _T_Type_Node.SG.list>;
2807
2807
  readonly 'resolver': _T_Node_Resolver;
2808
- readonly 'result': _pt.Optional_Value<_T_Node_Resolver_List_Result>;
2808
+ readonly 'result': _et.Optional_Value<_T_Node_Resolver_List_Result>;
2809
2809
  };
2810
2810
  type nothing = null;
2811
2811
  type _number = null;
@@ -2940,15 +2940,15 @@ export declare namespace Node_Resolver {
2940
2940
  type SG = readonly ['boolean', null] | readonly [
2941
2941
  'component',
2942
2942
  {
2943
- readonly 'arguments': _pt.Optional_Value<{
2944
- readonly 'lookups': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
2943
+ readonly 'arguments': _et.Optional_Value<{
2944
+ readonly 'lookups': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['empty stack', null] | readonly ['not set', null] | readonly ['selection', _T_Lookup_Selection] | readonly [
2945
2945
  'stack',
2946
2946
  {
2947
2947
  readonly 'element': _T_Lookup_Selection;
2948
2948
  readonly 'stack': _T_Lookup_Selection;
2949
2949
  }
2950
2950
  ]>>>;
2951
- readonly 'values': _pt.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
2951
+ readonly 'values': _et.Optional_Value<_i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['optional', _T_Optional_Value_Initialization] | readonly ['parameter', _i_core._T_Reference_To_Normal_Dictionary_Entry<null, _T_Signature_Parameters.values.D>] | readonly ['required', _T_Guaranteed_Value_Selection]>>>;
2952
2952
  }>;
2953
2953
  readonly 'constraints': _T_Property_Constraints;
2954
2954
  readonly 'location': _i_core._T_State_Group<null, readonly [
@@ -2963,7 +2963,7 @@ export declare namespace Node_Resolver {
2963
2963
  ] | readonly [
2964
2964
  'dictionary',
2965
2965
  {
2966
- readonly 'benchmark': _pt.Optional_Value<_T_Benchmark>;
2966
+ readonly 'benchmark': _et.Optional_Value<_T_Benchmark>;
2967
2967
  readonly 'definition': _i_core._T_Derived_Reference<null, _T_Dictionary>;
2968
2968
  readonly 'resolver': _T_Node_Resolver;
2969
2969
  }
@@ -2972,7 +2972,7 @@ export declare namespace Node_Resolver {
2972
2972
  {
2973
2973
  readonly 'definition': _i_core._T_Derived_Reference<null, _T_Type_Node.SG.list>;
2974
2974
  readonly 'resolver': _T_Node_Resolver;
2975
- readonly 'result': _pt.Optional_Value<_T_Node_Resolver_List_Result>;
2975
+ readonly 'result': _et.Optional_Value<_T_Node_Resolver_List_Result>;
2976
2976
  }
2977
2977
  ] | readonly ['nothing', null] | readonly ['number', null] | readonly [
2978
2978
  'optional',
@@ -3041,7 +3041,7 @@ export declare namespace Number_Type {
3041
3041
  namespace decimal_separator_offset {
3042
3042
  type O = number;
3043
3043
  }
3044
- type decimal_separator_offset = _pt.Optional_Value<number>;
3044
+ type decimal_separator_offset = _et.Optional_Value<number>;
3045
3045
  namespace _type {
3046
3046
  namespace SG {
3047
3047
  type integer = null;
@@ -3053,7 +3053,7 @@ export declare namespace Number_Type {
3053
3053
  type _type = _i_core._T_State_Group<null, readonly ['integer', null] | readonly ['natural', null] | readonly ['positive natural', null]>;
3054
3054
  }
3055
3055
  type exact = {
3056
- readonly 'decimal separator offset': _pt.Optional_Value<number>;
3056
+ readonly 'decimal separator offset': _et.Optional_Value<number>;
3057
3057
  readonly 'type': _i_core._T_State_Group<null, readonly ['integer', null] | readonly ['natural', null] | readonly ['positive natural', null]>;
3058
3058
  };
3059
3059
  }
@@ -3065,7 +3065,7 @@ export declare namespace Number_Type {
3065
3065
  ] | readonly [
3066
3066
  'exact',
3067
3067
  {
3068
- readonly 'decimal separator offset': _pt.Optional_Value<number>;
3068
+ readonly 'decimal separator offset': _et.Optional_Value<number>;
3069
3069
  readonly 'type': _i_core._T_State_Group<null, readonly ['integer', null] | readonly ['natural', null] | readonly ['positive natural', null]>;
3070
3070
  }
3071
3071
  ];
@@ -3078,7 +3078,7 @@ export declare namespace Number_Type {
3078
3078
  ] | readonly [
3079
3079
  'exact',
3080
3080
  {
3081
- readonly 'decimal separator offset': _pt.Optional_Value<number>;
3081
+ readonly 'decimal separator offset': _et.Optional_Value<number>;
3082
3082
  readonly 'type': _i_core._T_State_Group<null, readonly ['integer', null] | readonly ['natural', null] | readonly ['positive natural', null]>;
3083
3083
  }
3084
3084
  ]>;
@@ -3650,18 +3650,18 @@ export declare namespace Type_Node {
3650
3650
  namespace description {
3651
3651
  type O = string;
3652
3652
  }
3653
- type description = _pt.Optional_Value<string>;
3653
+ type description = _et.Optional_Value<string>;
3654
3654
  namespace node {
3655
3655
  }
3656
3656
  type node = _T_Type_Node;
3657
3657
  }
3658
3658
  type D = {
3659
- readonly 'description': _pt.Optional_Value<string>;
3659
+ readonly 'description': _et.Optional_Value<string>;
3660
3660
  readonly 'node': _T_Type_Node;
3661
3661
  };
3662
3662
  }
3663
3663
  type state_group = _i_core._T_Dictionary<null, {
3664
- readonly 'description': _pt.Optional_Value<string>;
3664
+ readonly 'description': _et.Optional_Value<string>;
3665
3665
  readonly 'node': _T_Type_Node;
3666
3666
  }>;
3667
3667
  namespace text {
@@ -3712,7 +3712,7 @@ export declare namespace Type_Node {
3712
3712
  ] | readonly [
3713
3713
  'state group',
3714
3714
  _i_core._T_Dictionary<null, {
3715
- readonly 'description': _pt.Optional_Value<string>;
3715
+ readonly 'description': _et.Optional_Value<string>;
3716
3716
  readonly 'node': _T_Type_Node;
3717
3717
  }>
3718
3718
  ] | readonly [