exupery 0.1.25 → 0.1.27

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 (21) hide show
  1. package/dist/generated/implementation/generic/resolve.d.ts +0 -3
  2. package/dist/generated/implementation/generic/resolve.js +1 -1
  3. package/dist/generated/implementation/schemas/typescript_light/marshall.d.ts +2 -2
  4. package/dist/generated/implementation/schemas/typescript_light/marshall.js +30 -30
  5. package/dist/generated/implementation/schemas/typescript_light/unmarshall.d.ts +2 -2
  6. package/dist/generated/implementation/schemas/typescript_light/unmarshall.js +14 -14
  7. package/dist/generated/interface/schemas/typescript_light/data_types/source.d.ts +42 -42
  8. package/dist/generated/interface/schemas/typescript_light/data_types/target.d.ts +42 -42
  9. package/dist/generated/interface/schemas/typescript_light/marshall.d.ts +12 -12
  10. package/dist/generated/interface/schemas/typescript_light/migrate_boilerplate.d.ts +16 -16
  11. package/dist/generated/interface/schemas/typescript_light/unmarshall.d.ts +14 -14
  12. package/dist/shorthands/typescript_light.d.ts +37 -20
  13. package/dist/shorthands/typescript_light.js +32 -2
  14. package/dist/transformations/implementation/typescript_light.d.ts +7 -7
  15. package/dist/transformations/implementation/typescript_light.js +215 -215
  16. package/dist/transformations/interface/typescript_light.d.ts +4 -4
  17. package/dist/transformations/interface/typescript_light.js +68 -68
  18. package/dist/transformations/library/typescript_light.js +4 -5
  19. package/dist/transformations/typescript_light/fountain_pen_block.d.ts +10 -7
  20. package/dist/transformations/typescript_light/fountain_pen_block.js +175 -145
  21. package/package.json +2 -2
@@ -1,8 +1,8 @@
1
1
  import * as _pt from 'exupery-core-types';
2
2
  import * as _i_core from "../../../core/resolved";
3
3
  export type _T_Block = _i_core._T_List<null, _T_Block_Part>;
4
- export type _T_Block_Part = _i_core._T_State_Group<null, readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Block_Part>] | readonly ['sub block', _T_Block]>;
5
- 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_Block_Part = _i_core._T_State_Group<null, readonly ['indent', _T_Group] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Block_Part>] | readonly ['snippet', string] | readonly ['sub block', _T_Block]>;
5
+ export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Group]>>;
6
6
  export type _T_Expression = _i_core._T_State_Group<null, readonly ['array literal', _i_core._T_List<null, _T_Expression>] | readonly [
7
7
  'arrow function',
8
8
  {
@@ -25,8 +25,8 @@ export type _T_Expression = _i_core._T_State_Group<null, readonly ['array litera
25
25
  readonly 'properties': _i_core._T_Dictionary<null, _T_Expression>;
26
26
  }
27
27
  ] | readonly ['string literal', _T_String_Literal] | readonly ['true', null]>;
28
- export type _T_Line = _i_core._T_List<null, _T_Line_Part>;
29
- export type _T_Line_Part = _i_core._T_State_Group<null, readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Line_Part>] | readonly ['snippet', string] | readonly ['sub line', _T_Line]>;
28
+ export type _T_Group = _i_core._T_List<null, _T_Group_Part>;
29
+ export type _T_Group_Part = _i_core._T_State_Group<null, readonly ['block', string] | readonly ['nested block', _T_Block] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Group_Part>] | readonly ['sub group', _T_Group]>;
30
30
  export type _T_Lines = _i_core._T_List<null, {
31
31
  readonly 'indentation': number;
32
32
  readonly 'text': string;
@@ -107,8 +107,8 @@ export type Block = _T_Block;
107
107
  export type Block_Part = _T_Block_Part;
108
108
  export type Directory = _T_Directory;
109
109
  export type Expression = _T_Expression;
110
- export type Line = _T_Line;
111
- export type Line_Part = _T_Line_Part;
110
+ export type Group = _T_Group;
111
+ export type Group_Part = _T_Group_Part;
112
112
  export type Lines = _T_Lines;
113
113
  export type Statements = _T_Statements;
114
114
  export type String_Literal = _T_String_Literal;
@@ -120,10 +120,9 @@ export declare namespace _T_Block {
120
120
  }
121
121
  export declare namespace _T_Block_Part {
122
122
  namespace SG {
123
- type line = string;
124
- namespace nested_line {
123
+ namespace indent {
125
124
  }
126
- type nested_line = _T_Line;
125
+ type indent = _T_Group;
127
126
  type nothing = null;
128
127
  namespace optional {
129
128
  namespace O {
@@ -131,11 +130,12 @@ export declare namespace _T_Block_Part {
131
130
  type O = _T_Block_Part;
132
131
  }
133
132
  type optional = _pt.Optional_Value<_T_Block_Part>;
133
+ type snippet = string;
134
134
  namespace sub_block {
135
135
  }
136
136
  type sub_block = _T_Block;
137
137
  }
138
- type SG = readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Block_Part>] | readonly ['sub block', _T_Block];
138
+ type SG = readonly ['indent', _T_Group] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Block_Part>] | readonly ['snippet', string] | readonly ['sub block', _T_Block];
139
139
  }
140
140
  export declare namespace _T_Directory {
141
141
  namespace D {
@@ -145,11 +145,11 @@ export declare namespace _T_Directory {
145
145
  type directory = _T_Directory;
146
146
  namespace file {
147
147
  }
148
- type file = _T_Block;
148
+ type file = _T_Group;
149
149
  }
150
- type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
150
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Group];
151
151
  }
152
- type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>;
152
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Group]>;
153
153
  }
