pareto 0.80.56 → 0.80.57

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 (167) hide show
  1. package/dist/implementation/queries/pareto_to_typescript.d.ts +8 -0
  2. package/dist/implementation/queries/pareto_to_typescript.js +14 -0
  3. package/dist/implementation/transformers/implementation/serialized_typescript.d.ts +1 -3
  4. package/dist/implementation/transformers/implementation/serialized_typescript.js +40 -30
  5. package/dist/implementation/transformers/implementation/typescript.d.ts +3 -4
  6. package/dist/implementation/transformers/implementation/typescript.js +75 -100
  7. package/dist/implementation/transformers/interface/serialized_typescript.d.ts +1 -3
  8. package/dist/implementation/transformers/interface/serialized_typescript.js +27 -16
  9. package/dist/implementation/transformers/interface/typescript.d.ts +3 -4
  10. package/dist/implementation/transformers/interface/typescript.js +8 -31
  11. package/dist/implementation/transformers/library/typescript.d.ts +3 -4
  12. package/dist/implementation/transformers/library/typescript.js +5 -5
  13. package/dist/implementation/transformers/serializers/filename.d.ts +6 -0
  14. package/dist/implementation/transformers/serializers/filename.js +23 -0
  15. package/dist/interface/schemas/typescript_light.d.ts +1 -1
  16. package/dist/interface/schemas/typescript_light.js +2 -2
  17. package/dist/shorthands/{declarations_query → command}/target.d.ts +1 -1
  18. package/dist/shorthands/command/target.js +2 -0
  19. package/dist/shorthands/implementation/target.d.ts +1 -1
  20. package/dist/shorthands/interface/target.d.ts +1 -1
  21. package/dist/shorthands/module/target.d.ts +1 -1
  22. package/dist/shorthands/module/target.js +6 -12
  23. package/dist/shorthands/{declarations_command → query}/target.d.ts +1 -1
  24. package/dist/shorthands/query/target.js +2 -0
  25. package/dist/shorthands/{declarations_refiner → refiner}/target.d.ts +1 -1
  26. package/dist/shorthands/refiner/target.js +23 -0
  27. package/dist/shorthands/schemas/target.d.ts +1 -1
  28. package/dist/shorthands/transformer/target.d.ts +7 -0
  29. package/dist/shorthands/transformer/target.js +61 -0
  30. package/dist/shorthands/value_reference/target.d.ts +1 -2
  31. package/dist/shorthands/value_reference/target.js +1 -1
  32. package/dist/submodules/implementation/interface/schemas/resolved.d.ts +2 -2
  33. package/dist/submodules/implementation/interface/schemas/resolved.js +3 -3
  34. package/dist/submodules/implementation/interface/schemas/unresolved.d.ts +3 -3
  35. package/dist/submodules/implementation/interface/schemas/unresolved.js +4 -5
  36. package/dist/submodules/interface/schemas/location.d.ts +1 -0
  37. package/dist/submodules/interface/schemas/location.js +2 -0
  38. package/dist/submodules/interface/{interface/schemas → schemas}/resolved.d.ts +1 -1
  39. package/dist/submodules/interface/schemas/resolved.js +3 -0
  40. package/dist/submodules/interface/{interface/schemas → schemas}/unresolved.d.ts +2 -2
  41. package/dist/submodules/interface/schemas/unresolved.js +4 -0
  42. package/dist/submodules/pareto_new/implementation/transformers/command/typescript_light.d.ts +8 -0
  43. package/dist/submodules/pareto_new/implementation/transformers/command/typescript_light.js +10 -0
  44. package/dist/submodules/pareto_new/implementation/transformers/interface_command/typescript_light.d.ts +2 -2
  45. package/dist/submodules/pareto_new/implementation/transformers/interface_command/typescript_light.js +5 -5
  46. package/dist/submodules/pareto_new/implementation/transformers/interface_query/typescript_light.d.ts +2 -2
  47. package/dist/submodules/pareto_new/implementation/transformers/interface_query/typescript_light.js +3 -5
  48. package/dist/submodules/pareto_new/implementation/transformers/module/typescript_light.d.ts +3 -3
  49. package/dist/submodules/pareto_new/implementation/transformers/module/typescript_light.js +22 -30
  50. package/dist/submodules/pareto_new/implementation/transformers/query/typescript_light.d.ts +8 -0
  51. package/dist/submodules/pareto_new/implementation/transformers/query/typescript_light.js +8 -0
  52. package/dist/submodules/pareto_new/implementation/transformers/refiner/typescript_light.d.ts +8 -0
  53. package/dist/submodules/pareto_new/implementation/transformers/refiner/typescript_light.js +58 -0
  54. package/dist/submodules/pareto_new/implementation/transformers/{schemas → schema}/typescript_light.d.ts +3 -3
  55. package/dist/submodules/pareto_new/implementation/transformers/schema/typescript_light.js +163 -0
  56. package/dist/submodules/pareto_new/implementation/transformers/{implementation_transformer → transformer}/typescript_light.d.ts +3 -3
  57. package/dist/submodules/pareto_new/implementation/transformers/transformer/typescript_light.js +72 -0
  58. package/dist/submodules/pareto_new/interface/schemas/command.js +2 -0
  59. package/dist/submodules/pareto_new/interface/schemas/interface_command.js +2 -2
  60. package/dist/submodules/pareto_new/interface/schemas/interface_query.js +2 -2
  61. package/dist/submodules/pareto_new/interface/schemas/module.d.ts +10 -20
  62. package/dist/submodules/pareto_new/interface/schemas/module.js +7 -11
  63. package/dist/submodules/pareto_new/interface/schemas/query.js +2 -0
  64. package/dist/submodules/pareto_new/interface/schemas/{declarations_refiner.d.ts → refiner.d.ts} +1 -1
  65. package/dist/submodules/pareto_new/interface/schemas/refiner.js +5 -0
  66. package/dist/submodules/pareto_new/interface/schemas/{schemas.d.ts → schema.d.ts} +1 -1
  67. package/dist/submodules/pareto_new/interface/schemas/schema.js +2 -0
  68. package/dist/submodules/pareto_new/interface/schemas/schema_reference.js +2 -2
  69. package/dist/submodules/pareto_new/interface/schemas/transformer.d.ts +55 -0
  70. package/dist/submodules/pareto_new/interface/schemas/transformer.js +4 -0
  71. package/dist/submodules/pareto_new/interface/schemas/type_reference.js +2 -2
  72. package/dist/submodules/pareto_new/interface/schemas/value_reference.d.ts +2 -3
  73. package/dist/submodules/pareto_new/interface/schemas/value_reference.js +2 -2
  74. package/dist/submodules/typescript_light/implementation/serializers/identifier.d.ts +2 -0
  75. package/dist/submodules/typescript_light/implementation/{transformers/text → serializers}/identifier.js +6 -6
  76. package/dist/submodules/typescript_light/implementation/serializers/primitives.d.ts +19 -0
  77. package/dist/submodules/typescript_light/implementation/serializers/primitives.js +257 -0
  78. package/dist/submodules/typescript_light/implementation/transformers/typescript_light/directory_content.d.ts +9 -0
  79. package/dist/submodules/typescript_light/implementation/transformers/typescript_light/directory_content.js +33 -0
  80. package/dist/submodules/typescript_light/implementation/transformers/typescript_light/paragraph.d.ts +26 -0
  81. package/dist/submodules/typescript_light/implementation/transformers/typescript_light/paragraph.js +495 -0
  82. package/dist/submodules/typescript_light/implementation/transformers/typescript_light/serialized.d.ts +5 -0
  83. package/dist/submodules/typescript_light/implementation/transformers/typescript_light/serialized.js +10 -0
  84. package/dist/submodules/typescript_light/schemas/paragraph.d.ts +1 -0
  85. package/dist/submodules/typescript_light/schemas/paragraph.js +2 -0
  86. package/dist/submodules/typescript_light/schemas/serialization.d.ts +7 -0
  87. package/dist/submodules/typescript_light/schemas/serialization.js +2 -0
  88. package/dist/submodules/typescript_light/schemas/serialized.d.ts +1 -0
  89. package/dist/submodules/typescript_light/schemas/serialized.js +2 -0
  90. package/dist/submodules/typescript_light/{interface/schemas → schemas}/typescript_light.d.ts +10 -15
  91. package/dist/submodules/typescript_light/schemas/typescript_light.js +4 -0
  92. package/dist/submodules/typescript_light/shorthands/typescript_light/target.d.ts +9 -5
  93. package/dist/submodules/typescript_light/shorthands/typescript_light/target.js +27 -14
  94. package/package.json +4 -3
  95. package/dist/implementation/transformers/text/filename.d.ts +0 -7
  96. package/dist/implementation/transformers/text/filename.js +0 -26
  97. package/dist/interface/schemas/file_system.d.ts +0 -1
  98. package/dist/interface/schemas/file_system.js +0 -2
  99. package/dist/interface/schemas/list_of_characters.d.ts +0 -1
  100. package/dist/interface/schemas/list_of_characters.js +0 -2
  101. package/dist/interface/schemas/pareto_to_typescript.d.ts +0 -3
  102. package/dist/interface/schemas/pareto_to_typescript.js +0 -2
  103. package/dist/interface/schemas/text.d.ts +0 -1
  104. package/dist/interface/schemas/text.js +0 -2
  105. package/dist/shorthands/declarations_command/target.js +0 -2
  106. package/dist/shorthands/declarations_query/target.js +0 -2
  107. package/dist/shorthands/declarations_refiner/target.js +0 -23
  108. package/dist/shorthands/declarations_transformer/target.d.ts +0 -6
  109. package/dist/shorthands/declarations_transformer/target.js +0 -17
  110. package/dist/shorthands/implementation_command/target.d.ts +0 -2
  111. package/dist/shorthands/implementation_command/target.js +0 -2
  112. package/dist/shorthands/implementation_query/target.d.ts +0 -2
  113. package/dist/shorthands/implementation_query/target.js +0 -2
  114. package/dist/shorthands/implementation_refiner/target.d.ts +0 -2
  115. package/dist/shorthands/implementation_refiner/target.js +0 -2
  116. package/dist/shorthands/implementation_transformer/target.d.ts +0 -11
  117. package/dist/shorthands/implementation_transformer/target.js +0 -33
  118. package/dist/submodules/implementation/interface/schemas/document_and_location.d.ts +0 -1
  119. package/dist/submodules/implementation/interface/schemas/document_and_location.js +0 -2
  120. package/dist/submodules/interface/interface/schemas/document_and_location.d.ts +0 -1
  121. package/dist/submodules/interface/interface/schemas/document_and_location.js +0 -2
  122. package/dist/submodules/interface/interface/schemas/resolved.js +0 -3
  123. package/dist/submodules/interface/interface/schemas/unresolved.js +0 -4
  124. package/dist/submodules/pareto_new/implementation/transformers/declarations_command/typescript_light.d.ts +0 -8
  125. package/dist/submodules/pareto_new/implementation/transformers/declarations_command/typescript_light.js +0 -10
  126. package/dist/submodules/pareto_new/implementation/transformers/declarations_query/typescript_light.d.ts +0 -8
  127. package/dist/submodules/pareto_new/implementation/transformers/declarations_query/typescript_light.js +0 -10
  128. package/dist/submodules/pareto_new/implementation/transformers/declarations_refiner/typescript_light.d.ts +0 -8
  129. package/dist/submodules/pareto_new/implementation/transformers/declarations_refiner/typescript_light.js +0 -53
  130. package/dist/submodules/pareto_new/implementation/transformers/declarations_transformer/typescript_light.d.ts +0 -8
  131. package/dist/submodules/pareto_new/implementation/transformers/declarations_transformer/typescript_light.js +0 -40
  132. package/dist/submodules/pareto_new/implementation/transformers/implementation_command/typescript_light.d.ts +0 -8
  133. package/dist/submodules/pareto_new/implementation/transformers/implementation_command/typescript_light.js +0 -10
  134. package/dist/submodules/pareto_new/implementation/transformers/implementation_query/typescript_light.d.ts +0 -8
  135. package/dist/submodules/pareto_new/implementation/transformers/implementation_query/typescript_light.js +0 -10
  136. package/dist/submodules/pareto_new/implementation/transformers/implementation_refiner/typescript_light.d.ts +0 -8
  137. package/dist/submodules/pareto_new/implementation/transformers/implementation_refiner/typescript_light.js +0 -10
  138. package/dist/submodules/pareto_new/implementation/transformers/implementation_transformer/typescript_light.js +0 -35
  139. package/dist/submodules/pareto_new/implementation/transformers/schemas/typescript_light.js +0 -161
  140. package/dist/submodules/pareto_new/interface/schemas/declarations_command.js +0 -2
  141. package/dist/submodules/pareto_new/interface/schemas/declarations_query.js +0 -2
  142. package/dist/submodules/pareto_new/interface/schemas/declarations_refiner.js +0 -5
  143. package/dist/submodules/pareto_new/interface/schemas/declarations_transformer.d.ts +0 -24
  144. package/dist/submodules/pareto_new/interface/schemas/declarations_transformer.js +0 -4
  145. package/dist/submodules/pareto_new/interface/schemas/document_and_location.d.ts +0 -1
  146. package/dist/submodules/pareto_new/interface/schemas/document_and_location.js +0 -2
  147. package/dist/submodules/pareto_new/interface/schemas/implementation_command.d.ts +0 -1
  148. package/dist/submodules/pareto_new/interface/schemas/implementation_command.js +0 -2
  149. package/dist/submodules/pareto_new/interface/schemas/implementation_query.d.ts +0 -1
  150. package/dist/submodules/pareto_new/interface/schemas/implementation_query.js +0 -2
  151. package/dist/submodules/pareto_new/interface/schemas/implementation_refiner.d.ts +0 -1
  152. package/dist/submodules/pareto_new/interface/schemas/implementation_refiner.js +0 -2
  153. package/dist/submodules/pareto_new/interface/schemas/implementation_transformer.d.ts +0 -36
  154. package/dist/submodules/pareto_new/interface/schemas/implementation_transformer.js +0 -2
  155. package/dist/submodules/pareto_new/interface/schemas/schemas.js +0 -2
  156. package/dist/submodules/typescript_light/implementation/transformers/text/identifier.d.ts +0 -3
  157. package/dist/submodules/typescript_light/implementation/transformers/typescript_light/prose.d.ts +0 -43
  158. package/dist/submodules/typescript_light/implementation/transformers/typescript_light/prose.js +0 -753
  159. package/dist/submodules/typescript_light/interface/schemas/filesystem.d.ts +0 -1
  160. package/dist/submodules/typescript_light/interface/schemas/filesystem.js +0 -2
  161. package/dist/submodules/typescript_light/interface/schemas/list_of_characters.d.ts +0 -1
  162. package/dist/submodules/typescript_light/interface/schemas/list_of_characters.js +0 -2
  163. package/dist/submodules/typescript_light/interface/schemas/prose.d.ts +0 -1
  164. package/dist/submodules/typescript_light/interface/schemas/prose.js +0 -2
  165. package/dist/submodules/typescript_light/interface/schemas/typescript_light.js +0 -3
  166. /package/dist/submodules/pareto_new/interface/schemas/{declarations_command.d.ts → command.d.ts} +0 -0
  167. /package/dist/submodules/pareto_new/interface/schemas/{declarations_query.d.ts → query.d.ts} +0 -0
