expressir 0.2.17 → 0.2.25

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/rake.yml +5 -0
  3. data/.github/workflows/release.yml +31 -3
  4. data/README.adoc +3 -3
  5. data/exe/format +45 -29
  6. data/ext/express-parser/extconf.rb +2 -0
  7. data/lib/expressir/express_exp/cache.rb +48 -0
  8. data/lib/expressir/express_exp/formatter.rb +2 -2
  9. data/lib/expressir/express_exp/hyperlink_formatter.rb +10 -15
  10. data/lib/expressir/express_exp/model_visitor.rb +23 -0
  11. data/lib/expressir/express_exp/parser.rb +18 -3
  12. data/lib/expressir/express_exp/resolve_references_model_visitor.rb +33 -0
  13. data/lib/expressir/express_exp/visitor.rb +19 -18
  14. data/lib/expressir/model.rb +3 -1
  15. data/lib/expressir/model/attribute.rb +12 -5
  16. data/lib/expressir/model/cache.rb +13 -0
  17. data/lib/expressir/model/constant.rb +9 -2
  18. data/lib/expressir/model/entity.rb +10 -8
  19. data/lib/expressir/model/enumeration_item.rb +7 -0
  20. data/lib/expressir/model/expressions/aggregate_initializer.rb +1 -1
  21. data/lib/expressir/model/expressions/aggregate_item.rb +2 -2
  22. data/lib/expressir/model/expressions/attribute_reference.rb +2 -2
  23. data/lib/expressir/model/expressions/binary_expression.rb +3 -3
  24. data/lib/expressir/model/expressions/call.rb +2 -2
  25. data/lib/expressir/model/expressions/entity_constructor.rb +2 -2
  26. data/lib/expressir/model/expressions/group_reference.rb +2 -2
  27. data/lib/expressir/model/expressions/index_reference.rb +3 -3
  28. data/lib/expressir/model/expressions/interval.rb +5 -5
  29. data/lib/expressir/model/expressions/query_expression.rb +5 -3
  30. data/lib/expressir/model/expressions/simple_reference.rb +5 -1
  31. data/lib/expressir/model/expressions/unary_expression.rb +2 -2
  32. data/lib/expressir/model/function.rb +13 -11
  33. data/lib/expressir/model/identifier.rb +6 -3
  34. data/lib/expressir/model/interface.rb +3 -3
  35. data/lib/expressir/model/interface_item.rb +2 -2
  36. data/lib/expressir/model/interfaced_item.rb +9 -8
  37. data/lib/expressir/model/literals/binary.rb +1 -1
  38. data/lib/expressir/model/literals/integer.rb +1 -1
  39. data/lib/expressir/model/literals/logical.rb +1 -1
  40. data/lib/expressir/model/literals/real.rb +1 -1
  41. data/lib/expressir/model/literals/string.rb +2 -2
  42. data/lib/expressir/model/model_element.rb +46 -21
  43. data/lib/expressir/model/parameter.rb +9 -2
  44. data/lib/expressir/model/procedure.rb +12 -10
  45. data/lib/expressir/model/{informal_proposition.rb → remark_item.rb} +3 -6
  46. data/lib/expressir/model/repository.rb +1 -1
  47. data/lib/expressir/model/rule.rb +14 -12
  48. data/lib/expressir/model/schema.rb +13 -11
  49. data/lib/expressir/model/statements/alias.rb +5 -3
  50. data/lib/expressir/model/statements/assignment.rb +2 -2
  51. data/lib/expressir/model/statements/call.rb +2 -2
  52. data/lib/expressir/model/statements/case.rb +3 -3
  53. data/lib/expressir/model/statements/case_action.rb +2 -2
  54. data/lib/expressir/model/statements/compound.rb +1 -1
  55. data/lib/expressir/model/statements/if.rb +3 -3
  56. data/lib/expressir/model/statements/repeat.rb +9 -7
  57. data/lib/expressir/model/statements/return.rb +1 -1
  58. data/lib/expressir/model/subtype_constraint.rb +11 -4
  59. data/lib/expressir/model/type.rb +6 -4
  60. data/lib/expressir/model/types/aggregate.rb +8 -1
  61. data/lib/expressir/model/types/array.rb +5 -5
  62. data/lib/expressir/model/types/bag.rb +3 -3
  63. data/lib/expressir/model/types/binary.rb +2 -2
  64. data/lib/expressir/model/types/enumeration.rb +4 -4
  65. data/lib/expressir/model/types/generic.rb +7 -0
  66. data/lib/expressir/model/types/generic_entity.rb +7 -0
  67. data/lib/expressir/model/types/list.rb +4 -4
  68. data/lib/expressir/model/types/real.rb +1 -1
  69. data/lib/expressir/model/types/select.rb +5 -5
  70. data/lib/expressir/model/types/set.rb +3 -3
  71. data/lib/expressir/model/types/string.rb +2 -2
  72. data/lib/expressir/model/unique.rb +8 -1
  73. data/lib/expressir/model/variable.rb +9 -2
  74. data/lib/expressir/model/where.rb +8 -1
  75. data/lib/expressir/version.rb +1 -1
  76. data/original/examples/syntax/multiple.yaml +18 -0
  77. data/original/examples/syntax/remark.exp +12 -10
  78. data/original/examples/syntax/remark.yaml +24 -3
  79. data/original/examples/syntax/remark_formatted.exp +3 -1
  80. data/original/examples/syntax/single.exp +1 -0
  81. data/original/examples/syntax/single.yaml +7 -0
  82. data/original/examples/syntax/single_formatted.exp +4 -0
  83. data/original/examples/syntax/single_formatted.yaml +15 -0
  84. data/original/examples/syntax/syntax.yaml +82 -0
  85. data/original/examples/syntax/syntax_hyperlink_formatted.exp +902 -0
  86. data/spec/expressir/express_exp/cache_spec.rb +64 -0
  87. data/spec/expressir/express_exp/formatter_spec.rb +17 -0
  88. data/spec/expressir/express_exp/parser_spec.rb +9 -9
  89. data/spec/expressir/model/model_element_spec.rb +32 -29
  90. metadata +9 -3
@@ -14,8 +14,8 @@ CONSTANT remark_constant : STRING := 'xxx'; END_CONSTANT;
14
14
  TYPE remark_type = ENUMERATION OF (remark_enumeration_item);
15
15
  WHERE WR1: TRUE;
16
16
  --"WR1" type scope - type where
