pareto-graphviz 0.1.0

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 (107) hide show
  1. package/dist/exceptional/serializers/json.d.ts +5 -0
  2. package/dist/exceptional/serializers/json.js +36 -0
  3. package/dist/globals.d.ts +26 -0
  4. package/dist/globals.js +2 -0
  5. package/dist/implementation/algorithms/operations/impure/text/serialize_string.d.ts +1 -0
  6. package/dist/implementation/algorithms/operations/impure/text/serialize_string.js +12 -0
  7. package/dist/implementation/algorithms/transformations/json/fountain_pen_block.d.ts +4 -0
  8. package/dist/implementation/algorithms/transformations/json/fountain_pen_block.js +88 -0
  9. package/dist/implementation/generated/pareto/generic/parse/ast.d.ts +10 -0
  10. package/dist/implementation/generated/pareto/generic/parse/ast.js +245 -0
  11. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.d.ts +13 -0
  12. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.js +50 -0
  13. package/dist/implementation/generated/pareto/generic/parse/parse.d.ts +6 -0
  14. package/dist/implementation/generated/pareto/generic/parse/parse.js +66 -0
  15. package/dist/implementation/generated/pareto/generic/parse/string_iterator.d.ts +40 -0
  16. package/dist/implementation/generated/pareto/generic/parse/string_iterator.js +109 -0
  17. package/dist/implementation/generated/pareto/generic/parse/token.d.ts +9 -0
  18. package/dist/implementation/generated/pareto/generic/parse/token.js +519 -0
  19. package/dist/implementation/generated/pareto/generic/resolve.d.ts +109 -0
  20. package/dist/implementation/generated/pareto/generic/resolve.js +276 -0
  21. package/dist/implementation/generated/pareto/generic/serialize.d.ts +4 -0
  22. package/dist/implementation/generated/pareto/generic/serialize.js +93 -0
  23. package/dist/implementation/generated/pareto/generic/unmarshall.d.ts +42 -0
  24. package/dist/implementation/generated/pareto/generic/unmarshall.js +247 -0
  25. package/dist/implementation/generated/pareto/schemas/graphviz/deserialize.d.ts +2 -0
  26. package/dist/implementation/generated/pareto/schemas/graphviz/deserialize.js +30 -0
  27. package/dist/implementation/generated/pareto/schemas/graphviz/marshall.d.ts +2 -0
  28. package/dist/implementation/generated/pareto/schemas/graphviz/marshall.js +42 -0
  29. package/dist/implementation/generated/pareto/schemas/graphviz/serialize.d.ts +2 -0
  30. package/dist/implementation/generated/pareto/schemas/graphviz/serialize.js +33 -0
  31. package/dist/implementation/generated/pareto/schemas/graphviz/unmarshall.d.ts +2 -0
  32. package/dist/implementation/generated/pareto/schemas/graphviz/unmarshall.js +53 -0
  33. package/dist/implementation/generated/pareto/schemas/json/deserialize.d.ts +3 -0
  34. package/dist/implementation/generated/pareto/schemas/json/deserialize.js +32 -0
  35. package/dist/implementation/generated/pareto/schemas/json/marshall.d.ts +3 -0
  36. package/dist/implementation/generated/pareto/schemas/json/marshall.js +110 -0
  37. package/dist/implementation/generated/pareto/schemas/json/serialize.d.ts +3 -0
  38. package/dist/implementation/generated/pareto/schemas/json/serialize.js +37 -0
  39. package/dist/implementation/generated/pareto/schemas/json/unmarshall.d.ts +3 -0
  40. package/dist/implementation/generated/pareto/schemas/json/unmarshall.js +81 -0
  41. package/dist/implementation/transformers/graphviz/fountain_pen.d.ts +4 -0
  42. package/dist/implementation/transformers/graphviz/fountain_pen.js +43 -0
  43. package/dist/index.d.ts +1 -0
  44. package/dist/index.js +5 -0
  45. package/dist/interface/algorithms/operations/impure/text/serialize_string.d.ts +1 -0
  46. package/dist/interface/algorithms/operations/impure/text/serialize_string.js +5 -0
  47. package/dist/interface/algorithms/transformations/json/fountain_pen_block.d.ts +1 -0
  48. package/dist/interface/algorithms/transformations/json/fountain_pen_block.js +5 -0
  49. package/dist/interface/generated/pareto/core/astn_source.d.ts +123 -0
  50. package/dist/interface/generated/pareto/core/astn_source.js +3 -0
  51. package/dist/interface/generated/pareto/core/astn_target.d.ts +186 -0
  52. package/dist/interface/generated/pareto/core/astn_target.js +3 -0
  53. package/dist/interface/generated/pareto/core/parse_result.d.ts +25 -0
  54. package/dist/interface/generated/pareto/core/parse_result.js +3 -0
  55. package/dist/interface/generated/pareto/core/resolve.d.ts +11 -0
  56. package/dist/interface/generated/pareto/core/resolve.js +3 -0
  57. package/dist/interface/generated/pareto/core/resolved.d.ts +117 -0
  58. package/dist/interface/generated/pareto/core/resolved.js +3 -0
  59. package/dist/interface/generated/pareto/core/token.d.ts +49 -0
  60. package/dist/interface/generated/pareto/core/token.js +3 -0
  61. package/dist/interface/generated/pareto/core/unconstrained.d.ts +19 -0
  62. package/dist/interface/generated/pareto/core/unconstrained.js +3 -0
  63. package/dist/interface/generated/pareto/core/unresolved.d.ts +181 -0
  64. package/dist/interface/generated/pareto/core/unresolved.js +3 -0
  65. package/dist/interface/generated/pareto/schemas/graphviz/data_types/resolve.d.ts +1 -0
  66. package/dist/interface/generated/pareto/schemas/graphviz/data_types/resolve.js +7 -0
  67. package/dist/interface/generated/pareto/schemas/graphviz/data_types/source.d.ts +49 -0
  68. package/dist/interface/generated/pareto/schemas/graphviz/data_types/source.js +3 -0
  69. package/dist/interface/generated/pareto/schemas/graphviz/data_types/target.d.ts +49 -0
  70. package/dist/interface/generated/pareto/schemas/graphviz/data_types/target.js +3 -0
  71. package/dist/interface/generated/pareto/schemas/graphviz/deserialize.d.ts +28 -0
  72. package/dist/interface/generated/pareto/schemas/graphviz/deserialize.js +3 -0
  73. package/dist/interface/generated/pareto/schemas/graphviz/marshall.d.ts +33 -0
  74. package/dist/interface/generated/pareto/schemas/graphviz/marshall.js +3 -0
  75. package/dist/interface/generated/pareto/schemas/graphviz/migrate_boilerplate.d.ts +24 -0
  76. package/dist/interface/generated/pareto/schemas/graphviz/migrate_boilerplate.js +3 -0
  77. package/dist/interface/generated/pareto/schemas/graphviz/serialize.d.ts +28 -0
  78. package/dist/interface/generated/pareto/schemas/graphviz/serialize.js +3 -0
  79. package/dist/interface/generated/pareto/schemas/graphviz/unmarshall.d.ts +33 -0
  80. package/dist/interface/generated/pareto/schemas/graphviz/unmarshall.js +3 -0
  81. package/dist/interface/generated/pareto/schemas/graphviz/value_deserializers.d.ts +64 -0
  82. package/dist/interface/generated/pareto/schemas/graphviz/value_deserializers.js +3 -0
  83. package/dist/interface/generated/pareto/schemas/graphviz/value_serializers.d.ts +64 -0
  84. package/dist/interface/generated/pareto/schemas/graphviz/value_serializers.js +3 -0
  85. package/dist/interface/generated/pareto/schemas/json/data_types/resolve.d.ts +1 -0
  86. package/dist/interface/generated/pareto/schemas/json/data_types/resolve.js +7 -0
  87. package/dist/interface/generated/pareto/schemas/json/data_types/source.d.ts +169 -0
  88. package/dist/interface/generated/pareto/schemas/json/data_types/source.js +3 -0
  89. package/dist/interface/generated/pareto/schemas/json/data_types/target.d.ts +169 -0
  90. package/dist/interface/generated/pareto/schemas/json/data_types/target.js +3 -0
  91. package/dist/interface/generated/pareto/schemas/json/deserialize.d.ts +54 -0
  92. package/dist/interface/generated/pareto/schemas/json/deserialize.js +3 -0
  93. package/dist/interface/generated/pareto/schemas/json/marshall.d.ts +63 -0
  94. package/dist/interface/generated/pareto/schemas/json/marshall.js +3 -0
  95. package/dist/interface/generated/pareto/schemas/json/migrate_boilerplate.d.ts +46 -0
  96. package/dist/interface/generated/pareto/schemas/json/migrate_boilerplate.js +3 -0
  97. package/dist/interface/generated/pareto/schemas/json/serialize.d.ts +54 -0
  98. package/dist/interface/generated/pareto/schemas/json/serialize.js +3 -0
  99. package/dist/interface/generated/pareto/schemas/json/unmarshall.d.ts +63 -0
  100. package/dist/interface/generated/pareto/schemas/json/unmarshall.js +3 -0
  101. package/dist/interface/generated/pareto/schemas/json/value_deserializers.d.ts +64 -0
  102. package/dist/interface/generated/pareto/schemas/json/value_deserializers.js +3 -0
  103. package/dist/interface/generated/pareto/schemas/json/value_serializers.d.ts +64 -0
  104. package/dist/interface/generated/pareto/schemas/json/value_serializers.js +3 -0
  105. package/dist/shorthands/json.d.ts +8 -0
  106. package/dist/shorthands/json.js +12 -0
  107. package/package.json +36 -0