@@ -0,0 +1,8 @@
1
+ import * as p_ from 'pareto-core/implementation/query';
2
+ import type * as query_interfaces_file_in_directory_out from "pareto-common/modules/file_in_directory_out/interface/queries";
3
+ import type * as s_serialize_prose from "../../submodules/typescript_light/schemas/serialization.js";
4
+ import type * as s_module from "../../submodules/pareto_new/interface/schemas/module.js";
5
+ export declare const $$: p_.Query_Implementation<query_interfaces_file_in_directory_out.operation, {
6
+ 'module': s_module.Root;
7
+ 'serialization parameters': s_serialize_prose.Source_File_Parameters;
8
+ }, null>;
@@ -0,0 +1,14 @@
1
+ import * as p_ from 'pareto-core/implementation/query';
2
+ import p_super_query_result from 'pareto-core/implementation/query/super_query_result';
3
+ //dependencies
4
+ import * as t_typescript_to_directory_content from "../../submodules/typescript_light/implementation/transformers/typescript_light/directory_content.js";
5
+ import * as t_pareto_to_typescript from "../../submodules/pareto_new/implementation/transformers/module/typescript_light.js";
6
+ export const $$ = p_.query(($d, $s, $q) => p_super_query_result(p_.e.direct_result(null)).transform(($) => ({
7
+ 'data': t_typescript_to_directory_content.Directory(t_pareto_to_typescript.Module($s.module), {
8
+ 'file write parameters': {
9
+ 'newline': '\n',
10
+ },
11
+ 'serialization parameters': $s['serialization parameters'],
12
+ })
13
+ })));
14
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFyZXRvX3RvX3R5cGVzY3JpcHQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvaW1wbGVtZW50YXRpb24vcXVlcmllcy9wYXJldG9fdG9fdHlwZXNjcmlwdC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssRUFBRSxNQUFNLGtDQUFrQyxDQUFBO0FBQ3RELE9BQU8sb0JBQW9CLE1BQU0scURBQXFELENBQUE7QUFVdEYsY0FBYztBQUNkLE9BQU8sS0FBSyxpQ0FBaUMsTUFBTSxxR0FBcUcsQ0FBQTtBQUN4SixPQUFPLEtBQUssc0JBQXNCLE1BQU0sb0ZBQW9GLENBQUE7QUFJNUgsTUFBTSxDQUFDLE1BQU0sRUFBRSxHQU9YLEVBQUUsQ0FBQyxLQUFLLENBQ1IsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLEVBQUUsRUFBRSxFQUFFLENBQUMsb0JBQW9CLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQ3BFLENBQUMsQ0FBQyxFQUF3QyxFQUFFLENBQUMsQ0FBQztJQUMxQyxNQUFNLEVBQUUsaUNBQWlDLENBQUMsU0FBUyxDQUMvQyxzQkFBc0IsQ0FBQyxNQUFNLENBQ3pCLEVBQUUsQ0FBQyxNQUFNLENBQ1osRUFDRDtRQUNJLHVCQUF1QixFQUFFO1lBQ3JCLFNBQVMsRUFBRSxJQUFJO1NBQ2xCO1FBQ0QsMEJBQTBCLEVBQUUsRUFBRSxDQUFDLDBCQUEwQixDQUFDO0tBQzdELENBQ0o7Q0FDSixDQUFDLENBQ0wsQ0FDSixDQUFBIn0=
@@ -1,3 +1 @@
1
- import type * as s_in from "../../../submodules/implementation/interface/schemas/resolved.js";
2
- import type * as s_out from "../../../interface/schemas/file_system.js";
3
- export declare const Package_Set: ($: s_in.Package_Set) => s_out.Directory;
1
+ export {};
@@ -1,30 +1,40 @@
1
- import * as p_ from 'pareto-core/implementation/transformer';
2
- import p_unreachable_code_path from 'pareto-core/implementation/transformer/specials/unreachable_code_path';
3
- //transformations
4
- import * as t_typescript from "./typescript.js";
5
- import * as t_typescript_light_to_prose_block from "../../../submodules/typescript_light/implementation/transformers/typescript_light/prose.js";
6
- //resolvers
7
- // import * as r_pareto_implementation from "pareto/implementation/generated/liana/schemas/implementation/resolve"
8
- export const Package_Set = ($) => {
9
- return t_typescript_light_to_prose_block.Directory(t_typescript.Package_Set($, ($) => p_.from.state($).decide(($) => {
10
- switch ($[0]) {
11
- case 'directory name ending with ts': return p_.option($, () => p_unreachable_code_path("I think this needs proper implementation"));
12
- default: return p_.exhaustive($[0]);
13
- }
14
- })
15
- // r_pareto_implementation.r_Module_Set(
16
- // t_pareto_to_pareto_implementation.Module($),
17
- // {
18
- // 'parameters': {
19
- // 'lookups': null,
20
- // 'values': null,
21
- // },
22
- // 'location 2 string': location_to_string
23
- // }
24
- // ),
25
- // {
26
- // 'phase': 'development',
27
- // }
28
- ));
29
- };
30
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplZF90eXBlc2NyaXB0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2ltcGxlbWVudGF0aW9uL3RyYW5zZm9ybWVycy9pbXBsZW1lbnRhdGlvbi9zZXJpYWxpemVkX3R5cGVzY3JpcHQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxLQUFLLEVBQUUsTUFBTSx3Q0FBd0MsQ0FBQTtBQUM1RCxPQUFPLHVCQUF1QixNQUFNLHVFQUF1RSxDQUFBO0FBUTNHLGlCQUFpQjtBQUNqQixPQUFPLEtBQUssWUFBWSxNQUFNLGlCQUFpQixDQUFBO0FBQy9DLE9BQU8sS0FBSyxpQ0FBaUMsTUFBTSw0RkFBNEYsQ0FBQTtBQUUvSSxXQUFXO0FBQ1gsa0hBQWtIO0FBR2xILE1BQU0sQ0FBQyxNQUFNLFdBQVcsR0FBRyxDQUFDLENBQW1CLEVBQW1CLEVBQUU7SUFDaEUsT0FBTyxpQ0FBaUMsQ0FBQyxTQUFTLENBQzlDLFlBQVksQ0FBQyxXQUFXLENBQ3BCLENBQUMsRUFDRCxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUMxQixDQUFDLENBQUMsRUFBRSxFQUFFO1FBQ0YsUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQztZQUNYLEtBQUssK0JBQStCLENBQUMsQ0FBQyxPQUFPLEVBQUUsQ0FBQyxNQUFNLENBQUMsQ0FBQyxFQUFFLEdBQUcsRUFBRSxDQUFDLHVCQUF1QixDQUFDLDBDQUEwQyxDQUFDLENBQUMsQ0FBQTtZQUNwSSxPQUFPLENBQUMsQ0FBQyxPQUFPLEVBQUUsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUE7UUFDdkMsQ0FBQztJQUNMLENBQUMsQ0FBQztJQUNOLHdDQUF3QztJQUN4QyxtREFBbUQ7SUFDbkQsUUFBUTtJQUNSLDBCQUEwQjtJQUMxQiwrQkFBK0I7SUFDL0IsOEJBQThCO0lBQzlCLGFBQWE7SUFDYixrREFBa0Q7SUFDbEQsUUFBUTtJQUNSLEtBQUs7SUFDTCxJQUFJO0lBQ0osOEJBQThCO0lBQzlCLElBQUk7S0FDUCxDQUNKLENBQUE7QUFDTCxDQUFDLENBQUEifQ==
1
+ // import * as p_ from 'pareto-core/implementation/transformer'
2
+ // import p_unreachable_code_path from 'pareto-core/implementation/transformer/specials/unreachable_code_path'
3
+ export {};
4
+ // //FIXME, this one should be moved to pareto-targets
5
+ // //schemas
6
+ // import type * as s_in from "../../../submodules/implementation/interface/schemas/resolved.js"
7
+ // import type * as s_out from "pareto-filesystem-unrestricted-api/interface/schemas/directory_content"
8
+ // //transformations
9
+ // import * as t_typescript from "./typescript.js"
10
+ // import * as t_typescript_light_to_directory_content from "../../../submodules/typescript_light/implementation/transformers/typescript_light/directory_content.js"
11
+ // //resolvers
12
+ // // import * as r_pareto_implementation from "pareto/implementation/generated/liana/schemas/implementation/resolve"
13
+ // export const Package_Set = ($: s_in.Package_Set): s_out.Directory => {
14
+ // return t_typescript_light_to_directory_content.Directory(
15
+ // t_typescript.Package_Set(
16
+ // $,
17
+ // ($) => p_.from.state($).decide(
18
+ // ($) => {
19
+ // switch ($[0]) {
20
+ // case 'directory name ending with ts': return p_.option($, () => p_unreachable_code_path("I think this needs proper implementation"))
21
+ // default: return p_.exhaustive($[0])
22
+ // }
23
+ // })
24
+ // // r_pareto_implementation.r_Module_Set(
25
+ // // t_pareto_to_pareto_implementation.Module($),
26
+ // // {
27
+ // // 'parameters': {
28
+ // // 'lookups': null,
29
+ // // 'values': null,
30
+ // // },
31
+ // // 'location 2 string': location_to_string
32
+ // // }
33
+ // // ),
34
+ // // {
35
+ // // 'phase': 'development',
36
+ // // }
37
+ // )
38
+ // )
39
+ // }
40
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplZF90eXBlc2NyaXB0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2ltcGxlbWVudGF0aW9uL3RyYW5zZm9ybWVycy9pbXBsZW1lbnRhdGlvbi9zZXJpYWxpemVkX3R5cGVzY3JpcHQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsK0RBQStEO0FBQy9ELDhHQUE4Rzs7QUFFOUcsc0RBQXNEO0FBRXRELFlBQVk7QUFDWixnR0FBZ0c7QUFDaEcsdUdBQXVHO0FBRXZHLG9CQUFvQjtBQUNwQixrREFBa0Q7QUFDbEQsb0tBQW9LO0FBRXBLLGNBQWM7QUFDZCxxSEFBcUg7QUFHckgseUVBQXlFO0FBQ3pFLGdFQUFnRTtBQUNoRSxvQ0FBb0M7QUFDcEMsaUJBQWlCO0FBQ2pCLDhDQUE4QztBQUM5QywyQkFBMkI7QUFDM0Isc0NBQXNDO0FBQ3RDLCtKQUErSjtBQUMvSiw4REFBOEQ7QUFDOUQsd0JBQXdCO0FBQ3hCLHFCQUFxQjtBQUNyQix1REFBdUQ7QUFDdkQsa0VBQWtFO0FBQ2xFLHVCQUF1QjtBQUN2Qix5Q0FBeUM7QUFDekMsOENBQThDO0FBQzlDLDZDQUE2QztBQUM3Qyw0QkFBNEI7QUFDNUIsaUVBQWlFO0FBQ2pFLHVCQUF1QjtBQUN2QixvQkFBb0I7QUFDcEIsbUJBQW1CO0FBQ25CLDZDQUE2QztBQUM3QyxtQkFBbUI7QUFDbkIsWUFBWTtBQUNaLFFBQVE7QUFDUixJQUFJIn0=
@@ -1,10 +1,9 @@
1
+ import * as p_ from 'pareto-core/implementation/transformer';
1
2
  import type * as p_i from 'pareto-core/interface/transformer';
2
- import type * as p_di from 'pareto-core/interface/data';
3
- import type * as p_ri from 'pareto-core/interface/refiner';
3
+ import type * as p_di from 'pareto-core/interface/schema';
4
4
  import type * as s_in from "../../../submodules/implementation/interface/schemas/resolved.js";
5
- import type * as s_parameters from "../../../interface/schemas/pareto_to_typescript.js";
6
5
  import type * as s_out from "../../../interface/schemas/typescript_light.js";
7
- export declare const Package_Set: p_ri.Refiner<s_out.Directory, s_parameters.Error, s_in.Package_Set>;
6
+ export declare const Package_Set: p_.Transformer<s_in.Package_Set, s_out.Directory>;
8
7
  export declare const Temp_Value_Type_Specification: ($: s_in.Temp_Value_Type_Specification) => s_out.Type;
9
8
  export declare const Assign: p_i.Transformer<s_in.Assign, s_out.Expression>;
10
9
  export declare const reduce: <Item extends p_di.Value, Result_Type extends p_di.Value>($: p_di.List<Item>, initial_state: Result_Type, update_state: (value: Item, current: Result_Type) => Result_Type) => Result_Type;