154
154
  export declare namespace _T_Expression {
155
155
  namespace SG {
@@ -263,29 +263,29 @@ export declare namespace _T_Expression {
263
263
  }
264
264
  ] | readonly ['string literal', _T_String_Literal] | readonly ['true', null];
265
265
  }
266
- export declare namespace _T_Line {
266
+ export declare namespace _T_Group {
267
267
  namespace L {
268
268
  }
269
- type L = _T_Line_Part;
269
+ type L = _T_Group_Part;
270
270
  }
271
- export declare namespace _T_Line_Part {
271
+ export declare namespace _T_Group_Part {
272
272
  namespace SG {
273
- namespace indent {
273
+ type block = string;
274
+ namespace nested_block {
274
275
  }
275
- type indent = _T_Block;
276
+ type nested_block = _T_Block;
276
277
  type nothing = null;
277
278
  namespace optional {
278
279
  namespace O {
279
280
  }
280
- type O = _T_Line_Part;
281
+ type O = _T_Group_Part;
281
282
  }
282
- type optional = _pt.Optional_Value<_T_Line_Part>;
283
- type snippet = string;
284
- namespace sub_line {
283
+ type optional = _pt.Optional_Value<_T_Group_Part>;
284
+ namespace sub_group {
285
285
  }
286
- type sub_line = _T_Line;
286
+ type sub_group = _T_Group;
287
287
  }
288
- type SG = readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Line_Part>] | readonly ['snippet', string] | readonly ['sub line', _T_Line];
288
+ type SG = readonly ['block', string] | readonly ['nested block', _T_Block] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Group_Part>] | readonly ['sub group', _T_Group];
289
289
  }
290
290
  export declare namespace _T_Lines {
291
291
  namespace L {
@@ -625,10 +625,9 @@ export declare namespace Block {
625
625
  }
626
626
  export declare namespace Block_Part {
627
627
  namespace SG {
628
- type line = string;
629
- namespace nested_line {
628
+ namespace indent {
630
629
  }
631
- type nested_line = _T_Line;
630
+ type indent = _T_Group;
632
631
  type nothing = null;
633
632
  namespace optional {
634
633
  namespace O {
@@ -636,11 +635,12 @@ export declare namespace Block_Part {
636
635
  type O = _T_Block_Part;
637
636
  }
638
637
  type optional = _pt.Optional_Value<_T_Block_Part>;
638
+ type snippet = string;
639
639
  namespace sub_block {
640
640
  }
641
641
  type sub_block = _T_Block;
642
642
  }
643
- type SG = readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Block_Part>] | readonly ['sub block', _T_Block];
643
+ type SG = readonly ['indent', _T_Group] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Block_Part>] | readonly ['snippet', string] | readonly ['sub block', _T_Block];
644
644
  }
645
645
  export declare namespace Directory {
646
646
  namespace D {
@@ -650,11 +650,11 @@ export declare namespace Directory {
650
650
  type directory = _T_Directory;
651
651
  namespace file {
652
652
  }
653
- type file = _T_Block;
653
+ type file = _T_Group;
654
654
  }
655
- type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
655
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Group];
656
656
  }
657
- type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>;
657
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Group]>;
658
658
  }
659
659
  export declare namespace Expression {
660
660
  namespace SG {
@@ -768,29 +768,29 @@ export declare namespace Expression {
768
768
  }
769
769
  ] | readonly ['string literal', _T_String_Literal] | readonly ['true', null];
770
770
  }
771
- export declare namespace Line {
771
+ export declare namespace Group {
772
772
  namespace L {
773
773
  }
774
- type L = _T_Line_Part;
774
+ type L = _T_Group_Part;
775
775
  }
776
- export declare namespace Line_Part {
776
+ export declare namespace Group_Part {
777
777
  namespace SG {
778
- namespace indent {
778
+ type block = string;
779
+ namespace nested_block {
779
780
  }
780
- type indent = _T_Block;
781
+ type nested_block = _T_Block;
781
782
  type nothing = null;
782
783
  namespace optional {
783
784
  namespace O {
784
785
  }
785
- type O = _T_Line_Part;
786
+ type O = _T_Group_Part;
786
787
  }
787
- type optional = _pt.Optional_Value<_T_Line_Part>;
788
- type snippet = string;
789
- namespace sub_line {
788
+ type optional = _pt.Optional_Value<_T_Group_Part>;
789
+ namespace sub_group {
790
790
  }
791
- type sub_line = _T_Line;
791
+ type sub_group = _T_Group;
792
792
  }
793
- type SG = readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Line_Part>] | readonly ['snippet', string] | readonly ['sub line', _T_Line];
793
+ type SG = readonly ['block', string] | readonly ['nested block', _T_Block] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Group_Part>] | readonly ['sub group', _T_Group];
794
794
  }
795
795
  export declare namespace Lines {
796
796
  namespace L {
@@ -1,8 +1,8 @@
1
1
  import * as _pt from 'exupery-core-types';
2
2
  import * as _i_core from "../../../core/unconstrained";
3
3
  export type _T_Block = _i_core._T_List<null, _T_Block_Part>;
4
- export type _T_Block_Part = _i_core._T_State_Group<null, readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Block_Part>] | readonly ['sub block', _T_Block]>;
5
- 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_Block_Part = _i_core._T_State_Group<null, readonly ['indent', _T_Group] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Block_Part>] | readonly ['snippet', string] | readonly ['sub block', _T_Block]>;
5
+ export type _T_Directory = _i_core._T_Dictionary<null, _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Group]>>;
6
6
  export type _T_Expression = _i_core._T_State_Group<null, readonly ['array literal', _i_core._T_List<null, _T_Expression>] | readonly [
7
7
  'arrow function',
8
8
  {
@@ -25,8 +25,8 @@ export type _T_Expression = _i_core._T_State_Group<null, readonly ['array litera
25
25
  readonly 'properties': _i_core._T_Dictionary<null, _T_Expression>;
26
26
  }
27
27
  ] | readonly ['string literal', _T_String_Literal] | readonly ['true', null]>;
28
- export type _T_Line = _i_core._T_List<null, _T_Line_Part>;
29
- export type _T_Line_Part = _i_core._T_State_Group<null, readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Line_Part>] | readonly ['snippet', string] | readonly ['sub line', _T_Line]>;
28
+ export type _T_Group = _i_core._T_List<null, _T_Group_Part>;
29
+ export type _T_Group_Part = _i_core._T_State_Group<null, readonly ['block', string] | readonly ['nested block', _T_Block] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Group_Part>] | readonly ['sub group', _T_Group]>;
30
30
  export type _T_Lines = _i_core._T_List<null, {
31
31
  readonly 'indentation': number;
32
32
  readonly 'text': string;
@@ -107,8 +107,8 @@ export type Block = _T_Block;
107
107
  export type Block_Part = _T_Block_Part;
108
108
  export type Directory = _T_Directory;
109
109
  export type Expression = _T_Expression;
110
- export type Line = _T_Line;
111
- export type Line_Part = _T_Line_Part;
110
+ export type Group = _T_Group;
111
+ export type Group_Part = _T_Group_Part;
112
112
  export type Lines = _T_Lines;
113
113
  export type Statements = _T_Statements;
114
114
  export type String_Literal = _T_String_Literal;
@@ -120,10 +120,9 @@ export declare namespace _T_Block {
120
120
  }
121
121
  export declare namespace _T_Block_Part {
122
122
  namespace SG {
123
- type line = string;
124
- namespace nested_line {
123
+ namespace indent {
125
124
  }
126
- type nested_line = _T_Line;
125
+ type indent = _T_Group;
127
126
  type nothing = null;
128
127
  namespace optional {
129
128
  namespace O {
@@ -131,11 +130,12 @@ export declare namespace _T_Block_Part {
131
130
  type O = _T_Block_Part;
132
131
  }
133
132
  type optional = _pt.Optional_Value<_T_Block_Part>;
133
+ type snippet = string;
134
134
  namespace sub_block {
135
135
  }
136
136
  type sub_block = _T_Block;
137
137
  }
138
- type SG = readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Block_Part>] | readonly ['sub block', _T_Block];
138
+ type SG = readonly ['indent', _T_Group] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Block_Part>] | readonly ['snippet', string] | readonly ['sub block', _T_Block];
139
139
  }
140
140
  export declare namespace _T_Directory {
141
141
  namespace D {
@@ -145,11 +145,11 @@ export declare namespace _T_Directory {
145
145
  type directory = _T_Directory;
146
146
  namespace file {
147
147
  }
148
- type file = _T_Block;
148
+ type file = _T_Group;
149
149
  }
150
- type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
150
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Group];
151
151
  }
152
- type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>;
152
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Group]>;
153
153
  }
154
154
  export declare namespace _T_Expression {
155
155
  namespace SG {
@@ -263,29 +263,29 @@ export declare namespace _T_Expression {
263
263
  }
264
264
  ] | readonly ['string literal', _T_String_Literal] | readonly ['true', null];
265
265
  }
266
- export declare namespace _T_Line {
266
+ export declare namespace _T_Group {
267
267
  namespace L {
268
268
  }
269
- type L = _T_Line_Part;
269
+ type L = _T_Group_Part;
270
270
  }
271
- export declare namespace _T_Line_Part {
271
+ export declare namespace _T_Group_Part {
272
272
  namespace SG {
273
- namespace indent {
273
+ type block = string;
274
+ namespace nested_block {
274
275
  }
275
- type indent = _T_Block;
276
+ type nested_block = _T_Block;
276
277
  type nothing = null;
277
278
  namespace optional {
278
279
  namespace O {
279
280
  }
280
- type O = _T_Line_Part;
281
+ type O = _T_Group_Part;
281
282
  }
282
- type optional = _pt.Optional_Value<_T_Line_Part>;
283
- type snippet = string;
284
- namespace sub_line {
283
+ type optional = _pt.Optional_Value<_T_Group_Part>;
284
+ namespace sub_group {
285
285
  }
286
- type sub_line = _T_Line;
286
+ type sub_group = _T_Group;
287
287
  }
288
- type SG = readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Line_Part>] | readonly ['snippet', string] | readonly ['sub line', _T_Line];
288
+ type SG = readonly ['block', string] | readonly ['nested block', _T_Block] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Group_Part>] | readonly ['sub group', _T_Group];
289
289
  }
290
290
  export declare namespace _T_Lines {
291
291
  namespace L {
@@ -625,10 +625,9 @@ export declare namespace Block {
625
625
  }
626
626
  export declare namespace Block_Part {
627
627
  namespace SG {
628
- type line = string;
629
- namespace nested_line {
628
+ namespace indent {
630
629
  }
631
- type nested_line = _T_Line;
630
+ type indent = _T_Group;
632
631
  type nothing = null;
633
632
  namespace optional {
634
633
  namespace O {
@@ -636,11 +635,12 @@ export declare namespace Block_Part {
636
635
  type O = _T_Block_Part;
637
636
  }
638
637
  type optional = _pt.Optional_Value<_T_Block_Part>;
638
+ type snippet = string;
639
639
  namespace sub_block {
640
640
  }
641
641
  type sub_block = _T_Block;
642
642
  }
643
- type SG = readonly ['line', string] | readonly ['nested line', _T_Line] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Block_Part>] | readonly ['sub block', _T_Block];
643
+ type SG = readonly ['indent', _T_Group] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Block_Part>] | readonly ['snippet', string] | readonly ['sub block', _T_Block];
644
644
  }
645
645
  export declare namespace Directory {
646
646
  namespace D {
@@ -650,11 +650,11 @@ export declare namespace Directory {
650
650
  type directory = _T_Directory;
651
651
  namespace file {
652
652
  }
653
- type file = _T_Block;
653
+ type file = _T_Group;
654
654
  }
655
- type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Block];
655
+ type SG = readonly ['directory', _T_Directory] | readonly ['file', _T_Group];
656
656
  }
657
- type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Block]>;
657
+ type D = _i_core._T_State_Group<null, readonly ['directory', _T_Directory] | readonly ['file', _T_Group]>;
658
658
  }
659
659
  export declare namespace Expression {
660
660
  namespace SG {
@@ -768,29 +768,29 @@ export declare namespace Expression {
768
768
  }
769
769
  ] | readonly ['string literal', _T_String_Literal] | readonly ['true', null];
770
770
  }
771
- export declare namespace Line {
771
+ export declare namespace Group {
772
772
  namespace L {
773
773
  }
774
- type L = _T_Line_Part;
774
+ type L = _T_Group_Part;
775
775
  }
776
- export declare namespace Line_Part {
776
+ export declare namespace Group_Part {
777
777
  namespace SG {
778
- namespace indent {
778
+ type block = string;
779
+ namespace nested_block {
779
780
  }
780
- type indent = _T_Block;
781
+ type nested_block = _T_Block;
781
782
  type nothing = null;
782
783
  namespace optional {
783
784
  namespace O {
784
785
  }
785
- type O = _T_Line_Part;
786
+ type O = _T_Group_Part;
786
787
  }
787
- type optional = _pt.Optional_Value<_T_Line_Part>;
788
- type snippet = string;
789
- namespace sub_line {
788
+ type optional = _pt.Optional_Value<_T_Group_Part>;
789
+ namespace sub_group {
790
790
  }
791
- type sub_line = _T_Line;
791
+ type sub_group = _T_Group;
792
792
  }
793
- type SG = readonly ['indent', _T_Block] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Line_Part>] | readonly ['snippet', string] | readonly ['sub line', _T_Line];
793
+ type SG = readonly ['block', string] | readonly ['nested block', _T_Block] | readonly ['nothing', null] | readonly ['optional', _pt.Optional_Value<_T_Group_Part>] | readonly ['sub group', _T_Group];
794
794
  }
795
795
  export declare namespace Lines {
796
796
  namespace L {
@@ -13,10 +13,10 @@ export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: {
13
13
  export type _T_Expression = ($$_: _i_in._T_Expression, $$_p: {
14
14
  readonly 'value serializers': _i_vs._T_Value_Serializers;
15
15
  }) => _i_out._T_Value;
16
- export type _T_Line = ($$_: _i_in._T_Line, $$_p: {
16
+ export type _T_Group = ($$_: _i_in._T_Group, $$_p: {
17
17
  readonly 'value serializers': _i_vs._T_Value_Serializers;
18
18
  }) => _i_out._T_Value;
19
- export type _T_Line_Part = ($$_: _i_in._T_Line_Part, $$_p: {
19
+ export type _T_Group_Part = ($$_: _i_in._T_Group_Part, $$_p: {
20
20
  readonly 'value serializers': _i_vs._T_Value_Serializers;
21
21
  }) => _i_out._T_Value;
22
22
  export type _T_Lines = ($$_: _i_in._T_Lines, $$_p: {
@@ -35,8 +35,8 @@ export type Block = _T_Block;
35
35
  export type Block_Part = _T_Block_Part;
36
36
  export type Directory = _T_Directory;
37
37
  export type Expression = _T_Expression;
38
- export type Line = _T_Line;
39
- export type Line_Part = _T_Line_Part;
38
+ export type Group = _T_Group;
39
+ export type Group_Part = _T_Group_Part;
40
40
  export type Lines = _T_Lines;
41
41
  export type Statements = _T_Statements;
42
42
  export type String_Literal = _T_String_Literal;
@@ -93,10 +93,10 @@ export declare namespace _T_Expression {
93
93
  }
94
94
  type RESULT = _i_out._T_Value;
95
95
  }
96
- export declare namespace _T_Line {
96
+ export declare namespace _T_Group {
97
97
  namespace CONTEXT {
98
98
  }
99
- type CONTEXT = _i_in._T_Line;
99
+ type CONTEXT = _i_in._T_Group;
100
100
  namespace PARAMS {
101
101
  namespace value_serializers {
102
102
  }
@@ -106,10 +106,10 @@ export declare namespace _T_Line {
106
106
  }
107
107
  type RESULT = _i_out._T_Value;
108
108
  }
109
- export declare namespace _T_Line_Part {
109
+ export declare namespace _T_Group_Part {
110
110
  namespace CONTEXT {
111
111
  }
112
- type CONTEXT = _i_in._T_Line_Part;
112
+ type CONTEXT = _i_in._T_Group_Part;
113
113
  namespace PARAMS {
114
114
  namespace value_serializers {
115
115
  }
@@ -223,10 +223,10 @@ export declare namespace Expression {
223
223
  }
224
224
  type RESULT = _i_out._T_Value;
225
225
  }
226
- export declare namespace Line {
226
+ export declare namespace Group {
227
227
  namespace CONTEXT {
228
228
  }
229
- type CONTEXT = _i_in._T_Line;
229
+ type CONTEXT = _i_in._T_Group;
230
230
  namespace PARAMS {
231
231
  namespace value_serializers {
232
232
  }
@@ -236,10 +236,10 @@ export declare namespace Line {
236
236
  }
237
237
  type RESULT = _i_out._T_Value;
238
238
  }
239
- export declare namespace Line_Part {
239
+ export declare namespace Group_Part {
240
240
  namespace CONTEXT {
241
241
  }
242
- type CONTEXT = _i_in._T_Line_Part;
242
+ type CONTEXT = _i_in._T_Group_Part;
243
243
  namespace PARAMS {
244
244
  namespace value_serializers {
245
245
  }
@@ -4,8 +4,8 @@ export type _T_Block = ($$_: _i_in._T_Block, $$_p: null) => _i_out._T_Block;
4
4
  export type _T_Block_Part = ($$_: _i_in._T_Block_Part, $$_p: null) => _i_out._T_Block_Part;
5
5
  export type _T_Directory = ($$_: _i_in._T_Directory, $$_p: null) => _i_out._T_Directory;
6
6
  export type _T_Expression = ($$_: _i_in._T_Expression, $$_p: null) => _i_out._T_Expression;
7
- export type _T_Line = ($$_: _i_in._T_Line, $$_p: null) => _i_out._T_Line;
8
- export type _T_Line_Part = ($$_: _i_in._T_Line_Part, $$_p: null) => _i_out._T_Line_Part;
7
+ export type _T_Group = ($$_: _i_in._T_Group, $$_p: null) => _i_out._T_Group;
8
+ export type _T_Group_Part = ($$_: _i_in._T_Group_Part, $$_p: null) => _i_out._T_Group_Part;
9
9
  export type _T_Lines = ($$_: _i_in._T_Lines, $$_p: null) => _i_out._T_Lines;
10
10
  export type _T_Statements = ($$_: _i_in._T_Statements, $$_p: null) => _i_out._T_Statements;
11
11
  export type _T_String_Literal = ($$_: _i_in._T_String_Literal, $$_p: null) => _i_out._T_String_Literal;
@@ -14,8 +14,8 @@ export type Block = _T_Block;
14
14
  export type Block_Part = _T_Block_Part;
15
15
  export type Directory = _T_Directory;
16
16
  export type Expression = _T_Expression;
17
- export type Line = _T_Line;
18
- export type Line_Part = _T_Line_Part;
17
+ export type Group = _T_Group;
18
+ export type Group_Part = _T_Group_Part;
19
19
  export type Lines = _T_Lines;
20
20
  export type Statements = _T_Statements;
21
21
  export type String_Literal = _T_String_Literal;
@@ -60,25 +60,25 @@ export declare namespace _T_Expression {
60
60
  }
61
61
  type RESULT = _i_out._T_Expression;
62
62
  }
63
- export declare namespace _T_Line {
63
+ export declare namespace _T_Group {
64
64
  namespace CONTEXT {
65
65
  }
66
- type CONTEXT = _i_in._T_Line;
66
+ type CONTEXT = _i_in._T_Group;
67
67
  namespace PARAMS {
68
68
  }
69
69
  namespace RESULT {
70
70
  }
71
- type RESULT = _i_out._T_Line;
71
+ type RESULT = _i_out._T_Group;
72
72
  }
73
- export declare namespace _T_Line_Part {
73
+ export declare namespace _T_Group_Part {
74
74
  namespace CONTEXT {
75
75
  }
76
- type CONTEXT = _i_in._T_Line_Part;
76
+ type CONTEXT = _i_in._T_Group_Part;
77
77
  namespace PARAMS {
78
78
  }
79
79
  namespace RESULT {
80
80
  }
81
- type RESULT = _i_out._T_Line_Part;
81
+ type RESULT = _i_out._T_Group_Part;
82
82
  }
83
83
  export declare namespace _T_Lines {
84
84
  namespace CONTEXT {
@@ -160,25 +160,25 @@ export declare namespace Expression {
160
160
  }
161
161
  type RESULT = _i_out._T_Expression;
162
162
  }
163
- export declare namespace Line {
163
+ export declare namespace Group {
164
164
  namespace CONTEXT {
165
165
  }
166
- type CONTEXT = _i_in._T_Line;
166
+ type CONTEXT = _i_in._T_Group;
167
167
  namespace PARAMS {
168
168
  }
169
169
  namespace RESULT {
170
170
  }
171
- type RESULT = _i_out._T_Line;
171
+ type RESULT = _i_out._T_Group;
172
172
  }
173
- export declare namespace Line_Part {
173
+ export declare namespace Group_Part {
174
174
  namespace CONTEXT {
175
175
  }
176
- type CONTEXT = _i_in._T_Line_Part;
176
+ type CONTEXT = _i_in._T_Group_Part;
177
177
  namespace PARAMS {
178
178
  }
179
179
  namespace RESULT {
180
180
  }
181
- type RESULT = _i_out._T_Line_Part;
181
+ type RESULT = _i_out._T_Group_Part;
182
182
  }
183
183
  export declare namespace Lines {
184
184
  namespace CONTEXT {
@@ -13,12 +13,12 @@ export type _T_Directory = ($$_: _i_in._T_Value, $$_p: {
13
13
  export type _T_Expression = ($$_: _i_in._T_Value, $$_p: {
14
14
  readonly 'value deserializers': _i_vd._T_Value_Deserializers;
15
15
  }) => _i_out._T_Expression;
16
- export type _T_Line = ($$_: _i_in._T_Value, $$_p: {
16
+ export type _T_Group = ($$_: _i_in._T_Value, $$_p: {
17
17
  readonly 'value deserializers': _i_vd._T_Value_Deserializers;
18
- }) => _i_out._T_Line;
19
- export type _T_Line_Part = ($$_: _i_in._T_Value, $$_p: {
18
+ }) => _i_out._T_Group;
19
+ export type _T_Group_Part = ($$_: _i_in._T_Value, $$_p: {
20
20
  readonly 'value deserializers': _i_vd._T_Value_Deserializers;
21
- }) => _i_out._T_Line_Part;
21
+ }) => _i_out._T_Group_Part;
22
22
  export type _T_Lines = ($$_: _i_in._T_Value, $$_p: {
23
23
  readonly 'value deserializers': _i_vd._T_Value_Deserializers;
24
24
  }) => _i_out._T_Lines;
@@ -35,8 +35,8 @@ export type Block = _T_Block;
35
35
  export type Block_Part = _T_Block_Part;
36
36
  export type Directory = _T_Directory;
37
37
  export type Expression = _T_Expression;
38
- export type Line = _T_Line;
39
- export type Line_Part = _T_Line_Part;
38
+ export type Group = _T_Group;
39
+ export type Group_Part = _T_Group_Part;
40
40
  export type Lines = _T_Lines;
41
41
  export type Statements = _T_Statements;
42
42
  export type String_Literal = _T_String_Literal;
@@ -93,7 +93,7 @@ export declare namespace _T_Expression {
93
93
  }
94
94
  type RESULT = _i_out._T_Expression;
95
95
  }
96
- export declare namespace _T_Line {
96
+ export declare namespace _T_Group {
97
97
  namespace CONTEXT {
98
98
  }
99
99
  type CONTEXT = _i_in._T_Value;
@@ -104,9 +104,9 @@ export declare namespace _T_Line {
104
104
  }
105
105
  namespace RESULT {
106
106
  }
107
- type RESULT = _i_out._T_Line;
107
+ type RESULT = _i_out._T_Group;
108
108
  }
109
- export declare namespace _T_Line_Part {
109
+ export declare namespace _T_Group_Part {
110
110
  namespace CONTEXT {
111
111
  }
112
112
  type CONTEXT = _i_in._T_Value;
@@ -117,7 +117,7 @@ export declare namespace _T_Line_Part {
117
117
  }
118
118
  namespace RESULT {
119
119
  }
120
- type RESULT = _i_out._T_Line_Part;
120
+ type RESULT = _i_out._T_Group_Part;
121
121
  }
122
122
  export declare namespace _T_Lines {
123
123
  namespace CONTEXT {
@@ -223,7 +223,7 @@ export declare namespace Expression {
223
223
  }
224
224
  type RESULT = _i_out._T_Expression;
225
225
  }
226
- export declare namespace Line {
226
+ export declare namespace Group {
227
227
  namespace CONTEXT {
228
228
  }
229
229
  type CONTEXT = _i_in._T_Value;
@@ -234,9 +234,9 @@ export declare namespace Line {
234
234
  }
235
235
  namespace RESULT {
236
236
  }
237
- type RESULT = _i_out._T_Line;
237
+ type RESULT = _i_out._T_Group;
238
238
  }
239
- export declare namespace Line_Part {
239
+ export declare namespace Group_Part {
240
240
  namespace CONTEXT {
241
241
  }
242
242
  type CONTEXT = _i_in._T_Value;
@@ -247,7 +247,7 @@ export declare namespace Line_Part {
247
247
  }
248
248
  namespace RESULT {
249
249
  }
250
- type RESULT = _i_out._T_Line_Part;
250
+ type RESULT = _i_out._T_Group_Part;
251
251
  }
252
252
  export declare namespace Lines {
253
253
  namespace CONTEXT {