@@ -0,0 +1,117 @@
1
+ import * as _et from 'exupery-core-types';
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>;
5
+ export type _T_Ordered_Dictionary<M_Source, T_D> = {
6
+ readonly 'dictionary': _et.Dictionary<T_D>;
7
+ readonly 'ordered list': _et.List<{
8
+ readonly 'key': string;
9
+ readonly 'value': T_D;
10
+ }>;
11
+ };
12
+ export type _T_Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry> = {
13
+ readonly 'entry': _et.Circular_Dependency<T_Dictionary_Entry>;
14
+ readonly 'key': string;
15
+ };
16
+ export type _T_Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry> = {
17
+ readonly 'entry': T_Dictionary_Entry;
18
+ readonly 'key': string;
19
+ };
20
+ export type _T_Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry> = {
21
+ readonly 'entry': T_Dictionary_Entry;
22
+ readonly 'key': string;
23
+ readonly 'up steps': number;
24
+ };
25
+ export type _T_State_Group<M_Source, T_SG> = T_SG;
26
+ export type Derived_Reference<M_Source, T_Type> = _T_Derived_Reference<M_Source, T_Type>;
27
+ export type Dictionary<M_Source, T_D> = _T_Dictionary<M_Source, T_D>;
28
+ export type List<M_Source, T_L> = _T_List<M_Source, T_L>;
29
+ export type Ordered_Dictionary<M_Source, T_D> = _T_Ordered_Dictionary<M_Source, T_D>;
30
+ export type Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry> = _T_Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry>;
31
+ export type Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry> = _T_Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry>;
32
+ export type Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry> = _T_Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry>;
33
+ export type State_Group<M_Source, T_SG> = _T_State_Group<M_Source, T_SG>;
34
+ export declare namespace _T_Dictionary {
35
+ type D<M_Source, T_D> = T_D;
36
+ }
37
+ export declare namespace _T_List {
38
+ type L<M_Source, T_L> = T_L;
39
+ }
40
+ export declare namespace _T_Ordered_Dictionary {
41
+ namespace dictionary {
42
+ type D<M_Source, T_D> = T_D;
43
+ }
44
+ type dictionary<M_Source, T_D> = _et.Dictionary<T_D>;
45
+ namespace ordered_list {
46
+ namespace L {
47
+ type key<M_Source, T_D> = string;
48
+ type value<M_Source, T_D> = T_D;
49
+ }
50
+ type L<M_Source, T_D> = {
51
+ readonly 'key': string;
52
+ readonly 'value': T_D;
53
+ };
54
+ }
55
+ type ordered_list<M_Source, T_D> = _et.List<{
56
+ readonly 'key': string;
57
+ readonly 'value': T_D;
58
+ }>;
59
+ }
60
+ export declare namespace _T_Reference_To_Circular_Dependent_Sibling {
61
+ namespace entry {
62
+ type C<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
63
+ }
64
+ type entry<M_Source, T_Dictionary_Entry> = _et.Circular_Dependency<T_Dictionary_Entry>;
65
+ type key<M_Source, T_Dictionary_Entry> = string;
66
+ }
67
+ export declare namespace _T_Reference_To_Normal_Dictionary_Entry {
68
+ type entry<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
69
+ type key<M_Source, T_Dictionary_Entry> = string;
70
+ }
71
+ export declare namespace _T_Reference_To_Stacked_Dictionary_Entry {
72
+ type entry<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
73
+ type key<M_Source, T_Dictionary_Entry> = string;
74
+ type up_steps<M_Source, T_Dictionary_Entry> = number;
75
+ }
76
+ export declare namespace Dictionary {
77
+ type D<M_Source, T_D> = T_D;
78
+ }
79
+ export declare namespace List {
80
+ type L<M_Source, T_L> = T_L;
81
+ }
82
+ export declare namespace Ordered_Dictionary {
83
+ namespace dictionary {
84
+ type D<M_Source, T_D> = T_D;
85
+ }
86
+ type dictionary<M_Source, T_D> = _et.Dictionary<T_D>;
87
+ namespace ordered_list {
88
+ namespace L {
89
+ type key<M_Source, T_D> = string;
90
+ type value<M_Source, T_D> = T_D;
91
+ }
92
+ type L<M_Source, T_D> = {
93
+ readonly 'key': string;
94
+ readonly 'value': T_D;
95
+ };
96
+ }
97
+ type ordered_list<M_Source, T_D> = _et.List<{
98
+ readonly 'key': string;
99
+ readonly 'value': T_D;
100
+ }>;
101
+ }
102
+ export declare namespace Reference_To_Circular_Dependent_Sibling {
103
+ namespace entry {
104
+ type C<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
105
+ }
106
+ type entry<M_Source, T_Dictionary_Entry> = _et.Circular_Dependency<T_Dictionary_Entry>;
107
+ type key<M_Source, T_Dictionary_Entry> = string;
108
+ }
109
+ export declare namespace Reference_To_Normal_Dictionary_Entry {
110
+ type entry<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
111
+ type key<M_Source, T_Dictionary_Entry> = string;
112
+ }
113
+ export declare namespace Reference_To_Stacked_Dictionary_Entry {
114
+ type entry<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
115
+ type key<M_Source, T_Dictionary_Entry> = string;
116
+ type up_steps<M_Source, T_Dictionary_Entry> = number;
117
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZWQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vY29yZS9yZXNvbHZlZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,49 @@
1
+ import * as _et from 'exupery-core-types';
2
+ export type _T_Annotated_Token = {
3
+ readonly 'end': _T_Location;
4
+ readonly 'start': _T_Location;
5
+ readonly 'trailing trivia': _T_Trivia;
6
+ readonly 'type': _T_Token_Type;
7
+ };
8
+ export type _T_Delimited_String = string;
9
+ export type _T_Location = {
10
+ readonly 'absolute': number;
11
+ readonly 'relative': _T_Relative_Location;
12
+ };
13
+ export type _T_Range = {
14
+ readonly 'end': _T_Location;
15
+ readonly 'start': _T_Location;
16
+ };
17
+ export type _T_Relative_Location = {
18
+ readonly 'column': number;
19
+ readonly 'line': number;
20
+ };
21
+ export type _T_String_Type = readonly ['apostrophed', null] | readonly ['backticked', null] | readonly ['quoted', null] | readonly ['undelimited', null];
22
+ export type _T_Token_Type = readonly ['!', null] | readonly ['#', null] | readonly ['(', null] | readonly [')', null] | readonly ['*', null] | readonly [':', null] | readonly ['<', null] | readonly ['>', null] | readonly ['@', null] | readonly ['[', null] | readonly [']', null] | readonly [
23
+ 'string',
24
+ {
25
+ readonly 'type': _T_String_Type;
26
+ readonly 'value': _T_Delimited_String;
27
+ }
28
+ ] | readonly ['{', null] | readonly ['|', null] | readonly ['}', null] | readonly ['~', null];
29
+ export type _T_Tokenizer_Result = {
30
+ readonly 'end': _T_Location;
31
+ readonly 'leading trivia': _T_Trivia;
32
+ readonly 'tokens': _et.List<_T_Annotated_Token>;
33
+ };
34
+ export declare namespace _T_Tokenizer_Result {
35
+ type tokens = _et.List<_T_Annotated_Token>;
36
+ }
37
+ export type _T_Trivia = {
38
+ readonly 'comments': _et.List<{
39
+ readonly 'content': string;
40
+ readonly 'range': _T_Range;
41
+ readonly 'trailing whitespace': _T_Whitespace;
42
+ readonly 'type': readonly ['block', null] | readonly ['line', null];
43
+ }>;
44
+ readonly 'leading whitespace': _T_Whitespace;
45
+ };
46
+ export type _T_Whitespace = {
47
+ readonly 'range': _T_Range;
48
+ readonly 'value': string;
49
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9rZW4uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vY29yZS90b2tlbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,19 @@
1
+ import * as _et from 'exupery-core-types';
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>;
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
+ export declare namespace _T_Dictionary {
9
+ type D<M_Source, T_D> = T_D;
10
+ }
11
+ export declare namespace _T_List {
12
+ type L<M_Source, T_L> = T_L;
13
+ }
14
+ export declare namespace Dictionary {
15
+ type D<M_Source, T_D> = T_D;
16
+ }
17
+ export declare namespace List {
18
+ type L<M_Source, T_L> = T_L;
19
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5jb25zdHJhaW5lZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL3BhcmV0by9jb3JlL3VuY29uc3RyYWluZWQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -0,0 +1,181 @@
1
+ import * as _et from 'exupery-core-types';
2
+ export type _T_Derived_Reference<M_Source, T_Type> = null;
3
+ export type _T_Dictionary<M_Source, T_D> = {
4
+ readonly 'dictionary': _et.Dictionary<{
5
+ readonly 'entry': T_D;
6
+ readonly 'location': M_Source;
7
+ }>;
8
+ readonly 'location': M_Source;
9
+ };
10
+ export type _T_List<M_Source, T_L> = {
11
+ readonly 'list': _et.List<{
12
+ readonly 'element': T_L;
13
+ readonly 'location': M_Source;
14
+ }>;
15
+ readonly 'location': M_Source;
16
+ };
17
+ export type _T_Ordered_Dictionary<M_Source, T_D> = {
18
+ readonly 'dictionary': _et.Dictionary<{
19
+ readonly 'entry': T_D;
20
+ readonly 'location': M_Source;
21
+ }>;
22
+ readonly 'location': M_Source;
23
+ };
24
+ export type _T_Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry> = {
25
+ readonly 'key': string;
26
+ readonly 'location': M_Source;
27
+ };
28
+ export type _T_Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry> = {
29
+ readonly 'key': string;
30
+ readonly 'location': M_Source;
31
+ };
32
+ export type _T_Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry> = {
33
+ readonly 'key': string;
34
+ readonly 'location': M_Source;
35
+ };
36
+ export type _T_State_Group<M_Source, T_SG> = {
37
+ readonly 'location': M_Source;
38
+ readonly 'state group': T_SG;
39
+ };
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>;
48
+ export declare namespace _T_Dictionary {
49
+ namespace dictionary {
50
+ namespace D {
51
+ type entry<M_Source, T_D> = T_D;
52
+ type location<M_Source, T_D> = M_Source;
53
+ }
54
+ type D<M_Source, T_D> = {
55
+ readonly 'entry': T_D;
56
+ readonly 'location': M_Source;
57
+ };
58
+ }
59
+ type dictionary<M_Source, T_D> = _et.Dictionary<{
60
+ readonly 'entry': T_D;
61
+ readonly 'location': M_Source;
62
+ }>;
63
+ type location<M_Source, T_D> = M_Source;
64
+ }
65
+ export declare namespace _T_List {
66
+ namespace list {
67
+ namespace L {
68
+ type element<M_Source, T_L> = T_L;
69
+ type location<M_Source, T_L> = M_Source;
70
+ }
71
+ type L<M_Source, T_L> = {
72
+ readonly 'element': T_L;
73
+ readonly 'location': M_Source;
74
+ };
75
+ }
76
+ type list<M_Source, T_L> = _et.List<{
77
+ readonly 'element': T_L;
78
+ readonly 'location': M_Source;
79
+ }>;
80
+ type location<M_Source, T_L> = M_Source;
81
+ }
82
+ export declare namespace _T_Ordered_Dictionary {
83
+ namespace dictionary {
84
+ namespace D {
85
+ type entry<M_Source, T_D> = T_D;
86
+ type location<M_Source, T_D> = M_Source;
87
+ }
88
+ type D<M_Source, T_D> = {
89
+ readonly 'entry': T_D;
90
+ readonly 'location': M_Source;
91
+ };
92
+ }
93
+ type dictionary<M_Source, T_D> = _et.Dictionary<{
94
+ readonly 'entry': T_D;
95
+ readonly 'location': M_Source;
96
+ }>;
97
+ type location<M_Source, T_D> = M_Source;
98
+ }
99
+ export declare namespace _T_Reference_To_Circular_Dependent_Sibling {
100
+ type key<M_Source, T_Dictionary_Entry> = string;
101
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
102
+ }
103
+ export declare namespace _T_Reference_To_Normal_Dictionary_Entry {
104
+ type key<M_Source, T_Dictionary_Entry> = string;
105
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
106
+ }
107
+ export declare namespace _T_Reference_To_Stacked_Dictionary_Entry {
108
+ type key<M_Source, T_Dictionary_Entry> = string;
109
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
110
+ }
111
+ export declare namespace _T_State_Group {
112
+ type location<M_Source, T_SG> = M_Source;
113
+ type state_group<M_Source, T_SG> = T_SG;
114
+ }
115
+ export declare namespace Dictionary {
116
+ namespace dictionary {
117
+ namespace D {
118
+ type entry<M_Source, T_D> = T_D;
119
+ type location<M_Source, T_D> = M_Source;
120
+ }
121
+ type D<M_Source, T_D> = {
122
+ readonly 'entry': T_D;
123
+ readonly 'location': M_Source;
124
+ };
125
+ }
126
+ type dictionary<M_Source, T_D> = _et.Dictionary<{
127
+ readonly 'entry': T_D;
128
+ readonly 'location': M_Source;
129
+ }>;
130
+ type location<M_Source, T_D> = M_Source;
131
+ }
132
+ export declare namespace List {
133
+ namespace list {
134
+ namespace L {
135
+ type element<M_Source, T_L> = T_L;
136
+ type location<M_Source, T_L> = M_Source;
137
+ }
138
+ type L<M_Source, T_L> = {
139
+ readonly 'element': T_L;
140
+ readonly 'location': M_Source;
141
+ };
142
+ }
143
+ type list<M_Source, T_L> = _et.List<{
144
+ readonly 'element': T_L;
145
+ readonly 'location': M_Source;
146
+ }>;
147
+ type location<M_Source, T_L> = M_Source;
148
+ }
149
+ export declare namespace Ordered_Dictionary {
150
+ namespace dictionary {
151
+ namespace D {
152
+ type entry<M_Source, T_D> = T_D;
153
+ type location<M_Source, T_D> = M_Source;
154
+ }
155
+ type D<M_Source, T_D> = {
156
+ readonly 'entry': T_D;
157
+ readonly 'location': M_Source;
158
+ };
159
+ }
160
+ type dictionary<M_Source, T_D> = _et.Dictionary<{
161
+ readonly 'entry': T_D;
162
+ readonly 'location': M_Source;
163
+ }>;
164
+ type location<M_Source, T_D> = M_Source;
165
+ }
166
+ export declare namespace Reference_To_Circular_Dependent_Sibling {
167
+ type key<M_Source, T_Dictionary_Entry> = string;
168
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
169
+ }
170
+ export declare namespace Reference_To_Normal_Dictionary_Entry {
171
+ type key<M_Source, T_Dictionary_Entry> = string;
172
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
173
+ }
174
+ export declare namespace Reference_To_Stacked_Dictionary_Entry {
175
+ type key<M_Source, T_Dictionary_Entry> = string;
176
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
177
+ }
178
+ export declare namespace State_Group {
179
+ type location<M_Source, T_SG> = M_Source;
180
+ type state_group<M_Source, T_SG> = T_SG;
181
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5yZXNvbHZlZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL3BhcmV0by9jb3JlL3VucmVzb2x2ZWQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ // **** TYPES
4
+ // **** FRIENDLY NAMES FOR THE GLOBAL TYPES
5
+ // **** ALIASES FOR NESTED TYPE WITH PREFIXED ROOT NAMES
6
+ // *** ALIASES FOR NESTED TYPES
7
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb2x2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL3BhcmV0by9zY2hlbWFzL2dyYXBodml6L2RhdGFfdHlwZXMvcmVzb2x2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQU1BLGFBQWE7QUFFYiwyQ0FBMkM7QUFFM0Msd0RBQXdEO0FBRXhELCtCQUErQiJ9
@@ -0,0 +1,49 @@
1
+ import * as _i_core from "../../../core/resolved";
2
+ export type _T_Graph = {
3
+ readonly 'nodes': _i_core._T_Dictionary<null, null>;
4
+ readonly 'edges': _i_core._T_List<null, {
5
+ readonly 'from': string;
6
+ readonly 'to': string;
7
+ }>;
8
+ };
9
+ export type Graph = _T_Graph;
10
+ export declare namespace _T_Graph {
11
+ namespace nodes {
12
+ type D = null;
13
+ }
14
+ type nodes = _i_core._T_Dictionary<null, null>;
15
+ namespace edges {
16
+ namespace L {
17
+ type _from = string;
18
+ type to = string;
19
+ }
20
+ type L = {
21
+ readonly 'from': string;
22
+ readonly 'to': string;
23
+ };
24
+ }
25
+ type edges = _i_core._T_List<null, {
26
+ readonly 'from': string;
27
+ readonly 'to': string;
28
+ }>;
29
+ }
30
+ export declare namespace Graph {
31
+ namespace nodes {
32
+ type D = null;
33
+ }
34
+ type nodes = _i_core._T_Dictionary<null, null>;
35
+ namespace edges {
36
+ namespace L {
37
+ type _from = string;
38
+ type to = string;
39
+ }
40
+ type L = {
41
+ readonly 'from': string;
42
+ readonly 'to': string;
43
+ };
44
+ }
45
+ type edges = _i_core._T_List<null, {
46
+ readonly 'from': string;
47
+ readonly 'to': string;
48
+ }>;
49
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic291cmNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvcGFyZXRvL3NjaGVtYXMvZ3JhcGh2aXovZGF0YV90eXBlcy9zb3VyY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -0,0 +1,49 @@
1
+ import * as _i_core from "../../../core/unconstrained";
2
+ export type _T_Graph = {
3
+ readonly 'nodes': _i_core._T_Dictionary<null, null>;
4
+ readonly 'edges': _i_core._T_List<null, {
5
+ readonly 'from': string;
6
+ readonly 'to': string;
7
+ }>;
8
+ };
9
+ export type Graph = _T_Graph;
10
+ export declare namespace _T_Graph {
11
+ namespace nodes {
12
+ type D = null;
13
+ }
14
+ type nodes = _i_core._T_Dictionary<null, null>;
15
+ namespace edges {
16
+ namespace L {
17
+ type _from = string;
18
+ type to = string;
19
+ }
20
+ type L = {
21
+ readonly 'from': string;
22
+ readonly 'to': string;
23
+ };
24
+ }
25
+ type edges = _i_core._T_List<null, {
26
+ readonly 'from': string;
27
+ readonly 'to': string;
28
+ }>;
29
+ }
30
+ export declare namespace Graph {
31
+ namespace nodes {
32
+ type D = null;
33
+ }
34
+ type nodes = _i_core._T_Dictionary<null, null>;
35
+ namespace edges {
36
+ namespace L {
37
+ type _from = string;
38
+ type to = string;
39
+ }
40
+ type L = {
41
+ readonly 'from': string;
42
+ readonly 'to': string;
43
+ };
44
+ }
45
+ type edges = _i_core._T_List<null, {
46
+ readonly 'from': string;
47
+ readonly 'to': string;
48
+ }>;
49
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFyZ2V0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvcGFyZXRvL3NjaGVtYXMvZ3JhcGh2aXovZGF0YV90eXBlcy90YXJnZXQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -0,0 +1,28 @@
1
+ import * as _i_out from "./data_types/target";
2
+ import * as _i_vd from "./value_deserializers";
3
+ export type _T_Graph = ($$_: string, $$_p: {
4
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
5
+ }) => _i_out._T_Graph;
6
+ export type Graph = _T_Graph;
7
+ export declare namespace _T_Graph {
8
+ type CONTEXT = string;
9
+ namespace PARAMS {
10
+ namespace value_deserializers {
11
+ }
12
+ type value_deserializers = _i_vd._T_Value_Deserializers;
13
+ }
14
+ namespace RESULT {
15
+ }
16
+ type RESULT = _i_out._T_Graph;
17
+ }
18
+ export declare namespace Graph {
19
+ type CONTEXT = string;
20
+ namespace PARAMS {
21
+ namespace value_deserializers {
22
+ }
23
+ type value_deserializers = _i_vd._T_Value_Deserializers;
24
+ }
25
+ namespace RESULT {
26
+ }
27
+ type RESULT = _i_out._T_Graph;
28
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZXJpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vc2NoZW1hcy9ncmFwaHZpei9kZXNlcmlhbGl6ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,33 @@
1
+ import * as _i_out from "../../core/astn_target";
2
+ import * as _i_in from "./data_types/source";
3
+ import * as _i_vs from "./value_serializers";
4
+ export type _T_Graph = ($$_: _i_in._T_Graph, $$_p: {
5
+ readonly 'value serializers': _i_vs._T_Value_Serializers;
6
+ }) => _i_out._T_Value;
7
+ export type Graph = _T_Graph;
8
+ export declare namespace _T_Graph {
9
+ namespace CONTEXT {
10
+ }
11
+ type CONTEXT = _i_in._T_Graph;
12
+ namespace PARAMS {
13
+ namespace value_serializers {
14
+ }
15
+ type value_serializers = _i_vs._T_Value_Serializers;
16
+ }
17
+ namespace RESULT {
18
+ }
19
+ type RESULT = _i_out._T_Value;
20
+ }
21
+ export declare namespace Graph {
22
+ namespace CONTEXT {
23
+ }
24
+ type CONTEXT = _i_in._T_Graph;
25
+ namespace PARAMS {
26
+ namespace value_serializers {
27
+ }
28
+ type value_serializers = _i_vs._T_Value_Serializers;
29
+ }
30
+ namespace RESULT {
31
+ }
32
+ type RESULT = _i_out._T_Value;
33
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFyc2hhbGwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vc2NoZW1hcy9ncmFwaHZpei9tYXJzaGFsbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,24 @@
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 {
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
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlncmF0ZV9ib2lsZXJwbGF0ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL3BhcmV0by9zY2hlbWFzL2dyYXBodml6L21pZ3JhdGVfYm9pbGVycGxhdGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -0,0 +1,28 @@
1
+ import * as _i_in from "./data_types/source";
2
+ import * as _i_vs from "./value_serializers";
3
+ export type _T_Graph = ($$_: _i_in._T_Graph, $$_p: {
4
+ readonly 'value serializers': _i_vs._T_Value_Serializers;
5
+ }) => string;
6
+ export type Graph = _T_Graph;
7
+ export declare namespace _T_Graph {
8
+ namespace CONTEXT {
9
+ }
10
+ type CONTEXT = _i_in._T_Graph;
11
+ namespace PARAMS {
12
+ namespace value_serializers {
13
+ }
14
+ type value_serializers = _i_vs._T_Value_Serializers;
15
+ }
16
+ type RESULT = string;
17
+ }
18
+ export declare namespace Graph {
19
+ namespace CONTEXT {
20
+ }
21
+ type CONTEXT = _i_in._T_Graph;
22
+ namespace PARAMS {
23
+ namespace value_serializers {
24
+ }
25
+ type value_serializers = _i_vs._T_Value_Serializers;
26
+ }
27
+ type RESULT = string;
28
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvcGFyZXRvL3NjaGVtYXMvZ3JhcGh2aXovc2VyaWFsaXplLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==