pareto 0.76.67 → 0.77.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (678) hide show
  1. package/dist/bin/{compile.js → compile_temp_schemas.js} +3 -3
  2. package/dist/bin/seal.js +2 -2
  3. package/dist/bin/serialize_schemas.js +2 -2
  4. package/dist/bin/validate.js +2 -2
  5. package/dist/exceptional/deserializers/load_schema.d.ts +5 -5
  6. package/dist/exceptional/deserializers/load_schema.js +11 -10
  7. package/dist/{operations → implementation/algorithms/operations}/impure/tbd/path.d.ts +1 -1
  8. package/dist/implementation/algorithms/operations/impure/tbd/path.js +16 -0
  9. package/dist/implementation/algorithms/procedures/unguaranteed/compile_temp_schemas.js +152 -0
  10. package/dist/{procedures → implementation/algorithms/procedures}/unguaranteed/seal.js +2 -2
  11. package/dist/implementation/algorithms/procedures/unguaranteed/serialize_schemas.js +62 -0
  12. package/dist/{procedures → implementation/algorithms/procedures}/unguaranteed/validate.js +4 -4
  13. package/dist/{queries → implementation/algorithms/queries}/unguaranteed/load_pareto_document.d.ts +2 -2
  14. package/dist/implementation/algorithms/queries/unguaranteed/load_pareto_document.js +75 -0
  15. package/dist/{queries → implementation/algorithms/queries}/unguaranteed/load_pareto_file.d.ts +1 -1
  16. package/dist/{queries → implementation/algorithms/queries}/unguaranteed/load_pareto_file.js +4 -4
  17. package/dist/implementation/algorithms/transformations/module/exupery_implementation.d.ts +4 -0
  18. package/dist/{transformations → implementation/algorithms/transformations}/module/exupery_implementation.js +1 -1
  19. package/dist/implementation/algorithms/transformations/module/exupery_interface.d.ts +5 -0
  20. package/dist/{transformations → implementation/algorithms/transformations}/module/exupery_interface.js +6 -6
  21. package/dist/implementation/algorithms/transformations/module/temp_typescript_implementation.d.ts +3 -0
  22. package/dist/implementation/algorithms/transformations/module/temp_typescript_implementation.js +45 -0
  23. package/dist/implementation/algorithms/transformations/module/temp_typescript_interface.d.ts +3 -0
  24. package/dist/implementation/algorithms/transformations/module/temp_typescript_interface.js +43 -0
  25. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/deserialize.d.ts +8 -0
  26. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/deserialize.js +52 -0
  27. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_implementation/main.d.ts +2 -2
  28. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/main.js +92 -0
  29. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_implementation/marshall.d.ts +3 -3
  30. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/marshall.js +142 -0
  31. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/migrate_boilerplate.d.ts +14 -0
  32. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/migrate_boilerplate.js +105 -0
  33. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_implementation/resolve.d.ts +3 -3
  34. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/resolve.js +300 -0
  35. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/serialize.d.ts +9 -0
  36. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/serialize.js +53 -0
  37. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_implementation/unmarshall.d.ts +3 -3
  38. package/dist/implementation/algorithms/transformations/schema/exupery_implementation/unmarshall.js +158 -0
  39. package/dist/implementation/algorithms/transformations/schema/exupery_interface/deserialize.d.ts +6 -0
  40. package/dist/implementation/algorithms/transformations/schema/exupery_interface/deserialize.js +39 -0
  41. package/dist/implementation/algorithms/transformations/schema/exupery_interface/dummy_resolve.d.ts +3 -0
  42. package/dist/implementation/algorithms/transformations/schema/exupery_interface/dummy_resolve.js +13 -0
  43. package/dist/implementation/algorithms/transformations/schema/exupery_interface/main.d.ts +6 -0
  44. package/dist/implementation/algorithms/transformations/schema/exupery_interface/main.js +116 -0
  45. package/dist/implementation/algorithms/transformations/schema/exupery_interface/marshall.d.ts +6 -0
  46. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_interface/marshall.js +1 -1
  47. package/dist/implementation/algorithms/transformations/schema/exupery_interface/migrate_boilerplate.d.ts +7 -0
  48. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_interface/migrate_boilerplate.js +1 -1
  49. package/dist/implementation/algorithms/transformations/schema/exupery_interface/resolve.d.ts +12 -0
  50. package/dist/implementation/algorithms/transformations/schema/exupery_interface/resolve.js +110 -0
  51. package/dist/implementation/algorithms/transformations/schema/exupery_interface/serialize.d.ts +6 -0
  52. package/dist/implementation/algorithms/transformations/schema/exupery_interface/serialize.js +39 -0
  53. package/dist/implementation/algorithms/transformations/schema/exupery_interface/types.d.ts +12 -0
  54. package/dist/implementation/algorithms/transformations/schema/exupery_interface/types.js +192 -0
  55. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_interface/unmarshall.d.ts +2 -2
  56. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_interface/unmarshall.js +1 -1
  57. package/dist/implementation/algorithms/transformations/schema/exupery_interface/value_deserializers.d.ts +6 -0
  58. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_interface/value_deserializers.js +1 -1
  59. package/dist/implementation/algorithms/transformations/schema/exupery_interface/value_serializers.d.ts +6 -0
  60. package/dist/{transformations → implementation/algorithms/transformations}/schema/exupery_interface/value_serializers.js +1 -1
  61. package/dist/implementation/algorithms/transformations/temp/astn_schema.d.ts +10 -0
  62. package/dist/implementation/algorithms/transformations/temp/astn_schema.js +140 -0
  63. package/dist/{transformations → implementation/algorithms/transformations}/temp/unmarshall_astn_ast.d.ts +4 -4
  64. package/dist/{transformations → implementation/algorithms/transformations}/temp/unmarshall_astn_ast.js +6 -23
  65. package/dist/{transformations → implementation/algorithms/transformations}/unmarshall_errors/fountain_pen.d.ts +4 -4
  66. package/dist/implementation/algorithms/transformations/unmarshall_errors/fountain_pen.js +86 -0
  67. package/dist/implementation/algorithms/transformations/unmarshall_result/astn_authoring_target.d.ts +3 -0
  68. package/dist/{transformations → implementation/algorithms/transformations}/unmarshall_result/astn_authoring_target.js +1 -1
  69. package/dist/implementation/algorithms/transformations/unmarshall_result/unmarshall_errors.d.ts +8 -0
  70. package/dist/implementation/algorithms/transformations/unmarshall_result/unmarshall_errors.js +344 -0
  71. package/dist/implementation/generated/pareto/generic/parse/ast.d.ts +10 -0
  72. package/dist/implementation/generated/pareto/generic/parse/ast.js +245 -0
  73. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.d.ts +13 -0
  74. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.js +50 -0
  75. package/dist/implementation/generated/pareto/generic/parse/parse.d.ts +6 -0
  76. package/dist/implementation/generated/pareto/generic/parse/parse.js +65 -0
  77. package/dist/implementation/generated/pareto/generic/parse/string_iterator.d.ts +41 -0
  78. package/dist/implementation/generated/pareto/generic/parse/string_iterator.js +113 -0
  79. package/dist/implementation/generated/pareto/generic/parse/token.d.ts +9 -0
  80. package/dist/implementation/generated/pareto/generic/parse/token.js +519 -0
  81. package/dist/{generated/implementation → implementation/generated/pareto}/generic/resolve.d.ts +3 -3
  82. package/dist/implementation/generated/pareto/generic/resolve.js +276 -0
  83. package/dist/implementation/generated/pareto/generic/serialize.d.ts +4 -0
  84. package/dist/implementation/generated/pareto/generic/serialize.js +93 -0
  85. package/dist/implementation/generated/pareto/generic/unmarshall.d.ts +42 -0
  86. package/dist/implementation/generated/pareto/generic/unmarshall.js +247 -0
  87. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/astn_schema/marshall.d.ts +1 -1
  88. package/dist/implementation/generated/pareto/schemas/astn_schema/marshall.js +232 -0
  89. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/astn_schema/resolve.d.ts +1 -1
  90. package/dist/implementation/generated/pareto/schemas/astn_schema/resolve.js +446 -0
  91. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/astn_schema/unmarshall.d.ts +1 -1
  92. package/dist/implementation/generated/pareto/schemas/astn_schema/unmarshall.js +206 -0
  93. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/module/marshall.d.ts +1 -1
  94. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/module/marshall.js +1 -1
  95. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/module/resolve.d.ts +1 -1
  96. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/module/resolve.js +1 -1
  97. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/module/unmarshall.d.ts +1 -1
  98. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/module/unmarshall.js +1 -1
  99. package/dist/{generated/implementation/schemas/ast → implementation/generated/pareto/schemas/parse_tree}/marshall.d.ts +1 -1
  100. package/dist/{generated/implementation/schemas/ast → implementation/generated/pareto/schemas/parse_tree}/marshall.js +1 -1
  101. package/dist/{generated/implementation/schemas/ast → implementation/generated/pareto/schemas/parse_tree}/unmarshall.d.ts +1 -1
  102. package/dist/{generated/implementation/schemas/ast → implementation/generated/pareto/schemas/parse_tree}/unmarshall.js +1 -1
  103. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/schema/marshall.d.ts +1 -1
  104. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/schema/marshall.js +1 -1
  105. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/schema/resolve.d.ts +1 -1
  106. package/dist/implementation/generated/pareto/schemas/schema/resolve.js +2025 -0
  107. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/schema/unmarshall.d.ts +1 -1
  108. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/schema/unmarshall.js +1 -1
  109. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/token/marshall.d.ts +1 -1
  110. package/dist/implementation/generated/pareto/schemas/token/marshall.js +230 -0
  111. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/token/unmarshall.d.ts +1 -1
  112. package/dist/implementation/generated/pareto/schemas/token/unmarshall.js +218 -0
  113. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/unmarshall_errors/marshall.d.ts +1 -1
  114. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/unmarshall_errors/marshall.js +1 -1
  115. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/unmarshall_errors/unmarshall.d.ts +1 -1
  116. package/dist/{generated/implementation → implementation/generated/pareto}/schemas/unmarshall_errors/unmarshall.js +1 -1
  117. package/dist/implementation/generated/pareto/schemas/unmarshall_result/marshall.js +3 -0
  118. package/dist/implementation/generated/pareto/schemas/unmarshall_result/unmarshall.js +3 -0
  119. package/dist/interface/algorithms/operations/impure/tbd/path.d.ts +1 -0
  120. package/dist/interface/algorithms/operations/impure/tbd/path.js +5 -0
  121. package/dist/interface/algorithms/procedures/unguaranteed/compile.d.ts +1 -0
  122. package/dist/interface/algorithms/procedures/unguaranteed/compile.js +5 -0
  123. package/dist/interface/algorithms/procedures/unguaranteed/seal.d.ts +1 -0
  124. package/dist/interface/algorithms/procedures/unguaranteed/seal.js +5 -0
  125. package/dist/interface/algorithms/procedures/unguaranteed/serialize_schemas.d.ts +1 -0
  126. package/dist/interface/algorithms/procedures/unguaranteed/serialize_schemas.js +5 -0
  127. package/dist/interface/algorithms/procedures/unguaranteed/validate.d.ts +1 -0
  128. package/dist/interface/algorithms/procedures/unguaranteed/validate.js +5 -0
  129. package/dist/interface/algorithms/queries/unguaranteed/load_pareto_document.d.ts +1 -0
  130. package/dist/interface/algorithms/queries/unguaranteed/load_pareto_document.js +5 -0
  131. package/dist/interface/algorithms/queries/unguaranteed/load_pareto_file.d.ts +1 -0
  132. package/dist/interface/algorithms/queries/unguaranteed/load_pareto_file.js +5 -0
  133. package/dist/interface/algorithms/transformations/module/exupery_implementation.d.ts +1 -0
  134. package/dist/interface/algorithms/transformations/module/exupery_implementation.js +5 -0
  135. package/dist/interface/algorithms/transformations/module/exupery_interface.d.ts +1 -0
  136. package/dist/interface/algorithms/transformations/module/exupery_interface.js +5 -0
  137. package/dist/interface/algorithms/transformations/module/temp_typescript.d.ts +1 -0
  138. package/dist/interface/algorithms/transformations/module/temp_typescript.js +5 -0
  139. package/dist/interface/algorithms/transformations/schema/exupery_implementation/main.d.ts +1 -0
  140. package/dist/interface/algorithms/transformations/schema/exupery_implementation/main.js +5 -0
  141. package/dist/interface/algorithms/transformations/schema/exupery_implementation/marshall.d.ts +1 -0
  142. package/dist/interface/algorithms/transformations/schema/exupery_implementation/marshall.js +5 -0
  143. package/dist/interface/algorithms/transformations/schema/exupery_implementation/migrate_boilerplate.d.ts +1 -0
  144. package/dist/interface/algorithms/transformations/schema/exupery_implementation/migrate_boilerplate.js +5 -0
  145. package/dist/interface/algorithms/transformations/schema/exupery_implementation/resolve.d.ts +1 -0
  146. package/dist/interface/algorithms/transformations/schema/exupery_implementation/resolve.js +5 -0
  147. package/dist/interface/algorithms/transformations/schema/exupery_implementation/unmarshall.d.ts +1 -0
  148. package/dist/interface/algorithms/transformations/schema/exupery_implementation/unmarshall.js +5 -0
  149. package/dist/interface/algorithms/transformations/schema/exupery_interface/dummy_resolve.d.ts +1 -0
  150. package/dist/interface/algorithms/transformations/schema/exupery_interface/dummy_resolve.js +5 -0
  151. package/dist/interface/algorithms/transformations/schema/exupery_interface/main.d.ts +1 -0
  152. package/dist/interface/algorithms/transformations/schema/exupery_interface/main.js +5 -0
  153. package/dist/interface/algorithms/transformations/schema/exupery_interface/marshall.d.ts +1 -0
  154. package/dist/interface/algorithms/transformations/schema/exupery_interface/marshall.js +5 -0
  155. package/dist/interface/algorithms/transformations/schema/exupery_interface/migrate_boilerplate.d.ts +1 -0
  156. package/dist/interface/algorithms/transformations/schema/exupery_interface/migrate_boilerplate.js +5 -0
  157. package/dist/interface/algorithms/transformations/schema/exupery_interface/resolve.d.ts +1 -0
  158. package/dist/interface/algorithms/transformations/schema/exupery_interface/resolve.js +5 -0
  159. package/dist/interface/algorithms/transformations/schema/exupery_interface/types.d.ts +1 -0
  160. package/dist/interface/algorithms/transformations/schema/exupery_interface/types.js +5 -0
  161. package/dist/interface/algorithms/transformations/schema/exupery_interface/unmarshall.d.ts +1 -0
  162. package/dist/interface/algorithms/transformations/schema/exupery_interface/unmarshall.js +5 -0
  163. package/dist/interface/algorithms/transformations/schema/exupery_interface/value_deserializers.d.ts +1 -0
  164. package/dist/interface/algorithms/transformations/schema/exupery_interface/value_deserializers.js +5 -0
  165. package/dist/interface/algorithms/transformations/schema/exupery_interface/value_serializers.d.ts +1 -0
  166. package/dist/interface/algorithms/transformations/schema/exupery_interface/value_serializers.js +5 -0
  167. package/dist/interface/algorithms/transformations/temp/astn_schema.d.ts +1 -0
  168. package/dist/interface/algorithms/transformations/temp/astn_schema.js +5 -0
  169. package/dist/interface/algorithms/transformations/temp/unmarshall_astn_ast.d.ts +1 -0
  170. package/dist/interface/algorithms/transformations/temp/unmarshall_astn_ast.js +5 -0
  171. package/dist/interface/algorithms/transformations/unmarshall_errors/fountain_pen.d.ts +1 -0
  172. package/dist/interface/algorithms/transformations/unmarshall_errors/fountain_pen.js +5 -0
  173. package/dist/interface/algorithms/transformations/unmarshall_result/astn_authoring_target.d.ts +1 -0
  174. package/dist/interface/algorithms/transformations/unmarshall_result/astn_authoring_target.js +5 -0
  175. package/dist/interface/algorithms/transformations/unmarshall_result/unmarshall_errors.d.ts +1 -0
  176. package/dist/interface/algorithms/transformations/unmarshall_result/unmarshall_errors.js +5 -0
  177. package/dist/{generated/interface → interface/generated/pareto}/core/astn_source.d.ts +15 -0
  178. package/dist/{generated/interface → interface/generated/pareto}/core/astn_source.js +1 -1
  179. package/dist/{generated/interface → interface/generated/pareto}/core/astn_target.js +1 -1
  180. package/dist/interface/generated/pareto/core/parse_result.d.ts +25 -0
  181. package/dist/interface/generated/pareto/core/parse_result.js +3 -0
  182. package/dist/{generated/interface → interface/generated/pareto}/core/resolve.js +1 -1
  183. package/dist/{generated/interface → interface/generated/pareto}/core/resolved.js +1 -1
  184. package/dist/interface/generated/pareto/core/token.d.ts +49 -0
  185. package/dist/interface/generated/pareto/core/token.js +3 -0
  186. package/dist/{generated/interface → interface/generated/pareto}/core/unconstrained.js +1 -1
  187. package/dist/{generated/interface → interface/generated/pareto}/core/unresolved.js +1 -1
  188. package/dist/{generated/interface/schemas/schema → interface/generated/pareto/schemas/astn_schema}/data_types/resolve.js +1 -1
  189. package/dist/{generated/interface/schemas/schema → interface/generated/pareto/schemas/astn_schema}/data_types/source.js +1 -1
  190. package/dist/{generated/interface/schemas/schema → interface/generated/pareto/schemas/astn_schema}/data_types/target.js +1 -1
  191. package/dist/{generated/implementation/schemas/unmarshall_result → interface/generated/pareto/schemas/astn_schema}/marshall.js +1 -1
  192. package/dist/{generated/interface/schemas/schema → interface/generated/pareto/schemas/astn_schema}/migrate_boilerplate.js +1 -1
  193. package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/astn_schema}/unmarshall.js +1 -1
  194. package/dist/interface/generated/pareto/schemas/astn_schema/value_deserializers.js +3 -0
  195. package/dist/{generated/interface/schemas/schema → interface/generated/pareto/schemas/astn_schema}/value_serializers.js +1 -1
  196. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/module}/data_types/resolve.js +1 -1
  197. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/module}/data_types/source.js +1 -1
  198. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/module}/data_types/target.js +1 -1
  199. package/dist/{generated/interface/schemas/schema → interface/generated/pareto/schemas/module}/marshall.js +1 -1
  200. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/module}/migrate_boilerplate.js +1 -1
  201. package/dist/{generated/interface/schemas/schema → interface/generated/pareto/schemas/module}/unmarshall.js +1 -1
  202. package/dist/{generated/interface → interface/generated/pareto}/schemas/module/value_deserializers.js +1 -1
  203. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/module}/value_serializers.js +1 -1
  204. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/parse_tree}/data_types/resolve.js +1 -1
  205. package/dist/interface/generated/pareto/schemas/parse_tree/data_types/source.js +3 -0
  206. package/dist/interface/generated/pareto/schemas/parse_tree/data_types/target.js +3 -0
  207. package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/parse_tree}/marshall.js +1 -1
  208. package/dist/interface/generated/pareto/schemas/parse_tree/migrate_boilerplate.js +3 -0
  209. package/dist/interface/generated/pareto/schemas/parse_tree/unmarshall.js +3 -0
  210. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/parse_tree}/value_deserializers.js +1 -1
  211. package/dist/interface/generated/pareto/schemas/parse_tree/value_serializers.js +3 -0
  212. package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/schema}/data_types/resolve.js +1 -1
  213. package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/schema}/data_types/source.js +1 -1
  214. package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/schema}/data_types/target.js +1 -1
  215. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/schema}/marshall.js +1 -1
  216. package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/schema}/migrate_boilerplate.js +1 -1
  217. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/schema}/unmarshall.js +1 -1
  218. package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/value_deserializers.js +1 -1
  219. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/schema}/value_serializers.js +1 -1
  220. package/dist/{generated/interface → interface/generated/pareto}/schemas/token/data_types/resolve.js +1 -1
  221. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/token}/data_types/source.js +1 -1
  222. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/token}/data_types/target.js +1 -1
  223. package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/token}/marshall.js +1 -1
  224. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/token}/migrate_boilerplate.js +1 -1
  225. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/token}/unmarshall.js +1 -1
  226. package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/token}/value_deserializers.js +1 -1
  227. package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/token}/value_serializers.js +1 -1
  228. package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/data_types/resolve.js +1 -1
  229. package/dist/interface/generated/pareto/schemas/unmarshall_errors/data_types/source.js +3 -0
  230. package/dist/interface/generated/pareto/schemas/unmarshall_errors/data_types/target.js +3 -0
  231. package/dist/interface/generated/pareto/schemas/unmarshall_errors/marshall.js +3 -0
  232. package/dist/interface/generated/pareto/schemas/unmarshall_errors/migrate_boilerplate.js +3 -0
  233. package/dist/{generated/implementation/schemas/unmarshall_result → interface/generated/pareto/schemas/unmarshall_errors}/unmarshall.js +1 -1
  234. package/dist/interface/generated/pareto/schemas/unmarshall_errors/value_deserializers.js +3 -0
  235. package/dist/interface/generated/pareto/schemas/unmarshall_errors/value_serializers.js +3 -0
  236. package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/data_types/resolve.js +1 -1
  237. package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/data_types/source.js +1 -1
  238. package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/data_types/target.js +1 -1
  239. package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/marshall.js +1 -1
  240. package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/migrate_boilerplate.js +1 -1
  241. package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/unmarshall.js +1 -1
  242. package/dist/interface/generated/pareto/schemas/unmarshall_result/value_deserializers.js +3 -0
  243. package/dist/interface/generated/pareto/schemas/unmarshall_result/value_serializers.js +3 -0
  244. package/dist/shorthands/module.d.ts +2 -2
  245. package/dist/shorthands/schema.d.ts +1 -1
  246. package/dist/temp/resolvers/module.d.ts +1 -1
  247. package/dist/temp/resolvers/module.js +31 -31
  248. package/dist/temp/resolvers/schema.d.ts +1 -1
  249. package/dist/temp/resolvers/schema.js +66 -66
  250. package/dist/temp/temp_unmashall_result_types.d.ts +3 -3
  251. package/dist/temp/temporary_schemas/accounting_ruwe_data/module.astn.d.ts +1 -1
  252. package/dist/temp/temporary_schemas/accounting_ruwe_data/operations.astn.d.ts +1 -1
  253. package/dist/temp/temporary_schemas/accounting_ruwe_data/schema_tree.astn.d.ts +1 -1
  254. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/alan_light_oldstyle/$.globals.astn.d.ts +1 -1
  255. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/alan_light_oldstyle/$.module.astn.d.ts +1 -1
  256. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/alan_light_oldstyle/$.types.astn.d.ts +1 -1
  257. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/builder_configuration/$.globals.astn.d.ts +1 -1
  258. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/builder_configuration/$.module.astn.d.ts +1 -1
  259. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/builder_configuration/$.types.astn.d.ts +1 -1
  260. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/csv/$.globals.astn.d.ts +1 -1
  261. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/csv/$.module.astn.d.ts +1 -1
  262. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/csv/$.types.astn.d.ts +1 -1
  263. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/html/$.globals.astn.d.ts +1 -1
  264. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/html/$.module.astn.d.ts +1 -1
  265. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/html/$.types.astn.d.ts +1 -1
  266. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/json_schema/$.globals.astn.d.ts +1 -1
  267. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/json_schema/$.module.astn.d.ts +1 -1
  268. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/json_schema/$.types.astn.d.ts +1 -1
  269. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/legacy_schema/$.globals.astn.d.ts +1 -1
  270. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/legacy_schema/$.module.astn.d.ts +1 -1
  271. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/legacy_schema/$.types.astn.d.ts +1 -1
  272. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/railroad_diagram/$.globals.astn.d.ts +1 -1
  273. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/railroad_diagram/$.module.astn.d.ts +1 -1
  274. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/railroad_diagram/$.types.astn.d.ts +1 -1
  275. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/regular_expression/$.globals.astn.d.ts +1 -1
  276. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/regular_expression/$.module.astn.d.ts +1 -1
  277. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/regular_expression/$.types.astn.d.ts +1 -1
  278. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/semantic_versioning/$.globals.astn.d.ts +1 -1
  279. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/semantic_versioning/$.module.astn.d.ts +1 -1
  280. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/semantic_versioning/$.types.astn.d.ts +1 -1
  281. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/xml/parse_result/$.globals.astn.d.ts +1 -1
  282. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/xml/parse_result/$.module.astn.d.ts +1 -1
  283. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/xml/parse_result/$.types.astn.d.ts +1 -1
  284. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/xml/simple/$.globals.astn.d.ts +1 -1
  285. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/xml/simple/$.module.astn.d.ts +1 -1
  286. package/dist/temp/temporary_schemas/accounting_ruwe_data/schemas/xml/simple/$.types.astn.d.ts +1 -1
  287. package/dist/temp/temporary_schemas/all.d.ts +1 -1
  288. package/dist/temp/temporary_schemas/all.js +19 -17
  289. package/dist/temp/temporary_schemas/antlr/module.astn.d.ts +1 -1
  290. package/dist/temp/temporary_schemas/antlr/operations.astn.d.ts +1 -1
  291. package/dist/temp/temporary_schemas/antlr/schema_tree.astn.d.ts +1 -1
  292. package/dist/temp/temporary_schemas/antlr/schemas/ast/$.globals.astn.d.ts +1 -1
  293. package/dist/temp/temporary_schemas/antlr/schemas/ast/$.module.astn.d.ts +1 -1
  294. package/dist/temp/temporary_schemas/antlr/schemas/ast/$.types.astn.d.ts +1 -1
  295. package/dist/temp/temporary_schemas/antlr/schemas/atn/$.globals.astn.d.ts +1 -1
  296. package/dist/temp/temporary_schemas/antlr/schemas/atn/$.module.astn.d.ts +1 -1
  297. package/dist/temp/temporary_schemas/antlr/schemas/atn/$.types.astn.d.ts +1 -1
  298. package/dist/temp/temporary_schemas/antlr/schemas/dfa/$.globals.astn.d.ts +1 -1
  299. package/dist/temp/temporary_schemas/antlr/schemas/dfa/$.module.astn.d.ts +1 -1
  300. package/dist/temp/temporary_schemas/antlr/schemas/dfa/$.types.astn.d.ts +1 -1
  301. package/dist/temp/temporary_schemas/antlr/schemas/lookahead/$.globals.astn.d.ts +1 -1
  302. package/dist/temp/temporary_schemas/antlr/schemas/lookahead/$.module.astn.d.ts +1 -1
  303. package/dist/temp/temporary_schemas/antlr/schemas/lookahead/$.types.astn.d.ts +1 -1
  304. package/dist/temp/temporary_schemas/astn/module.astn.d.ts +1 -1
  305. package/dist/temp/temporary_schemas/astn/operations.astn.d.ts +1 -1
  306. package/dist/temp/temporary_schemas/astn/schema_tree.astn.d.ts +1 -1
  307. package/dist/temp/temporary_schemas/astn/schema_tree.astn.js +5 -9
  308. package/dist/temp/temporary_schemas/astn/schemas/astn_schema/$.globals.astn.d.ts +1 -1
  309. package/dist/temp/temporary_schemas/astn/schemas/astn_schema/$.module.astn.d.ts +1 -1
  310. package/dist/temp/temporary_schemas/astn/schemas/astn_schema/$.resolvers.astn.d.ts +1 -1
  311. package/dist/temp/temporary_schemas/astn/schemas/astn_schema/$.signatures.astn.d.ts +1 -1
  312. package/dist/temp/temporary_schemas/astn/schemas/astn_schema/$.types.astn.d.ts +1 -1
  313. package/dist/temp/temporary_schemas/astn/schemas/authoring_parse_result/$.globals.astn.d.ts +1 -1
  314. package/dist/temp/temporary_schemas/astn/schemas/authoring_parse_result/$.module.astn.d.ts +1 -1
  315. package/dist/temp/temporary_schemas/astn/schemas/authoring_parse_result/$.types.astn.d.ts +1 -1
  316. package/dist/temp/temporary_schemas/astn/schemas/authoring_parse_tree/$.globals.astn.d.ts +1 -1
  317. package/dist/temp/temporary_schemas/astn/schemas/authoring_parse_tree/$.module.astn.d.ts +1 -1
  318. package/dist/temp/temporary_schemas/astn/schemas/authoring_parse_tree/$.types.astn.d.ts +1 -1
  319. package/dist/temp/temporary_schemas/astn/schemas/authoring_target/$.globals.astn.d.ts +1 -1
  320. package/dist/temp/temporary_schemas/astn/schemas/authoring_target/$.module.astn.d.ts +1 -1
  321. package/dist/temp/temporary_schemas/astn/schemas/authoring_target/$.types.astn.d.ts +1 -1
  322. package/dist/temp/temporary_schemas/astn/schemas/ide/$.globals.astn.d.ts +1 -1
  323. package/dist/temp/temporary_schemas/astn/schemas/ide/$.module.astn.d.ts +1 -1
  324. package/dist/temp/temporary_schemas/astn/schemas/ide/$.types.astn.d.ts +1 -1
  325. package/dist/temp/temporary_schemas/astn/schemas/sealed_target/$.globals.astn.d.ts +1 -1
  326. package/dist/temp/temporary_schemas/astn/schemas/sealed_target/$.module.astn.d.ts +1 -1
  327. package/dist/temp/temporary_schemas/astn/schemas/sealed_target/$.types.astn.d.ts +1 -1
  328. package/dist/temp/temporary_schemas/astn/schemas/token/$.globals.astn.d.ts +1 -1
  329. package/dist/temp/temporary_schemas/astn/schemas/token/$.module.astn.d.ts +1 -1
  330. package/dist/temp/temporary_schemas/astn/schemas/token/$.types.astn.d.ts +1 -1
  331. package/dist/temp/temporary_schemas/astn-to-xml/module.astn.d.ts +1 -1
  332. package/dist/temp/temporary_schemas/astn-to-xml/operations.astn.d.ts +1 -1
  333. package/dist/temp/temporary_schemas/astn-to-xml/schema_tree.astn.d.ts +1 -1
  334. package/dist/temp/temporary_schemas/astn-to-xml/schemas/xml/$.globals.astn.d.ts +1 -1
  335. package/dist/temp/temporary_schemas/astn-to-xml/schemas/xml/$.module.astn.d.ts +1 -1
  336. package/dist/temp/temporary_schemas/astn-to-xml/schemas/xml/$.types.astn.d.ts +1 -1
  337. package/dist/temp/temporary_schemas/exupery/module.astn.d.ts +1 -1
  338. package/dist/temp/temporary_schemas/exupery/operations.astn.d.ts +1 -1
  339. package/dist/temp/temporary_schemas/exupery/schema_tree.astn.d.ts +1 -1
  340. package/dist/temp/temporary_schemas/exupery/schemas/implementation/$.globals.astn.d.ts +1 -1
  341. package/dist/temp/temporary_schemas/exupery/schemas/implementation/$.module.astn.d.ts +1 -1
  342. package/dist/temp/temporary_schemas/exupery/schemas/implementation/$.resolvers.astn.d.ts +1 -1
  343. package/dist/temp/temporary_schemas/exupery/schemas/implementation/$.signatures.astn.d.ts +1 -1
  344. package/dist/temp/temporary_schemas/exupery/schemas/implementation/$.types.astn.d.ts +1 -1
  345. package/dist/temp/temporary_schemas/exupery/schemas/interface/$.globals.astn.d.ts +1 -1
  346. package/dist/temp/temporary_schemas/exupery/schemas/interface/$.module.astn.d.ts +1 -1
  347. package/dist/temp/temporary_schemas/exupery/schemas/interface/$.resolvers.astn.d.ts +1 -1
  348. package/dist/temp/temporary_schemas/exupery/schemas/interface/$.signatures.astn.d.ts +1 -1
  349. package/dist/temp/temporary_schemas/exupery/schemas/interface/$.types.astn.d.ts +1 -1
  350. package/dist/temp/temporary_schemas/exupery/schemas/typescript_light/$.globals.astn.d.ts +1 -1
  351. package/dist/temp/temporary_schemas/exupery/schemas/typescript_light/$.module.astn.d.ts +1 -1
  352. package/dist/temp/temporary_schemas/exupery/schemas/typescript_light/$.types.astn.d.ts +1 -1
  353. package/dist/temp/temporary_schemas/exupery/schemas/typescript_light/$.types.astn.js +8 -8
  354. package/dist/temp/temporary_schemas/exupery-resources/module.astn.d.ts +1 -1
  355. package/dist/temp/temporary_schemas/exupery-resources/operations.astn.d.ts +1 -1
  356. package/dist/temp/temporary_schemas/exupery-resources/schema_tree.astn.d.ts +1 -1
  357. package/dist/temp/temporary_schemas/exupery-resources/schema_tree.astn.js +15 -13
  358. package/dist/temp/temporary_schemas/exupery-resources/schemas/copy/$.globals.astn.d.ts +1 -1
  359. package/dist/temp/temporary_schemas/exupery-resources/schemas/copy/$.module.astn.d.ts +1 -1
  360. package/dist/temp/temporary_schemas/exupery-resources/schemas/copy/$.types.astn.d.ts +1 -1
  361. package/dist/temp/temporary_schemas/exupery-resources/schemas/copy/$.types.astn.js +2 -2
  362. package/dist/temp/temporary_schemas/{pareto-lionweb/schemas/m3_normalized → exupery-resources/schemas/execute_procedure_executable}/$.globals.astn.d.ts +1 -1
  363. package/dist/temp/temporary_schemas/{astn/schemas/sealed_parse_result → exupery-resources/schemas/execute_procedure_executable}/$.globals.astn.js +1 -1
  364. package/dist/temp/temporary_schemas/{astn/schemas/sealed_parse_result → exupery-resources/schemas/execute_procedure_executable}/$.module.astn.d.ts +1 -1
  365. package/dist/temp/temporary_schemas/exupery-resources/schemas/{run_query_executable_and_catch → execute_procedure_executable}/$.module.astn.js +1 -1
  366. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_procedure_executable/$.types.astn.d.ts +3 -0
  367. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_procedure_executable/$.types.astn.js +20 -0
  368. package/dist/temp/temporary_schemas/exupery-resources/schemas/{run_query_executable → execute_query_executable}/$.globals.astn.d.ts +1 -1
  369. package/dist/temp/temporary_schemas/{astn/schemas/sealed_ast → exupery-resources/schemas/execute_query_executable}/$.globals.astn.js +1 -1
  370. package/dist/temp/temporary_schemas/{astn/schemas/sealed_ast → exupery-resources/schemas/execute_query_executable}/$.module.astn.d.ts +1 -1
  371. package/dist/temp/temporary_schemas/{astn/schemas/sealed_ast → exupery-resources/schemas/execute_query_executable}/$.module.astn.js +2 -4
  372. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_query_executable/$.types.astn.d.ts +3 -0
  373. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_query_executable/$.types.astn.js +23 -0
  374. package/dist/temp/temporary_schemas/exupery-resources/schemas/{run_query_executable_and_catch → execute_query_executable_and_catch}/$.globals.astn.d.ts +1 -1
  375. package/dist/temp/temporary_schemas/exupery-resources/schemas/{run_query_executable_and_catch → execute_query_executable_and_catch}/$.globals.astn.js +1 -1
  376. package/dist/temp/temporary_schemas/exupery-resources/schemas/{run_query_executable → execute_query_executable_and_catch}/$.module.astn.d.ts +1 -1
  377. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_query_executable_and_catch/$.module.astn.js +8 -0
  378. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_query_executable_and_catch/$.types.astn.d.ts +3 -0
  379. package/dist/temp/temporary_schemas/exupery-resources/schemas/execute_query_executable_and_catch/$.types.astn.js +26 -0
  380. package/dist/temp/temporary_schemas/exupery-resources/schemas/get_instream_data/$.globals.astn.d.ts +1 -1
  381. package/dist/temp/temporary_schemas/exupery-resources/schemas/get_instream_data/$.module.astn.d.ts +1 -1
  382. package/dist/temp/temporary_schemas/exupery-resources/schemas/get_instream_data/$.types.astn.d.ts +1 -1
  383. package/dist/temp/temporary_schemas/exupery-resources/schemas/log/$.globals.astn.d.ts +1 -1
  384. package/dist/temp/temporary_schemas/exupery-resources/schemas/log/$.module.astn.d.ts +1 -1
  385. package/dist/temp/temporary_schemas/exupery-resources/schemas/log/$.types.astn.d.ts +1 -1
  386. package/dist/temp/temporary_schemas/exupery-resources/schemas/log_error/$.globals.astn.d.ts +1 -1
  387. package/dist/temp/temporary_schemas/exupery-resources/schemas/log_error/$.module.astn.d.ts +1 -1
  388. package/dist/temp/temporary_schemas/exupery-resources/schemas/log_error/$.types.astn.d.ts +1 -1
  389. package/dist/temp/temporary_schemas/exupery-resources/schemas/make_directory/$.globals.astn.d.ts +1 -1
  390. package/dist/temp/temporary_schemas/exupery-resources/schemas/make_directory/$.module.astn.d.ts +1 -1
  391. package/dist/temp/temporary_schemas/exupery-resources/schemas/make_directory/$.types.astn.d.ts +1 -1
  392. package/dist/temp/temporary_schemas/exupery-resources/schemas/make_directory/$.types.astn.js +2 -2
  393. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_directory/$.globals.astn.d.ts +1 -1
  394. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_directory/$.module.astn.d.ts +1 -1
  395. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_directory/$.types.astn.d.ts +1 -1
  396. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_directory/$.types.astn.js +2 -2
  397. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_file/$.globals.astn.d.ts +1 -1
  398. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_file/$.module.astn.d.ts +1 -1
  399. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_file/$.types.astn.d.ts +1 -1
  400. package/dist/temp/temporary_schemas/exupery-resources/schemas/read_file/$.types.astn.js +2 -2
  401. package/dist/temp/temporary_schemas/exupery-resources/schemas/remove/$.globals.astn.d.ts +1 -1
  402. package/dist/temp/temporary_schemas/exupery-resources/schemas/remove/$.module.astn.d.ts +1 -1
  403. package/dist/temp/temporary_schemas/exupery-resources/schemas/remove/$.types.astn.d.ts +1 -1
  404. package/dist/temp/temporary_schemas/exupery-resources/schemas/remove/$.types.astn.js +2 -2
  405. package/dist/temp/temporary_schemas/exupery-resources/schemas/stat/$.globals.astn.d.ts +1 -1
  406. package/dist/temp/temporary_schemas/exupery-resources/schemas/stat/$.module.astn.d.ts +1 -1
  407. package/dist/temp/temporary_schemas/exupery-resources/schemas/stat/$.types.astn.d.ts +1 -1
  408. package/dist/temp/temporary_schemas/exupery-resources/schemas/stat/$.types.astn.js +2 -2
  409. package/dist/temp/temporary_schemas/exupery-resources/schemas/write_file/$.globals.astn.d.ts +1 -1
  410. package/dist/temp/temporary_schemas/exupery-resources/schemas/write_file/$.module.astn.d.ts +1 -1
  411. package/dist/temp/temporary_schemas/exupery-resources/schemas/write_file/$.types.astn.d.ts +1 -1
  412. package/dist/temp/temporary_schemas/exupery-resources/schemas/write_file/$.types.astn.js +2 -2
  413. package/dist/temp/temporary_schemas/git/module.astn.d.ts +1 -1
  414. package/dist/temp/temporary_schemas/git/operations.astn.d.ts +1 -1
  415. package/dist/temp/temporary_schemas/git/schema_tree.astn.d.ts +1 -1
  416. package/dist/temp/temporary_schemas/git/schemas/git/$.globals.astn.d.ts +1 -1
  417. package/dist/temp/temporary_schemas/git/schemas/git/$.module.astn.d.ts +1 -1
  418. package/dist/temp/temporary_schemas/git/schemas/git/$.types.astn.d.ts +1 -1
  419. package/dist/temp/temporary_schemas/json-to-astn/module.astn.d.ts +1 -1
  420. package/dist/temp/temporary_schemas/json-to-astn/operations.astn.d.ts +1 -1
  421. package/dist/temp/temporary_schemas/json-to-astn/schema_tree.astn.d.ts +1 -1
  422. package/dist/temp/temporary_schemas/json-to-astn/schemas/legacy_json_schema/$.globals.astn.d.ts +1 -1
  423. package/dist/temp/temporary_schemas/json-to-astn/schemas/legacy_json_schema/$.module.astn.d.ts +1 -1
  424. package/dist/temp/temporary_schemas/json-to-astn/schemas/legacy_json_schema/$.types.astn.d.ts +1 -1
  425. package/dist/temp/temporary_schemas/pareto/module.astn.d.ts +1 -1
  426. package/dist/temp/temporary_schemas/pareto/operations.astn.d.ts +1 -1
  427. package/dist/temp/temporary_schemas/pareto/schema_tree.astn.d.ts +1 -1
  428. package/dist/temp/temporary_schemas/pareto/schemas/module/$.globals.astn.d.ts +1 -1
  429. package/dist/temp/temporary_schemas/pareto/schemas/module/$.module.astn.d.ts +1 -1
  430. package/dist/temp/temporary_schemas/pareto/schemas/module/$.resolvers.astn.d.ts +1 -1
  431. package/dist/temp/temporary_schemas/pareto/schemas/module/$.signatures.astn.d.ts +1 -1
  432. package/dist/temp/temporary_schemas/pareto/schemas/module/$.types.astn.d.ts +1 -1
  433. package/dist/temp/temporary_schemas/pareto/schemas/schema/$.globals.astn.d.ts +1 -1
  434. package/dist/temp/temporary_schemas/pareto/schemas/schema/$.module.astn.d.ts +1 -1
  435. package/dist/temp/temporary_schemas/pareto/schemas/schema/$.resolvers.astn.d.ts +1 -1
  436. package/dist/temp/temporary_schemas/pareto/schemas/schema/$.signatures.astn.d.ts +1 -1
  437. package/dist/temp/temporary_schemas/pareto/schemas/schema/$.types.astn.d.ts +1 -1
  438. package/dist/temp/temporary_schemas/pareto/schemas/unmarshall_errors/$.globals.astn.d.ts +1 -1
  439. package/dist/temp/temporary_schemas/pareto/schemas/unmarshall_errors/$.module.astn.d.ts +1 -1
  440. package/dist/temp/temporary_schemas/pareto/schemas/unmarshall_errors/$.types.astn.d.ts +1 -1
  441. package/dist/temp/temporary_schemas/pareto/schemas/unmarshall_result/$.globals.astn.d.ts +1 -1
  442. package/dist/temp/temporary_schemas/pareto/schemas/unmarshall_result/$.module.astn.d.ts +1 -1
  443. package/dist/temp/temporary_schemas/pareto/schemas/unmarshall_result/$.types.astn.d.ts +1 -1
  444. package/dist/temp/temporary_schemas/pareto-boekhouding/module.astn.d.ts +1 -1
  445. package/dist/temp/temporary_schemas/pareto-boekhouding/operations.astn.d.ts +1 -1
  446. package/dist/temp/temporary_schemas/pareto-boekhouding/schema_tree.astn.d.ts +1 -1
  447. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding/$.globals.astn.d.ts +1 -1
  448. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding/$.module.astn.d.ts +1 -1
  449. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding/$.resolvers.astn.d.ts +1 -1
  450. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding/$.signatures.astn.d.ts +1 -1
  451. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding/$.types.astn.d.ts +1 -1
  452. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding_oude_model/$.globals.astn.d.ts +1 -1
  453. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding_oude_model/$.module.astn.d.ts +1 -1
  454. package/dist/temp/temporary_schemas/pareto-boekhouding/schemas/boekhouding_oude_model/$.types.astn.d.ts +1 -1
  455. package/dist/temp/temporary_schemas/pareto-fountain-pen/module.astn.d.ts +1 -1
  456. package/dist/temp/temporary_schemas/pareto-fountain-pen/operations.astn.d.ts +1 -1
  457. package/dist/temp/temporary_schemas/pareto-fountain-pen/schema_tree.astn.d.ts +1 -1
  458. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/block/$.globals.astn.d.ts +1 -1
  459. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/block/$.module.astn.d.ts +1 -1
  460. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/block/$.types.astn.d.ts +1 -1
  461. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/block/$.types.astn.js +7 -7
  462. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/lines/$.globals.astn.d.ts +1 -1
  463. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/lines/$.module.astn.d.ts +1 -1
  464. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/lines/$.types.astn.d.ts +1 -1
  465. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/semi_lines/$.globals.astn.d.ts +1 -1
  466. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/semi_lines/$.module.astn.d.ts +1 -1
  467. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/semi_lines/$.types.astn.d.ts +1 -1
  468. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/text/$.globals.astn.d.ts +1 -1
  469. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/text/$.module.astn.d.ts +1 -1
  470. package/dist/temp/temporary_schemas/pareto-fountain-pen/schemas/text/$.types.astn.d.ts +1 -1
  471. package/dist/temp/temporary_schemas/pareto-json/module.astn.d.ts +1 -1
  472. package/dist/temp/temporary_schemas/pareto-json/operations.astn.d.ts +1 -1
  473. package/dist/temp/temporary_schemas/pareto-json/schema_tree.astn.d.ts +1 -1
  474. package/dist/temp/temporary_schemas/pareto-json/schemas/json/$.globals.astn.d.ts +1 -1
  475. package/dist/temp/temporary_schemas/pareto-json/schemas/json/$.module.astn.d.ts +1 -1
  476. package/dist/temp/temporary_schemas/pareto-json/schemas/json/$.types.astn.d.ts +1 -1
  477. package/dist/temp/temporary_schemas/pareto-lionweb/module.astn.d.ts +1 -1
  478. package/dist/temp/temporary_schemas/pareto-lionweb/operations.astn.d.ts +1 -1
  479. package/dist/temp/temporary_schemas/pareto-lionweb/schema_tree.astn.d.ts +1 -1
  480. package/dist/temp/temporary_schemas/pareto-lionweb/schema_tree.astn.js +5 -3
  481. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/lioncore/$.globals.astn.d.ts +1 -1
  482. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/lioncore/$.module.astn.d.ts +1 -1
  483. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/lioncore/$.types.astn.d.ts +1 -1
  484. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/lioncore/$.types.astn.js +13 -9
  485. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_chunk/$.globals.astn.d.ts +3 -0
  486. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/{m3_normalized → serialization_chunk}/$.globals.astn.js +1 -1
  487. package/dist/temp/temporary_schemas/{exupery-resources/schemas/run_query_executable_and_catch → pareto-lionweb/schemas/serialization_chunk}/$.module.astn.d.ts +1 -1
  488. package/dist/temp/temporary_schemas/{exupery-resources/schemas/run_query_executable → pareto-lionweb/schemas/serialization_chunk}/$.module.astn.js +1 -1
  489. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_chunk/$.types.astn.d.ts +3 -0
  490. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_chunk/$.types.astn.js +41 -0
  491. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_tree/$.globals.astn.d.ts +3 -0
  492. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_tree/$.globals.astn.js +10 -0
  493. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_tree/$.module.astn.d.ts +3 -0
  494. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_tree/$.module.astn.js +8 -0
  495. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_tree/$.types.astn.d.ts +3 -0
  496. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/serialization_tree/$.types.astn.js +27 -0
  497. package/dist/temp/temporary_schemas/pareto-static-html/module.astn.d.ts +3 -0
  498. package/dist/temp/temporary_schemas/pareto-static-html/module.astn.js +8 -0
  499. package/dist/temp/temporary_schemas/pareto-static-html/operations.astn.d.ts +3 -0
  500. package/dist/temp/temporary_schemas/pareto-static-html/operations.astn.js +6 -0
  501. package/dist/temp/temporary_schemas/pareto-static-html/schema_tree.astn.d.ts +3 -0
  502. package/dist/temp/temporary_schemas/pareto-static-html/schema_tree.astn.js +9 -0
  503. package/dist/temp/temporary_schemas/pareto-static-html/schemas/html-print/$.globals.astn.d.ts +3 -0
  504. package/dist/temp/temporary_schemas/pareto-static-html/schemas/html-print/$.globals.astn.js +10 -0
  505. package/dist/temp/temporary_schemas/pareto-static-html/schemas/html-print/$.module.astn.d.ts +3 -0
  506. package/dist/temp/temporary_schemas/{pareto-lionweb/schemas/m3_normalized → pareto-static-html/schemas/html-print}/$.module.astn.js +1 -1
  507. package/dist/temp/temporary_schemas/pareto-static-html/schemas/html-print/$.types.astn.d.ts +3 -0
  508. package/dist/temp/temporary_schemas/pareto-static-html/schemas/html-print/$.types.astn.js +81 -0
  509. package/dist/temp/temporary_schemas/pareto-targets/module.astn.d.ts +1 -1
  510. package/dist/temp/temporary_schemas/pareto-targets/operations.astn.d.ts +1 -1
  511. package/dist/temp/temporary_schemas/pareto-targets/schema_tree.astn.d.ts +1 -1
  512. package/dist/temp/temporary_schemas/pareto-targets/schemas/alan_light/$.globals.astn.d.ts +1 -1
  513. package/dist/temp/temporary_schemas/pareto-targets/schemas/alan_light/$.module.astn.d.ts +1 -1
  514. package/dist/temp/temporary_schemas/pareto-targets/schemas/alan_light/$.types.astn.d.ts +1 -1
  515. package/dist/temp/temporary_schemas/pareto-targets/schemas/graphviz/high_level/$.globals.astn.d.ts +1 -1
  516. package/dist/temp/temporary_schemas/pareto-targets/schemas/graphviz/high_level/$.module.astn.d.ts +1 -1
  517. package/dist/temp/temporary_schemas/pareto-targets/schemas/graphviz/high_level/$.types.astn.d.ts +1 -1
  518. package/dist/temp/temporary_schemas/pareto-targets/schemas/graphviz/low_level/$.globals.astn.d.ts +1 -1
  519. package/dist/temp/temporary_schemas/pareto-targets/schemas/graphviz/low_level/$.module.astn.d.ts +1 -1
  520. package/dist/temp/temporary_schemas/pareto-targets/schemas/graphviz/low_level/$.types.astn.d.ts +1 -1
  521. package/dist/temp/temporary_schemas/pareto-targets/schemas/lionweb/$.globals.astn.d.ts +1 -1
  522. package/dist/temp/temporary_schemas/pareto-targets/schemas/lionweb/$.module.astn.d.ts +1 -1
  523. package/dist/temp/temporary_schemas/pareto-targets/schemas/lionweb/$.types.astn.d.ts +1 -1
  524. package/dist/temp/temporary_schemas/pareto-targets/schemas/pareto_documentation/$.globals.astn.d.ts +1 -1
  525. package/dist/temp/temporary_schemas/pareto-targets/schemas/pareto_documentation/$.module.astn.d.ts +1 -1
  526. package/dist/temp/temporary_schemas/pareto-targets/schemas/pareto_documentation/$.types.astn.d.ts +1 -1
  527. package/dist/temp/temporary_schemas/pareto-vscode-backend/module.astn.d.ts +1 -1
  528. package/dist/temp/temporary_schemas/pareto-vscode-backend/operations.astn.d.ts +1 -1
  529. package/dist/temp/temporary_schemas/pareto-vscode-backend/schema_tree.astn.d.ts +1 -1
  530. package/dist/temp/temporary_schemas/pareto-vscode-backend/schemas/client/$.globals.astn.d.ts +1 -1
  531. package/dist/temp/temporary_schemas/pareto-vscode-backend/schemas/client/$.module.astn.d.ts +1 -1
  532. package/dist/temp/temporary_schemas/pareto-vscode-backend/schemas/client/$.types.astn.d.ts +1 -1
  533. package/dist/temp/temporary_schemas/pareto-vscode-backend/schemas/server/$.globals.astn.d.ts +1 -1
  534. package/dist/temp/temporary_schemas/pareto-vscode-backend/schemas/server/$.module.astn.d.ts +1 -1
  535. package/dist/temp/temporary_schemas/pareto-vscode-backend/schemas/server/$.types.astn.d.ts +1 -1
  536. package/package.json +9 -9
  537. package/dist/generated/implementation/generic/resolve.js +0 -276
  538. package/dist/generated/implementation/generic/unmarshall.d.ts +0 -42
  539. package/dist/generated/implementation/generic/unmarshall.js +0 -238
  540. package/dist/generated/implementation/schemas/astn_schema/marshall.js +0 -232
  541. package/dist/generated/implementation/schemas/astn_schema/resolve.js +0 -446
  542. package/dist/generated/implementation/schemas/astn_schema/unmarshall.js +0 -206
  543. package/dist/generated/implementation/schemas/schema/resolve.js +0 -2025
  544. package/dist/generated/implementation/schemas/token/marshall.js +0 -230
  545. package/dist/generated/implementation/schemas/token/unmarshall.js +0 -218
  546. package/dist/generated/interface/schemas/token/data_types/source.js +0 -3
  547. package/dist/generated/interface/schemas/token/data_types/target.js +0 -3
  548. package/dist/generated/interface/schemas/token/marshall.js +0 -3
  549. package/dist/generated/interface/schemas/token/migrate_boilerplate.js +0 -3
  550. package/dist/generated/interface/schemas/token/unmarshall.js +0 -3
  551. package/dist/generated/interface/schemas/token/value_deserializers.js +0 -3
  552. package/dist/generated/interface/schemas/token/value_serializers.js +0 -3
  553. package/dist/generated/interface/schemas/unmarshall_errors/data_types/source.js +0 -3
  554. package/dist/generated/interface/schemas/unmarshall_errors/data_types/target.js +0 -3
  555. package/dist/generated/interface/schemas/unmarshall_errors/marshall.js +0 -3
  556. package/dist/generated/interface/schemas/unmarshall_errors/migrate_boilerplate.js +0 -3
  557. package/dist/generated/interface/schemas/unmarshall_errors/unmarshall.js +0 -3
  558. package/dist/generated/interface/schemas/unmarshall_errors/value_deserializers.js +0 -3
  559. package/dist/generated/interface/schemas/unmarshall_errors/value_serializers.js +0 -3
  560. package/dist/generated/interface/schemas/unmarshall_result/data_types/unconstrained.d.ts +0 -1
  561. package/dist/generated/interface/schemas/unmarshall_result/data_types/unconstrained.js +0 -7
  562. package/dist/generated/interface/schemas/unmarshall_result/value_deserializers.js +0 -3
  563. package/dist/generated/interface/schemas/unmarshall_result/value_serializers.js +0 -3
  564. package/dist/operations/impure/tbd/path.js +0 -16
  565. package/dist/procedures/unguaranteed/compile.js +0 -140
  566. package/dist/procedures/unguaranteed/serialize_schemas.js +0 -69
  567. package/dist/queries/unguaranteed/load_pareto_document.js +0 -79
  568. package/dist/temp/temporary_schemas/astn/schemas/sealed_ast/$.globals.astn.d.ts +0 -3
  569. package/dist/temp/temporary_schemas/astn/schemas/sealed_ast/$.types.astn.d.ts +0 -3
  570. package/dist/temp/temporary_schemas/astn/schemas/sealed_ast/$.types.astn.js +0 -74
  571. package/dist/temp/temporary_schemas/astn/schemas/sealed_parse_result/$.globals.astn.d.ts +0 -3
  572. package/dist/temp/temporary_schemas/astn/schemas/sealed_parse_result/$.module.astn.js +0 -11
  573. package/dist/temp/temporary_schemas/astn/schemas/sealed_parse_result/$.types.astn.d.ts +0 -3
  574. package/dist/temp/temporary_schemas/astn/schemas/sealed_parse_result/$.types.astn.js +0 -50
  575. package/dist/temp/temporary_schemas/exupery-resources/schemas/run_query_executable/$.globals.astn.js +0 -6
  576. package/dist/temp/temporary_schemas/exupery-resources/schemas/run_query_executable/$.types.astn.d.ts +0 -3
  577. package/dist/temp/temporary_schemas/exupery-resources/schemas/run_query_executable/$.types.astn.js +0 -23
  578. package/dist/temp/temporary_schemas/exupery-resources/schemas/run_query_executable_and_catch/$.types.astn.d.ts +0 -3
  579. package/dist/temp/temporary_schemas/exupery-resources/schemas/run_query_executable_and_catch/$.types.astn.js +0 -26
  580. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/m3_normalized/$.module.astn.d.ts +0 -3
  581. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/m3_normalized/$.types.astn.d.ts +0 -3
  582. package/dist/temp/temporary_schemas/pareto-lionweb/schemas/m3_normalized/$.types.astn.js +0 -38
  583. package/dist/transformations/module/exupery_implementation.d.ts +0 -4
  584. package/dist/transformations/module/exupery_interface.d.ts +0 -5
  585. package/dist/transformations/module/temp_typescript.d.ts +0 -3
  586. package/dist/transformations/module/temp_typescript.js +0 -56
  587. package/dist/transformations/schema/exupery_implementation/main.js +0 -81
  588. package/dist/transformations/schema/exupery_implementation/marshall.js +0 -142
  589. package/dist/transformations/schema/exupery_implementation/migrate_boilerplate.d.ts +0 -14
  590. package/dist/transformations/schema/exupery_implementation/migrate_boilerplate.js +0 -105
  591. package/dist/transformations/schema/exupery_implementation/resolve.js +0 -300
  592. package/dist/transformations/schema/exupery_implementation/unmarshall.js +0 -158
  593. package/dist/transformations/schema/exupery_interface/dummy_resolve.d.ts +0 -3
  594. package/dist/transformations/schema/exupery_interface/dummy_resolve.js +0 -13
  595. package/dist/transformations/schema/exupery_interface/main.d.ts +0 -6
  596. package/dist/transformations/schema/exupery_interface/main.js +0 -108
  597. package/dist/transformations/schema/exupery_interface/marshall.d.ts +0 -6
  598. package/dist/transformations/schema/exupery_interface/migrate_boilerplate.d.ts +0 -7
  599. package/dist/transformations/schema/exupery_interface/resolve.d.ts +0 -12
  600. package/dist/transformations/schema/exupery_interface/resolve.js +0 -110
  601. package/dist/transformations/schema/exupery_interface/types.d.ts +0 -12
  602. package/dist/transformations/schema/exupery_interface/types.js +0 -192
  603. package/dist/transformations/schema/exupery_interface/value_deserializers.d.ts +0 -6
  604. package/dist/transformations/schema/exupery_interface/value_serializers.d.ts +0 -6
  605. package/dist/transformations/temp/astn_schema.d.ts +0 -10
  606. package/dist/transformations/temp/astn_schema.js +0 -140
  607. package/dist/transformations/unmarshall_errors/fountain_pen.js +0 -86
  608. package/dist/transformations/unmarshall_result/astn_authoring_target.d.ts +0 -3
  609. package/dist/transformations/unmarshall_result/unmarshall_errors.d.ts +0 -8
  610. package/dist/transformations/unmarshall_result/unmarshall_errors.js +0 -344
  611. /package/dist/bin/{compile.d.ts → compile_temp_schemas.d.ts} +0 -0
  612. /package/dist/{procedures/unguaranteed/compile.d.ts → implementation/algorithms/procedures/unguaranteed/compile_temp_schemas.d.ts} +0 -0
  613. /package/dist/{procedures → implementation/algorithms/procedures}/unguaranteed/seal.d.ts +0 -0
  614. /package/dist/{procedures → implementation/algorithms/procedures}/unguaranteed/serialize_schemas.d.ts +0 -0
  615. /package/dist/{procedures → implementation/algorithms/procedures}/unguaranteed/validate.d.ts +0 -0
  616. /package/dist/{generated/implementation → implementation/generated/pareto}/schemas/unmarshall_result/marshall.d.ts +0 -0
  617. /package/dist/{generated/implementation → implementation/generated/pareto}/schemas/unmarshall_result/unmarshall.d.ts +0 -0
  618. /package/dist/{generated/interface → interface/generated/pareto}/core/astn_target.d.ts +0 -0
  619. /package/dist/{generated/interface → interface/generated/pareto}/core/resolve.d.ts +0 -0
  620. /package/dist/{generated/interface → interface/generated/pareto}/core/resolved.d.ts +0 -0
  621. /package/dist/{generated/interface → interface/generated/pareto}/core/unconstrained.d.ts +0 -0
  622. /package/dist/{generated/interface → interface/generated/pareto}/core/unresolved.d.ts +0 -0
  623. /package/dist/{generated/interface → interface/generated/pareto}/schemas/astn_schema/data_types/resolve.d.ts +0 -0
  624. /package/dist/{generated/interface → interface/generated/pareto}/schemas/astn_schema/data_types/source.d.ts +0 -0
  625. /package/dist/{generated/interface → interface/generated/pareto}/schemas/astn_schema/data_types/target.d.ts +0 -0
  626. /package/dist/{generated/interface → interface/generated/pareto}/schemas/astn_schema/marshall.d.ts +0 -0
  627. /package/dist/{generated/interface → interface/generated/pareto}/schemas/astn_schema/migrate_boilerplate.d.ts +0 -0
  628. /package/dist/{generated/interface → interface/generated/pareto}/schemas/astn_schema/unmarshall.d.ts +0 -0
  629. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/astn_schema}/value_deserializers.d.ts +0 -0
  630. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/astn_schema}/value_serializers.d.ts +0 -0
  631. /package/dist/{generated/interface → interface/generated/pareto}/schemas/module/data_types/resolve.d.ts +0 -0
  632. /package/dist/{generated/interface → interface/generated/pareto}/schemas/module/data_types/source.d.ts +0 -0
  633. /package/dist/{generated/interface → interface/generated/pareto}/schemas/module/data_types/target.d.ts +0 -0
  634. /package/dist/{generated/interface → interface/generated/pareto}/schemas/module/marshall.d.ts +0 -0
  635. /package/dist/{generated/interface → interface/generated/pareto}/schemas/module/migrate_boilerplate.d.ts +0 -0
  636. /package/dist/{generated/interface → interface/generated/pareto}/schemas/module/unmarshall.d.ts +0 -0
  637. /package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/module}/value_deserializers.d.ts +0 -0
  638. /package/dist/{generated/interface/schemas/astn_schema → interface/generated/pareto/schemas/module}/value_serializers.d.ts +0 -0
  639. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/parse_tree}/data_types/resolve.d.ts +0 -0
  640. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/parse_tree}/data_types/source.d.ts +0 -0
  641. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/parse_tree}/data_types/target.d.ts +0 -0
  642. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/parse_tree}/marshall.d.ts +0 -0
  643. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/parse_tree}/migrate_boilerplate.d.ts +0 -0
  644. /package/dist/{generated/interface/schemas/ast → interface/generated/pareto/schemas/parse_tree}/unmarshall.d.ts +0 -0
  645. /package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/parse_tree}/value_deserializers.d.ts +0 -0
  646. /package/dist/{generated/interface/schemas/module → interface/generated/pareto/schemas/parse_tree}/value_serializers.d.ts +0 -0
  647. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/data_types/resolve.d.ts +0 -0
  648. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/data_types/source.d.ts +0 -0
  649. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/data_types/target.d.ts +0 -0
  650. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/marshall.d.ts +0 -0
  651. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/migrate_boilerplate.d.ts +0 -0
  652. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/unmarshall.d.ts +0 -0
  653. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/value_deserializers.d.ts +0 -0
  654. /package/dist/{generated/interface → interface/generated/pareto}/schemas/schema/value_serializers.d.ts +0 -0
  655. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/data_types/resolve.d.ts +0 -0
  656. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/data_types/source.d.ts +0 -0
  657. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/data_types/target.d.ts +0 -0
  658. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/marshall.d.ts +0 -0
  659. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/migrate_boilerplate.d.ts +0 -0
  660. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/unmarshall.d.ts +0 -0
  661. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/value_deserializers.d.ts +0 -0
  662. /package/dist/{generated/interface → interface/generated/pareto}/schemas/token/value_serializers.d.ts +0 -0
  663. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/data_types/resolve.d.ts +0 -0
  664. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/data_types/source.d.ts +0 -0
  665. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/data_types/target.d.ts +0 -0
  666. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/marshall.d.ts +0 -0
  667. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/migrate_boilerplate.d.ts +0 -0
  668. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/unmarshall.d.ts +0 -0
  669. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/value_deserializers.d.ts +0 -0
  670. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_errors/value_serializers.d.ts +0 -0
  671. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/data_types/resolve.d.ts +0 -0
  672. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/data_types/source.d.ts +0 -0
  673. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/data_types/target.d.ts +0 -0
  674. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/marshall.d.ts +0 -0
  675. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/migrate_boilerplate.d.ts +0 -0
  676. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/unmarshall.d.ts +0 -0
  677. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/value_deserializers.d.ts +0 -0
  678. /package/dist/{generated/interface → interface/generated/pareto}/schemas/unmarshall_result/value_serializers.d.ts +0 -0
