exupery 0.1.12 → 0.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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,184 @@
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;
34
+ readonly 'location': M_Source;
35
35
  readonly 'up steps': number;
36
36
  };
37
- export type _T_State_Group<G_Source, T_SG> = {
38
- readonly 'location': G_Source;
37
+ export type _T_State_Group<M_Source, T_SG> = {
38
+ readonly 'location': M_Source;
39
39
  readonly 'state group': T_SG;
40
40
  };
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>;
41
+ export type Derived_Reference<M_Source, T_Type> = _T_Derived_Reference<M_Source, T_Type>;
42
+ export type Dictionary<M_Source, T_D> = _T_Dictionary<M_Source, T_D>;
43
+ export type List<M_Source, T_L> = _T_List<M_Source, T_L>;
44
+ export type Ordered_Dictionary<M_Source, T_D> = _T_Ordered_Dictionary<M_Source, T_D>;
45
+ export type Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry> = _T_Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry>;
46
+ export type Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry> = _T_Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry>;
47
+ export type Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry> = _T_Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry>;
48
+ export type State_Group<M_Source, T_SG> = _T_State_Group<M_Source, T_SG>;
49
49
  export declare namespace _T_Dictionary {
50
50
  namespace dictionary {
51
51
  namespace D {
52
- type entry<G_Source, T_D> = T_D;
53
- type location<G_Source, T_D> = G_Source;
52
+ type entry<M_Source, T_D> = T_D;
53
+ type location<M_Source, T_D> = M_Source;
54
54
  }
55
- type D<G_Source, T_D> = {
55
+ type D<M_Source, T_D> = {
56
56
  readonly 'entry': T_D;
57
- readonly 'location': G_Source;
57
+ readonly 'location': M_Source;
58
58
  };
59
59
  }
60
- type dictionary<G_Source, T_D> = _pt.Dictionary<{
60
+ type dictionary<M_Source, T_D> = _pt.Dictionary<{
61
61
  readonly 'entry': T_D;
62
- readonly 'location': G_Source;
62
+ readonly 'location': M_Source;
63
63
  }>;
64
- type location<G_Source, T_D> = G_Source;
64
+ type location<M_Source, T_D> = M_Source;
65
65
  }
66
66
  export declare namespace _T_List {
67
67
  namespace list {
68
68
  namespace L {
69
- type element<G_Source, T_L> = T_L;
70
- type location<G_Source, T_L> = G_Source;
69
+ type element<M_Source, T_L> = T_L;
70
+ type location<M_Source, T_L> = M_Source;
71
71
  }
72
- type L<G_Source, T_L> = {
72
+ type L<M_Source, T_L> = {
73
73
  readonly 'element': T_L;
74
- readonly 'location': G_Source;
74
+ readonly 'location': M_Source;
75
75
  };
76
76
  }
77
- type list<G_Source, T_L> = _pt.Array<{
77
+ type list<M_Source, T_L> = _pt.Array<{
78
78
  readonly 'element': T_L;
79
- readonly 'location': G_Source;
79
+ readonly 'location': M_Source;
80
80
  }>;
81
- type location<G_Source, T_L> = G_Source;
81
+ type location<M_Source, T_L> = M_Source;
82
82
  }
83
83
  export declare namespace _T_Ordered_Dictionary {
84
84
  namespace dictionary {
85
85
  namespace D {
86
- type entry<G_Source, T_D> = T_D;
87
- type location<G_Source, T_D> = G_Source;
86
+ type entry<M_Source, T_D> = T_D;
87
+ type location<M_Source, T_D> = M_Source;
88
88
  }
89
- type D<G_Source, T_D> = {
89
+ type D<M_Source, T_D> = {
90
90
  readonly 'entry': T_D;
91
- readonly 'location': G_Source;
91
+ readonly 'location': M_Source;
92
92
  };
93
93
  }
94
- type dictionary<G_Source, T_D> = _pt.Dictionary<{
94
+ type dictionary<M_Source, T_D> = _pt.Dictionary<{
95
95
  readonly 'entry': T_D;
96
- readonly 'location': G_Source;
96
+ readonly 'location': M_Source;
97
97
  }>;
98
- type location<G_Source, T_D> = G_Source;
98
+ type location<M_Source, T_D> = M_Source;
99
99
  }
100
100
  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;
101
+ type key<M_Source, T_Dictionary_Entry> = string;
102
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
103
103
  }
104
104
  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;
105
+ type key<M_Source, T_Dictionary_Entry> = string;
106
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
107
107
  }
108
108
  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;
109
+ type key<M_Source, T_Dictionary_Entry> = string;
110
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
111
+ type up_steps<M_Source, T_Dictionary_Entry> = number;
112
112
  }
113
113
  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;
114
+ type location<M_Source, T_SG> = M_Source;
115
+ type state_group<M_Source, T_SG> = T_SG;
116
116
  }
117
117
  export declare namespace Dictionary {
118
118
  namespace dictionary {
119
119
  namespace D {
120
- type entry<G_Source, T_D> = T_D;
121
- type location<G_Source, T_D> = G_Source;
120
+ type entry<M_Source, T_D> = T_D;
121
+ type location<M_Source, T_D> = M_Source;
122
122
  }
123
- type D<G_Source, T_D> = {
123
+ type D<M_Source, T_D> = {
124
124
  readonly 'entry': T_D;
125
- readonly 'location': G_Source;
125
+ readonly 'location': M_Source;
126
126
  };
127
127
  }
128
- type dictionary<G_Source, T_D> = _pt.Dictionary<{
128
+ type dictionary<M_Source, T_D> = _pt.Dictionary<{
129
129
  readonly 'entry': T_D;
130
- readonly 'location': G_Source;
130
+ readonly 'location': M_Source;
131
131
  }>;
132
- type location<G_Source, T_D> = G_Source;
132
+ type location<M_Source, T_D> = M_Source;
133
133
  }
134
134
  export declare namespace List {
135
135
  namespace list {
136
136
  namespace L {
137
- type element<G_Source, T_L> = T_L;
138
- type location<G_Source, T_L> = G_Source;
137
+ type element<M_Source, T_L> = T_L;
138
+ type location<M_Source, T_L> = M_Source;
139
139
  }
140
- type L<G_Source, T_L> = {
140
+ type L<M_Source, T_L> = {
141
141
  readonly 'element': T_L;
142
- readonly 'location': G_Source;
142
+ readonly 'location': M_Source;
143
143
  };
144
144
  }
145
- type list<G_Source, T_L> = _pt.Array<{
145
+ type list<M_Source, T_L> = _pt.Array<{
146
146
  readonly 'element': T_L;
147
- readonly 'location': G_Source;
147
+ readonly 'location': M_Source;
148
148
  }>;
149
- type location<G_Source, T_L> = G_Source;
149
+ type location<M_Source, T_L> = M_Source;
150
150
  }
151
151
  export declare namespace Ordered_Dictionary {
152
152
  namespace dictionary {
153
153
  namespace D {
154
- type entry<G_Source, T_D> = T_D;
155
- type location<G_Source, T_D> = G_Source;
154
+ type entry<M_Source, T_D> = T_D;
155
+ type location<M_Source, T_D> = M_Source;
156
156
  }
157
- type D<G_Source, T_D> = {
157
+ type D<M_Source, T_D> = {
158
158
  readonly 'entry': T_D;
159
- readonly 'location': G_Source;
159
+ readonly 'location': M_Source;
160
160
  };
161
161
  }
162
- type dictionary<G_Source, T_D> = _pt.Dictionary<{
162
+ type dictionary<M_Source, T_D> = _pt.Dictionary<{
163
163
  readonly 'entry': T_D;
164
- readonly 'location': G_Source;
164
+ readonly 'location': M_Source;
165
165
  }>;
166
- type location<G_Source, T_D> = G_Source;
166
+ type location<M_Source, T_D> = M_Source;
167
167
  }
168
168
  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;
169
+ type key<M_Source, T_Dictionary_Entry> = string;
170
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
171
171
  }
172
172
  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;
173
+ type key<M_Source, T_Dictionary_Entry> = string;
174
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
175
175
  }
176
176
  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;
177
+ type key<M_Source, T_Dictionary_Entry> = string;
178
+ type location<M_Source, T_Dictionary_Entry> = M_Source;
179
+ type up_steps<M_Source, T_Dictionary_Entry> = number;
180
180
  }
181
181
  export declare namespace State_Group {
182
- type location<G_Source, T_SG> = G_Source;
183
- type state_group<G_Source, T_SG> = T_SG;
182
+ type location<M_Source, T_SG> = M_Source;
183
+ type state_group<M_Source, T_SG> = T_SG;
184
184
  }