17
- --"IP1" type scope - type informal proposition
18
17
  --"wr:WR1" type scope - type where, with prefix
18
+ --"IP1" type scope - type informal proposition
19
19
  --"ip:IP1" type scope - type informal proposition, with prefix
20
20
  END_TYPE;
21
21
  ENTITY remark_entity;
@@ -29,8 +29,8 @@ ENTITY remark_entity;
29
29
  --"remark_inverse_attribute" entity scope - entity inverse attribute
30
30
  --"UR1" entity scope - entity unique
31
31
  --"WR1" entity scope - entity where
32
- --"IP1" entity scope - entity informal proposition
33
32
  --"wr:WR1" entity scope - entity where, with prefix
33
+ --"IP1" entity scope - entity informal proposition
34
34
  --"ip:IP1" entity scope - entity informal proposition, with prefix
35
35
  END_ENTITY;
36
36
  SUBTYPE_CONSTRAINT remark_subtype_constraint FOR remark_entity; END_SUBTYPE_CONSTRAINT;
@@ -74,8 +74,8 @@ RULE remark_rule FOR (remark_entity);
74
74
  --"remark_constant" rule scope - rule constant
75
75
  --"remark_variable" rule scope - rule variable
76
76
  --"WR1" rule scope - rule where
77
- --"IP1" rule scope - rule informal proposition
78
77
  --"wr:WR1" rule scope - rule where, with prefix
78
+ --"IP1" rule scope - rule informal proposition
79
79
  --"ip:IP1" rule scope - rule informal proposition, with prefix
80
80
  END_RULE;
81
81
  PROCEDURE remark_procedure(remark_parameter : STRING);
@@ -102,8 +102,8 @@ END_PROCEDURE;
102
102
  --"remark_constant" schema scope - constant
103
103
  --"remark_type" schema scope - type
104
104
  --"remark_type.WR1" schema scope - type where
105
- --"remark_type.IP1" schema scope - type informal proposition
106
105
  --"remark_type.wr:WR1" schema scope - type where, with prefix
106
+ --"remark_type.IP1" schema scope - type informal proposition
107
107
  --"remark_type.ip:IP1" schema scope - type informal proposition, with prefix
108
108
  --"remark_type.remark_enumeration_item" schema scope - enumeration item
109
109
  --"remark_enumeration_item" schema scope - enumeration item, on the same level as the type
@@ -113,8 +113,8 @@ END_PROCEDURE;
113
113
  --"remark_entity.remark_inverse_attribute" schema scope - entity inverse attribute
114
114
  --"remark_entity.UR1" schema scope - entity unique
115
115
  --"remark_entity.WR1" schema scope - entity where
116
- --"remark_entity.IP1" schema scope - entity informal proposition
117
116
  --"remark_entity.wr:WR1" schema scope - entity where, with prefix
117
+ --"remark_entity.IP1" schema scope - entity informal proposition
118
118
  --"remark_entity.ip:IP1" schema scope - entity informal proposition, with prefix
119
119
  --"remark_subtype_constraint" schema scope - subtype constraint
120
120
  --"remark_function" schema scope - function
@@ -131,8 +131,8 @@ END_PROCEDURE;
131
131
  --"remark_rule.remark_constant" schema scope - rule constant
132
132
  --"remark_rule.remark_variable" schema scope - rule variable
133
133
  --"remark_rule.WR1" schema scope - rule where
134
- --"remark_rule.IP1" schema scope - rule informal proposition
135
134
  --"remark_rule.wr:WR1" schema scope - rule where, with prefix
135
+ --"remark_rule.IP1" schema scope - rule informal proposition
136
136
  --"remark_rule.ip:IP1" schema scope - rule informal proposition, with prefix
137
137
  --"remark_procedure" schema scope - procedure
138
138
  --"remark_procedure.remark_parameter" schema scope - procedure parameter
@@ -141,6 +141,7 @@ END_PROCEDURE;
141
141
  --"remark_procedure.remark_enumeration_item" schema scope - procedure enumeration item, on the same level as the type
142
142
  --"remark_procedure.remark_constant" schema scope - procedure constant
143
143
  --"remark_procedure.remark_variable" schema scope - procedure variable
144
+ --"remark_item" schema scope - schema remark item
144
145
 
145
146
  END_SCHEMA;
146
147
 
@@ -148,8 +149,8 @@ END_SCHEMA;
148
149
  --"remark_schema.remark_constant" universal scope - constant
149
150
  --"remark_schema.remark_type" universal scope - type
150
151
  --"remark_schema.remark_type.WR1" universal scope - type where
151
- --"remark_schema.remark_type.IP1" universal scope - type informal proposition
152
152
  --"remark_schema.remark_type.wr:WR1" universal scope - type where, with prefix
153
+ --"remark_schema.remark_type.IP1" universal scope - type informal proposition
153
154
  --"remark_schema.remark_type.ip:IP1" universal scope - type informal proposition, with prefix
154
155
  --"remark_schema.remark_type.remark_enumeration_item" universal scope - enumeration item
155
156
  --"remark_schema.remark_enumeration_item" universal scope - enumeration item, on the same level as the type
@@ -159,8 +160,8 @@ END_SCHEMA;
159
160
  --"remark_schema.remark_entity.remark_inverse_attribute" universal scope - entity inverse attribute
160
161
  --"remark_schema.remark_entity.UR1" universal scope - entity unique
161
162
  --"remark_schema.remark_entity.WR1" universal scope - entity where
162
- --"remark_schema.remark_entity.IP1" universal scope - entity informal proposition
163
163
  --"remark_schema.remark_entity.wr:WR1" universal scope - entity where, with prefix
164
+ --"remark_schema.remark_entity.IP1" universal scope - entity informal proposition
164
165
  --"remark_schema.remark_entity.ip:IP1" universal scope - entity informal proposition, with prefix
165
166
  --"remark_schema.remark_subtype_constraint" universal scope - subtype constraint
166
167
  --"remark_schema.remark_function" universal scope - function
@@ -177,8 +178,8 @@ END_SCHEMA;
177
178
  --"remark_schema.remark_rule.remark_constant" universal scope - rule constant
178
179
  --"remark_schema.remark_rule.remark_variable" universal scope - rule variable
179
180
  --"remark_schema.remark_rule.WR1" universal scope - rule where
180
- --"remark_schema.remark_rule.IP1" universal scope - rule informal proposition
181
181
  --"remark_schema.remark_rule.wr:WR1" universal scope - rule where, with prefix