@@ -0,0 +1,245 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.Value = exports.Key_Value_Pairs = exports.Elements = exports.Document = exports.String = exports.Structural_Token = void 0;
27
+ const _ea = __importStar(require("exupery-core-alg"));
28
+ const pg = __importStar(require("./astn_parse_generic"));
29
+ //this file contains the parser functionality, each function return a type from the 'ast' schema
30
+ const Structural_Token = (token) => {
31
+ return {
32
+ 'trailing trivia': token['trailing trivia'],
33
+ 'range': {
34
+ 'start': token['start'],
35
+ 'end': token['end']
36
+ }
37
+ };
38
+ };
39
+ exports.Structural_Token = Structural_Token;
40
+ const String = (token_iterator) => {
41
+ const token = token_iterator['get required token'](_ea.array_literal([['a string', null]]));
42
+ if (token.type[0] !== 'string') {
43
+ return pg.throw_unexpected_token(token, _ea.array_literal([['a string', null]]));
44
+ }
45
+ token_iterator['consume token']();
46
+ return {
47
+ 'range': {
48
+ 'start': token['start'],
49
+ 'end': token['end']
50
+ },
51
+ 'value': token.type[1].value,
52
+ 'type': token.type[1].type,
53
+ 'trailing trivia': token['trailing trivia'],
54
+ };
55
+ };
56
+ exports.String = String;
57
+ const Document = (token_iterator) => {
58
+ return {
59
+ 'header': _ea.block(() => {
60
+ const token = token_iterator['get required token'](_ea.array_literal([['!', null], ['a value', null]]));
61
+ if (token.type[0] !== '!') {
62
+ return _ea.not_set();
63
+ }
64
+ token_iterator['consume token']();
65
+ return _ea.set({
66
+ '!': (0, exports.Structural_Token)(token),
67
+ 'value': (0, exports.Value)(token_iterator)
68
+ });
69
+ }),
70
+ 'content': (0, exports.Value)(token_iterator)
71
+ };
72
+ };
73
+ exports.Document = Document;
74
+ const Elements = (token_iterator, end_reached, end_token) => {
75
+ return _ea.build_list(($i) => {
76
+ while (true) {
77
+ const current_token = token_iterator['get required token'](_ea.array_literal([end_token, ['a value', null]]));
78
+ if (end_reached(current_token.type)) {
79
+ return;
80
+ }
81
+ $i['add element']({
82
+ 'value': (0, exports.Value)(token_iterator),
83
+ });
84
+ }
85
+ });
86
+ };
87
+ exports.Elements = Elements;
88
+ const Key_Value_Pairs = (token_iterator, end_reached, end_token) => {
89
+ return _ea.build_list(($i) => {
90
+ while (true) {
91
+ const current_token = token_iterator['get required token'](_ea.array_literal([end_token, ['a string', null]]));
92
+ if (end_reached(current_token.type)) {
93
+ return;
94
+ }
95
+ $i['add element']({
96
+ 'key': (0, exports.String)(token_iterator),
97
+ 'value': _ea.block(() => {
98
+ const candidate_colon = token_iterator['get required token'](_ea.array_literal([['a string', null], [':', null], end_token]));
99
+ if (candidate_colon.type[0] !== ':') {
100
+ return _ea.not_set();
101
+ }
102
+ token_iterator['consume token']();
103
+ return _ea.set({
104
+ ':': (0, exports.Structural_Token)(candidate_colon),
105
+ 'value': (0, exports.Value)(token_iterator)
106
+ });
107
+ }),
108
+ ',': _ea.not_set()
109
+ });
110
+ }
111
+ });
112
+ };
113
+ exports.Key_Value_Pairs = Key_Value_Pairs;
114
+ const Value = (token_iterator) => {
115
+ const token = token_iterator['get required token'](_ea.array_literal([['a value', null]]));
116
+ return _ea.cc(token.type, ($) => {
117
+ switch ($[0]) {
118
+ case 'string': return _ea.ss($, ($) => {
119
+ return ['string', (0, exports.String)(token_iterator)];
120
+ });
121
+ case '{': return _ea.ss($, ($) => {
122
+ token_iterator['consume token']();
123
+ return ['indexed collection', ['dictionary', {
124
+ '{': (0, exports.Structural_Token)(token),
125
+ 'entries': (0, exports.Key_Value_Pairs)(token_iterator, ($) => $[0] === '}', ['}', null]),
126
+ '}': _ea.block(() => {
127
+ const current_token = token_iterator['get required token'](_ea.array_literal([['}', null]]));
128
+ token_iterator['consume token']();
129
+ return (0, exports.Structural_Token)(current_token);
130
+ })
131
+ }]];
132
+ });
133
+ case '(': return _ea.ss($, ($) => {
134
+ token_iterator['consume token']();
135
+ return ['indexed collection', ['verbose group', {
136
+ '(': (0, exports.Structural_Token)(token),
137
+ 'entries': (0, exports.Key_Value_Pairs)(token_iterator, ($) => $[0] === ')', [')', null]),
138
+ ')': _ea.block(() => {
139
+ const current_token = token_iterator['get required token'](_ea.array_literal([[')', null]]));
140
+ token_iterator['consume token']();
141
+ return (0, exports.Structural_Token)(current_token);
142
+ })
143
+ }]];
144
+ });
145
+ case '[': return _ea.ss($, ($) => {
146
+ token_iterator['consume token']();
147
+ return ['ordered collection', ['list', {
148
+ '[': (0, exports.Structural_Token)(token),
149
+ 'elements': (0, exports.Elements)(token_iterator, ($) => $[0] === ']', [']', null]),
150
+ ']': _ea.block(() => {
151
+ const current_token = token_iterator['get required token'](_ea.array_literal([[']', null]]));
152
+ token_iterator['consume token']();
153
+ return (0, exports.Structural_Token)(current_token);
154
+ }),
155
+ }]];
156
+ });
157
+ case '<': return _ea.ss($, ($) => {
158
+ token_iterator['consume token']();
159
+ return ['ordered collection', ['concise group', {
160
+ '<': (0, exports.Structural_Token)(token),
161
+ 'elements': (0, exports.Elements)(token_iterator, ($) => $[0] === '>', ['>', null]),
162
+ '>': _ea.block(() => {
163
+ const current_token = token_iterator['get required token'](_ea.array_literal([['>', null]]));
164
+ token_iterator['consume token']();
165
+ return (0, exports.Structural_Token)(current_token);
166
+ }),
167
+ }]];
168
+ });
169
+ case '|': return _ea.ss($, ($) => {
170
+ token_iterator['consume token']();
171
+ const token = token_iterator['get required token'](_ea.array_literal([['a value', null], ['#', null]]));
172
+ return ['tagged value', {
173
+ '|': (0, exports.Structural_Token)(token),
174
+ 'state': (0, exports.String)(token_iterator),
175
+ 'value': (0, exports.Value)(token_iterator)
176
+ }];
177
+ });
178
+ case '*': return _ea.ss($, ($) => {
179
+ token_iterator['consume token']();
180
+ return ['set optional value', {
181
+ '*': (0, exports.Structural_Token)(token),
182
+ 'value': (0, exports.Value)(token_iterator)
183
+ }];
184
+ });
185
+ case '~': return _ea.ss($, ($) => {
186
+ token_iterator['consume token']();
187
+ return ['not set', {
188
+ '~': (0, exports.Structural_Token)(token),
189
+ }];
190
+ });
191
+ //unexpected tokens
192
+ case '#': return _ea.ss($, ($) => {
193
+ token_iterator['consume token']();
194
+ return pg.throw_unexpected_token(token, _ea.array_literal([
195
+ ['a value', null]
196
+ ]));
197
+ });
198
+ case '@': return _ea.ss($, ($) => {
199
+ token_iterator['consume token']();
200
+ return pg.throw_unexpected_token(token, _ea.array_literal([
201
+ ['a value', null]
202
+ ]));
203
+ });
204
+ case '!': return _ea.ss($, ($) => {
205
+ token_iterator['consume token']();
206
+ return pg.throw_unexpected_token(token, _ea.array_literal([
207
+ ['a value', null]
208
+ ]));
209
+ });
210
+ case ':': return _ea.ss($, ($) => {
211
+ token_iterator['consume token']();
212
+ return pg.throw_unexpected_token(token, _ea.array_literal([
213
+ ['a value', null]
214
+ ]));
215
+ });
216
+ case ')': return _ea.ss($, ($) => {
217
+ token_iterator['consume token']();
218
+ return pg.throw_unexpected_token(token, _ea.array_literal([
219
+ ['a value', null]
220
+ ]));
221
+ });
222
+ case '>': return _ea.ss($, ($) => {
223
+ token_iterator['consume token']();
224
+ return pg.throw_unexpected_token(token, _ea.array_literal([
225
+ ['a value', null]
226
+ ]));
227
+ });
228
+ case ']': return _ea.ss($, ($) => {
229
+ token_iterator['consume token']();
230
+ return pg.throw_unexpected_token(token, _ea.array_literal([
231
+ ['a value', null]
232
+ ]));
233
+ });
234
+ case '}': return _ea.ss($, ($) => {
235
+ token_iterator['consume token']();
236
+ return pg.throw_unexpected_token(token, _ea.array_literal([
237
+ ['a value', null]
238
+ ]));
239
+ });
240
+ default: return _ea.au($[0]);
241
+ }
242
+ });
243
+ };
244
+ exports.Value = Value;
245
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXN0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ltcGxlbWVudGF0aW9uL2dlbmVyYXRlZC9wYXJldG8vZ2VuZXJpYy9wYXJzZS9hc3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSxzREFBdUM7QUFPdkMseURBQTBDO0FBRTFDLGdHQUFnRztBQUV6RixNQUFNLGdCQUFnQixHQUFHLENBQUMsS0FBaUMsRUFBK0IsRUFBRTtJQUMvRixPQUFPO1FBQ0gsaUJBQWlCLEVBQUUsS0FBSyxDQUFDLGlCQUFpQixDQUFDO1FBQzNDLE9BQU8sRUFBRTtZQUNMLE9BQU8sRUFBRSxLQUFLLENBQUMsT0FBTyxDQUFDO1lBQ3ZCLEtBQUssRUFBRSxLQUFLLENBQUMsS0FBSyxDQUFDO1NBQ3RCO0tBQ0osQ0FBQTtBQUNMLENBQUMsQ0FBQTtBQVJZLFFBQUEsZ0JBQWdCLG9CQVE1QjtBQUVNLE1BQU0sTUFBTSxHQUFHLENBQUMsY0FBc0MsRUFBcUIsRUFBRTtJQUNoRixNQUFNLEtBQUssR0FBRyxjQUFjLENBQUMsb0JBQW9CLENBQUMsQ0FBQyxHQUFHLENBQUMsYUFBYSxDQUFDLENBQUMsQ0FBQyxVQUFVLEVBQUUsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUE7SUFDM0YsSUFBSSxLQUFLLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxLQUFLLFFBQVEsRUFBRSxDQUFDO1FBQzdCLE9BQU8sRUFBRSxDQUFDLHNCQUFzQixDQUFDLEtBQUssRUFBRSxHQUFHLENBQUMsYUFBYSxDQUFDLENBQUMsQ0FBQyxVQUFVLEVBQUUsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUE7SUFDcEYsQ0FBQztJQUNELGNBQWMsQ0FBQyxlQUFlLENBQUMsRUFBRSxDQUFBO0lBQ2pDLE9BQU87UUFDSCxPQUFPLEVBQUU7WUFDTCxPQUFPLEVBQUUsS0FBSyxDQUFDLE9BQU8sQ0FBQztZ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
@@ -0,0 +1,13 @@
1
+ import * as _et from 'exupery-core-types';
2
+ import * as si from "./string_iterator";
3
+ import * as _source from "../../../../../interface/generated/pareto/core/token";
4
+ import * as d_parse_result from "../../../../../interface/generated/pareto/core/parse_result";
5
+ export declare class Parse_Error_Class {
6
+ readonly type: d_parse_result._T_Parse_Error._type;
7
+ readonly range: _source._T_Range;
8
+ constructor(type: d_parse_result._T_Parse_Error._type, range: _source._T_Range);
9
+ }
10
+ export declare const throw_lexer_error: (type: d_parse_result.Lexer_Error, range: _source._T_Range) => never;
11
+ export declare const throw_unexpected_token: (found: _source._T_Annotated_Token, expected: _et.Array<d_parse_result.Expected>) => never;
12
+ export type ASTN_Token_Iterator = si.Token_Iterator<d_parse_result.Expected, _source._T_Annotated_Token>;
13
+ export declare const create_astn_token_iterator: ($: _source._T_Tokenizer_Result.tokens, end: si.Location) => ASTN_Token_Iterator;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.create_astn_token_iterator = exports.throw_unexpected_token = exports.throw_lexer_error = exports.Parse_Error_Class = void 0;
4
+ class Parse_Error_Class {
5
+ type;
6
+ range;
7
+ constructor(type, range) {
8
+ this.type = type;
9
+ this.range = range;
10
+ }
11
+ }
12
+ exports.Parse_Error_Class = Parse_Error_Class;
13
+ const throw_parse_error = (type, range) => {
14
+ throw new Parse_Error_Class(type, range);
15
+ };
16
+ const throw_lexer_error = (type, range) => {
17
+ throw new Parse_Error_Class(['lexer', type], range);
18
+ };
19
+ exports.throw_lexer_error = throw_lexer_error;
20
+ const throw_unexpected_token = (found, expected) => {
21
+ return throw_parse_error(['parser', {
22
+ 'expected': expected,
23
+ 'cause': ['unexpected token', {
24
+ 'found': found.type,
25
+ }]
26
+ }], {
27
+ 'start': found.start,
28
+ 'end': found.end
29
+ });
30
+ };
31
+ exports.throw_unexpected_token = throw_unexpected_token;
32
+ const create_astn_token_iterator = ($, end) => {
33
+ let position = 0;
34
+ return {
35
+ 'get required token': (pet) => {
36
+ return $.__get_element_at(position).transform(($) => $, () => throw_parse_error(['parser', {
37
+ 'expected': pet,
38
+ 'cause': ['missing token', null]
39
+ }], {
40
+ 'start': end,
41
+ 'end': end,
42
+ }));
43
+ },
44
+ 'consume token': () => {
45
+ position += 1;
46
+ },
47
+ };
48
+ };
49
+ exports.create_astn_token_iterator = create_astn_token_iterator;
50
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXN0bl9wYXJzZV9nZW5lcmljLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ltcGxlbWVudGF0aW9uL2dlbmVyYXRlZC9wYXJldG8vZ2VuZXJpYy9wYXJzZS9hc3RuX3BhcnNlX2dlbmVyaWMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBUUEsTUFBYSxpQkFBaUI7SUFHTjtJQUNBO0lBRnBCLFlBQ29CLElBQXlDLEVBQ3pDLEtBQXVCO1FBRHZCLFNBQUksR0FBSixJQUFJLENBQXFDO1FBQ3pDLFVBQUssR0FBTCxLQUFLLENBQWtCO0lBRTFDLENBQUM7Q0FDTDtBQVBELDhDQU9DO0FBRUQsTUFBTSxpQkFBaUIsR0FBRyxDQUN0QixJQUF5QyxFQUN6QyxLQUF1QixFQUNsQixFQUFFO0lBQ1AsTUFBTSxJQUFJLGlCQUFpQixDQUFDLElBQUksRUFBRSxLQUFLLENBQUMsQ0FBQTtBQUM1QyxDQUFDLENBQUE7QUFFTSxNQUFNLGlCQUFpQixHQUFHLENBQzdCLElBQWdDLEVBQ2hDLEtBQXVCLEVBQ2xCLEVBQUU7SUFDUCxNQUFNLElBQUksaUJBQWlCLENBQUMsQ0FBQyxPQUFPLEVBQUUsSUFBSSxDQUFDLEVBQUUsS0FBSyxDQUFDLENBQUE7QUFDdkQsQ0FBQyxDQUFBO0FBTFksUUFBQSxpQkFBaUIscUJBSzdCO0FBRU0sTUFBTSxzQkFBc0IsR0FBRyxDQUNsQyxLQUFpQyxFQUNqQyxRQUE0QyxFQUN2QyxFQUFFO0lBQ1AsT0FBTyxpQkFBaUIsQ0FDcEIsQ0FBQyxRQUFRLEVBQUU7WUFDUCxVQUFVLEVBQUUsUUFBUTtZQUNwQixPQUFPLEVBQUUsQ0FBQyxrQkFBa0IsRUFBRTtvQkFDMUIsT0FBTyxFQUFFLEtBQUssQ0FBQyxJQUFJO2lCQUN0QixDQUFDO1NBQ0wsQ0FBQyxFQUNGO1FBQ0ksT0FBTyxFQUFFLEtBQUssQ0FBQyxLQUFLO1FBQ3BCLEtBQUssRUFBRSxLQUFLLENBQUMsR0FBRztLQUNuQixDQUNKLENBQUE7QUFDTCxDQUFDLENBQUE7QUFoQlksUUFBQSxzQkFBc0IsMEJBZ0JsQztBQUlNLE1BQU0sMEJBQTBCLEdBQUcsQ0FBQyxDQUFxQyxFQUFFLEdBQWdCLEVBQXVCLEVBQUU7SUFDdkgsSUFBSSxRQUFRLEdBQUcsQ0FBQyxDQUFBO0lBQ2hCLE9BQU87UUFDSCxvQkFBb0IsRUFBRSxDQUFDLEdBQUcsRUFBRSxFQUFFO1lBQzFCLE9BQU8sQ0FBQyxDQUFDLGdCQUFnQixDQUFDLFFBQVEsQ0FBQyxDQUFDLFNBQVMsQ0FDekMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsRUFDUixHQUFHLEVBQUUsQ0FBQyxpQkFBaUIsQ0FDbkIsQ0FBQyxRQUFRLEVBQUU7b0JBQ1AsVUFBVSxFQUFFLEdBQUc7b0JBQ2YsT0FBTyxFQUFFLENBQUMsZUFBZSxFQUFFLElBQUksQ0FBQztpQkFDbkMsQ0FBQyxFQUNGO2dCQUNJLE9BQU8sRUFBRSxHQUFHO2dCQUNaLEtBQUssRUFBRSxHQUFHO2FBQ2IsQ0FDSixDQUNKLENBQUE7UUFDTCxDQUFDO1FBQ0QsZUFBZSxFQUFFLEdBQUcsRUFBRTtZQUNsQixRQUFRLElBQUksQ0FBQyxDQUFBO1FBQ2pCLENBQUM7S0FDSixDQUFBO0FBQ0wsQ0FBQyxDQUFBO0FBdEJZLFFBQUEsMEJBQTBCLDhCQXNCdEMifQ==
@@ -0,0 +1,6 @@
1
+ import * as _ea from 'exupery-core-alg';
2
+ import * as _target from "../../../../../interface/generated/pareto/core/parse_result";
3
+ import * as s_ast from "../../../../../interface/generated/pareto/core/astn_source";
4
+ export declare const parse: ($: string, $p: {
5
+ "tab size": number;
6
+ }) => _ea.Refinement_Result<s_ast._T_Document, _target._T_Parse_Error>;
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.parse = void 0;
27
+ const _ea = __importStar(require("exupery-core-alg"));
28
+ const d_ast = __importStar(require("./ast"));
29
+ const pg = __importStar(require("./astn_parse_generic"));
30
+ const si = __importStar(require("./string_iterator"));
31
+ const tokenize = __importStar(require("./token"));
32
+ const parse = ($, $p) => {
33
+ try {
34
+ const string_iterator = si.create_string_iterator($, {
35
+ 'tab size': $p['tab size']
36
+ });
37
+ const tokenizer_result = tokenize.Tokenizer_Result(null, {
38
+ 'string iterator': string_iterator
39
+ });
40
+ // tokenizer_result.tokens.__for_each(($) => {
41
+ // _edev.log_debug_message(`token: ${_ea.cc($.type, ($) => {
42
+ // switch ($[0]) {
43
+ // case 'string': return _ea.ss($, ($) => `string: ${$.value.value}`)
44
+ // default: return `structural: ${$[0]}`
45
+ // }
46
+ // })}`)
47
+ // })
48
+ const token_iterator = pg.create_astn_token_iterator(tokenizer_result.tokens, tokenizer_result.end);
49
+ return _ea.refinement.successful(d_ast.Document(token_iterator));
50
+ }
51
+ catch (error) {
52
+ if (error instanceof pg.Parse_Error_Class) {
53
+ return _ea.refinement.failed({
54
+ 'type': error.type,
55
+ 'range': {
56
+ 'start': error.range.start,
57
+ 'end': error.range.end,
58
+ }
59
+ });
60
+ }
61
+ return _ea.deprecated_panic("unknown error thrown");
62
+ }
63
+ };
64
+ exports.parse = parse;
65
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFyc2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW1wbGVtZW50YXRpb24vZ2VuZXJhdGVkL3BhcmV0by9nZW5lcmljL3BhcnNlL3BhcnNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsc0RBQXVDO0FBR3ZDLDZDQUE4QjtBQUk5Qix5REFBMEM7QUFDMUMsc0RBQXVDO0FBRXZDLGtEQUFtQztBQUc1QixNQUFNLEtBQUssR0FBRyxDQUNqQixDQUFTLEVBQ1QsRUFFQyxFQUMrRCxFQUFFO0lBQ2xFLElBQUksQ0FBQztRQUNELE1BQU0sZUFBZSxHQUFHLEVBQUUsQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDLEVBQUU7WUFDakQsVUFBVSxFQUFFLEVBQUUsQ0FBQyxVQUFVLENBQUM7U0FDN0IsQ0FBQyxDQUFBO1FBQ0YsTUFBTSxnQkFBZ0IsR0FBRyxRQUFRLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxFQUFFO1lBQ3JELGlCQUFpQixFQUFFLGVBQWU7U0FDckMsQ0FBQyxDQUFBO1FBQ0YsOENBQThDO1FBQzlDLGdFQUFnRTtRQUNoRSwwQkFBMEI7UUFDMUIsaUZBQWlGO1FBQ2pGLG9EQUFvRDtRQUNwRCxZQUFZO1FBQ1osWUFBWTtRQUNaLEtBQUs7UUFDTCxNQUFNLGNBQWMsR0FBRyxFQUFFLENBQUMsMEJBQTBCLENBQUMsZ0JBQWdCLENBQUMsTUFBTSxFQUFFLGdCQUFnQixDQUFDLEdBQUcsQ0FBQyxDQUFBO1FBQ25HLE9BQU8sR0FBRyxDQUFDLFVBQVUsQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLFFBQVEsQ0FBQyxjQUFjLENBQUMsQ0FBQyxDQUFBO0lBRXBFLENBQUM7SUFBQyxPQUFPLEtBQUssRUFBRSxDQUFDO1FBQ2IsSUFBSSxLQUFLLFlBQVksRUFBRSxDQUFDLGlCQUFpQixFQUFFLENBQUM7WUFFeEMsT0FBTyxHQUFHLENBQUMsVUFBVSxDQUFDLE1BQU0sQ0FBQztnQkFDekIsTUFBTSxFQUFFLEtBQUssQ0FBQyxJQUFJO2dCQUNsQixPQUFPLEVBQUU7b0JBQ0wsT0FBTyxFQUFFLEtBQUssQ0FBQyxLQUFLLENBQUMsS0FBSztvQkFDMUIsS0FBSyxFQUFFLEtBQUssQ0FBQyxLQUFLLENBQUMsR0FBRztpQkFDekI7YUFDSixDQUFDLENBQUE7UUFDTixDQUFDO1FBQ0QsT0FBTyxHQUFHLENBQUMsZ0JBQWdCLENBQUMsc0JBQXNCLENBQUMsQ0FBQTtJQUN2RCxDQUFDO0FBQ0wsQ0FBQyxDQUFBO0FBckNZLFFBQUEsS0FBSyxTQXFDakIifQ==
@@ -0,0 +1,41 @@
1
+ import * as _et from 'exupery-core-types';
2
+ export type Location = {
3
+ 'absolute': number;
4
+ 'relative': {
5
+ 'line': number;
6
+ 'column': number;
7
+ };
8
+ };
9
+ export type String_Iterator = {
10
+ 'consume character': () => void;
11
+ 'consume string': ($: string) => void;
12
+ /**
13
+ * returns the current character, or null if the end of the string has been reached.
14
+ * equivalent to `look ahead(0)`
15
+ */
16
+ 'get current character': () => number | null;
17
+ 'look ahead': ($: number) => number | null;
18
+ 'create offset location info': (subtract: number) => Location;
19
+ 'create location info': () => Location;
20
+ 'create location info string': () => string;
21
+ /**
22
+ * if no non-whitespace character has been found yet on the current line,
23
+ * this will return the current column,
24
+ * otherwise it will return the offset of that first non-whitespace character
25
+ * (which is the indentation of the line)
26
+ */
27
+ 'get line indentation': () => number;
28
+ 'starts with': ($: string) => boolean;
29
+ };
30
+ export declare const is_control_character: ($: number) => boolean;
31
+ /**
32
+ * Creates a string iterator that allows iterating over characters in a string,
33
+ * while keeping track of line numbers, columns, and line indentation.
34
+ */
35
+ export declare const create_string_iterator: ($: string, $p: {
36
+ "tab size": number;
37
+ }) => String_Iterator;
38
+ export type Token_Iterator<Expected, Token> = {
39
+ 'get required token': (expected: _et.Array<Expected>) => Token;
40
+ 'consume token': () => void;
41
+ };
@@ -0,0 +1,113 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.create_string_iterator = exports.is_control_character = void 0;
4
+ const to_character_list_1 = require("exupery-standard-library/dist/implementation/algorithms/operations/impure/text/to_character_list");
5
+ const starts_with_1 = require("exupery-standard-library/dist/implementation/algorithms/operations/impure/text/starts_with");
6
+ const WhitespaceChars = {
7
+ tab: 0x09, // \t
8
+ line_feed: 0x0A, // \n
9
+ carriage_return: 0x0D, // \r
10
+ space: 0x20, //
11
+ };
12
+ const is_control_character = ($) => {
13
+ return ($ < 0x20 && $ !== WhitespaceChars.tab && $ !== WhitespaceChars.line_feed && $ !== WhitespaceChars.carriage_return);
14
+ };
15
+ exports.is_control_character = is_control_character;
16
+ /**
17
+ * Creates a string iterator that allows iterating over characters in a string,
18
+ * while keeping track of line numbers, columns, and line indentation.
19
+ */
20
+ const create_string_iterator = ($, $p) => {
21
+ const source = $;
22
+ const characters = (0, to_character_list_1.$$)($);
23
+ const length = characters.__get_length();
24
+ let found_carriage_return_before = false;
25
+ let position = 0;
26
+ let relative_position = {
27
+ 'line': 0,
28
+ 'column': 0,
29
+ 'line indentation': null
30
+ };
31
+ const consume_character = () => {
32
+ const c = characters.__get_element_at(position);
33
+ const start = relative_position;
34
+ relative_position = c.transform(($) => {
35
+ return $ === WhitespaceChars.line_feed
36
+ ? {
37
+ 'line': relative_position.line + 1,
38
+ 'column': 0,
39
+ 'line indentation': null,
40
+ }
41
+ : found_carriage_return_before
42
+ ? {
43
+ 'line': relative_position.line + 1,
44
+ 'column': 0,
45
+ 'line indentation': null,
46
+ }
47
+ : {
48
+ 'line': relative_position.line,
49
+ 'column': relative_position['column'] + ($ === WhitespaceChars.tab
50
+ ? $p['tab size']
51
+ : 1),
52
+ 'line indentation': relative_position['line indentation'] !== null
53
+ ? relative_position['line indentation']
54
+ : $ === WhitespaceChars.space || $ === WhitespaceChars.tab
55
+ ? null
56
+ : relative_position['column'],
57
+ };
58
+ }, () => relative_position //this is weird, we were already at the end of the list
59
+ );
60
+ found_carriage_return_before = c.transform(($) => $ === WhitespaceChars.carriage_return, () => false);
61
+ position += 1;
62
+ };
63
+ return {
64
+ 'consume string': ($) => {
65
+ (0, to_character_list_1.$$)($).__for_each(() => {
66
+ consume_character();
67
+ });
68
+ },
69
+ 'consume character': consume_character,
70
+ 'get current character': () => {
71
+ if (position === length) {
72
+ return null;
73
+ }
74
+ return characters.__get_element_at(position).transform(($) => $, () => null);
75
+ },
76
+ 'look ahead': ($) => {
77
+ const next_position = position + $;
78
+ if (next_position >= length) {
79
+ return null;
80
+ }
81
+ return characters.__get_element_at(next_position).transform(($) => $, () => null);
82
+ },
83
+ 'create location info': () => {
84
+ return {
85
+ 'absolute': position,
86
+ 'relative': {
87
+ 'line': relative_position.line,
88
+ 'column': relative_position['column'],
89
+ }
90
+ };
91
+ },
92
+ 'create offset location info': (subtract) => {
93
+ return {
94
+ 'absolute': position - subtract,
95
+ 'relative': {
96
+ 'line': relative_position.line,
97
+ 'column': relative_position['column'] - subtract,
98
+ }
99
+ };
100
+ },
101
+ 'create location info string': () => `${relative_position.line}:${relative_position['column']}`,
102
+ 'get line indentation': () => {
103
+ return relative_position['line indentation'] !== null
104
+ ? relative_position['line indentation']
105
+ : relative_position['column'];
106
+ },
107
+ 'starts with': ($) => {
108
+ return (0, starts_with_1.$$)(source, $, position);
109
+ }
110
+ };
111
+ };
112
+ exports.create_string_iterator = create_string_iterator;
113
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RyaW5nX2l0ZXJhdG9yLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ltcGxlbWVudGF0aW9uL2dlbmVyYXRlZC9wYXJldG8vZ2VuZXJpYy9wYXJzZS9zdHJpbmdfaXRlcmF0b3IudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBcUNBLHdJQUE2STtBQUM3SSw0SEFBaUk7QUFFakksTUFBTSxlQUFlLEdBQUc7SUFDcEIsR0FBRyxFQUFFLElBQUksRUFBbUIsS0FBSztJQUNqQyxTQUFTLEVBQUUsSUFBSSxFQUFhLEtBQUs7SUFDakMsZUFBZSxFQUFFLElBQUksRUFBTyxLQUFLO0lBQ2pDLEtBQUssRUFBRSxJQUFJLEVBQWlCLEVBQUU7Q0FDakMsQ0FBQTtBQUVNLE1BQU0sb0JBQW9CLEdBQUcsQ0FBQyxDQUFTLEVBQVcsRUFBRTtJQUN2RCxPQUFPLENBQUMsQ0FBQyxHQUFHLElBQUksSUFBSSxDQUFDLEtBQUssZUFBZSxDQUFDLEdBQUcsSUFBSSxDQUFDLEtBQUssZUFBZSxDQUFDLFNBQVMsSUFBSSxDQUFDLEtBQUssZUFBZSxDQUFDLGVBQWUsQ0FBQyxDQUFBO0FBQzlILENBQUMsQ0FBQTtBQUZZLFFBQUEsb0JBQW9CLHdCQUVoQztBQUVEOzs7R0FHRztBQUVJLE1BQU0sc0JBQXNCLEdBQUcsQ0FDbEMsQ0FBUyxFQUNULEVBRUMsRUFDYyxFQUFFO0lBQ2pCLE1BQU0sTUFBTSxHQUFHLENBQUMsQ0FBQTtJQUNoQixNQUFNLFVBQVUsR0FBRyxJQUFBLHNCQUFvQixFQUFDLENBQUMsQ0FBQyxDQUFBO0lBQzFDLE1BQU0sTUFBTSxHQUFHLFVBQVUsQ0FBQyxZQUFZLEVBQUUsQ0FBQTtJQVF4QyxJQUFJLDRCQUE0QixHQUFHLEtBQUssQ0FBQTtJQUN4QyxJQUFJLFFBQVEsR0FBRyxDQUFDLENBQUE7SUFDaEIsSUFBSSxpQkFBaUIsR0FBa0M7UUFDbkQsTUFBTSxFQUFFLENBQUM7UUFDVCxRQUFRLEVBQUUs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
@@ -0,0 +1,9 @@
1
+ import * as _out from "../../../../../interface/generated/pareto/core/token";
2
+ import { String_Iterator } from "./string_iterator";
3
+ export declare const Whitespace: (string_iterator: String_Iterator) => _out._T_Whitespace;
4
+ export declare const Trivia: (string_iterator: String_Iterator) => _out._T_Trivia;
5
+ export declare const Annotated_Token: (st: String_Iterator) => _out._T_Annotated_Token;
6
+ export declare const Delimited_String: (string_iterator: String_Iterator, is_end_character: (character: number) => boolean, allow_newlines: boolean) => _out._T_Delimited_String;
7
+ export declare const Tokenizer_Result: ($: null, $p: {
8
+ "string iterator": String_Iterator;
9
+ }) => _out._T_Tokenizer_Result;