pareto-fountain-pen 0.1.12 → 0.1.13

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 (114) hide show
  1. package/dist/generated/implementation/generic/resolve.d.ts +41 -10
  2. package/dist/generated/implementation/generic/resolve.js +82 -67
  3. package/dist/generated/implementation/generic/unmarshall.d.ts +15 -10
  4. package/dist/generated/implementation/generic/unmarshall.js +132 -72
  5. package/dist/generated/implementation/schemas/block/marshall.d.ts +6 -5
  6. package/dist/generated/implementation/schemas/block/marshall.js +30 -36
  7. package/dist/generated/implementation/schemas/block/unmarshall.d.ts +1 -0
  8. package/dist/generated/implementation/schemas/block/unmarshall.js +49 -39
  9. package/dist/generated/implementation/schemas/lines/marshall.d.ts +2 -2
  10. package/dist/generated/implementation/schemas/lines/marshall.js +8 -18
  11. package/dist/generated/implementation/schemas/lines/unmarshall.js +17 -23
  12. package/dist/generated/implementation/schemas/semi_lines/marshall.d.ts +2 -2
  13. package/dist/generated/implementation/schemas/semi_lines/marshall.js +9 -19
  14. package/dist/generated/implementation/schemas/semi_lines/unmarshall.js +20 -24
  15. package/dist/generated/implementation/schemas/text/marshall.d.ts +2 -2
  16. package/dist/generated/implementation/schemas/text/marshall.js +8 -18
  17. package/dist/generated/implementation/schemas/text/unmarshall.js +17 -23
  18. package/dist/generated/interface/core/astn_source.d.ts +39 -33
  19. package/dist/generated/interface/core/astn_target.d.ts +15 -15
  20. package/dist/generated/interface/core/resolve.d.ts +6 -6
  21. package/dist/generated/interface/core/resolved.d.ts +46 -46
  22. package/dist/generated/interface/core/unconstrained.d.ts +10 -10
  23. package/dist/generated/interface/core/unresolved.d.ts +84 -87
  24. package/dist/generated/interface/schemas/block/{unconstrained.d.ts → data_types/unconstrained.d.ts} +28 -22
  25. package/dist/generated/interface/schemas/block/{unconstrained.js → data_types/unconstrained.js} +1 -1
  26. package/dist/generated/interface/schemas/block/marshall.d.ts +63 -76
  27. package/dist/generated/interface/schemas/block/migrate_boilerplate.d.ts +24 -2
  28. package/dist/generated/interface/schemas/block/unmarshall.d.ts +77 -6
  29. package/dist/generated/interface/schemas/block/value_deserializers.d.ts +44 -0
  30. package/dist/generated/interface/schemas/block/value_deserializers.js +3 -0
  31. package/dist/generated/interface/schemas/block/value_serializers.d.ts +44 -0
  32. package/dist/generated/interface/schemas/block/value_serializers.js +3 -0
  33. package/dist/generated/interface/schemas/lines/{unconstrained.d.ts → data_types/unconstrained.d.ts} +1 -1
  34. package/dist/generated/interface/schemas/{semi_lines → lines/data_types}/unconstrained.js +1 -1
  35. package/dist/generated/interface/schemas/lines/marshall.d.ts +16 -59
  36. package/dist/generated/interface/schemas/lines/migrate_boilerplate.d.ts +2 -2
  37. package/dist/generated/interface/schemas/lines/unmarshall.d.ts +20 -3
  38. package/dist/generated/interface/schemas/lines/value_deserializers.d.ts +44 -0
  39. package/dist/generated/interface/schemas/lines/value_deserializers.js +3 -0
  40. package/dist/generated/interface/schemas/lines/value_serializers.d.ts +44 -0
  41. package/dist/generated/interface/schemas/lines/value_serializers.js +3 -0
  42. package/dist/generated/interface/schemas/semi_lines/{unconstrained.d.ts → data_types/unconstrained.d.ts} +1 -1
  43. package/dist/generated/interface/schemas/{text → semi_lines/data_types}/unconstrained.js +1 -1
  44. package/dist/generated/interface/schemas/semi_lines/marshall.d.ts +16 -59
  45. package/dist/generated/interface/schemas/semi_lines/migrate_boilerplate.d.ts +2 -2
  46. package/dist/generated/interface/schemas/semi_lines/unmarshall.d.ts +20 -3
  47. package/dist/generated/interface/schemas/semi_lines/value_deserializers.d.ts +44 -0
  48. package/dist/generated/interface/schemas/semi_lines/value_deserializers.js +3 -0
  49. package/dist/generated/interface/schemas/semi_lines/value_serializers.d.ts +44 -0
  50. package/dist/generated/interface/schemas/semi_lines/value_serializers.js +3 -0
  51. package/dist/generated/interface/schemas/text/{unconstrained.d.ts → data_types/unconstrained.d.ts} +1 -1
  52. package/dist/generated/interface/schemas/{lines → text/data_types}/unconstrained.js +1 -1
  53. package/dist/generated/interface/schemas/text/marshall.d.ts +16 -59
  54. package/dist/generated/interface/schemas/text/migrate_boilerplate.d.ts +2 -2
  55. package/dist/generated/interface/schemas/text/unmarshall.d.ts +20 -3
  56. package/dist/generated/interface/schemas/text/value_deserializers.d.ts +44 -0
  57. package/dist/generated/interface/schemas/text/value_deserializers.js +3 -0
  58. package/dist/generated/interface/schemas/text/value_serializers.d.ts +44 -0
  59. package/dist/generated/interface/schemas/text/value_serializers.js +3 -0
  60. package/dist/index.js +8 -18
  61. package/dist/other/write_to_disk.d.ts +9 -1
  62. package/dist/other/write_to_disk.js +45 -38
  63. package/dist/serialize/block.d.ts +1 -1
  64. package/dist/serialize/block.js +8 -18
  65. package/dist/serialize/semi_lines.d.ts +2 -2
  66. package/dist/serialize/semi_lines.js +8 -18
  67. package/dist/shorthands/block.d.ts +1 -1
  68. package/dist/shorthands/block.js +8 -18
  69. package/dist/shorthands/lines.d.ts +1 -1
  70. package/dist/transformations/block/lines.d.ts +2 -2
  71. package/dist/transformations/block/lines.js +8 -18
  72. package/dist/transformations/block/semi_lines.d.ts +2 -2
  73. package/dist/transformations/block/semi_lines.js +8 -18
  74. package/dist/transformations/semi_lines/lines.d.ts +2 -2
  75. package/dist/transformations/semi_lines/lines.js +8 -18
  76. package/package.json +4 -4
  77. package/dist/generated/generic/resolve.d.ts +0 -90
  78. package/dist/generated/generic/resolve.js +0 -261
  79. package/dist/generated/implementation/schemas/block/migration_boilerplate.d.ts +0 -7
  80. package/dist/generated/implementation/schemas/block/migration_boilerplate.js +0 -65
  81. package/dist/generated/implementation/schemas/block/serializer.d.ts +0 -7
  82. package/dist/generated/implementation/schemas/block/serializer.js +0 -123
  83. package/dist/generated/implementation/schemas/lines/migration_boilerplate.d.ts +0 -3
  84. package/dist/generated/implementation/schemas/lines/migration_boilerplate.js +0 -38
  85. package/dist/generated/implementation/schemas/lines/serializer.d.ts +0 -3
  86. package/dist/generated/implementation/schemas/lines/serializer.js +0 -51
  87. package/dist/generated/implementation/schemas/semi_lines/migration_boilerplate.d.ts +0 -3
  88. package/dist/generated/implementation/schemas/semi_lines/migration_boilerplate.js +0 -41
  89. package/dist/generated/implementation/schemas/semi_lines/serializer.d.ts +0 -3
  90. package/dist/generated/implementation/schemas/semi_lines/serializer.js +0 -57
  91. package/dist/generated/implementation/schemas/text/migration_boilerplate.d.ts +0 -3
  92. package/dist/generated/implementation/schemas/text/migration_boilerplate.js +0 -38
  93. package/dist/generated/implementation/schemas/text/serializer.d.ts +0 -3
  94. package/dist/generated/implementation/schemas/text/serializer.js +0 -51
  95. package/dist/generated/interface/core/poormans_parser.d.ts +0 -184
  96. package/dist/generated/interface/core/poormans_parser.js +0 -3
  97. package/dist/generated/interface/generic/resolve.d.ts +0 -11
  98. package/dist/generated/interface/generic/resolve.js +0 -3
  99. package/dist/generated/interface/schemas/block/migration_boilerplate.d.ts +0 -134
  100. package/dist/generated/interface/schemas/block/migration_boilerplate.js +0 -3
  101. package/dist/generated/interface/schemas/block/serializer.d.ts +0 -226
  102. package/dist/generated/interface/schemas/block/serializer.js +0 -3
  103. package/dist/generated/interface/schemas/lines/migration_boilerplate.d.ts +0 -46
  104. package/dist/generated/interface/schemas/lines/migration_boilerplate.js +0 -3
  105. package/dist/generated/interface/schemas/lines/serializer.d.ts +0 -106
  106. package/dist/generated/interface/schemas/lines/serializer.js +0 -3
  107. package/dist/generated/interface/schemas/semi_lines/migration_boilerplate.d.ts +0 -46
  108. package/dist/generated/interface/schemas/semi_lines/migration_boilerplate.js +0 -3
  109. package/dist/generated/interface/schemas/semi_lines/serializer.d.ts +0 -106
  110. package/dist/generated/interface/schemas/semi_lines/serializer.js +0 -3
  111. package/dist/generated/interface/schemas/text/migration_boilerplate.d.ts +0 -46
  112. package/dist/generated/interface/schemas/text/migration_boilerplate.js +0 -3
  113. package/dist/generated/interface/schemas/text/serializer.d.ts +0 -106
  114. package/dist/generated/interface/schemas/text/serializer.js +0 -3