182
+ --"remark_schema.remark_rule.IP1" universal scope - rule informal proposition
182
183
  --"remark_schema.remark_rule.ip:IP1" universal scope - rule informal proposition, with prefix
183
184
  --"remark_schema.remark_procedure" universal scope - procedure
184
185
  --"remark_schema.remark_procedure.remark_parameter" universal scope - procedure parameter
@@ -186,4 +187,5 @@ END_SCHEMA;
186
187
  --"remark_schema.remark_procedure.remark_type.remark_enumeration_item" universal scope - procedure enumeration item
187
188
  --"remark_schema.remark_procedure.remark_enumeration_item" universal scope - procedure enumeration item, on the same level as the type
188
189
  --"remark_schema.remark_procedure.remark_constant" universal scope - procedure constant
189
- --"remark_schema.remark_procedure.remark_variable" universal scope - procedure variable
190
+ --"remark_schema.remark_procedure.remark_variable" universal scope - procedure variable
191
+ --"remark_schema.remark_item" universal scope - schema remark item
@@ -2,6 +2,7 @@
2
2
  _class: Expressir::Model::Repository
3
3
  schemas:
4
4
  - _class: Expressir::Model::Schema
5
+ file: original/examples/syntax/remark.exp
5
6
  id: remark_schema
6
7
  remarks:
7
8
  - |-
@@ -12,6 +13,12 @@ schemas:
12
13
  - 'UTF8 test: Příliš žluťoučký kůň úpěl ďábelské ódy.'
13
14
  - universal scope - schema before
14
15
  - universal scope - schema
16
+ remark_items:
17
+ - _class: Expressir::Model::RemarkItem
18
+ id: remark_item
19
+ remarks:
20
+ - schema scope - schema remark item
21
+ - universal scope - schema remark item
15
22
  constants:
16
23
  - _class: Expressir::Model::Constant
17
24
  id: remark_constant
@@ -53,7 +60,7 @@ schemas:
53
60
  _class: Expressir::Model::Literals::Logical
54
61
  value: :TRUE
55
62
  informal_propositions:
56
- - _class: Expressir::Model::InformalProposition
63
+ - _class: Expressir::Model::RemarkItem
57
64
  id: IP1
58
65
  remarks:
59
66
  - type scope - type informal proposition
@@ -100,9 +107,11 @@ schemas:
100
107
  type:
101
108
  _class: Expressir::Model::Expressions::SimpleReference
102
109
  id: remark_entity
110
+ base_path: remark_schema.remark_entity
103
111
  expression:
104
112
  _class: Expressir::Model::Expressions::SimpleReference
105
113
  id: remark_attribute
114
+ base_path: remark_schema.remark_entity.remark_attribute
106
115
  unique:
107
116
  - _class: Expressir::Model::Unique
108
117
  id: UR1
@@ -113,6 +122,7 @@ schemas:
113
122
  attributes:
114
123
  - _class: Expressir::Model::Expressions::SimpleReference
115
124
  id: remark_attribute
125
+ base_path: remark_schema.remark_entity.remark_attribute
116
126
  where:
117
127
  - _class: Expressir::Model::Where
118
128
  id: WR1
@@ -127,7 +137,7 @@ schemas:
127
137
  _class: Expressir::Model::Literals::Logical
128
138
  value: :TRUE
129
139
  informal_propositions:
130
- - _class: Expressir::Model::InformalProposition
140
+ - _class: Expressir::Model::RemarkItem
131
141
  id: IP1
132
142
  remarks:
133
143
  - entity scope - entity informal proposition
@@ -145,6 +155,7 @@ schemas:
145
155
  applies_to:
146
156
  _class: Expressir::Model::Expressions::SimpleReference
147
157
  id: remark_entity
158
+ base_path: remark_schema.remark_entity
148
159
  functions:
149
160
  - _class: Expressir::Model::Function
150
161
  id: remark_function
@@ -211,6 +222,7 @@ schemas:
211
222
  expression:
212
223
  _class: Expressir::Model::Expressions::SimpleReference
213
224
  id: remark_variable
225
+ base_path: remark_schema.remark_function.remark_variable
214
226
  statements:
215
227
  - _class: Expressir::Model::Statements::Null
216
228
  - _class: Expressir::Model::Statements::Repeat
@@ -229,6 +241,7 @@ schemas:
229
241
  ref:
230
242
  _class: Expressir::Model::Expressions::SimpleReference
231
243
  id: remark_variable
244
+ base_path: remark_schema.remark_function.remark_variable
232
245
  expression:
233
246
  _class: Expressir::Model::Expressions::QueryExpression
234
247
  id: remark_query
@@ -237,6 +250,7 @@ schemas:
237
250
  aggregate_source:
238
251
  _class: Expressir::Model::Expressions::SimpleReference
239
252
  id: remark_variable
253
+ base_path: remark_schema.remark_function.remark_variable
240
254
  expression:
241
255
  _class: Expressir::Model::Literals::Logical
242
256
  value: :TRUE
@@ -249,6 +263,7 @@ schemas:
249
263
  applies_to:
250
264
  - _class: Expressir::Model::Expressions::SimpleReference
251
265
  id: remark_entity
266
+ base_path: remark_schema.remark_entity
252
267
  types:
253
268
  - _class: Expressir::Model::Type
254
269
  id: remark_type
@@ -297,6 +312,7 @@ schemas:
297
312
  expression:
298
313
  _class: Expressir::Model::Expressions::SimpleReference
299
314
  id: remark_variable
315
+ base_path: remark_schema.remark_rule.remark_variable
300
316
  statements:
301
317
  - _class: Expressir::Model::Statements::Null
302
318
  - _class: Expressir::Model::Statements::Repeat
@@ -315,6 +331,7 @@ schemas:
315
331
  ref:
316
332
  _class: Expressir::Model::Expressions::SimpleReference
317
333
  id: remark_variable
334
+ base_path: remark_schema.remark_rule.remark_variable
318
335
  expression:
319
336
  _class: Expressir::Model::Expressions::QueryExpression
320
337
  id: remark_query
@@ -323,6 +340,7 @@ schemas:
323
340
  aggregate_source:
324
341
  _class: Expressir::Model::Expressions::SimpleReference
325
342
  id: remark_variable
343
+ base_path: remark_schema.remark_rule.remark_variable
326
344
  expression:
327
345
  _class: Expressir::Model::Literals::Logical
328
346
  value: :TRUE
