pareto-fountain-pen 0.1.11 → 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,100 +1,100 @@
1
1
  import * as _pt from 'exupery-core-types';
2
- export type _T_Derived_Reference<G_Source, T_Type> = T_Type;
3
- export type _T_Dictionary<G_Source, T_D> = _pt.Dictionary<T_D>;
4
- export type _T_List<G_Source, T_L> = _pt.Array<T_L>;
5
- export type _T_Ordered_Dictionary<G_Source, T_D> = {
2
+ export type _T_Derived_Reference<M_Source, T_Type> = T_Type;
3
+ export type _T_Dictionary<M_Source, T_D> = _pt.Dictionary<T_D>;
4
+ export type _T_List<M_Source, T_L> = _pt.Array<T_L>;
5
+ export type _T_Ordered_Dictionary<M_Source, T_D> = {
6
6
  readonly 'dictionary': _pt.Dictionary<T_D>;
7
7
  readonly 'ordered list': _pt.Array<_pt.Key_Value_Pair<T_D>>;
8
8
  };
9
- export type _T_Reference_To_Circular_Dependent_Sibling<G_Source, T_Dictionary_Entry> = {
9
+ export type _T_Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry> = {
10
10
  readonly 'entry': _pt.Computed_Value<T_Dictionary_Entry>;
11
11
  readonly 'key': string;
12
12
  };
13
- export type _T_Reference_To_Normal_Dictionary_Entry<G_Source, T_Dictionary_Entry> = {
13
+ export type _T_Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry> = {
14
14
  readonly 'entry': T_Dictionary_Entry;
15
15
  readonly 'key': string;
16
16
  };
17
- export type _T_Reference_To_Stacked_Dictionary_Entry<G_Source, T_Dictionary_Entry> = {
17
+ export type _T_Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry> = {
18
18
  readonly 'entry': T_Dictionary_Entry;
19
19
  readonly 'key': string;
20
20
  readonly 'up steps': number;
21
21
  };
22
- export type _T_State_Group<G_Source, T_SG> = T_SG;
23
- export type Derived_Reference<G_Source, T_Type> = _T_Derived_Reference<G_Source, T_Type>;
24
- export type Dictionary<G_Source, T_D> = _T_Dictionary<G_Source, T_D>;
25
- export type List<G_Source, T_L> = _T_List<G_Source, T_L>;
26
- export type Ordered_Dictionary<G_Source, T_D> = _T_Ordered_Dictionary<G_Source, T_D>;
27
- export type Reference_To_Circular_Dependent_Sibling<G_Source, T_Dictionary_Entry> = _T_Reference_To_Circular_Dependent_Sibling<G_Source, T_Dictionary_Entry>;
28
- export type Reference_To_Normal_Dictionary_Entry<G_Source, T_Dictionary_Entry> = _T_Reference_To_Normal_Dictionary_Entry<G_Source, T_Dictionary_Entry>;
29
- export type Reference_To_Stacked_Dictionary_Entry<G_Source, T_Dictionary_Entry> = _T_Reference_To_Stacked_Dictionary_Entry<G_Source, T_Dictionary_Entry>;
30
- export type State_Group<G_Source, T_SG> = _T_State_Group<G_Source, T_SG>;
22
+ export type _T_State_Group<M_Source, T_SG> = T_SG;
23
+ export type Derived_Reference<M_Source, T_Type> = _T_Derived_Reference<M_Source, T_Type>;
24
+ export type Dictionary<M_Source, T_D> = _T_Dictionary<M_Source, T_D>;
25
+ export type List<M_Source, T_L> = _T_List<M_Source, T_L>;
26
+ export type Ordered_Dictionary<M_Source, T_D> = _T_Ordered_Dictionary<M_Source, T_D>;
27
+ export type Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry> = _T_Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry>;
28
+ export type Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry> = _T_Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry>;
29
+ export type Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry> = _T_Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry>;
30
+ export type State_Group<M_Source, T_SG> = _T_State_Group<M_Source, T_SG>;
31
31
  export declare namespace _T_Dictionary {
32
- type D<G_Source, T_D> = T_D;
32
+ type D<M_Source, T_D> = T_D;
33
33
  }
34
34
  export declare namespace _T_List {
35
- type L<G_Source, T_L> = T_L;
35
+ type L<M_Source, T_L> = T_L;
36
36
  }
37
37
  export declare namespace _T_Ordered_Dictionary {
38
38
  namespace dictionary {
39
- type D<G_Source, T_D> = T_D;
39
+ type D<M_Source, T_D> = T_D;
40
40
  }
41
- type dictionary<G_Source, T_D> = _pt.Dictionary<T_D>;
41
+ type dictionary<M_Source, T_D> = _pt.Dictionary<T_D>;
42
42
  namespace ordered_list {
43
43
  namespace L {
44
- type K<G_Source, T_D> = T_D;
44
+ type K<M_Source, T_D> = T_D;
45
45
  }
46
- type L<G_Source, T_D> = _pt.Key_Value_Pair<T_D>;
46
+ type L<M_Source, T_D> = _pt.Key_Value_Pair<T_D>;
47
47
  }
48
- type ordered_list<G_Source, T_D> = _pt.Array<_pt.Key_Value_Pair<T_D>>;
48
+ type ordered_list<M_Source, T_D> = _pt.Array<_pt.Key_Value_Pair<T_D>>;
49
49
  }
50
50
  export declare namespace _T_Reference_To_Circular_Dependent_Sibling {
51
51
  namespace entry {
52
- type C<G_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
52
+ type C<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
53
53
  }
54
- type entry<G_Source, T_Dictionary_Entry> = _pt.Computed_Value<T_Dictionary_Entry>;
55
- type key<G_Source, T_Dictionary_Entry> = string;
54
+ type entry<M_Source, T_Dictionary_Entry> = _pt.Computed_Value<T_Dictionary_Entry>;
55
+ type key<M_Source, T_Dictionary_Entry> = string;
56
56
  }
57
57
  export declare namespace _T_Reference_To_Normal_Dictionary_Entry {
58
- type entry<G_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
59
- type key<G_Source, T_Dictionary_Entry> = string;
58
+ type entry<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
59
+ type key<M_Source, T_Dictionary_Entry> = string;
60
60
  }
61
61
  export declare namespace _T_Reference_To_Stacked_Dictionary_Entry {
62
- type entry<G_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
63
- type key<G_Source, T_Dictionary_Entry> = string;
64
- type up_steps<G_Source, T_Dictionary_Entry> = number;
62
+ type entry<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
63
+ type key<M_Source, T_Dictionary_Entry> = string;
64
+ type up_steps<M_Source, T_Dictionary_Entry> = number;
65
65
  }
66
66
  export declare namespace Dictionary {
67
- type D<G_Source, T_D> = T_D;
67
+ type D<M_Source, T_D> = T_D;
68
68
  }
69
69
  export declare namespace List {
70
- type L<G_Source, T_L> = T_L;
70
+ type L<M_Source, T_L> = T_L;
71
71
  }
72
72
  export declare namespace Ordered_Dictionary {
73
73
  namespace dictionary {
74
- type D<G_Source, T_D> = T_D;
74
+ type D<M_Source, T_D> = T_D;
75
75
  }
76
- type dictionary<G_Source, T_D> = _pt.Dictionary<T_D>;
76
+ type dictionary<M_Source, T_D> = _pt.Dictionary<T_D>;
77
77
  namespace ordered_list {
78
78
  namespace L {
79
- type K<G_Source, T_D> = T_D;
79
+ type K<M_Source, T_D> = T_D;
80
80
  }
81
- type L<G_Source, T_D> = _pt.Key_Value_Pair<T_D>;
81
+ type L<M_Source, T_D> = _pt.Key_Value_Pair<T_D>;
82
82
  }
83
- type ordered_list<G_Source, T_D> = _pt.Array<_pt.Key_Value_Pair<T_D>>;
83
+ type ordered_list<M_Source, T_D> = _pt.Array<_pt.Key_Value_Pair<T_D>>;
84
84
  }
85
85
  export declare namespace Reference_To_Circular_Dependent_Sibling {
86
86
  namespace entry {
87
- type C<G_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
87
+ type C<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
88
88
  }
89
- type entry<G_Source, T_Dictionary_Entry> = _pt.Computed_Value<T_Dictionary_Entry>;
90
- type key<G_Source, T_Dictionary_Entry> = string;
89
+ type entry<M_Source, T_Dictionary_Entry> = _pt.Computed_Value<T_Dictionary_Entry>;
90
+ type key<M_Source, T_Dictionary_Entry> = string;
91
91
  }
92
92
  export declare namespace Reference_To_Normal_Dictionary_Entry {
93
- type entry<G_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
94
- type key<G_Source, T_Dictionary_Entry> = string;
93
+ type entry<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
94
+ type key<M_Source, T_Dictionary_Entry> = string;
95
95
  }
96
96
  export declare namespace Reference_To_Stacked_Dictionary_Entry {
97
- type entry<G_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
98
- type key<G_Source, T_Dictionary_Entry> = string;
99
- type up_steps<G_Source, T_Dictionary_Entry> = number;
97
+ type entry<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
98
+ type key<M_Source, T_Dictionary_Entry> = string;
99
+ type up_steps<M_Source, T_Dictionary_Entry> = number;
100
100
  }
@@ -1,19 +1,19 @@
1
1
  import * as _pt from 'exupery-core-types';
2
- export type _T_Dictionary<G_Source, T_D> = _pt.Dictionary<T_D>;
3
- export type _T_List<G_Source, T_L> = _pt.Array<T_L>;
4
- export type _T_State_Group<G_Source, T_SG> = T_SG;
5
- export type Dictionary<G_Source, T_D> = _T_Dictionary<G_Source, T_D>;
6
- export type List<G_Source, T_L> = _T_List<G_Source, T_L>;
7
- export type State_Group<G_Source, T_SG> = _T_State_Group<G_Source, T_SG>;
2
+ export type _T_Dictionary<M_Source, T_D> = _pt.Dictionary<T_D>;
3
+ export type _T_List<M_Source, T_L> = _pt.Array<T_L>;
4
+ export type _T_State_Group<M_Source, T_SG> = T_SG;
5
+ export type Dictionary<M_Source, T_D> = _T_Dictionary<M_Source, T_D>;
6
+ export type List<M_Source, T_L> = _T_List<M_Source, T_L>;
7
+ export type State_Group<M_Source, T_SG> = _T_State_Group<M_Source, T_SG>;
8
8
  export declare namespace _T_Dictionary {
9
- type D<G_Source, T_D> = T_D;
9
+ type D<M_Source, T_D> = T_D;
10
10
  }
11
11
  export declare namespace _T_List {
12
- type L<G_Source, T_L> = T_L;
12
+ type L<M_Source, T_L> = T_L;
13
13
  }
14
14
  export declare namespace Dictionary {
15
- type D<G_Source, T_D> = T_D;
15
+ type D<M_Source, T_D> = T_D;
16
16
  }
17
17
  export declare namespace List {
18
- type L<G_Source, T_L> = T_L;
18
+ type L<M_Source, T_L> = T_L;
19
19
  }
@@ -1,184 +1,181 @@
1
1
  import * as _pt from 'exupery-core-types';
2
- export type _T_Derived_Reference<G_Source, T_Type> = null;
3
- export type _T_Dictionary<G_Source, T_D> = {
2
+ export type _T_Derived_Reference<M_Source, T_Type> = null;
3
+ export type _T_Dictionary<M_Source, T_D> = {
4
4
  readonly 'dictionary': _pt.Dictionary<{
5
5
  readonly 'entry': T_D;
6
- readonly 'location': G_Source;
6
+ readonly 'location': M_Source;
7
7
  }>;
8
- readonly 'location': G_Source;
8
+ readonly 'location': M_Source;
9
9
  };
10
- export type _T_List<G_Source, T_L> = {
10
+ export type _T_List<M_Source, T_L> = {
11
11
  readonly 'list': _pt.Array<{
12
12
  readonly 'element': T_L;
13
- readonly 'location': G_Source;
13
+ readonly 'location': M_Source;
14
14
  }>;
15
- readonly 'location': G_Source;
15
+ readonly 'location': M_Source;
16
16
  };
17
- export type _T_Ordered_Dictionary<G_Source, T_D> = {
17
+ export type _T_Ordered_Dictionary<M_Source, T_D> = {
18
18
  readonly 'dictionary': _pt.Dictionary<{
19
19
  readonly 'entry': T_D;
20
- readonly 'location': G_Source;
20
+ readonly 'location': M_Source;
21
21
  }>;
22
- readonly 'location': G_Source;
22
+ readonly 'location': M_Source;
23
23
  };
24
- export type _T_Reference_To_Circular_Dependent_Sibling<G_Source, T_Dictionary_Entry> = {
24
+ export type _T_Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry> = {
25
25
  readonly 'key': string;
26
- readonly 'location': G_Source;
26
+ readonly 'location': M_Source;
27
27
  };
28
- export type _T_Reference_To_Normal_Dictionary_Entry<G_Source, T_Dictionary_Entry> = {
28
+ export type _T_Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry> = {
29
29
  readonly 'key': string;
30
- readonly 'location': G_Source;
30
+ readonly 'location': M_Source;
31
31
  };
32
- export type _T_Reference_To_Stacked_Dictionary_Entry<G_Source, T_Dictionary_Entry> = {
32
+ export type _T_Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry> = {
33
33
  readonly 'key': string;
34
- readonly 'location': G_Source;
35
- readonly 'up steps': number;
34
+ readonly 'location': M_Source;
36
35
  };
37
- export type _T_State_Group<G_Source, T_SG> = {
38
- readonly 'location': G_Source;
36
+ export type _T_State_Group<M_Source, T_SG> = {
37
+ readonly 'location': M_Source;
39
38
  readonly 'state group': T_SG;
40
39
  };
41
- export type Derived_Reference<G_Source, T_Type> = _T_Derived_Reference<G_Source, T_Type>;
42
- export type Dictionary<G_Source, T_D> = _T_Dictionary<G_Source, T_D>;
43
- export type List<G_Source, T_L> = _T_List<G_Source, T_L>;
44
- export type Ordered_Dictionary<G_Source, T_D> = _T_Ordered_Dictionary<G_Source, T_D>;
45
- export type Reference_To_Circular_Dependent_Sibling<G_Source, T_Dictionary_Entry> = _T_Reference_To_Circular_Dependent_Sibling<G_Source, T_Dictionary_Entry>;
46
- export type Reference_To_Normal_Dictionary_Entry<G_Source, T_Dictionary_Entry> = _T_Reference_To_Normal_Dictionary_Entry<G_Source, T_Dictionary_Entry>;
47
- export type Reference_To_Stacked_Dictionary_Entry<G_Source, T_Dictionary_Entry> = _T_Reference_To_Stacked_Dictionary_Entry<G_Source, T_Dictionary_Entry>;
48
- export type State_Group<G_Source, T_SG> = _T_State_Group<G_Source, T_SG>;
40
+ export type Derived_Reference<M_Source, T_Type> = _T_Derived_Reference<M_Source, T_Type>;
41
+ export type Dictionary<M_Source, T_D> = _T_Dictionary<M_Source, T_D>;
42
+ export type List<M_Source, T_L> = _T_List<M_Source, T_L>;
43
+ export type Ordered_Dictionary<M_Source, T_D> = _T_Ordered_Dictionary<M_Source, T_D>;
44
+ export type Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry> = _T_Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry>;
45
+ export type Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry> = _T_Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry>;
46
+ export type Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry> = _T_Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry>;
47
+ export type State_Group<M_Source, T_SG> = _T_State_Group<M_Source, T_SG>;
49
48
  export declare namespace _T_Dictionary {
50
49
  namespace dictionary {
51
50
  namespace D {
52
- type entry<G_Source, T_D> = T_D;
53
- type location<G_Source, T_D> = G_Source;
51
+ type entry<M_Source, T_D> = T_D;
52
+ type location<M_Source, T_D> = M_Source;
54
53
  }
55
- type D<G_Source, T_D> = {
54
+ type D<M_Source, T_D> = {
56
55
  readonly 'entry': T_D;
57
- readonly 'location': G_Source;
56
+ readonly 'location': M_Source;
58
57
  };
59
58
  }
60
- type dictionary<G_Source, T_D> = _pt.Dictionary<{
59
+ type dictionary<M_Source, T_D> = _pt.Dictionary<{
61
60
  readonly 'entry': T_D;
62
- readonly 'location': G_Source;
61
+ readonly 'location': M_Source;
63
62
  }>;
64
- type location<G_Source, T_D> = G_Source;
63
+ type location<M_Source, T_D> = M_Source;
65
64
  }
66
65
  export declare namespace _T_List {
67
66
  namespace list {
68
67
  namespace L {
69
- type element<G_Source, T_L> = T_L;
70
- type location<G_Source, T_L> = G_Source;
68
+ type element<M_Source, T_L> = T_L;
69
+ type location<M_Source, T_L> = M_Source;
71
70
  }
72
- type L<G_Source, T_L> = {
71
+ type L<M_Source, T_L> = {
73
72
  readonly 'element': T_L;
74
- readonly 'location': G_Source;
73
+ readonly 'location': M_Source;
75
74
  };
76
75
  }
77
- type list<G_Source, T_L> = _pt.Array<{
76
+ type list<M_Source, T_L> = _pt.Array<{
78
77
  readonly 'element': T_L;
79
- readonly 'location': G_Source;
78
+ readonly 'location': M_Source;
80
79
  }>;
81
- type location<G_Source, T_L> = G_Source;
80
+ type location<M_Source, T_L> = M_Source;
82
81
  }
83
82
  export declare namespace _T_Ordered_Dictionary {
84
83
  namespace dictionary {
85
84
  namespace D {
86
- type entry<G_Source, T_D> = T_D;
87
- type location<G_Source, T_D> = G_Source;
85
+ type entry<M_Source, T_D> = T_D;
86
+ type location<M_Source, T_D> = M_Source;
88
87
  }
89
- type D<G_Source, T_D> = {
88
+ type D<M_Source, T_D> = {
90
89
  readonly 'entry': T_D;
91
- readonly 'location': G_Source;
90
+ readonly 'location': M_Source;
92
91
  };
93
92
  }
94
- type dictionary<G_Source, T_D> = _pt.Dictionary<{
93
+ type dictionary<M_Source, T_D> = _pt.Dictionary<{
95
94
  readonly 'entry': T_D;
96
- readonly 'location': G_Source;
95
+ readonly 'location': M_Source;
97
96
  }>;
98
- type location<G_Source, T_D> = G_Source;
97
+ type location<M_Source, T_D> = M_Source;
99
98
  }
100
99
  export declare namespace _T_Reference_To_Circular_Dependent_Sibling {
101
- type key<G_Source, T_Dictionary_Entry> = string;
102
- type location<G_Source, T_Dictionary_Entry> = G_Source;
100
+ type key<M_Source, T_Dictionary_Entry> = string;
101
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
103
102
  }
104
103
  export declare namespace _T_Reference_To_Normal_Dictionary_Entry {
105
- type key<G_Source, T_Dictionary_Entry> = string;
106
- type location<G_Source, T_Dictionary_Entry> = G_Source;
104
+ type key<M_Source, T_Dictionary_Entry> = string;
105
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
107
106
  }
108
107
  export declare namespace _T_Reference_To_Stacked_Dictionary_Entry {
109
- type key<G_Source, T_Dictionary_Entry> = string;
110
- type location<G_Source, T_Dictionary_Entry> = G_Source;
111
- type up_steps<G_Source, T_Dictionary_Entry> = number;
108
+ type key<M_Source, T_Dictionary_Entry> = string;
109
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
112
110
  }
113
111
  export declare namespace _T_State_Group {
114
- type location<G_Source, T_SG> = G_Source;
115
- type state_group<G_Source, T_SG> = T_SG;
112
+ type location<M_Source, T_SG> = M_Source;
113
+ type state_group<M_Source, T_SG> = T_SG;
116
114
  }
117
115
  export declare namespace Dictionary {
118
116
  namespace dictionary {
119
117
  namespace D {
120
- type entry<G_Source, T_D> = T_D;
121
- type location<G_Source, T_D> = G_Source;
118
+ type entry<M_Source, T_D> = T_D;
119
+ type location<M_Source, T_D> = M_Source;
122
120
  }
123
- type D<G_Source, T_D> = {
121
+ type D<M_Source, T_D> = {
124
122
  readonly 'entry': T_D;
125
- readonly 'location': G_Source;
123
+ readonly 'location': M_Source;
126
124
  };
127
125
  }
128
- type dictionary<G_Source, T_D> = _pt.Dictionary<{
126
+ type dictionary<M_Source, T_D> = _pt.Dictionary<{
129
127
  readonly 'entry': T_D;
130
- readonly 'location': G_Source;
128
+ readonly 'location': M_Source;
131
129
  }>;
132
- type location<G_Source, T_D> = G_Source;
130
+ type location<M_Source, T_D> = M_Source;
133
131
  }
134
132
  export declare namespace List {
135
133
  namespace list {
136
134
  namespace L {
137
- type element<G_Source, T_L> = T_L;
138
- type location<G_Source, T_L> = G_Source;
135
+ type element<M_Source, T_L> = T_L;
136
+ type location<M_Source, T_L> = M_Source;
139
137
  }
140
- type L<G_Source, T_L> = {
138
+ type L<M_Source, T_L> = {
141
139
  readonly 'element': T_L;
142
- readonly 'location': G_Source;
140
+ readonly 'location': M_Source;
143
141
  };
144
142
  }
145
- type list<G_Source, T_L> = _pt.Array<{
143
+ type list<M_Source, T_L> = _pt.Array<{
146
144
  readonly 'element': T_L;
147
- readonly 'location': G_Source;
145
+ readonly 'location': M_Source;
148
146
  }>;
149
- type location<G_Source, T_L> = G_Source;
147
+ type location<M_Source, T_L> = M_Source;
150
148
  }
151
149
  export declare namespace Ordered_Dictionary {
152
150
  namespace dictionary {
153
151
  namespace D {
154
- type entry<G_Source, T_D> = T_D;
155
- type location<G_Source, T_D> = G_Source;
152
+ type entry<M_Source, T_D> = T_D;
153
+ type location<M_Source, T_D> = M_Source;
156
154
  }
157
- type D<G_Source, T_D> = {
155
+ type D<M_Source, T_D> = {
158
156
  readonly 'entry': T_D;
159
- readonly 'location': G_Source;
157
+ readonly 'location': M_Source;
160
158
  };
161
159
  }
162
- type dictionary<G_Source, T_D> = _pt.Dictionary<{
160
+ type dictionary<M_Source, T_D> = _pt.Dictionary<{
163
161
  readonly 'entry': T_D;
164
- readonly 'location': G_Source;
162
+ readonly 'location': M_Source;
165
163
  }>;
166
- type location<G_Source, T_D> = G_Source;
164
+ type location<M_Source, T_D> = M_Source;
167
165
  }
168
166
  export declare namespace Reference_To_Circular_Dependent_Sibling {
169
- type key<G_Source, T_Dictionary_Entry> = string;
170
- type location<G_Source, T_Dictionary_Entry> = G_Source;
167
+ type key<M_Source, T_Dictionary_Entry> = string;
168
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
171
169
  }
172
170
  export declare namespace Reference_To_Normal_Dictionary_Entry {
173
- type key<G_Source, T_Dictionary_Entry> = string;
174
- type location<G_Source, T_Dictionary_Entry> = G_Source;
171
+ type key<M_Source, T_Dictionary_Entry> = string;
172
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
175
173
  }
176
174
  export declare namespace Reference_To_Stacked_Dictionary_Entry {
177
- type key<G_Source, T_Dictionary_Entry> = string;
178
- type location<G_Source, T_Dictionary_Entry> = G_Source;
179
- type up_steps<G_Source, T_Dictionary_Entry> = number;
175
+ type key<M_Source, T_Dictionary_Entry> = string;
176
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
180
177
  }
181
178
  export declare namespace State_Group {
182
- type location<G_Source, T_SG> = G_Source;
183
- type state_group<G_Source, T_SG> = T_SG;
179
+ type location<M_Source, T_SG> = M_Source;
180
+ type state_group<M_Source, T_SG> = T_SG;
184
181
  }
@@ -1,14 +1,16 @@
1
- import * as _i_core from "../../core/unconstrained";
1
+ import * as _i_core from "../../../core/unconstrained";
2
2
  export type _T_Block = _i_core._T_List<null, _T_Block_Part>;
3
3
  export type _T_Block_Part = _i_core._T_State_Group<null, readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['sub block', _T_Block]>;
4
- export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>>;
4
+ export type _T_Directory = _i_core._T_Dictionary<null, _T_Node>;
5
5
  export type _T_Line = _i_core._T_List<null, _T_Line_Part>;
6
6
  export type _T_Line_Part = _i_core._T_State_Group<null, readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line]>;
7
+ export type _T_Node = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>;
7
8
  export type Block = _T_Block;
8
9
  export type Block_Part = _T_Block_Part;
9
10
  export type Directory = _T_Directory;
10
11
  export type Line = _T_Line;
11
12
  export type Line_Part = _T_Line_Part;
13
+ export type Node = _T_Node;
12
14
  export declare namespace _T_Block {
13
15
  namespace L {
14
16
  }
@@ -29,17 +31,8 @@ export declare namespace _T_Block_Part {
29
31
  }
30
32
  export declare namespace _T_Directory {
31
33
  namespace D {
32
- namespace SG {
33
- namespace directory {
34
- }
35
- type directory = _T_Directory;
36
- namespace file {
37
- }
38
- type file = _T_Block;
39
- }
40
- type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
41
34
  }
42
- type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>;
35
+ type D = _T_Node;
43
36
  }
44
37
  export declare namespace _T_Line {
45
38
  namespace L {
@@ -59,6 +52,17 @@ export declare namespace _T_Line_Part {
59
52
  }
60
53
  type SG = readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line];
61
54
  }
55
+ export declare namespace _T_Node {
56
+ namespace SG {
57
+ namespace directory {
58
+ }
59
+ type directory = _T_Directory;
60
+ namespace file {
61
+ }
62
+ type file = _T_Block;
63
+ }
64
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
65
+ }
62
66
  export declare namespace Block {
63
67
  namespace L {
64
68
  }
@@ -79,17 +83,8 @@ export declare namespace Block_Part {
79
83
  }
80
84
  export declare namespace Directory {
81
85
  namespace D {
82
- namespace SG {
83
- namespace directory {
84
- }
85
- type directory = _T_Directory;
86
- namespace file {
87
- }
88
- type file = _T_Block;
89
- }
90
- type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
91
86
  }
92
- type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>;
87
+ type D = _T_Node;
93
88
  }
94
89
  export declare namespace Line {
95
90
  namespace L {
@@ -109,3 +104,14 @@ export declare namespace Line_Part {
109
104
  }
110
105
  type SG = readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['snippet', string] | readonly ['sub line', _T_Line];
111
106
  }
107
+ export declare namespace Node {
108
+ namespace SG {
109
+ namespace directory {
110
+ }
111
+ type directory = _T_Directory;
112
+ namespace file {
113
+ }
114
+ type file = _T_Block;
115
+ }
116
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
117
+ }
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5jb25zdHJhaW5lZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvYmxvY2svdW5jb25zdHJhaW5lZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5jb25zdHJhaW5lZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvYmxvY2svZGF0YV90eXBlcy91bmNvbnN0cmFpbmVkLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==