pareto-graphviz 0.1.12 → 0.1.14

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 (38) hide show
  1. package/dist/implementation/generated/pareto/generic/serialize.js +8 -8
  2. package/dist/implementation/generated/pareto/generic/unmarshall.d.ts +6 -6
  3. package/dist/implementation/generated/pareto/generic/unmarshall.js +31 -31
  4. package/dist/implementation/generated/pareto/schemas/graphviz/marshall.js +7 -7
  5. package/dist/implementation/generated/pareto/schemas/graphviz/serialize.js +1 -1
  6. package/dist/implementation/generated/pareto/schemas/graphviz/unmarshall.js +6 -6
  7. package/dist/implementation/manual/primitives/text/serializers/quoted.d.ts +4 -1
  8. package/dist/implementation/manual/primitives/text/serializers/quoted.js +31 -5
  9. package/dist/implementation/manual/schemas/graphviz/transformers/fountain_pen.d.ts +4 -2
  10. package/dist/implementation/manual/schemas/graphviz/transformers/fountain_pen.js +21 -22
  11. package/dist/interface/generated/pareto/core/astn_source.d.ts +9 -9
  12. package/dist/interface/generated/pareto/core/astn_target.d.ts +15 -15
  13. package/dist/interface/generated/pareto/core/location.d.ts +11 -0
  14. package/dist/interface/generated/pareto/core/location.js +3 -0
  15. package/dist/interface/generated/pareto/core/parse_result.d.ts +2 -2
  16. package/dist/interface/generated/pareto/core/resolved.d.ts +12 -12
  17. package/dist/interface/generated/pareto/core/token.d.ts +4 -4
  18. package/dist/interface/generated/pareto/core/unconstrained.d.ts +3 -3
  19. package/dist/interface/generated/pareto/core/unresolved.d.ts +10 -10
  20. package/dist/interface/generated/pareto/schemas/graphviz/data.d.ts +23 -0
  21. package/dist/interface/generated/pareto/schemas/graphviz/data.js +3 -0
  22. package/dist/interface/generated/pareto/schemas/graphviz/data_types/resolve.js +1 -1
  23. package/dist/interface/generated/pareto/schemas/graphviz/migrate_boilerplate.d.ts +8 -22
  24. package/package.json +2 -2
  25. package/dist/implementation/generated/pareto/generic/parse/ast.d.ts +0 -10
  26. package/dist/implementation/generated/pareto/generic/parse/ast.js +0 -245
  27. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.d.ts +0 -16
  28. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.js +0 -47
  29. package/dist/implementation/generated/pareto/generic/parse/parse.d.ts +0 -5
  30. package/dist/implementation/generated/pareto/generic/parse/parse.js +0 -55
  31. package/dist/implementation/generated/pareto/generic/parse/string_iterator.d.ts +0 -40
  32. package/dist/implementation/generated/pareto/generic/parse/string_iterator.js +0 -109
  33. package/dist/implementation/generated/pareto/generic/parse/token.d.ts +0 -10
  34. package/dist/implementation/generated/pareto/generic/parse/token.js +0 -519
  35. package/dist/implementation/generated/pareto/generic/resolve.d.ts +0 -109
  36. package/dist/implementation/generated/pareto/generic/resolve.js +0 -277
  37. package/dist/interface/generated/pareto/core/resolve.d.ts +0 -14
  38. package/dist/interface/generated/pareto/core/resolve.js +0 -3