@@ -340,7 +358,7 @@ schemas:
340
358
  _class: Expressir::Model::Literals::Logical
341
359
  value: :TRUE
342
360
  informal_propositions:
343
- - _class: Expressir::Model::InformalProposition
361
+ - _class: Expressir::Model::RemarkItem
344
362
  id: IP1
345
363
  remarks:
346
364
  - rule scope - rule informal proposition
@@ -414,6 +432,7 @@ schemas:
414
432
  expression:
415
433
  _class: Expressir::Model::Expressions::SimpleReference
416
434
  id: remark_variable
435
+ base_path: remark_schema.remark_procedure.remark_variable
417
436
  statements:
418
437
  - _class: Expressir::Model::Statements::Null
419
438
  - _class: Expressir::Model::Statements::Repeat
@@ -432,6 +451,7 @@ schemas:
432
451
  ref:
433
452
  _class: Expressir::Model::Expressions::SimpleReference
434
453
  id: remark_variable
454
+ base_path: remark_schema.remark_procedure.remark_variable
435
455
  expression:
436
456
  _class: Expressir::Model::Expressions::QueryExpression
437
457
  id: remark_query
@@ -440,6 +460,7 @@ schemas:
440
460
  aggregate_source:
441
461
  _class: Expressir::Model::Expressions::SimpleReference
442
462
  id: remark_variable
463
+ base_path: remark_schema.remark_procedure.remark_variable
443
464
  expression:
444
465
  _class: Expressir::Model::Literals::Logical
445
466
  value: :TRUE
@@ -222,4 +222,6 @@ several physical lines.
222
222
  --"remark_schema.remark_procedure.remark_constant" universal scope - procedure constant
223
223
  --"remark_schema.remark_procedure.remark_variable" procedure scope - procedure variable
224
224
  --"remark_schema.remark_procedure.remark_variable" schema scope - procedure variable
225
- --"remark_schema.remark_procedure.remark_variable" universal scope - procedure variable
225
+ --"remark_schema.remark_procedure.remark_variable" universal scope - procedure variable
226
+ --"remark_schema.remark_item" schema scope - schema remark item
227
+ --"remark_schema.remark_item" universal scope - schema remark item
@@ -1,3 +1,4 @@
1
1
  SCHEMA single_schema;
2
2
  ENTITY empty_entity; END_ENTITY;
3
+ ENTITY subtype_empty_entity SUBTYPE OF (empty_entity); END_ENTITY;
3
4
  END_SCHEMA;
@@ -2,7 +2,14 @@
2
2
  _class: Expressir::Model::Repository
3
3
  schemas:
4
4
  - _class: Expressir::Model::Schema
5
+ file: original/examples/syntax/single.exp
5
6
  id: single_schema
6
7
  entities:
7
8
  - _class: Expressir::Model::Entity
8
9
  id: empty_entity
10
+ - _class: Expressir::Model::Entity
11
+ id: subtype_empty_entity
12
+ subtype_of:
13
+ - _class: Expressir::Model::Expressions::SimpleReference
14
+ id: empty_entity
15
+ base_path: single_schema.empty_entity
@@ -3,4 +3,8 @@ SCHEMA single_schema;
3
3
  ENTITY empty_entity;
4
4
  END_ENTITY;
5
5
 
6
+ ENTITY subtype_empty_entity
7
+ SUBTYPE OF (empty_entity);
8
+ END_ENTITY;
9
+
6
10
  END_SCHEMA;
@@ -2,6 +2,7 @@
2
2
  _class: Expressir::Model::Repository
3
3
  schemas:
4
4
  - _class: Expressir::Model::Schema
5
+ file: original/examples/syntax/single.exp
5
6
  id: single_schema
6
7
  entities:
7
8
  - _class: Expressir::Model::Entity
@@ -9,10 +10,24 @@ schemas:
9
10
  source: |-
10
11
  ENTITY empty_entity;
11
12
  END_ENTITY;
13
+ - _class: Expressir::Model::Entity
14
+ id: subtype_empty_entity
15
+ subtype_of:
16
+ - _class: Expressir::Model::Expressions::SimpleReference
17
+ id: empty_entity
18
+ base_path: single_schema.empty_entity
19
+ source: |-
20
+ ENTITY subtype_empty_entity
21
+ SUBTYPE OF (empty_entity);
22
+ END_ENTITY;
12
23
  source: |-
13
24
  SCHEMA single_schema;
14
25
 
15
26
  ENTITY empty_entity;
16
27
  END_ENTITY;
17
28
 
29
+ ENTITY subtype_empty_entity
30
+ SUBTYPE OF (empty_entity);
31
+ END_ENTITY;
32
+
18
33
  END_SCHEMA;
@@ -2,6 +2,7 @@
2
2
  _class: Expressir::Model::Repository
3
3
  schemas:
4
4
  - _class: Expressir::Model::Schema
5
+ file: original/examples/syntax/syntax.exp
5
6
  id: syntax_schema
6
7
  version:
7
8
  _class: Expressir::Model::Literals::String
@@ -134,24 +135,29 @@ schemas:
134
135
  supertype_expression:
135
136
  _class: Expressir::Model::Expressions::SimpleReference
136
137
  id: empty_entity
138
+ base_path: syntax_schema.empty_entity
137
139
  - _class: Expressir::Model::Entity
138
140
  id: supertype_constraint_entity
139
141
  supertype_expression:
140
142
  _class: Expressir::Model::Expressions::SimpleReference
141
143
  id: empty_entity
144
+ base_path: syntax_schema.empty_entity
142
145
  - _class: Expressir::Model::Entity
143
146
  id: subtype_entity
144
147
  subtype_of:
145
148
  - _class: Expressir::Model::Expressions::SimpleReference
146
149
  id: empty_entity
150
+ base_path: syntax_schema.empty_entity
147
151
  - _class: Expressir::Model::Entity
148
152
  id: supertype_constraint_subtype_entity
149
153
  supertype_expression:
150
154
  _class: Expressir::Model::Expressions::SimpleReference
151
155
  id: empty_entity
156
+ base_path: syntax_schema.empty_entity
152
157
  subtype_of:
153
158
  - _class: Expressir::Model::Expressions::SimpleReference
154
159
  id: empty_entity
160
+ base_path: syntax_schema.empty_entity
155
161
  - _class: Expressir::Model::Entity
156
162
  id: attribute_entity
157
163
  attributes:
@@ -200,6 +206,7 @@ schemas:
200
206
  subtype_of:
201
207
  - _class: Expressir::Model::Expressions::SimpleReference
202
208
  id: attribute_entity
209
+ base_path: syntax_schema.attribute_entity
203
210
  attributes:
204
211
  - _class: Expressir::Model::Attribute
205
212
  kind: :EXPLICIT
@@ -213,6 +220,7 @@ schemas:
213
220
  entity:
214
221
  _class: Expressir::Model::Expressions::SimpleReference
215
222
  id: attribute_entity
223
+ base_path: syntax_schema.attribute_entity
216
224
  attribute:
217
225
  _class: Expressir::Model::Expressions::SimpleReference
218
226
  id: test
@@ -223,6 +231,7 @@ schemas:
223
231
  subtype_of:
224
232
  - _class: Expressir::Model::Expressions::SimpleReference
225
233
  id: attribute_entity
234
+ base_path: syntax_schema.attribute_entity
226
235
  attributes:
227
236
  - _class: Expressir::Model::Attribute
228
237
  id: test2
@@ -237,6 +246,7 @@ schemas:
237
246
  entity:
238
247
  _class: Expressir::Model::Expressions::SimpleReference
239
248
  id: attribute_entity
249
+ base_path: syntax_schema.attribute_entity
240
250
  attribute:
241
251
  _class: Expressir::Model::Expressions::SimpleReference
242
252
  id: test
@@ -258,6 +268,7 @@ schemas:
258
268
  subtype_of:
259
269
  - _class: Expressir::Model::Expressions::SimpleReference
260
270
  id: attribute_entity
271
+ base_path: syntax_schema.attribute_entity
261
272
  attributes:
262
273
  - _class: Expressir::Model::Attribute
263
274
  kind: :DERIVED
@@ -271,6 +282,7 @@ schemas:
271
282
  entity:
272
283
  _class: Expressir::Model::Expressions::SimpleReference
273
284
  id: attribute_entity
285
+ base_path: syntax_schema.attribute_entity
274
286
  attribute:
275
287
  _class: Expressir::Model::Expressions::SimpleReference
276
288
  id: test
@@ -284,6 +296,7 @@ schemas:
284
296
  subtype_of:
285
297
  - _class: Expressir::Model::Expressions::SimpleReference
286
298
  id: attribute_entity
299
+ base_path: syntax_schema.attribute_entity
287
300
  attributes:
288
301
  - _class: Expressir::Model::Attribute
289
302
  id: test2
@@ -298,6 +311,7 @@ schemas:
298
311
  entity:
299
312
  _class: Expressir::Model::Expressions::SimpleReference
300
313
  id: attribute_entity
314
+ base_path: syntax_schema.attribute_entity
301
315
  attribute:
302
316
  _class: Expressir::Model::Expressions::SimpleReference
303
317
  id: test
@@ -315,9 +329,11 @@ schemas:
315
329
  type:
316
330
  _class: Expressir::Model::Expressions::SimpleReference
317
331
  id: attribute_entity
332
+ base_path: syntax_schema.attribute_entity
318
333
  expression:
319
334
  _class: Expressir::Model::Expressions::SimpleReference
320
335
  id: test
336
+ base_path: syntax_schema.inverse_attribute_entity.test
321
337
  - _class: Expressir::Model::Entity
322
338
  id: inverse_attribute_entity_entity
323
339
  attributes:
@@ -327,6 +343,7 @@ schemas:
327
343
  type:
328
344
  _class: Expressir::Model::Expressions::SimpleReference
329
345
  id: attribute_entity
346
+ base_path: syntax_schema.attribute_entity
330
347
  expression:
331
348
  _class: Expressir::Model::Expressions::AttributeReference
332
349
  ref:
@@ -346,9 +363,11 @@ schemas:
346
363
  base_type:
347
364
  _class: Expressir::Model::Expressions::SimpleReference
348
365
  id: attribute_entity
366
+ base_path: syntax_schema.attribute_entity
349
367
  expression:
350
368
  _class: Expressir::Model::Expressions::SimpleReference
351
369
  id: test
370
+ base_path: syntax_schema.inverse_attribute_set_entity.test
352
371
  - _class: Expressir::Model::Entity
353
372
  id: inverse_attribute_set_bound_entity
354
373
  attributes:
@@ -366,9 +385,11 @@ schemas:
366
385
  base_type:
367
386
  _class: Expressir::Model::Expressions::SimpleReference
368
387
  id: attribute_entity
388
+ base_path: syntax_schema.attribute_entity
369
389
  expression:
370
390
  _class: Expressir::Model::Expressions::SimpleReference
371
391
  id: test
392
+ base_path: syntax_schema.inverse_attribute_set_bound_entity.test
372
393
  - _class: Expressir::Model::Entity
373
394
  id: inverse_attribute_bag_entity
374
395
  attributes:
@@ -380,9 +401,11 @@ schemas:
380
401
  base_type:
381
402
  _class: Expressir::Model::Expressions::SimpleReference
382
403
  id: attribute_entity
404
+ base_path: syntax_schema.attribute_entity
383
405
  expression:
384
406
  _class: Expressir::Model::Expressions::SimpleReference
385
407
  id: test
408
+ base_path: syntax_schema.inverse_attribute_bag_entity.test
386
409
  - _class: Expressir::Model::Entity
387
410
  id: inverse_attribute_bag_bound_entity
388
411
  attributes:
@@ -400,14 +423,17 @@ schemas:
400
423
  base_type:
401
424
  _class: Expressir::Model::Expressions::SimpleReference
402
425
  id: attribute_entity
426
+ base_path: syntax_schema.attribute_entity
403
427
  expression:
404
428
  _class: Expressir::Model::Expressions::SimpleReference
405
429
  id: test
430
+ base_path: syntax_schema.inverse_attribute_bag_bound_entity.test
406
431
  - _class: Expressir::Model::Entity
407
432
  id: inverse_attribute_redeclared_entity
408
433
  subtype_of:
409
434
  - _class: Expressir::Model::Expressions::SimpleReference
410
435
  id: attribute_entity
436
+ base_path: syntax_schema.attribute_entity
411
437
  attributes:
412
438
  - _class: Expressir::Model::Attribute
413
439
  kind: :INVERSE
@@ -421,12 +447,14 @@ schemas:
421
447
  entity:
422
448
  _class: Expressir::Model::Expressions::SimpleReference
423
449
  id: attribute_entity
450
+ base_path: syntax_schema.attribute_entity
424
451
  attribute:
425
452
  _class: Expressir::Model::Expressions::SimpleReference