@@ -1,104 +1,61 @@
1
- import * as _i_in from "./unconstrained";
1
+ import * as _i_in from "./data_types/unconstrained";
2
2
  import * as _i_out from "../../core/astn_target";
3
- export type _T_Value_Serializers = {
4
- readonly 'boolean': ($$_: boolean, $$_p: null) => string;
5
- readonly 'custom numbers': null;
6
- readonly 'default number': ($$_: number, $$_p: null) => string;
7
- };
8
- export type _T_s_Directory = ($$_: _i_in._T_Directory, $$_p: {
9
- readonly 'value serializers': _T_Value_Serializers;
3
+ import * as _i_vs from "./value_serializers";
4
+ export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: {
5
+ readonly 'value serializers': _i_vs._T_Value_Serializers;
10
6
  }) => _i_out._T_Value;
11
- export type _T_s_Lines = ($$_: _i_in._T_Lines, $$_p: {
12
- readonly 'value serializers': _T_Value_Serializers;
7
+ export type _T_Lines = ($$_: _i_in._T_Lines, $$_p: {
8
+ readonly 'value serializers': _i_vs._T_Value_Serializers;
13
9
  }) => _i_out._T_Value;
14
- export type Value_Serializers = _T_Value_Serializers;
15
- export type s_Directory = _T_s_Directory;
16
- export type s_Lines = _T_s_Lines;
17
- export declare namespace _T_Value_Serializers {
18
- namespace _boolean {
19
- type CONTEXT = boolean;
20
- namespace PARAMS {
21
- }
22
- type RESULT = string;
23
- }
24
- type _boolean = ($$_: boolean, $$_p: null) => string;
25
- namespace custom_numbers {
26
- }
27
- type custom_numbers = null;
28
- namespace default_number {
29
- type CONTEXT = number;
30
- namespace PARAMS {
31
- }
32
- type RESULT = string;
33
- }
34
- type default_number = ($$_: number, $$_p: null) => string;
35
- }
36
- export declare namespace _T_s_Directory {
10
+ export type Directory = _T_Directory;
11
+ export type Lines = _T_Lines;
12
+ export declare namespace _T_Directory {
37
13
  namespace CONTEXT {
38
14
  }
39
15
  type CONTEXT = _i_in._T_Directory;
40
16
  namespace PARAMS {
41
17
  namespace value_serializers {
42
18
  }
43
- type value_serializers = _T_Value_Serializers;
19
+ type value_serializers = _i_vs._T_Value_Serializers;
44
20
  }
45
21
  namespace RESULT {
46
22
  }
47
23
  type RESULT = _i_out._T_Value;
48
24
  }
49
- export declare namespace _T_s_Lines {
25
+ export declare namespace _T_Lines {
50
26
  namespace CONTEXT {
51
27
  }
52
28
  type CONTEXT = _i_in._T_Lines;
53
29
  namespace PARAMS {
54
30
  namespace value_serializers {
55
31
  }
56
- type value_serializers = _T_Value_Serializers;
32
+ type value_serializers = _i_vs._T_Value_Serializers;
57
33
  }
58
34
  namespace RESULT {
59
35
  }
60
36
  type RESULT = _i_out._T_Value;
61
37
  }
62
- export declare namespace Value_Serializers {
63
- namespace _boolean {
64
- type CONTEXT = boolean;
65
- namespace PARAMS {
66
- }
67
- type RESULT = string;
68
- }
69
- type _boolean = ($$_: boolean, $$_p: null) => string;
70
- namespace custom_numbers {
71
- }
72
- type custom_numbers = null;
73
- namespace default_number {
74
- type CONTEXT = number;
75
- namespace PARAMS {
76
- }
77
- type RESULT = string;
78
- }
79
- type default_number = ($$_: number, $$_p: null) => string;
80
- }
81
- export declare namespace s_Directory {
38
+ export declare namespace Directory {
82
39
  namespace CONTEXT {
83
40
  }
84
41
  type CONTEXT = _i_in._T_Directory;
85
42
  namespace PARAMS {
86
43
  namespace value_serializers {
87
44
  }
88
- type value_serializers = _T_Value_Serializers;
45
+ type value_serializers = _i_vs._T_Value_Serializers;
89
46
  }
90
47
  namespace RESULT {
91
48
  }
92
49
  type RESULT = _i_out._T_Value;
93
50
  }
94
- export declare namespace s_Lines {
51
+ export declare namespace Lines {
95
52
  namespace CONTEXT {
96
53
  }
97
54
  type CONTEXT = _i_in._T_Lines;
98
55
  namespace PARAMS {
99
56
  namespace value_serializers {
100
57
  }
101
- type value_serializers = _T_Value_Serializers;
58
+ type value_serializers = _i_vs._T_Value_Serializers;
102
59
  }
103
60
  namespace RESULT {
104
61
  }
@@ -1,5 +1,5 @@
1
- import * as _i_in from "./unconstrained";
2
- import * as _i_out from "./unconstrained";
1
+ import * as _i_in from "./data_types/unconstrained";
2
+ import * as _i_out from "./data_types/unconstrained";
3
3
  export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: null) => _i_out._T_Directory;
4
4
  export type _T_Lines = ($$_: _i_in._T_Lines, $$_p: null) => _i_out._T_Lines;
5
5
  export type Directory = _T_Directory;
@@ -1,7 +1,12 @@
1
1
  import * as _i_in from "../../core/astn_source";
2
- import * as _i_out from "./unconstrained";
3
- export type _T_Directory = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Directory;
4
- export type _T_Lines = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Lines;
2
+ import * as _i_out from "./data_types/unconstrained";
3
+ import * as _i_vd from "./value_deserializers";
4
+ export type _T_Directory = ($$_: _i_in._T_Value, $$_p: {
5
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
6
+ }) => _i_out._T_Directory;
7
+ export type _T_Lines = ($$_: _i_in._T_Value, $$_p: {
8
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
9
+ }) => _i_out._T_Lines;
5
10
  export type Directory = _T_Directory;
6
11
  export type Lines = _T_Lines;
7
12
  export declare namespace _T_Directory {
@@ -9,6 +14,9 @@ export declare namespace _T_Directory {
9
14
  }
10
15
  type CONTEXT = _i_in._T_Value;
11
16
  namespace PARAMS {
17
+ namespace value_deserializers {
18
+ }
19
+ type value_deserializers = _i_vd._T_Value_Deserializers;
12
20
  }
13
21
  namespace RESULT {
14
22
  }
@@ -19,6 +27,9 @@ export declare namespace _T_Lines {
19
27
  }
20
28
  type CONTEXT = _i_in._T_Value;
21
29
  namespace PARAMS {
30
+ namespace value_deserializers {
31
+ }
32
+ type value_deserializers = _i_vd._T_Value_Deserializers;
22
33
  }
23
34
  namespace RESULT {
24
35
  }
@@ -29,6 +40,9 @@ export declare namespace Directory {
29
40
  }
30
41
  type CONTEXT = _i_in._T_Value;
31
42
  namespace PARAMS {
43
+ namespace value_deserializers {
44
+ }
45
+ type value_deserializers = _i_vd._T_Value_Deserializers;
32
46
  }
33
47
  namespace RESULT {
34
48
  }
@@ -39,6 +53,9 @@ export declare namespace Lines {
39
53
  }
40
54
  type CONTEXT = _i_in._T_Value;
41
55
  namespace PARAMS {
56
+ namespace value_deserializers {
57
+ }
58
+ type value_deserializers = _i_vd._T_Value_Deserializers;
42
59
  }
43
60
  namespace RESULT {
44
61
  }
@@ -0,0 +1,44 @@
1
+ export type _T_Value_Deserializers = {
2
+ readonly 'boolean': ($$_: string, $$_p: null) => boolean;
3
+ readonly 'custom numbers': null;
4
+ readonly 'default number': ($$_: string, $$_p: null) => number;
5
+ };
6
+ export type Value_Deserializers = _T_Value_Deserializers;
7
+ export declare namespace _T_Value_Deserializers {
8
+ namespace _boolean {
9
+ type CONTEXT = string;
10
+ namespace PARAMS {
11
+ }
12
+ type RESULT = boolean;
13
+ }
14
+ type _boolean = ($$_: string, $$_p: null) => boolean;
15
+ namespace custom_numbers {
16
+ }
17
+ type custom_numbers = null;
18
+ namespace default_number {
19
+ type CONTEXT = string;
20
+ namespace PARAMS {
21
+ }
22
+ type RESULT = number;
23
+ }
24
+ type default_number = ($$_: string, $$_p: null) => number;
25
+ }
26
+ export declare namespace Value_Deserializers {
27
+ namespace _boolean {
28
+ type CONTEXT = string;
29
+ namespace PARAMS {
30
+ }
31
+ type RESULT = boolean;
32
+ }
33
+ type _boolean = ($$_: string, $$_p: null) => boolean;
34
+ namespace custom_numbers {
35
+ }
36
+ type custom_numbers = null;
37
+ namespace default_number {
38
+ type CONTEXT = string;
39
+ namespace PARAMS {
40
+ }
41
+ type RESULT = number;
42
+ }
43
+ type default_number = ($$_: string, $$_p: null) => number;
44
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsdWVfZGVzZXJpYWxpemVycy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvbGluZXMvdmFsdWVfZGVzZXJpYWxpemVycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,44 @@
1
+ export type _T_Value_Serializers = {
2
+ readonly 'boolean': ($$_: boolean, $$_p: null) => string;
3
+ readonly 'custom numbers': null;
4
+ readonly 'default number': ($$_: number, $$_p: null) => string;
5
+ };
6
+ export type Value_Serializers = _T_Value_Serializers;
7
+ export declare namespace _T_Value_Serializers {
8
+ namespace _boolean {
9
+ type CONTEXT = boolean;
10
+ namespace PARAMS {
11
+ }
12
+ type RESULT = string;
13
+ }
14
+ type _boolean = ($$_: boolean, $$_p: null) => string;
15
+ namespace custom_numbers {
16
+ }
17
+ type custom_numbers = null;
18
+ namespace default_number {
19
+ type CONTEXT = number;
20
+ namespace PARAMS {
21
+ }
22
+ type RESULT = string;
23
+ }
24
+ type default_number = ($$_: number, $$_p: null) => string;
25
+ }
26
+ export declare namespace Value_Serializers {
27
+ namespace _boolean {
28
+ type CONTEXT = boolean;
29
+ namespace PARAMS {
30
+ }
31
+ type RESULT = string;
32
+ }
33
+ type _boolean = ($$_: boolean, $$_p: null) => string;
34
+ namespace custom_numbers {
35
+ }
36
+ type custom_numbers = null;
37
+ namespace default_number {
38
+ type CONTEXT = number;
39
+ namespace PARAMS {
40
+ }
41
+ type RESULT = string;
42
+ }
43
+ type default_number = ($$_: number, $$_p: null) => string;
44
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsdWVfc2VyaWFsaXplcnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvZ2VuZXJhdGVkL2ludGVyZmFjZS9zY2hlbWFzL2xpbmVzL3ZhbHVlX3NlcmlhbGl6ZXJzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
@@ -1,4 +1,4 @@
1
- import * as _i_core from "../../core/unconstrained";
1
+ import * as _i_core from "../../../core/unconstrained";
2
2
  export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>>;
3
3
  export type _T_Lines = _i_core._T_List<null, {
4
4
  readonly 'indentation': number;
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5jb25zdHJhaW5lZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvdGV4dC91bmNvbnN0cmFpbmVkLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5jb25zdHJhaW5lZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvc2VtaV9saW5lcy9kYXRhX3R5cGVzL3VuY29uc3RyYWluZWQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -1,104 +1,61 @@
1
- import * as _i_in from "./unconstrained";
1
+ import * as _i_in from "./data_types/unconstrained";
2
2
  import * as _i_out from "../../core/astn_target";
3
- export type _T_Value_Serializers = {
4
- readonly 'boolean': ($$_: boolean, $$_p: null) => string;
5
- readonly 'custom numbers': null;
6
- readonly 'default number': ($$_: number, $$_p: null) => string;
7
- };
8
- export type _T_s_Directory = ($$_: _i_in._T_Directory, $$_p: {
9
- readonly 'value serializers': _T_Value_Serializers;
3
+ import * as _i_vs from "./value_serializers";
4
+ export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: {
5
+ readonly 'value serializers': _i_vs._T_Value_Serializers;
10
6
  }) => _i_out._T_Value;
11
- export type _T_s_Lines = ($$_: _i_in._T_Lines, $$_p: {
12
- readonly 'value serializers': _T_Value_Serializers;
7
+ export type _T_Lines = ($$_: _i_in._T_Lines, $$_p: {
8
+ readonly 'value serializers': _i_vs._T_Value_Serializers;
13
9
  }) => _i_out._T_Value;
14
- export type Value_Serializers = _T_Value_Serializers;
15
- export type s_Directory = _T_s_Directory;
16
- export type s_Lines = _T_s_Lines;
17
- export declare namespace _T_Value_Serializers {
18
- namespace _boolean {
19
- type CONTEXT = boolean;
20
- namespace PARAMS {
21
- }
22
- type RESULT = string;
23
- }
24
- type _boolean = ($$_: boolean, $$_p: null) => string;
25
- namespace custom_numbers {
26
- }
27
- type custom_numbers = null;
28
- namespace default_number {
29
- type CONTEXT = number;
30
- namespace PARAMS {
31
- }
32
- type RESULT = string;
33
- }
34
- type default_number = ($$_: number, $$_p: null) => string;
35
- }
36
- export declare namespace _T_s_Directory {
10
+ export type Directory = _T_Directory;
11
+ export type Lines = _T_Lines;
12
+ export declare namespace _T_Directory {
37
13
  namespace CONTEXT {
38
14
  }
39
15
  type CONTEXT = _i_in._T_Directory;
40
16
  namespace PARAMS {
41
17
  namespace value_serializers {
42
18
  }
43
- type value_serializers = _T_Value_Serializers;
19
+ type value_serializers = _i_vs._T_Value_Serializers;
44
20
  }
45
21
  namespace RESULT {
46
22
  }
47
23
  type RESULT = _i_out._T_Value;
48
24
  }
49
- export declare namespace _T_s_Lines {
25
+ export declare namespace _T_Lines {
50
26
  namespace CONTEXT {
51
27
  }
52
28
  type CONTEXT = _i_in._T_Lines;
53
29
  namespace PARAMS {
54
30
  namespace value_serializers {
55
31
  }
56
- type value_serializers = _T_Value_Serializers;
32
+ type value_serializers = _i_vs._T_Value_Serializers;
57
33
  }
58
34
  namespace RESULT {
59
35
  }
60
36
  type RESULT = _i_out._T_Value;
61
37
  }
62
- export declare namespace Value_Serializers {
63
- namespace _boolean {
64
- type CONTEXT = boolean;
65
- namespace PARAMS {
66
- }
67
- type RESULT = string;
68
- }
69
- type _boolean = ($$_: boolean, $$_p: null) => string;
70
- namespace custom_numbers {
71
- }
72
- type custom_numbers = null;
73
- namespace default_number {
74
- type CONTEXT = number;
75
- namespace PARAMS {
76
- }
77
- type RESULT = string;
78
- }
79
- type default_number = ($$_: number, $$_p: null) => string;
80
- }
81
- export declare namespace s_Directory {
38
+ export declare namespace Directory {
82
39
  namespace CONTEXT {
83
40
  }
84
41
  type CONTEXT = _i_in._T_Directory;
85
42
  namespace PARAMS {
86
43
  namespace value_serializers {
87
44
  }
88
- type value_serializers = _T_Value_Serializers;
45
+ type value_serializers = _i_vs._T_Value_Serializers;
89
46
  }
90
47
  namespace RESULT {
91
48
  }
92
49
  type RESULT = _i_out._T_Value;
93
50
  }
94
- export declare namespace s_Lines {
51
+ export declare namespace Lines {
95
52
  namespace CONTEXT {
96
53
  }
97
54
  type CONTEXT = _i_in._T_Lines;
98
55
  namespace PARAMS {
99
56
  namespace value_serializers {
100
57
  }
101
- type value_serializers = _T_Value_Serializers;
58
+ type value_serializers = _i_vs._T_Value_Serializers;
102
59
  }
103
60
  namespace RESULT {
104
61
  }
@@ -1,5 +1,5 @@
1
- import * as _i_in from "./unconstrained";
2
- import * as _i_out from "./unconstrained";
1
+ import * as _i_in from "./data_types/unconstrained";
2
+ import * as _i_out from "./data_types/unconstrained";
3
3
  export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: null) => _i_out._T_Directory;
4
4
  export type _T_Lines = ($$_: _i_in._T_Lines, $$_p: null) => _i_out._T_Lines;
5
5
  export type Directory = _T_Directory;
@@ -1,7 +1,12 @@
1
1
  import * as _i_in from "../../core/astn_source";
2
- import * as _i_out from "./unconstrained";
3
- export type _T_Directory = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Directory;
4
- export type _T_Lines = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Lines;
2
+ import * as _i_out from "./data_types/unconstrained";
3
+ import * as _i_vd from "./value_deserializers";
4
+ export type _T_Directory = ($$_: _i_in._T_Value, $$_p: {
5
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
6
+ }) => _i_out._T_Directory;
7
+ export type _T_Lines = ($$_: _i_in._T_Value, $$_p: {
8
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
9
+ }) => _i_out._T_Lines;
5
10
  export type Directory = _T_Directory;
6
11
  export type Lines = _T_Lines;
7
12
  export declare namespace _T_Directory {
@@ -9,6 +14,9 @@ export declare namespace _T_Directory {
9
14
  }
10
15
  type CONTEXT = _i_in._T_Value;
11
16
  namespace PARAMS {
17
+ namespace value_deserializers {
18
+ }
19
+ type value_deserializers = _i_vd._T_Value_Deserializers;
12
20
  }
13
21
  namespace RESULT {
14
22
  }
@@ -19,6 +27,9 @@ export declare namespace _T_Lines {
19
27
  }
20
28
  type CONTEXT = _i_in._T_Value;
21
29
  namespace PARAMS {
30
+ namespace value_deserializers {
31
+ }
32
+ type value_deserializers = _i_vd._T_Value_Deserializers;
22
33
  }
23
34
  namespace RESULT {
24
35
  }
@@ -29,6 +40,9 @@ export declare namespace Directory {
29
40
  }
30
41
  type CONTEXT = _i_in._T_Value;
31
42
  namespace PARAMS {
43
+ namespace value_deserializers {
44
+ }
45
+ type value_deserializers = _i_vd._T_Value_Deserializers;
32
46
  }
33
47
  namespace RESULT {
34
48
  }
@@ -39,6 +53,9 @@ export declare namespace Lines {
39
53
  }
40
54
  type CONTEXT = _i_in._T_Value;
41
55
  namespace PARAMS {
56
+ namespace value_deserializers {
57
+ }
58
+ type value_deserializers = _i_vd._T_Value_Deserializers;
42
59
  }
43
60
  namespace RESULT {
44
61
  }
@@ -0,0 +1,44 @@
1
+ export type _T_Value_Deserializers = {
2
+ readonly 'boolean': ($$_: string, $$_p: null) => boolean;
3
+ readonly 'custom numbers': null;
4
+ readonly 'default number': ($$_: string, $$_p: null) => number;
5
+ };
6
+ export type Value_Deserializers = _T_Value_Deserializers;
7
+ export declare namespace _T_Value_Deserializers {
8
+ namespace _boolean {
9
+ type CONTEXT = string;
10
+ namespace PARAMS {
11
+ }
12
+ type RESULT = boolean;
13
+ }
14
+ type _boolean = ($$_: string, $$_p: null) => boolean;
15
+ namespace custom_numbers {
16
+ }
17
+ type custom_numbers = null;
18
+ namespace default_number {
19
+ type CONTEXT = string;
20
+ namespace PARAMS {
21
+ }
22
+ type RESULT = number;
23
+ }
24
+ type default_number = ($$_: string, $$_p: null) => number;
25
+ }
26
+ export declare namespace Value_Deserializers {
27
+ namespace _boolean {
28
+ type CONTEXT = string;
29
+ namespace PARAMS {
30
+ }
31
+ type RESULT = boolean;
32
+ }
33
+ type _boolean = ($$_: string, $$_p: null) => boolean;
34
+ namespace custom_numbers {
35
+ }
36
+ type custom_numbers = null;
37
+ namespace default_number {
38
+ type CONTEXT = string;
39
+ namespace PARAMS {
40
+ }
41
+ type RESULT = number;
42
+ }
43
+ type default_number = ($$_: string, $$_p: null) => number;
44
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsdWVfZGVzZXJpYWxpemVycy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvc2VtaV9saW5lcy92YWx1ZV9kZXNlcmlhbGl6ZXJzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
@@ -0,0 +1,44 @@
1
+ export type _T_Value_Serializers = {
2
+ readonly 'boolean': ($$_: boolean, $$_p: null) => string;
3
+ readonly 'custom numbers': null;
4
+ readonly 'default number': ($$_: number, $$_p: null) => string;
5
+ };
6
+ export type Value_Serializers = _T_Value_Serializers;
7
+ export declare namespace _T_Value_Serializers {
8
+ namespace _boolean {
9
+ type CONTEXT = boolean;
10
+ namespace PARAMS {
11
+ }
12
+ type RESULT = string;
13
+ }
14
+ type _boolean = ($$_: boolean, $$_p: null) => string;
15
+ namespace custom_numbers {
16
+ }
17
+ type custom_numbers = null;
18
+ namespace default_number {
19
+ type CONTEXT = number;
20
+ namespace PARAMS {
21
+ }
22
+ type RESULT = string;
23
+ }
24
+ type default_number = ($$_: number, $$_p: null) => string;
25
+ }
26
+ export declare namespace Value_Serializers {
27
+ namespace _boolean {
28
+ type CONTEXT = boolean;
29
+ namespace PARAMS {
30
+ }
31
+ type RESULT = string;
32
+ }
33
+ type _boolean = ($$_: boolean, $$_p: null) => string;
34
+ namespace custom_numbers {
35
+ }
36
+ type custom_numbers = null;
37
+ namespace default_number {
38
+ type CONTEXT = number;
39
+ namespace PARAMS {
40
+ }
41
+ type RESULT = string;
42
+ }
43
+ type default_number = ($$_: number, $$_p: null) => string;
44
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsdWVfc2VyaWFsaXplcnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvZ2VuZXJhdGVkL2ludGVyZmFjZS9zY2hlbWFzL3NlbWlfbGluZXMvdmFsdWVfc2VyaWFsaXplcnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -1,4 +1,4 @@
1
- import * as _i_core from "../../core/unconstrained";
1
+ import * as _i_core from "../../../core/unconstrained";
2
2
  export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Lines]>>;
3
3
  export type _T_Lines = string;
4
4
  export type Directory = _T_Directory;
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5jb25zdHJhaW5lZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvbGluZXMvdW5jb25zdHJhaW5lZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5jb25zdHJhaW5lZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvdGV4dC9kYXRhX3R5cGVzL3VuY29uc3RyYWluZWQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9