@@ -1,4 +1,4 @@
1
- import * as _et from 'pareto-core-interface';
1
+ import * as _pi from 'pareto-core-interface';
2
2
  export type _T_Value = readonly [
3
3
  'indexed collection',
4
4
  readonly [
@@ -54,12 +54,12 @@ export type _T_Value = readonly [
54
54
  ];
55
55
  export type _T_Document = {
56
56
  readonly 'content': _T_Value;
57
- readonly 'header': _et.Optional_Value<{
57
+ readonly 'header': _pi.Optional_Value<{
58
58
  readonly '!': _T_Structural_Token;
59
59
  readonly 'value': _T_Value;
60
60
  }>;
61
61
  };
62
- export type _T_Elements = _et.List<{
62
+ export type _T_Elements = _pi.List<{
63
63
  readonly 'value': _T_Value;
64
64
  }>;
65
65
  export declare namespace _T_Elements {
@@ -67,19 +67,19 @@ export declare namespace _T_Elements {
67
67
  readonly 'value': _T_Value;
68
68
  };
69
69
  }
70
- export type _T_Key_Value_Pairs = _et.List<{
71
- readonly ',': _et.Optional_Value<_T_Structural_Token>;
70
+ export type _T_Key_Value_Pairs = _pi.List<{
71
+ readonly ',': _pi.Optional_Value<_T_Structural_Token>;
72
72
  readonly 'key': _T_String;
73
- readonly 'value': _et.Optional_Value<{
73
+ readonly 'value': _pi.Optional_Value<{
74
74
  readonly ':': _T_Structural_Token;
75
75
  readonly 'value': _T_Value;
76
76
  }>;
77
77
  }>;
78
78
  export declare namespace _T_Key_Value_Pairs {
79
79
  type L = {
80
- readonly ',': _et.Optional_Value<_T_Structural_Token>;
80
+ readonly ',': _pi.Optional_Value<_T_Structural_Token>;
81
81
  readonly 'key': _T_String;
82
- readonly 'value': _et.Optional_Value<{
82
+ readonly 'value': _pi.Optional_Value<{
83
83
  readonly ':': _T_Structural_Token;
84
84
  readonly 'value': _T_Value;
85
85
  }>;
@@ -108,7 +108,7 @@ export type _T_Relative_Location = {
108
108
  readonly 'line': number;
109
109
  };
110
110
  export type _T_Trivia = {
111
- readonly 'comments': _et.List<{
111
+ readonly 'comments': _pi.List<{
112
112
  readonly 'content': string;
113
113
  readonly 'range': _T_Range;
114
114
  readonly 'trailing whitespace': _T_Whitespace;
@@ -1,6 +1,6 @@
1
- import * as _et from 'pareto-core-interface';
1
+ import * as _pi from 'pareto-core-interface';
2
2
  export type _T_Document = _T_Value;
3
- export type _T_Value = readonly ['dictionary', _et.Dictionary<_T_Value>] | readonly ['list', _et.List<_T_Value>] | readonly ['nothing', null] | readonly [
3
+ export type _T_Value = readonly ['dictionary', _pi.Dictionary<_T_Value>] | readonly ['list', _pi.List<_T_Value>] | readonly ['nothing', null] | readonly [
4
4
  'optional',
5
5
  readonly ['not set', null] | readonly ['set', _T_Value]
6
6
  ] | readonly [
@@ -15,7 +15,7 @@ export type _T_Value = readonly ['dictionary', _et.Dictionary<_T_Value>] | reado
15
15
  readonly 'delimiter': readonly ['backtick', null] | readonly ['none', null] | readonly ['quote', null];
16
16
  readonly 'value': string;
17
17
  }
18
- ] | readonly ['verbose group', _et.Dictionary<_T_Value>];
18
+ ] | readonly ['verbose group', _pi.Dictionary<_T_Value>];
19
19
  export type Document = _T_Document;
20
20
  export type Value = _T_Value;
21
21
  export declare namespace _T_Document {
@@ -27,19 +27,19 @@ export declare namespace _T_Value {
27
27
  }
28
28
  type L = _T_Value;
29
29
  }
30
- type concise_group = _et.List<_T_Value>;
30
+ type concise_group = _pi.List<_T_Value>;
31
31
  namespace dictionary {
32
32
  namespace D {
33
33
  }
34
34
  type D = _T_Value;
35
35
  }
36
- type dictionary = _et.Dictionary<_T_Value>;
36
+ type dictionary = _pi.Dictionary<_T_Value>;
37
37
  namespace list {
38
38
  namespace L {
39
39
  }
40
40
  type L = _T_Value;
41
41
  }
42
- type list = _et.List<_T_Value>;
42
+ type list = _pi.List<_T_Value>;
43
43
  type nothing = null;
44
44
  namespace optional {
45
45
  namespace SG {
@@ -82,9 +82,9 @@ export declare namespace _T_Value {
82
82
  }
83
83
  type D = _T_Value;
84
84
  }
85
- type verbose_group = _et.Dictionary<_T_Value>;
85
+ type verbose_group = _pi.Dictionary<_T_Value>;
86
86
  }
87
- type SG = readonly ['concise group', _et.List<_T_Value>] | readonly ['dictionary', _et.Dictionary<_T_Value>] | readonly ['list', _et.List<_T_Value>] | readonly ['nothing', null] | readonly [
87
+ type SG = readonly ['concise group', _pi.List<_T_Value>] | readonly ['dictionary', _pi.Dictionary<_T_Value>] | readonly ['list', _pi.List<_T_Value>] | readonly ['nothing', null] | readonly [
88
88
  'optional',
89
89
  readonly ['not set', null] | readonly ['set', _T_Value]
90
90
  ] | readonly [
@@ -99,7 +99,7 @@ export declare namespace _T_Value {
99
99
  readonly 'delimiter': readonly ['backtick', null] | readonly ['none', null] | readonly ['quote', null];
100
100
  readonly 'value': string;
101
101
  }
102
- ] | readonly ['verbose group', _et.Dictionary<_T_Value>];
102
+ ] | readonly ['verbose group', _pi.Dictionary<_T_Value>];
103
103
  }
104
104
  export declare namespace Document {
105
105
  }
@@ -110,19 +110,19 @@ export declare namespace Value {
110
110
  }
111
111
  type L = _T_Value;
112
112
  }
113
- type concise_group = _et.List<_T_Value>;
113
+ type concise_group = _pi.List<_T_Value>;
114
114
  namespace dictionary {
115
115
  namespace D {
116
116
  }
117
117
  type D = _T_Value;
118
118
  }
119
- type dictionary = _et.Dictionary<_T_Value>;
119
+ type dictionary = _pi.Dictionary<_T_Value>;
120
120
  namespace list {
121
121
  namespace L {
122
122
  }
123
123
  type L = _T_Value;
124
124
  }
125
- type list = _et.List<_T_Value>;
125
+ type list = _pi.List<_T_Value>;
126
126
  type nothing = null;
127
127
  namespace optional {
128
128
  namespace SG {
@@ -165,9 +165,9 @@ export declare namespace Value {
165
165
  }
166
166
  type D = _T_Value;
167
167
  }
168
- type verbose_group = _et.Dictionary<_T_Value>;
168
+ type verbose_group = _pi.Dictionary<_T_Value>;
169
169
  }
170
- type SG = readonly ['concise group', _et.List<_T_Value>] | readonly ['dictionary', _et.Dictionary<_T_Value>] | readonly ['list', _et.List<_T_Value>] | readonly ['nothing', null] | readonly [
170
+ type SG = readonly ['concise group', _pi.List<_T_Value>] | readonly ['dictionary', _pi.Dictionary<_T_Value>] | readonly ['list', _pi.List<_T_Value>] | readonly ['nothing', null] | readonly [
171
171
  'optional',
172
172
  readonly ['not set', null] | readonly ['set', _T_Value]
173
173
  ] | readonly [
@@ -182,5 +182,5 @@ export declare namespace Value {
182
182
  readonly 'delimiter': readonly ['backtick', null] | readonly ['none', null] | readonly ['quote', null];
183
183
  readonly 'value': string;
184
184
  }
185
- ] | readonly ['verbose group', _et.Dictionary<_T_Value>];
185
+ ] | readonly ['verbose group', _pi.Dictionary<_T_Value>];
186
186
  }
@@ -0,0 +1,11 @@
1
+ export declare namespace Location_ {
2
+ type file = string;
3
+ type line = number;
4
+ type column = number;
5
+ }
6
+ export type Location_ = {
7
+ readonly 'file': Location_.file;
8
+ readonly 'line': Location_.line;
9
+ readonly 'column': Location_.column;
10
+ };
11
+ export { Location_ as Location, };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9jYXRpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vY29yZS9sb2NhdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -1,4 +1,4 @@
1
- import * as _et from 'pareto-core-interface';
1
+ import * as _pi from 'pareto-core-interface';
2
2
  import * as _i_imports_token from "./token";
3
3
  import * as _i_imports_ast from "./astn_source";
4
4
  export type _T_Parse_Error = {
@@ -19,7 +19,7 @@ export type Parser_Error = {
19
19
  readonly 'found': _i_imports_token._T_Token_Type;
20
20
  }
21
21
  ];
22
- readonly 'expected': _et.List<Expected>;
22
+ readonly 'expected': _pi.List<Expected>;
23
23
  };
24
24
  export type Expected = readonly ['!', null] | readonly ['#', null] | readonly [')', null] | readonly [',', null] | readonly [':', null] | readonly ['>', null] | readonly ['@', null] | readonly [']', null] | readonly ['a string', null] | readonly ['a value', null] | readonly ['}', null];
25
25
  export type _T_Parse_Result = readonly ['failure', _T_Parse_Error] | readonly ['success', _i_imports_ast._T_Document];
@@ -1,16 +1,16 @@
1
- import * as _et from 'pareto-core-interface';
1
+ import * as _pi from 'pareto-core-interface';
2
2
  export type _T_Derived_Reference<M_Source, T_Type> = T_Type;
3
- export type _T_Dictionary<M_Source, T_D> = _et.Dictionary<T_D>;
4
- export type _T_List<M_Source, T_L> = _et.List<T_L>;
3
+ export type _T_Dictionary<M_Source, T_D> = _pi.Dictionary<T_D>;
4
+ export type _T_List<M_Source, T_L> = _pi.List<T_L>;
5
5
  export type _T_Ordered_Dictionary<M_Source, T_D> = {
6
- readonly 'dictionary': _et.Dictionary<T_D>;
7
- readonly 'ordered list': _et.List<{
6
+ readonly 'dictionary': _pi.Dictionary<T_D>;
7
+ readonly 'ordered list': _pi.List<{
8
8
  readonly 'key': string;
9
9
  readonly 'value': T_D;
10
10
  }>;
11
11
  };
12
12
  export type _T_Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry> = {
13
- readonly 'entry': _et.Circular_Dependency<T_Dictionary_Entry>;
13
+ readonly 'entry': _pi.Circular_Dependency<T_Dictionary_Entry>;
14
14
  readonly 'key': string;
15
15
  };
16
16
  export type _T_Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry> = {
@@ -41,7 +41,7 @@ export declare namespace _T_Ordered_Dictionary {
41
41
  namespace dictionary {
42
42
  type D<M_Source, T_D> = T_D;
43
43
  }
44
- type dictionary<M_Source, T_D> = _et.Dictionary<T_D>;
44
+ type dictionary<M_Source, T_D> = _pi.Dictionary<T_D>;
45
45
  namespace ordered_list {
46
46
  namespace L {
47
47
  type key<M_Source, T_D> = string;
@@ -52,7 +52,7 @@ export declare namespace _T_Ordered_Dictionary {
52
52
  readonly 'value': T_D;
53
53
  };
54
54
  }
55
- type ordered_list<M_Source, T_D> = _et.List<{
55
+ type ordered_list<M_Source, T_D> = _pi.List<{
56
56
  readonly 'key': string;
57
57
  readonly 'value': T_D;
58
58
  }>;
@@ -61,7 +61,7 @@ export declare namespace _T_Reference_To_Circular_Dependent_Sibling {
61
61
  namespace entry {
62
62
  type C<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
63
63
  }
64
- type entry<M_Source, T_Dictionary_Entry> = _et.Circular_Dependency<T_Dictionary_Entry>;
64
+ type entry<M_Source, T_Dictionary_Entry> = _pi.Circular_Dependency<T_Dictionary_Entry>;
65
65
  type key<M_Source, T_Dictionary_Entry> = string;
66
66
  }
67
67
  export declare namespace _T_Reference_To_Normal_Dictionary_Entry {
@@ -83,7 +83,7 @@ export declare namespace Ordered_Dictionary {
83
83
  namespace dictionary {
84
84
  type D<M_Source, T_D> = T_D;
85
85
  }
86
- type dictionary<M_Source, T_D> = _et.Dictionary<T_D>;
86
+ type dictionary<M_Source, T_D> = _pi.Dictionary<T_D>;
87
87
  namespace ordered_list {
88
88
  namespace L {
89
89
  type key<M_Source, T_D> = string;
@@ -94,7 +94,7 @@ export declare namespace Ordered_Dictionary {
94
94
  readonly 'value': T_D;
95
95
  };
96
96
  }
97
- type ordered_list<M_Source, T_D> = _et.List<{
97
+ type ordered_list<M_Source, T_D> = _pi.List<{
98
98
  readonly 'key': string;
99
99
  readonly 'value': T_D;
100
100
  }>;
@@ -103,7 +103,7 @@ export declare namespace Reference_To_Circular_Dependent_Sibling {
103
103
  namespace entry {
104
104
  type C<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
105
105
  }
106
- type entry<M_Source, T_Dictionary_Entry> = _et.Circular_Dependency<T_Dictionary_Entry>;
106
+ type entry<M_Source, T_Dictionary_Entry> = _pi.Circular_Dependency<T_Dictionary_Entry>;
107
107
  type key<M_Source, T_Dictionary_Entry> = string;
108
108
  }
109
109
  export declare namespace Reference_To_Normal_Dictionary_Entry {
@@ -1,4 +1,4 @@
1
- import * as _et from 'pareto-core-interface';
1
+ import * as _pi from 'pareto-core-interface';
2
2
  export type _T_Annotated_Token = {
3
3
  readonly 'end': _T_Location;
4
4
  readonly 'start': _T_Location;
@@ -29,13 +29,13 @@ export type _T_Token_Type = readonly ['!', null] | readonly ['#', null] | readon
29
29
  export type _T_Tokenizer_Result = {
30
30
  readonly 'end': _T_Location;
31
31
  readonly 'leading trivia': _T_Trivia;
32
- readonly 'tokens': _et.List<_T_Annotated_Token>;
32
+ readonly 'tokens': _pi.List<_T_Annotated_Token>;
33
33
  };
34
34
  export declare namespace _T_Tokenizer_Result {
35
- type tokens = _et.List<_T_Annotated_Token>;
35
+ type tokens = _pi.List<_T_Annotated_Token>;
36
36
  }
37
37
  export type _T_Trivia = {
38
- readonly 'comments': _et.List<{
38
+ readonly 'comments': _pi.List<{
39
39
  readonly 'content': string;
40
40
  readonly 'range': _T_Range;
41
41
  readonly 'trailing whitespace': _T_Whitespace;
@@ -1,6 +1,6 @@
1
- import * as _et from 'pareto-core-interface';
2
- export type _T_Dictionary<M_Source, T_D> = _et.Dictionary<T_D>;
3
- export type _T_List<M_Source, T_L> = _et.List<T_L>;
1
+ import * as _pi from 'pareto-core-interface';
2
+ export type _T_Dictionary<M_Source, T_D> = _pi.Dictionary<T_D>;
3
+ export type _T_List<M_Source, T_L> = _pi.List<T_L>;
4
4
  export type _T_State_Group<M_Source, T_SG> = T_SG;
5
5
  export type Dictionary<M_Source, T_D> = _T_Dictionary<M_Source, T_D>;
6
6
  export type List<M_Source, T_L> = _T_List<M_Source, T_L>;
@@ -1,21 +1,21 @@
1
- import * as _et from 'pareto-core-interface';
1
+ import * as _pi from 'pareto-core-interface';
2
2
  export type _T_Derived_Reference<M_Source, T_Type> = null;
3
3
  export type _T_Dictionary<M_Source, T_D> = {
4
- readonly 'dictionary': _et.Dictionary<{
4
+ readonly 'dictionary': _pi.Dictionary<{
5
5
  readonly 'entry': T_D;
6
6
  readonly 'location': M_Source;
7
7
  }>;
8
8
  readonly 'location': M_Source;
9
9
  };
10
10
  export type _T_List<M_Source, T_L> = {
11
- readonly 'list': _et.List<{
11
+ readonly 'list': _pi.List<{
12
12
  readonly 'element': T_L;
13
13
  readonly 'location': M_Source;
14
14
  }>;
15
15
  readonly 'location': M_Source;
16
16
  };
17
17
  export type _T_Ordered_Dictionary<M_Source, T_D> = {
18
- readonly 'dictionary': _et.Dictionary<{
18
+ readonly 'dictionary': _pi.Dictionary<{
19
19
  readonly 'entry': T_D;
20
20
  readonly 'location': M_Source;
21
21
  }>;
@@ -56,7 +56,7 @@ export declare namespace _T_Dictionary {
56
56
  readonly 'location': M_Source;
57
57
  };
58
58
  }
59
- type dictionary<M_Source, T_D> = _et.Dictionary<{
59
+ type dictionary<M_Source, T_D> = _pi.Dictionary<{
60
60
  readonly 'entry': T_D;
61
61
  readonly 'location': M_Source;
62
62
  }>;
@@ -73,7 +73,7 @@ export declare namespace _T_List {
73
73
  readonly 'location': M_Source;
74
74
  };
75
75
  }
76
- type list<M_Source, T_L> = _et.List<{
76
+ type list<M_Source, T_L> = _pi.List<{
77
77
  readonly 'element': T_L;
78
78
  readonly 'location': M_Source;
79
79
  }>;
@@ -90,7 +90,7 @@ export declare namespace _T_Ordered_Dictionary {
90
90
  readonly 'location': M_Source;
91
91
  };
92
92
  }
93
- type dictionary<M_Source, T_D> = _et.Dictionary<{
93
+ type dictionary<M_Source, T_D> = _pi.Dictionary<{
94
94
  readonly 'entry': T_D;
95
95
  readonly 'location': M_Source;
96
96
  }>;
@@ -123,7 +123,7 @@ export declare namespace Dictionary {
123
123
  readonly 'location': M_Source;
124
124
  };
125
125
  }
126
- type dictionary<M_Source, T_D> = _et.Dictionary<{
126
+ type dictionary<M_Source, T_D> = _pi.Dictionary<{
127
127
  readonly 'entry': T_D;
128
128
  readonly 'location': M_Source;
129
129
  }>;
@@ -140,7 +140,7 @@ export declare namespace List {
140
140
  readonly 'location': M_Source;
141
141
  };
142
142
  }
143
- type list<M_Source, T_L> = _et.List<{
143
+ type list<M_Source, T_L> = _pi.List<{
144
144
  readonly 'element': T_L;
145
145
  readonly 'location': M_Source;
146
146
  }>;
@@ -157,7 +157,7 @@ export declare namespace Ordered_Dictionary {
157
157
  readonly 'location': M_Source;
158
158
  };
159
159
  }
160
- type dictionary<M_Source, T_D> = _et.Dictionary<{
160
+ type dictionary<M_Source, T_D> = _pi.Dictionary<{
161
161
  readonly 'entry': T_D;
162
162
  readonly 'location': M_Source;
163
163
  }>;
@@ -0,0 +1,23 @@
1
+ import * as _pi from "pareto-core-interface";
2
+ export declare namespace Graph_ {
3
+ namespace nodes {
4
+ type D = null;
5
+ }
6
+ type nodes = _pi.Dictionary<nodes.D>;
7
+ namespace edges {
8
+ namespace L {
9
+ type _from = string;
10
+ type to = string;
11
+ }
12
+ type L = {
13
+ readonly 'from': L._from;
14
+ readonly 'to': L.to;
15
+ };
16
+ }
17
+ type edges = _pi.List<edges.L>;
18
+ }
19
+ export type Graph_ = {
20
+ readonly 'nodes': Graph_.nodes;
21
+ readonly 'edges': Graph_.edges;
22
+ };
23
+ export { Graph_ as Graph, };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL3BhcmV0by9zY2hlbWFzL2dyYXBodml6L2RhdGEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -4,4 +4,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
4
4
  // **** FRIENDLY NAMES FOR THE GLOBAL TYPES
5
5
  // **** ALIASES FOR NESTED TYPE WITH PREFIXED ROOT NAMES
6
6
  // *** ALIASES FOR NESTED TYPES
7
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL3BhcmV0by9zY2hlbWFzL2dyYXBodml6L2RhdGFfdHlwZXMvcmVzb2x2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQU1BLGFBQWE7QUFFYiwyQ0FBMkM7QUFFM0Msd0RBQXdEO0FBRXhELCtCQUErQiJ9
7
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL3BhcmV0by9zY2hlbWFzL2dyYXBodml6L2RhdGFfdHlwZXMvcmVzb2x2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQU1JLGFBQWE7QUFFYiwyQ0FBMkM7QUFFM0Msd0RBQXdEO0FBRXhELCtCQUErQiJ9
@@ -1,24 +1,10 @@
1
- import * as _i_out from "./data_types/target";
2
- import * as _i_in from "./data_types/source";
3
- export type _T_Graph = ($$_: _i_in._T_Graph, $$_p: null) => _i_out._T_Graph;
4
- export type Graph = _T_Graph;
5
- export declare namespace _T_Graph {
6
- namespace CONTEXT {
1
+ import * as i_out from "./data";
2
+ import * as i_in from "./data";
3
+ export declare namespace Graph_ {
4
+ type I = i_in.Graph;
5
+ type O = i_out.Graph;
6
+ namespace P {
7
7
  }
8
- type CONTEXT = _i_in._T_Graph;
9
- namespace PARAMS {
10
- }
11
- namespace RESULT {
12
- }
13
- type RESULT = _i_out._T_Graph;
14
- }
15
- export declare namespace Graph {
16
- namespace CONTEXT {
17
- }
18
- type CONTEXT = _i_in._T_Graph;
19
- namespace PARAMS {
20
- }
21
- namespace RESULT {
22
- }
23
- type RESULT = _i_out._T_Graph;
24
8
  }
9
+ export type Graph_ = ($$_: Graph_.I) => Graph_.O;
10
+ export { Graph_ as Graph, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-graphviz",
3
- "version": "0.1.12",
3
+ "version": "0.1.14",
4
4
  "description": "A TypeScript library for creating Graphviz graphs with pareto",
5
5
  "main": "./dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -27,6 +27,6 @@
27
27
  "node": ">=14.0.0"
28
28
  },
29
29
  "dependencies": {
30
- "pareto-fountain-pen": "^0.3.22"
30
+ "pareto-fountain-pen": "^0.3.32"
31
31
  }
32
32
  }
@@ -1,10 +0,0 @@
1
- import * as _target from "../../../../../interface/generated/pareto/core/astn_source";
2
- import * as d_parse_result from "../../../../../interface/generated/pareto/core/parse_result";
3
- import * as _source from "../../../../../interface/generated/pareto/core/token";
4
- import * as pg from "./astn_parse_generic";
5
- export declare const Structural_Token: (token: _source._T_Annotated_Token) => _target._T_Structural_Token;
6
- export declare const String: (token_iterator: pg.ASTN_Token_Iterator, abort: ($: pg.My_Parse_Error) => never) => _target._T_String;
7
- export declare const Document: (token_iterator: pg.ASTN_Token_Iterator, abort: ($: pg.My_Parse_Error) => never) => _target._T_Document;
8
- export declare const Elements: (token_iterator: pg.ASTN_Token_Iterator, end_reached: ($: _source._T_Token_Type) => boolean, end_token: d_parse_result.Expected, abort: ($: pg.My_Parse_Error) => never) => _target._T_Elements;
9
- export declare const Key_Value_Pairs: (token_iterator: pg.ASTN_Token_Iterator, end_reached: ($: _source._T_Token_Type) => boolean, end_token: d_parse_result.Expected, abort: ($: pg.My_Parse_Error) => never) => _target._T_Key_Value_Pairs;
10
- export declare const Value: (token_iterator: pg.ASTN_Token_Iterator, abort: ($: pg.My_Parse_Error) => never) => _target._T_Value;