426
453
  id: test
427
454
  type:
428
455
  _class: Expressir::Model::Expressions::SimpleReference
429
456
  id: attribute_entity
457
+ base_path: syntax_schema.attribute_entity
430
458
  expression:
431
459
  _class: Expressir::Model::Expressions::SimpleReference
432
460
  id: test
@@ -435,6 +463,7 @@ schemas:
435
463
  subtype_of:
436
464
  - _class: Expressir::Model::Expressions::SimpleReference
437
465
  id: attribute_entity
466
+ base_path: syntax_schema.attribute_entity
438
467
  attributes:
439
468
  - _class: Expressir::Model::Attribute
440
469
  id: test2
@@ -449,12 +478,14 @@ schemas:
449
478
  entity:
450
479
  _class: Expressir::Model::Expressions::SimpleReference
451
480
  id: attribute_entity
481
+ base_path: syntax_schema.attribute_entity
452
482
  attribute:
453
483
  _class: Expressir::Model::Expressions::SimpleReference
454
484
  id: test
455
485
  type:
456
486
  _class: Expressir::Model::Expressions::SimpleReference
457
487
  id: attribute_entity
488
+ base_path: syntax_schema.attribute_entity
458
489
  expression:
459
490
  _class: Expressir::Model::Expressions::SimpleReference
460
491
  id: test
@@ -471,6 +502,7 @@ schemas:
471
502
  attributes:
472
503
  - _class: Expressir::Model::Expressions::SimpleReference
473
504
  id: test
505
+ base_path: syntax_schema.unique_entity.test
474
506
  - _class: Expressir::Model::Entity
475
507
  id: unique_label_entity
476
508
  attributes:
@@ -485,11 +517,13 @@ schemas:
485
517
  attributes:
486
518
  - _class: Expressir::Model::Expressions::SimpleReference
487
519
  id: test
520
+ base_path: syntax_schema.unique_label_entity.test
488
521
  - _class: Expressir::Model::Entity
489
522
  id: unique_redeclared_entity
490
523
  subtype_of:
491
524
  - _class: Expressir::Model::Expressions::SimpleReference
492
525
  id: attribute_entity
526
+ base_path: syntax_schema.attribute_entity
493
527
  unique:
494
528
  - _class: Expressir::Model::Unique
495
529
  attributes:
@@ -502,6 +536,7 @@ schemas:
502
536
  entity:
503
537
  _class: Expressir::Model::Expressions::SimpleReference
504
538
  id: attribute_entity
539
+ base_path: syntax_schema.attribute_entity
505
540
  attribute:
506
541
  _class: Expressir::Model::Expressions::SimpleReference
507
542
  id: test
@@ -510,6 +545,7 @@ schemas:
510
545
  subtype_of:
511
546
  - _class: Expressir::Model::Expressions::SimpleReference
512
547
  id: attribute_entity
548
+ base_path: syntax_schema.attribute_entity
513
549
  unique:
514
550
  - _class: Expressir::Model::Unique
515
551
  id: UR1
@@ -523,6 +559,7 @@ schemas:
523
559
  entity:
524
560
  _class: Expressir::Model::Expressions::SimpleReference
525
561
  id: attribute_entity
562
+ base_path: syntax_schema.attribute_entity
526
563
  attribute:
527
564
  _class: Expressir::Model::Expressions::SimpleReference
528
565
  id: test
@@ -547,17 +584,20 @@ schemas:
547
584
  applies_to:
548
585
  _class: Expressir::Model::Expressions::SimpleReference
549
586
  id: empty_entity
587
+ base_path: syntax_schema.empty_entity
550
588
  - _class: Expressir::Model::SubtypeConstraint
551
589
  id: abstract_supertype_subtype_constraint
552
590
  applies_to:
553
591
  _class: Expressir::Model::Expressions::SimpleReference
554
592
  id: empty_entity
593
+ base_path: syntax_schema.empty_entity
555
594
  abstract: true
556
595
  - _class: Expressir::Model::SubtypeConstraint
557
596
  id: total_over_subtype_constraint
558
597
  applies_to:
559
598
  _class: Expressir::Model::Expressions::SimpleReference
560
599
  id: empty_entity
600
+ base_path: syntax_schema.empty_entity
561
601
  total_over:
562
602
  - _class: Expressir::Model::Expressions::SimpleReference
563
603
  id: a
@@ -566,6 +606,7 @@ schemas:
566
606
  applies_to:
567
607
  _class: Expressir::Model::Expressions::SimpleReference
568
608
  id: empty_entity
609
+ base_path: syntax_schema.empty_entity
569
610
  supertype_expression:
570
611
  _class: Expressir::Model::Expressions::SimpleReference
571
612
  id: a
@@ -574,6 +615,7 @@ schemas:
574
615
  applies_to:
575
616
  _class: Expressir::Model::Expressions::SimpleReference
576
617
  id: empty_entity
618
+ base_path: syntax_schema.empty_entity
577
619
  supertype_expression:
578
620
  _class: Expressir::Model::Expressions::BinaryExpression
579
621
  operator: :ANDOR
@@ -588,6 +630,7 @@ schemas:
588
630
  applies_to:
589
631
  _class: Expressir::Model::Expressions::SimpleReference
590
632
  id: empty_entity
633
+ base_path: syntax_schema.empty_entity
591
634
  supertype_expression:
592
635
  _class: Expressir::Model::Expressions::BinaryExpression
593
636
  operator: :AND
@@ -602,6 +645,7 @@ schemas:
602
645
  applies_to:
603
646
  _class: Expressir::Model::Expressions::SimpleReference
604
647
  id: empty_entity
648
+ base_path: syntax_schema.empty_entity
605
649
  supertype_expression:
606
650
  _class: Expressir::Model::Expressions::BinaryExpression
607
651
  operator: :ANDOR
@@ -622,6 +666,7 @@ schemas:
622
666
  applies_to:
623
667
  _class: Expressir::Model::Expressions::SimpleReference
624
668
  id: empty_entity
669
+ base_path: syntax_schema.empty_entity
625
670
  supertype_expression:
626
671
  _class: Expressir::Model::Expressions::BinaryExpression
627
672
  operator: :ANDOR
@@ -642,6 +687,7 @@ schemas:
642
687
  applies_to:
643
688
  _class: Expressir::Model::Expressions::SimpleReference
644
689
  id: empty_entity
690
+ base_path: syntax_schema.empty_entity
645
691
  supertype_expression:
646
692
  _class: Expressir::Model::Expressions::BinaryExpression
647
693
  operator: :AND
@@ -662,6 +708,7 @@ schemas:
662
708
  applies_to:
663
709
  _class: Expressir::Model::Expressions::SimpleReference
664
710
  id: empty_entity
711
+ base_path: syntax_schema.empty_entity
665
712
  supertype_expression:
666
713
  _class: Expressir::Model::Expressions::BinaryExpression
667
714
  operator: :AND
@@ -682,6 +729,7 @@ schemas:
682
729
  applies_to:
683
730
  _class: Expressir::Model::Expressions::SimpleReference
684
731
  id: empty_entity
732
+ base_path: syntax_schema.empty_entity
685
733
  supertype_expression:
686
734
  _class: Expressir::Model::Expressions::Call
687
735
  ref:
@@ -697,6 +745,7 @@ schemas:
697
745
  applies_to:
698
746
  _class: Expressir::Model::Expressions::SimpleReference
699
747
  id: empty_entity
748
+ base_path: syntax_schema.empty_entity
700
749
  supertype_expression:
701
750
  _class: Expressir::Model::Expressions::BinaryExpression
702
751
  operator: :AND
@@ -718,6 +767,7 @@ schemas:
718
767
  applies_to:
719
768
  _class: Expressir::Model::Expressions::SimpleReference
720
769
  id: empty_entity
770
+ base_path: syntax_schema.empty_entity
721
771
  supertype_expression:
722
772
  _class: Expressir::Model::Expressions::BinaryExpression
723
773
  operator: :ANDOR
@@ -739,6 +789,7 @@ schemas:
739
789
  applies_to:
740
790
  _class: Expressir::Model::Expressions::SimpleReference
741
791
  id: empty_entity
792
+ base_path: syntax_schema.empty_entity
742
793
  supertype_expression:
743
794
  _class: Expressir::Model::Expressions::BinaryExpression
744
795
  operator: :AND
@@ -760,6 +811,7 @@ schemas:
760
811
  applies_to:
761
812
  _class: Expressir::Model::Expressions::SimpleReference
762
813
  id: empty_entity
814
+ base_path: syntax_schema.empty_entity
763
815
  supertype_expression:
764
816
  _class: Expressir::Model::Expressions::BinaryExpression
765
817
  operator: :ANDOR
@@ -781,6 +833,7 @@ schemas:
781
833
  applies_to:
782
834
  _class: Expressir::Model::Expressions::SimpleReference
783
835
  id: empty_entity
836
+ base_path: syntax_schema.empty_entity
784
837
  supertype_expression:
785
838
  _class: Expressir::Model::Expressions::BinaryExpression
786
839
  operator: :AND
@@ -809,6 +862,7 @@ schemas:
809
862
  applies_to:
810
863
  _class: Expressir::Model::Expressions::SimpleReference
811
864
  id: empty_entity
865
+ base_path: syntax_schema.empty_entity
812
866
  supertype_expression:
813
867
  _class: Expressir::Model::Expressions::BinaryExpression
814
868
  operator: :ANDOR
@@ -1029,6 +1083,7 @@ schemas:
1029
1083
  applies_to:
1030
1084
  - _class: Expressir::Model::Expressions::SimpleReference
1031
1085
  id: empty_entity
1086
+ base_path: syntax_schema.empty_entity
1032
1087
  where:
1033
1088
  - _class: Expressir::Model::Where
1034
1089
  expression:
@@ -1039,6 +1094,7 @@ schemas:
1039
1094
  applies_to:
1040
1095
  - _class: Expressir::Model::Expressions::SimpleReference
1041
1096
  id: empty_entity
1097
+ base_path: syntax_schema.empty_entity
1042
1098
  types:
1043
1099
  - _class: Expressir::Model::Type
1044
1100
  id: test
@@ -1054,6 +1110,7 @@ schemas:
1054
1110
  applies_to:
1055
1111
  - _class: Expressir::Model::Expressions::SimpleReference
1056
1112
  id: empty_entity
1113
+ base_path: syntax_schema.empty_entity
1057
1114
  constants:
1058
1115
  - _class: Expressir::Model::Constant
1059
1116
  id: test
@@ -1072,6 +1129,7 @@ schemas:
1072
1129
  applies_to:
1073
1130
  - _class: Expressir::Model::Expressions::SimpleReference
1074
1131
  id: empty_entity
1132
+ base_path: syntax_schema.empty_entity
1075
1133
  constants:
1076
1134
  - _class: Expressir::Model::Constant
1077
1135
  id: test
@@ -1097,6 +1155,7 @@ schemas:
1097
1155
  applies_to:
1098
1156
  - _class: Expressir::Model::Expressions::SimpleReference
1099
1157
  id: empty_entity
1158
+ base_path: syntax_schema.empty_entity
1100
1159
  variables:
1101
1160
  - _class: Expressir::Model::Variable
1102
1161
  id: test
@@ -1112,6 +1171,7 @@ schemas:
1112
1171
  applies_to:
1113
1172
  - _class: Expressir::Model::Expressions::SimpleReference
1114
1173
  id: empty_entity
1174
+ base_path: syntax_schema.empty_entity
1115
1175
  variables:
1116
1176
  - _class: Expressir::Model::Variable
1117
1177
  id: test
@@ -1131,6 +1191,7 @@ schemas:
1131
1191
  applies_to:
1132
1192
  - _class: Expressir::Model::Expressions::SimpleReference
1133
1193
  id: empty_entity
1194
+ base_path: syntax_schema.empty_entity
1134
1195
  variables:
1135
1196
  - _class: Expressir::Model::Variable
1136
1197
  id: test
@@ -1150,6 +1211,7 @@ schemas:
1150
1211
  applies_to:
1151
1212
  - _class: Expressir::Model::Expressions::SimpleReference
1152
1213
  id: empty_entity
1214
+ base_path: syntax_schema.empty_entity
1153
1215
  variables:
1154
1216
  - _class: Expressir::Model::Variable
1155
1217
  id: test
@@ -1168,6 +1230,7 @@ schemas:
1168
1230
  applies_to:
1169
1231
  - _class: Expressir::Model::Expressions::SimpleReference
1170
1232
  id: empty_entity
1233
+ base_path: syntax_schema.empty_entity
1171
1234
  variables:
1172
1235
  - _class: Expressir::Model::Variable
1173
1236
  id: test
@@ -1193,6 +1256,7 @@ schemas:
1193
1256
  applies_to:
1194
1257
  - _class: Expressir::Model::Expressions::SimpleReference
1195
1258
  id: empty_entity
1259
+ base_path: syntax_schema.empty_entity
1196
1260
  variables:
1197
1261
  - _class: Expressir::Model::Variable
1198
1262
  id: test
@@ -1218,6 +1282,7 @@ schemas:
1218
1282
  applies_to:
1219
1283
  - _class: Expressir::Model::Expressions::SimpleReference
1220
1284
  id: empty_entity
1285
+ base_path: syntax_schema.empty_entity
1221
1286
  statements:
1222
1287
  - _class: Expressir::Model::Statements::Null
1223
1288
  where:
@@ -1230,6 +1295,7 @@ schemas:
1230
1295
  applies_to:
1231
1296
  - _class: Expressir::Model::Expressions::SimpleReference
1232
1297
  id: empty_entity
1298
+ base_path: syntax_schema.empty_entity
1233
1299
  where:
1234
1300
  - _class: Expressir::Model::Where
1235
1301
  id: WR1
@@ -1727,6 +1793,7 @@ schemas:
1727
1793
  ref:
1728
1794
  _class: Expressir::Model::Expressions::SimpleReference
1729
1795
  id: empty_procedure
1796
+ base_path: syntax_schema.empty_procedure
1730
1797
  - _class: Expressir::Model::Procedure
1731
1798
  id: call_parameter_statement
1732
1799
  statements:
@@ -1734,6 +1801,7 @@ schemas:
1734
1801
  ref:
1735
1802
  _class: Expressir::Model::Expressions::SimpleReference
1736
1803
  id: empty_procedure
1804
+ base_path: syntax_schema.empty_procedure
1737
1805
  parameters:
1738
1806
  - _class: Expressir::Model::Literals::Logical
1739
1807
  value: :TRUE
@@ -1744,6 +1812,7 @@ schemas:
1744
1812
  ref:
1745
1813
  _class: Expressir::Model::Expressions::SimpleReference
1746
1814
  id: empty_procedure
1815
+ base_path: syntax_schema.empty_procedure
1747
1816
  parameters:
1748
1817
  - _class: Expressir::Model::Literals::Logical
1749
1818
  value: :TRUE
@@ -2053,6 +2122,7 @@ schemas:
2053
2122
  items:
2054
2123
  - _class: Expressir::Model::Expressions::SimpleReference
2055
2124
  id: empty_type
2125
+ base_path: syntax_schema.empty_type
2056
2126
  - _class: Expressir::Model::Type
2057
2127
  id: select_list_multiple_type
2058
2128
  type:
@@ -2060,8 +2130,10 @@ schemas:
2060
2130
  items:
2061
2131
  - _class: Expressir::Model::Expressions::SimpleReference
2062
2132
  id: empty_type
2133
+ base_path: syntax_schema.empty_type
2063
2134
  - _class: Expressir::Model::Expressions::SimpleReference
2064
2135
  id: empty_type
2136
+ base_path: syntax_schema.empty_type
2065
2137
  - _class: Expressir::Model::Type
2066
2138
  id: select_extension_type_ref_type
2067
2139
  type:
@@ -2069,6 +2141,7 @@ schemas:
2069
2141
  extension_type:
2070
2142
  _class: Expressir::Model::Expressions::SimpleReference
2071
2143
  id: select_type
2144
+ base_path: syntax_schema.types.select_type
2072
2145
  - _class: Expressir::Model::Type
2073
2146
  id: select_extension_type_ref_list_type
2074
2147
  type:
@@ -2076,9 +2149,11 @@ schemas:
2076
2149
  extension_type:
2077
2150
  _class: Expressir::Model::Expressions::SimpleReference
2078
2151
  id: select_type
2152
+ base_path: syntax_schema.types.select_type
2079
2153
  extension_items:
2080
2154
  - _class: Expressir::Model::Expressions::SimpleReference
2081
2155
  id: empty_type
2156
+ base_path: syntax_schema.empty_type
2082
2157
  - _class: Expressir::Model::Type
2083
2158
  id: select_extension_type_ref_list_multiple_type
2084
2159
  type:
@@ -2086,11 +2161,14 @@ schemas:
2086
2161
  extension_type:
2087
2162
  _class: Expressir::Model::Expressions::SimpleReference
2088
2163
  id: select_type
2164
+ base_path: syntax_schema.types.select_type
2089
2165
  extension_items:
2090
2166
  - _class: Expressir::Model::Expressions::SimpleReference
2091
2167
  id: empty_type
2168
+ base_path: syntax_schema.empty_type
2092
2169
  - _class: Expressir::Model::Expressions::SimpleReference
2093
2170
  id: empty_type
2171
+ base_path: syntax_schema.empty_type
2094
2172
  - _class: Expressir::Model::Type
2095
2173
  id: enumeration_type
2096
2174
  type:
@@ -2123,6 +2201,7 @@ schemas:
2123
2201
  extension_type:
2124
2202
  _class: Expressir::Model::Expressions::SimpleReference
2125
2203
  id: enumeration_type
2204
+ base_path: syntax_schema.types.enumeration_type
2126
2205
  - _class: Expressir::Model::Type
2127
2206
  id: enumeration_extension_type_ref_list_type
2128
2207
  type:
@@ -2130,6 +2209,7 @@ schemas:
2130
2209
  extension_type:
2131
2210
  _class: Expressir::Model::Expressions::SimpleReference
2132
2211
  id: enumeration_type
2212
+ base_path: syntax_schema.types.enumeration_type
2133
2213
  extension_items:
2134
2214
  - _class: Expressir::Model::EnumerationItem
2135
2215
  id: test
@@ -2140,6 +2220,7 @@ schemas:
2140
2220
  extension_type:
2141
2221
  _class: Expressir::Model::Expressions::SimpleReference
2142
2222
  id: enumeration_type
2223
+ base_path: syntax_schema.types.enumeration_type
2143
2224
  extension_items:
2144
2225
  - _class: Expressir::Model::EnumerationItem
2145
2226
  id: test
@@ -3294,6 +3375,7 @@ schemas:
3294
3375
  ref:
3295
3376
  _class: Expressir::Model::Expressions::SimpleReference
3296
3377
  id: parameter_function
3378
+ base_path: syntax_schema.parameter_function
3297
3379
  parameters:
3298
3380
  - _class: Expressir::Model::Literals::Logical
3299
3381
  value: :TRUE