expressir 0.2.19-arm64-darwin → 0.2.27-arm64-darwin
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.
- checksums.yaml +4 -4
- data/.github/workflows/rake.yml +7 -6
- data/.github/workflows/release.yml +31 -3
- data/README.adoc +3 -3
- data/exe/format +2 -49
- data/exe/format-test +81 -0
- data/lib/expressir/express_exp/2.4/express_parser.bundle +0 -0
- data/lib/expressir/express_exp/2.5/express_parser.bundle +0 -0
- data/lib/expressir/express_exp/2.6/express_parser.bundle +0 -0
- data/lib/expressir/express_exp/2.7/express_parser.bundle +0 -0
- data/lib/expressir/express_exp/3.0/express_parser.bundle +0 -0
- data/lib/expressir/express_exp/cache.rb +48 -0
- data/lib/expressir/express_exp/formatter.rb +12 -2
- data/lib/expressir/express_exp/hyperlink_formatter.rb +10 -15
- data/lib/expressir/express_exp/model_visitor.rb +23 -0
- data/lib/expressir/express_exp/parser.rb +14 -3
- data/lib/expressir/express_exp/resolve_references_model_visitor.rb +29 -0
- data/lib/expressir/express_exp/visitor.rb +46 -19
- data/lib/expressir/model.rb +5 -1
- data/lib/expressir/model/attribute.rb +13 -6
- data/lib/expressir/model/cache.rb +13 -0
- data/lib/expressir/model/constant.rb +10 -3
- data/lib/expressir/model/entity.rb +16 -14
- data/lib/expressir/model/enumeration_item.rb +8 -1
- data/lib/expressir/model/expressions/aggregate_initializer.rb +2 -2
- data/lib/expressir/model/expressions/aggregate_item.rb +2 -2
- data/lib/expressir/model/expressions/attribute_reference.rb +2 -2
- data/lib/expressir/model/expressions/binary_expression.rb +3 -3
- data/lib/expressir/model/expressions/call.rb +3 -3
- data/lib/expressir/model/expressions/entity_constructor.rb +3 -3
- data/lib/expressir/model/expressions/group_reference.rb +2 -2
- data/lib/expressir/model/expressions/index_reference.rb +3 -3
- data/lib/expressir/model/expressions/interval.rb +5 -5
- data/lib/expressir/model/expressions/query_expression.rb +6 -4
- data/lib/expressir/model/expressions/simple_reference.rb +5 -1
- data/lib/expressir/model/expressions/unary_expression.rb +2 -2
- data/lib/expressir/model/function.rb +23 -21
- data/lib/expressir/model/identifier.rb +6 -3
- data/lib/expressir/model/interface.rb +4 -4
- data/lib/expressir/model/interface_item.rb +2 -2
- data/lib/expressir/model/interfaced_item.rb +10 -9
- data/lib/expressir/model/literals/binary.rb +1 -1
- data/lib/expressir/model/literals/integer.rb +1 -1
- data/lib/expressir/model/literals/logical.rb +1 -1
- data/lib/expressir/model/literals/real.rb +1 -1
- data/lib/expressir/model/literals/string.rb +2 -2
- data/lib/expressir/model/model_element.rb +38 -26
- data/lib/expressir/model/parameter.rb +10 -3
- data/lib/expressir/model/procedure.rb +22 -20
- data/lib/expressir/model/remark_item.rb +15 -0
- data/lib/expressir/model/repository.rb +2 -2
- data/lib/expressir/model/rule.rb +26 -24
- data/lib/expressir/model/schema.rb +24 -20
- data/lib/expressir/model/schema_version.rb +15 -0
- data/lib/expressir/model/schema_version_item.rb +15 -0
- data/lib/expressir/model/statements/alias.rb +7 -5
- data/lib/expressir/model/statements/assignment.rb +2 -2
- data/lib/expressir/model/statements/call.rb +3 -3
- data/lib/expressir/model/statements/case.rb +4 -4
- data/lib/expressir/model/statements/case_action.rb +3 -3
- data/lib/expressir/model/statements/compound.rb +2 -2
- data/lib/expressir/model/statements/if.rb +5 -5
- data/lib/expressir/model/statements/repeat.rb +11 -9
- data/lib/expressir/model/statements/return.rb +1 -1
- data/lib/expressir/model/subtype_constraint.rb +13 -6
- data/lib/expressir/model/type.rb +9 -7
- data/lib/expressir/model/types/aggregate.rb +9 -2
- data/lib/expressir/model/types/array.rb +5 -5
- data/lib/expressir/model/types/bag.rb +3 -3
- data/lib/expressir/model/types/binary.rb +2 -2
- data/lib/expressir/model/types/enumeration.rb +6 -6
- data/lib/expressir/model/types/generic.rb +8 -1
- data/lib/expressir/model/types/generic_entity.rb +8 -1
- data/lib/expressir/model/types/list.rb +4 -4
- data/lib/expressir/model/types/real.rb +1 -1
- data/lib/expressir/model/types/select.rb +7 -7
- data/lib/expressir/model/types/set.rb +3 -3
- data/lib/expressir/model/types/string.rb +2 -2
- data/lib/expressir/model/unique.rb +10 -3
- data/lib/expressir/model/variable.rb +10 -3
- data/lib/expressir/model/where.rb +9 -2
- data/lib/expressir/version.rb +1 -1
- data/original/examples/syntax/multiple.exp +1 -1
- data/original/examples/syntax/multiple.yaml +15 -1
- data/original/examples/syntax/multiple_formatted.exp +1 -1
- data/original/examples/syntax/multiple_hyperlink_formatted.exp +4 -4
- data/original/examples/syntax/multiple_schema_head_hyperlink_formatted.exp +1 -1
- data/original/examples/syntax/remark.exp +12 -10
- data/original/examples/syntax/remark.yaml +23 -3
- data/original/examples/syntax/remark_formatted.exp +3 -1
- data/original/examples/syntax/single.exp +2 -1
- data/original/examples/syntax/single.yaml +9 -0
- data/original/examples/syntax/single_formatted.exp +5 -1
- data/original/examples/syntax/single_formatted.yaml +18 -1
- data/original/examples/syntax/syntax.exp +1 -1
- data/original/examples/syntax/syntax.yaml +99 -2
- data/original/examples/syntax/syntax_formatted.exp +1 -1
- data/original/examples/syntax/syntax_hyperlink_formatted.exp +902 -0
- data/original/examples/syntax/syntax_schema_head_formatted.exp +1 -1
- data/spec/expressir/express_exp/cache_spec.rb +64 -0
- data/spec/expressir/express_exp/formatter_spec.rb +16 -0
- data/spec/expressir/express_exp/parser_spec.rb +1 -1
- data/spec/expressir/model/model_element_spec.rb +73 -21
- metadata +12 -3
- data/lib/expressir/model/informal_proposition.rb +0 -18
@@ -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
|
@@ -13,6 +13,12 @@ schemas:
|
|
13
13
|
- 'UTF8 test: Příliš žluťoučký kůň úpěl ďábelské ódy.'
|
14
14
|
- universal scope - schema before
|
15
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
|
16
22
|
constants:
|
17
23
|
- _class: Expressir::Model::Constant
|
18
24
|
id: remark_constant
|
@@ -54,7 +60,7 @@ schemas:
|
|
54
60
|
_class: Expressir::Model::Literals::Logical
|
55
61
|
value: :TRUE
|
56
62
|
informal_propositions:
|
57
|
-
- _class: Expressir::Model::
|
63
|
+
- _class: Expressir::Model::RemarkItem
|
58
64
|
id: IP1
|
59
65
|
remarks:
|
60
66
|
- type scope - type informal proposition
|
@@ -101,9 +107,11 @@ schemas:
|
|
101
107
|
type:
|
102
108
|
_class: Expressir::Model::Expressions::SimpleReference
|
103
109
|
id: remark_entity
|
110
|
+
base_path: remark_schema.remark_entity
|
104
111
|
expression:
|
105
112
|
_class: Expressir::Model::Expressions::SimpleReference
|
106
113
|
id: remark_attribute
|
114
|
+
base_path: remark_schema.remark_entity.remark_attribute
|
107
115
|
unique:
|
108
116
|
- _class: Expressir::Model::Unique
|
109
117
|
id: UR1
|
@@ -114,6 +122,7 @@ schemas:
|
|
114
122
|
attributes:
|
115
123
|
- _class: Expressir::Model::Expressions::SimpleReference
|
116
124
|
id: remark_attribute
|
125
|
+
base_path: remark_schema.remark_entity.remark_attribute
|
117
126
|
where:
|
118
127
|
- _class: Expressir::Model::Where
|
119
128
|
id: WR1
|
@@ -128,7 +137,7 @@ schemas:
|
|
128
137
|
_class: Expressir::Model::Literals::Logical
|
129
138
|
value: :TRUE
|
130
139
|
informal_propositions:
|
131
|
-
- _class: Expressir::Model::
|
140
|
+
- _class: Expressir::Model::RemarkItem
|
132
141
|
id: IP1
|
133
142
|
remarks:
|
134
143
|
- entity scope - entity informal proposition
|
@@ -146,6 +155,7 @@ schemas:
|
|
146
155
|
applies_to:
|
147
156
|
_class: Expressir::Model::Expressions::SimpleReference
|
148
157
|
id: remark_entity
|
158
|
+
base_path: remark_schema.remark_entity
|
149
159
|
functions:
|
150
160
|
- _class: Expressir::Model::Function
|
151
161
|
id: remark_function
|
@@ -212,6 +222,7 @@ schemas:
|
|
212
222
|
expression:
|
213
223
|
_class: Expressir::Model::Expressions::SimpleReference
|
214
224
|
id: remark_variable
|
225
|
+
base_path: remark_schema.remark_function.remark_variable
|
215
226
|
statements:
|
216
227
|
- _class: Expressir::Model::Statements::Null
|
217
228
|
- _class: Expressir::Model::Statements::Repeat
|
@@ -230,6 +241,7 @@ schemas:
|
|
230
241
|
ref:
|
231
242
|
_class: Expressir::Model::Expressions::SimpleReference
|
232
243
|
id: remark_variable
|
244
|
+
base_path: remark_schema.remark_function.remark_variable
|
233
245
|
expression:
|
234
246
|
_class: Expressir::Model::Expressions::QueryExpression
|
235
247
|
id: remark_query
|
@@ -238,6 +250,7 @@ schemas:
|
|
238
250
|
aggregate_source:
|
239
251
|
_class: Expressir::Model::Expressions::SimpleReference
|
240
252
|
id: remark_variable
|
253
|
+
base_path: remark_schema.remark_function.remark_variable
|
241
254
|
expression:
|
242
255
|
_class: Expressir::Model::Literals::Logical
|
243
256
|
value: :TRUE
|
@@ -250,6 +263,7 @@ schemas:
|
|
250
263
|
applies_to:
|
251
264
|
- _class: Expressir::Model::Expressions::SimpleReference
|
252
265
|
id: remark_entity
|
266
|
+
base_path: remark_schema.remark_entity
|
253
267
|
types:
|
254
268
|
- _class: Expressir::Model::Type
|
255
269
|
id: remark_type
|
@@ -298,6 +312,7 @@ schemas:
|
|
298
312
|
expression:
|
299
313
|
_class: Expressir::Model::Expressions::SimpleReference
|
300
314
|
id: remark_variable
|
315
|
+
base_path: remark_schema.remark_rule.remark_variable
|
301
316
|
statements:
|
302
317
|
- _class: Expressir::Model::Statements::Null
|
303
318
|
- _class: Expressir::Model::Statements::Repeat
|
@@ -316,6 +331,7 @@ schemas:
|
|
316
331
|
ref:
|
317
332
|
_class: Expressir::Model::Expressions::SimpleReference
|
318
333
|
id: remark_variable
|
334
|
+
base_path: remark_schema.remark_rule.remark_variable
|
319
335
|
expression:
|
320
336
|
_class: Expressir::Model::Expressions::QueryExpression
|
321
337
|
id: remark_query
|
@@ -324,6 +340,7 @@ schemas:
|
|
324
340
|
aggregate_source:
|
325
341
|
_class: Expressir::Model::Expressions::SimpleReference
|
326
342
|
id: remark_variable
|
343
|
+
base_path: remark_schema.remark_rule.remark_variable
|
327
344
|
expression:
|
328
345
|
_class: Expressir::Model::Literals::Logical
|
329
346
|
value: :TRUE
|
@@ -341,7 +358,7 @@ schemas:
|
|
341
358
|
_class: Expressir::Model::Literals::Logical
|
342
359
|
value: :TRUE
|
343
360
|
informal_propositions:
|
344
|
-
- _class: Expressir::Model::
|
361
|
+
- _class: Expressir::Model::RemarkItem
|
345
362
|
id: IP1
|
346
363
|
remarks:
|
347
364
|
- rule scope - rule informal proposition
|
@@ -415,6 +432,7 @@ schemas:
|
|
415
432
|
expression:
|
416
433
|
_class: Expressir::Model::Expressions::SimpleReference
|
417
434
|
id: remark_variable
|
435
|
+
base_path: remark_schema.remark_procedure.remark_variable
|
418
436
|
statements:
|
419
437
|
- _class: Expressir::Model::Statements::Null
|
420
438
|
- _class: Expressir::Model::Statements::Repeat
|
@@ -433,6 +451,7 @@ schemas:
|
|
433
451
|
ref:
|
434
452
|
_class: Expressir::Model::Expressions::SimpleReference
|
435
453
|
id: remark_variable
|
454
|
+
base_path: remark_schema.remark_procedure.remark_variable
|
436
455
|
expression:
|
437
456
|
_class: Expressir::Model::Expressions::QueryExpression
|
438
457
|
id: remark_query
|
@@ -441,6 +460,7 @@ schemas:
|
|
441
460
|
aggregate_source:
|
442
461
|
_class: Expressir::Model::Expressions::SimpleReference
|
443
462
|
id: remark_variable
|
463
|
+
base_path: remark_schema.remark_procedure.remark_variable
|
444
464
|
expression:
|
445
465
|
_class: Expressir::Model::Literals::Logical
|
446
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
|
@@ -4,6 +4,15 @@ schemas:
|
|
4
4
|
- _class: Expressir::Model::Schema
|
5
5
|
file: original/examples/syntax/single.exp
|
6
6
|
id: single_schema
|
7
|
+
version:
|
8
|
+
_class: Expressir::Model::SchemaVersion
|
9
|
+
value: version
|
7
10
|
entities:
|
8
11
|
- _class: Expressir::Model::Entity
|
9
12
|
id: empty_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
|
@@ -4,16 +4,33 @@ schemas:
|
|
4
4
|
- _class: Expressir::Model::Schema
|
5
5
|
file: original/examples/syntax/single.exp
|
6
6
|
id: single_schema
|
7
|
+
version:
|
8
|
+
_class: Expressir::Model::SchemaVersion
|
9
|
+
value: version
|
7
10
|
entities:
|
8
11
|
- _class: Expressir::Model::Entity
|
9
12
|
id: empty_entity
|
10
13
|
source: |-
|
11
14
|
ENTITY empty_entity;
|
12
15
|
END_ENTITY;
|
16
|
+
- _class: Expressir::Model::Entity
|
17
|
+
id: subtype_empty_entity
|
18
|
+
subtype_of:
|
19
|
+
- _class: Expressir::Model::Expressions::SimpleReference
|
20
|
+
id: empty_entity
|
21
|
+
base_path: single_schema.empty_entity
|
22
|
+
source: |-
|
23
|
+
ENTITY subtype_empty_entity
|
24
|
+
SUBTYPE OF (empty_entity);
|
25
|
+
END_ENTITY;
|
13
26
|
source: |-
|
14
|
-
SCHEMA single_schema;
|
27
|
+
SCHEMA single_schema 'version';
|
15
28
|
|
16
29
|
ENTITY empty_entity;
|
17
30
|
END_ENTITY;
|
18
31
|
|
32
|
+
ENTITY subtype_empty_entity
|
33
|
+
SUBTYPE OF (empty_entity);
|
34
|
+
END_ENTITY;
|
35
|
+
|
19
36
|
END_SCHEMA;
|
@@ -5,8 +5,24 @@ schemas:
|
|
5
5
|
file: original/examples/syntax/syntax.exp
|
6
6
|
id: syntax_schema
|
7
7
|
version:
|
8
|
-
_class: Expressir::Model::
|
9
|
-
value: version
|
8
|
+
_class: Expressir::Model::SchemaVersion
|
9
|
+
value: "{ISO standard 10303 part(41) object(1) version(8)}"
|
10
|
+
items:
|
11
|
+
- _class: Expressir::Model::SchemaVersionItem
|
12
|
+
name: ISO
|
13
|
+
- _class: Expressir::Model::SchemaVersionItem
|
14
|
+
name: standard
|
15
|
+
- _class: Expressir::Model::SchemaVersionItem
|
16
|
+
value: '10303'
|
17
|
+
- _class: Expressir::Model::SchemaVersionItem
|
18
|
+
name: part
|
19
|
+
value: '41'
|
20
|
+
- _class: Expressir::Model::SchemaVersionItem
|
21
|
+
name: object
|
22
|
+
value: '1'
|
23
|
+
- _class: Expressir::Model::SchemaVersionItem
|
24
|
+
name: version
|
25
|
+
value: '8'
|
10
26
|
interfaces:
|
11
27
|
- _class: Expressir::Model::Interface
|
12
28
|
kind: :USE
|
@@ -135,24 +151,29 @@ schemas:
|
|
135
151
|
supertype_expression:
|
136
152
|
_class: Expressir::Model::Expressions::SimpleReference
|
137
153
|
id: empty_entity
|
154
|
+
base_path: syntax_schema.empty_entity
|
138
155
|
- _class: Expressir::Model::Entity
|
139
156
|
id: supertype_constraint_entity
|
140
157
|
supertype_expression:
|
141
158
|
_class: Expressir::Model::Expressions::SimpleReference
|
142
159
|
id: empty_entity
|
160
|
+
base_path: syntax_schema.empty_entity
|
143
161
|
- _class: Expressir::Model::Entity
|
144
162
|
id: subtype_entity
|
145
163
|
subtype_of:
|
146
164
|
- _class: Expressir::Model::Expressions::SimpleReference
|
147
165
|
id: empty_entity
|
166
|
+
base_path: syntax_schema.empty_entity
|
148
167
|
- _class: Expressir::Model::Entity
|
149
168
|
id: supertype_constraint_subtype_entity
|
150
169
|
supertype_expression:
|
151
170
|
_class: Expressir::Model::Expressions::SimpleReference
|
152
171
|
id: empty_entity
|
172
|
+
base_path: syntax_schema.empty_entity
|
153
173
|
subtype_of:
|
154
174
|
- _class: Expressir::Model::Expressions::SimpleReference
|
155
175
|
id: empty_entity
|
176
|
+
base_path: syntax_schema.empty_entity
|
156
177
|
- _class: Expressir::Model::Entity
|
157
178
|
id: attribute_entity
|
158
179
|
attributes:
|
@@ -201,6 +222,7 @@ schemas:
|
|
201
222
|
subtype_of:
|
202
223
|
- _class: Expressir::Model::Expressions::SimpleReference
|
203
224
|
id: attribute_entity
|
225
|
+
base_path: syntax_schema.attribute_entity
|
204
226
|
attributes:
|
205
227
|
- _class: Expressir::Model::Attribute
|
206
228
|
kind: :EXPLICIT
|
@@ -214,6 +236,7 @@ schemas:
|
|
214
236
|
entity:
|
215
237
|
_class: Expressir::Model::Expressions::SimpleReference
|
216
238
|
id: attribute_entity
|
239
|
+
base_path: syntax_schema.attribute_entity
|
217
240
|
attribute:
|
218
241
|
_class: Expressir::Model::Expressions::SimpleReference
|
219
242
|
id: test
|
@@ -224,6 +247,7 @@ schemas:
|
|
224
247
|
subtype_of:
|
225
248
|
- _class: Expressir::Model::Expressions::SimpleReference
|
226
249
|
id: attribute_entity
|
250
|
+
base_path: syntax_schema.attribute_entity
|
227
251
|
attributes:
|
228
252
|
- _class: Expressir::Model::Attribute
|
229
253
|
id: test2
|
@@ -238,6 +262,7 @@ schemas:
|
|
238
262
|
entity:
|
239
263
|
_class: Expressir::Model::Expressions::SimpleReference
|
240
264
|
id: attribute_entity
|
265
|
+
base_path: syntax_schema.attribute_entity
|
241
266
|
attribute:
|
242
267
|
_class: Expressir::Model::Expressions::SimpleReference
|
243
268
|
id: test
|
@@ -259,6 +284,7 @@ schemas:
|
|
259
284
|
subtype_of:
|
260
285
|
- _class: Expressir::Model::Expressions::SimpleReference
|
261
286
|
id: attribute_entity
|
287
|
+
base_path: syntax_schema.attribute_entity
|
262
288
|
attributes:
|
263
289
|
- _class: Expressir::Model::Attribute
|
264
290
|
kind: :DERIVED
|
@@ -272,6 +298,7 @@ schemas:
|
|
272
298
|
entity:
|
273
299
|
_class: Expressir::Model::Expressions::SimpleReference
|
274
300
|
id: attribute_entity
|
301
|
+
base_path: syntax_schema.attribute_entity
|
275
302
|
attribute:
|
276
303
|
_class: Expressir::Model::Expressions::SimpleReference
|
277
304
|
id: test
|
@@ -285,6 +312,7 @@ schemas:
|
|
285
312
|
subtype_of:
|
286
313
|
- _class: Expressir::Model::Expressions::SimpleReference
|
287
314
|
id: attribute_entity
|
315
|
+
base_path: syntax_schema.attribute_entity
|
288
316
|
attributes:
|
289
317
|
- _class: Expressir::Model::Attribute
|
290
318
|
id: test2
|
@@ -299,6 +327,7 @@ schemas:
|
|
299
327
|
entity:
|
300
328
|
_class: Expressir::Model::Expressions::SimpleReference
|
301
329
|
id: attribute_entity
|
330
|
+
base_path: syntax_schema.attribute_entity
|
302
331
|
attribute:
|
303
332
|
_class: Expressir::Model::Expressions::SimpleReference
|
304
333
|
id: test
|
@@ -316,9 +345,11 @@ schemas:
|
|
316
345
|
type:
|
317
346
|
_class: Expressir::Model::Expressions::SimpleReference
|
318
347
|
id: attribute_entity
|
348
|
+
base_path: syntax_schema.attribute_entity
|
319
349
|
expression:
|
320
350
|
_class: Expressir::Model::Expressions::SimpleReference
|
321
351
|
id: test
|
352
|
+
base_path: syntax_schema.inverse_attribute_entity.test
|
322
353
|
- _class: Expressir::Model::Entity
|
323
354
|
id: inverse_attribute_entity_entity
|
324
355
|
attributes:
|
@@ -328,6 +359,7 @@ schemas:
|
|
328
359
|
type:
|
329
360
|
_class: Expressir::Model::Expressions::SimpleReference
|
330
361
|
id: attribute_entity
|
362
|
+
base_path: syntax_schema.attribute_entity
|
331
363
|
expression:
|
332
364
|
_class: Expressir::Model::Expressions::AttributeReference
|
333
365
|
ref:
|
@@ -347,9 +379,11 @@ schemas:
|
|
347
379
|
base_type:
|
348
380
|
_class: Expressir::Model::Expressions::SimpleReference
|
349
381
|
id: attribute_entity
|
382
|
+
base_path: syntax_schema.attribute_entity
|
350
383
|
expression:
|
351
384
|
_class: Expressir::Model::Expressions::SimpleReference
|
352
385
|
id: test
|
386
|
+
base_path: syntax_schema.inverse_attribute_set_entity.test
|
353
387
|
- _class: Expressir::Model::Entity
|
354
388
|
id: inverse_attribute_set_bound_entity
|
355
389
|
attributes:
|
@@ -367,9 +401,11 @@ schemas:
|
|
367
401
|
base_type:
|
368
402
|
_class: Expressir::Model::Expressions::SimpleReference
|
369
403
|
id: attribute_entity
|
404
|
+
base_path: syntax_schema.attribute_entity
|
370
405
|
expression:
|
371
406
|
_class: Expressir::Model::Expressions::SimpleReference
|
372
407
|
id: test
|
408
|
+
base_path: syntax_schema.inverse_attribute_set_bound_entity.test
|
373
409
|
- _class: Expressir::Model::Entity
|
374
410
|
id: inverse_attribute_bag_entity
|
375
411
|
attributes:
|
@@ -381,9 +417,11 @@ schemas:
|
|
381
417
|
base_type:
|
382
418
|
_class: Expressir::Model::Expressions::SimpleReference
|
383
419
|
id: attribute_entity
|
420
|
+
base_path: syntax_schema.attribute_entity
|
384
421
|
expression:
|
385
422
|
_class: Expressir::Model::Expressions::SimpleReference
|
386
423
|
id: test
|
424
|
+
base_path: syntax_schema.inverse_attribute_bag_entity.test
|
387
425
|
- _class: Expressir::Model::Entity
|
388
426
|
id: inverse_attribute_bag_bound_entity
|
389
427
|
attributes:
|
@@ -401,14 +439,17 @@ schemas:
|
|
401
439
|
base_type:
|
402
440
|
_class: Expressir::Model::Expressions::SimpleReference
|
403
441
|
id: attribute_entity
|
442
|
+
base_path: syntax_schema.attribute_entity
|
404
443
|
expression:
|
405
444
|
_class: Expressir::Model::Expressions::SimpleReference
|
406
445
|
id: test
|
446
|
+
base_path: syntax_schema.inverse_attribute_bag_bound_entity.test
|
407
447
|
- _class: Expressir::Model::Entity
|
408
448
|
id: inverse_attribute_redeclared_entity
|
409
449
|
subtype_of:
|
410
450
|
- _class: Expressir::Model::Expressions::SimpleReference
|
411
451
|
id: attribute_entity
|
452
|
+
base_path: syntax_schema.attribute_entity
|
412
453
|
attributes:
|
413
454
|
- _class: Expressir::Model::Attribute
|
414
455
|
kind: :INVERSE
|
@@ -422,12 +463,14 @@ schemas:
|
|
422
463
|
entity:
|
423
464
|
_class: Expressir::Model::Expressions::SimpleReference
|
424
465
|
id: attribute_entity
|
466
|
+
base_path: syntax_schema.attribute_entity
|
425
467
|
attribute:
|
426
468
|
_class: Expressir::Model::Expressions::SimpleReference
|
427
469
|
id: test
|
428
470
|
type:
|
429
471
|
_class: Expressir::Model::Expressions::SimpleReference
|
430
472
|
id: attribute_entity
|
473
|
+
base_path: syntax_schema.attribute_entity
|
431
474
|
expression:
|
432
475
|
_class: Expressir::Model::Expressions::SimpleReference
|
433
476
|
id: test
|
@@ -436,6 +479,7 @@ schemas:
|
|
436
479
|
subtype_of:
|
437
480
|
- _class: Expressir::Model::Expressions::SimpleReference
|
438
481
|
id: attribute_entity
|
482
|
+
base_path: syntax_schema.attribute_entity
|
439
483
|
attributes:
|
440
484
|
- _class: Expressir::Model::Attribute
|
441
485
|
id: test2
|
@@ -450,12 +494,14 @@ schemas:
|
|
450
494
|
entity:
|
451
495
|
_class: Expressir::Model::Expressions::SimpleReference
|
452
496
|
id: attribute_entity
|
497
|
+
base_path: syntax_schema.attribute_entity
|
453
498
|
attribute:
|
454
499
|
_class: Expressir::Model::Expressions::SimpleReference
|
455
500
|
id: test
|
456
501
|
type:
|
457
502
|
_class: Expressir::Model::Expressions::SimpleReference
|
458
503
|
id: attribute_entity
|
504
|
+
base_path: syntax_schema.attribute_entity
|
459
505
|
expression:
|
460
506
|
_class: Expressir::Model::Expressions::SimpleReference
|
461
507
|
id: test
|
@@ -472,6 +518,7 @@ schemas:
|
|
472
518
|
attributes:
|
473
519
|
- _class: Expressir::Model::Expressions::SimpleReference
|
474
520
|
id: test
|
521
|
+
base_path: syntax_schema.unique_entity.test
|
475
522
|
- _class: Expressir::Model::Entity
|
476
523
|
id: unique_label_entity
|
477
524
|
attributes:
|
@@ -486,11 +533,13 @@ schemas:
|
|
486
533
|
attributes:
|
487
534
|
- _class: Expressir::Model::Expressions::SimpleReference
|
488
535
|
id: test
|
536
|
+
base_path: syntax_schema.unique_label_entity.test
|
489
537
|
- _class: Expressir::Model::Entity
|
490
538
|
id: unique_redeclared_entity
|
491
539
|
subtype_of:
|
492
540
|
- _class: Expressir::Model::Expressions::SimpleReference
|
493
541
|
id: attribute_entity
|
542
|
+
base_path: syntax_schema.attribute_entity
|
494
543
|
unique:
|
495
544
|
- _class: Expressir::Model::Unique
|
496
545
|
attributes:
|
@@ -503,6 +552,7 @@ schemas:
|
|
503
552
|
entity:
|
504
553
|
_class: Expressir::Model::Expressions::SimpleReference
|
505
554
|
id: attribute_entity
|
555
|
+
base_path: syntax_schema.attribute_entity
|
506
556
|
attribute:
|
507
557
|
_class: Expressir::Model::Expressions::SimpleReference
|
508
558
|
id: test
|
@@ -511,6 +561,7 @@ schemas:
|
|
511
561
|
subtype_of:
|
512
562
|
- _class: Expressir::Model::Expressions::SimpleReference
|
513
563
|
id: attribute_entity
|
564
|
+
base_path: syntax_schema.attribute_entity
|
514
565
|
unique:
|
515
566
|
- _class: Expressir::Model::Unique
|
516
567
|
id: UR1
|
@@ -524,6 +575,7 @@ schemas:
|
|
524
575
|
entity:
|
525
576
|
_class: Expressir::Model::Expressions::SimpleReference
|
526
577
|
id: attribute_entity
|
578
|
+
base_path: syntax_schema.attribute_entity
|
527
579
|
attribute:
|
528
580
|
_class: Expressir::Model::Expressions::SimpleReference
|
529
581
|
id: test
|
@@ -548,17 +600,20 @@ schemas:
|
|
548
600
|
applies_to:
|
549
601
|
_class: Expressir::Model::Expressions::SimpleReference
|
550
602
|
id: empty_entity
|
603
|
+
base_path: syntax_schema.empty_entity
|
551
604
|
- _class: Expressir::Model::SubtypeConstraint
|
552
605
|
id: abstract_supertype_subtype_constraint
|
553
606
|
applies_to:
|
554
607
|
_class: Expressir::Model::Expressions::SimpleReference
|
555
608
|
id: empty_entity
|
609
|
+
base_path: syntax_schema.empty_entity
|
556
610
|
abstract: true
|
557
611
|
- _class: Expressir::Model::SubtypeConstraint
|
558
612
|
id: total_over_subtype_constraint
|
559
613
|
applies_to:
|
560
614
|
_class: Expressir::Model::Expressions::SimpleReference
|
561
615
|
id: empty_entity
|
616
|
+
base_path: syntax_schema.empty_entity
|
562
617
|
total_over:
|
563
618
|
- _class: Expressir::Model::Expressions::SimpleReference
|
564
619
|
id: a
|
@@ -567,6 +622,7 @@ schemas:
|
|
567
622
|
applies_to:
|
568
623
|
_class: Expressir::Model::Expressions::SimpleReference
|
569
624
|
id: empty_entity
|
625
|
+
base_path: syntax_schema.empty_entity
|
570
626
|
supertype_expression:
|
571
627
|
_class: Expressir::Model::Expressions::SimpleReference
|
572
628
|
id: a
|
@@ -575,6 +631,7 @@ schemas:
|
|
575
631
|
applies_to:
|
576
632
|
_class: Expressir::Model::Expressions::SimpleReference
|
577
633
|
id: empty_entity
|
634
|
+
base_path: syntax_schema.empty_entity
|
578
635
|
supertype_expression:
|
579
636
|
_class: Expressir::Model::Expressions::BinaryExpression
|
580
637
|
operator: :ANDOR
|
@@ -589,6 +646,7 @@ schemas:
|
|
589
646
|
applies_to:
|
590
647
|
_class: Expressir::Model::Expressions::SimpleReference
|
591
648
|
id: empty_entity
|
649
|
+
base_path: syntax_schema.empty_entity
|
592
650
|
supertype_expression:
|
593
651
|
_class: Expressir::Model::Expressions::BinaryExpression
|
594
652
|
operator: :AND
|
@@ -603,6 +661,7 @@ schemas:
|
|
603
661
|
applies_to:
|
604
662
|
_class: Expressir::Model::Expressions::SimpleReference
|
605
663
|
id: empty_entity
|
664
|
+
base_path: syntax_schema.empty_entity
|
606
665
|
supertype_expression:
|
607
666
|
_class: Expressir::Model::Expressions::BinaryExpression
|
608
667
|
operator: :ANDOR
|
@@ -623,6 +682,7 @@ schemas:
|
|
623
682
|
applies_to:
|
624
683
|
_class: Expressir::Model::Expressions::SimpleReference
|
625
684
|
id: empty_entity
|
685
|
+
base_path: syntax_schema.empty_entity
|
626
686
|
supertype_expression:
|
627
687
|
_class: Expressir::Model::Expressions::BinaryExpression
|
628
688
|
operator: :ANDOR
|
@@ -643,6 +703,7 @@ schemas:
|
|
643
703
|
applies_to:
|
644
704
|
_class: Expressir::Model::Expressions::SimpleReference
|
645
705
|
id: empty_entity
|
706
|
+
base_path: syntax_schema.empty_entity
|
646
707
|
supertype_expression:
|
647
708
|
_class: Expressir::Model::Expressions::BinaryExpression
|
648
709
|
operator: :AND
|
@@ -663,6 +724,7 @@ schemas:
|
|
663
724
|
applies_to:
|
664
725
|
_class: Expressir::Model::Expressions::SimpleReference
|
665
726
|
id: empty_entity
|
727
|
+
base_path: syntax_schema.empty_entity
|
666
728
|
supertype_expression:
|
667
729
|
_class: Expressir::Model::Expressions::BinaryExpression
|
668
730
|
operator: :AND
|
@@ -683,6 +745,7 @@ schemas:
|
|
683
745
|
applies_to:
|
684
746
|
_class: Expressir::Model::Expressions::SimpleReference
|
685
747
|
id: empty_entity
|
748
|
+
base_path: syntax_schema.empty_entity
|
686
749
|
supertype_expression:
|
687
750
|
_class: Expressir::Model::Expressions::Call
|
688
751
|
ref:
|
@@ -698,6 +761,7 @@ schemas:
|
|
698
761
|
applies_to:
|
699
762
|
_class: Expressir::Model::Expressions::SimpleReference
|
700
763
|
id: empty_entity
|
764
|
+
base_path: syntax_schema.empty_entity
|
701
765
|
supertype_expression:
|
702
766
|
_class: Expressir::Model::Expressions::BinaryExpression
|
703
767
|
operator: :AND
|
@@ -719,6 +783,7 @@ schemas:
|
|
719
783
|
applies_to:
|
720
784
|
_class: Expressir::Model::Expressions::SimpleReference
|
721
785
|
id: empty_entity
|
786
|
+
base_path: syntax_schema.empty_entity
|
722
787
|
supertype_expression:
|
723
788
|
_class: Expressir::Model::Expressions::BinaryExpression
|
724
789
|
operator: :ANDOR
|
@@ -740,6 +805,7 @@ schemas:
|
|
740
805
|
applies_to:
|
741
806
|
_class: Expressir::Model::Expressions::SimpleReference
|
742
807
|
id: empty_entity
|
808
|
+
base_path: syntax_schema.empty_entity
|
743
809
|
supertype_expression:
|
744
810
|
_class: Expressir::Model::Expressions::BinaryExpression
|
745
811
|
operator: :AND
|
@@ -761,6 +827,7 @@ schemas:
|
|
761
827
|
applies_to:
|
762
828
|
_class: Expressir::Model::Expressions::SimpleReference
|
763
829
|
id: empty_entity
|
830
|
+
base_path: syntax_schema.empty_entity
|
764
831
|
supertype_expression:
|
765
832
|
_class: Expressir::Model::Expressions::BinaryExpression
|
766
833
|
operator: :ANDOR
|
@@ -782,6 +849,7 @@ schemas:
|
|
782
849
|
applies_to:
|
783
850
|
_class: Expressir::Model::Expressions::SimpleReference
|
784
851
|
id: empty_entity
|
852
|
+
base_path: syntax_schema.empty_entity
|
785
853
|
supertype_expression:
|
786
854
|
_class: Expressir::Model::Expressions::BinaryExpression
|
787
855
|
operator: :AND
|
@@ -810,6 +878,7 @@ schemas:
|
|
810
878
|
applies_to:
|
811
879
|
_class: Expressir::Model::Expressions::SimpleReference
|
812
880
|
id: empty_entity
|
881
|
+
base_path: syntax_schema.empty_entity
|
813
882
|
supertype_expression:
|
814
883
|
_class: Expressir::Model::Expressions::BinaryExpression
|
815
884
|
operator: :ANDOR
|
@@ -1030,6 +1099,7 @@ schemas:
|
|
1030
1099
|
applies_to:
|
1031
1100
|
- _class: Expressir::Model::Expressions::SimpleReference
|
1032
1101
|
id: empty_entity
|
1102
|
+
base_path: syntax_schema.empty_entity
|
1033
1103
|
where:
|
1034
1104
|
- _class: Expressir::Model::Where
|
1035
1105
|
expression:
|
@@ -1040,6 +1110,7 @@ schemas:
|
|
1040
1110
|
applies_to:
|
1041
1111
|
- _class: Expressir::Model::Expressions::SimpleReference
|
1042
1112
|
id: empty_entity
|
1113
|
+
base_path: syntax_schema.empty_entity
|
1043
1114
|
types:
|
1044
1115
|
- _class: Expressir::Model::Type
|
1045
1116
|
id: test
|
@@ -1055,6 +1126,7 @@ schemas:
|
|
1055
1126
|
applies_to:
|
1056
1127
|
- _class: Expressir::Model::Expressions::SimpleReference
|
1057
1128
|
id: empty_entity
|
1129
|
+
base_path: syntax_schema.empty_entity
|
1058
1130
|
constants:
|
1059
1131
|
- _class: Expressir::Model::Constant
|
1060
1132
|
id: test
|
@@ -1073,6 +1145,7 @@ schemas:
|
|
1073
1145
|
applies_to:
|
1074
1146
|
- _class: Expressir::Model::Expressions::SimpleReference
|
1075
1147
|
id: empty_entity
|
1148
|
+
base_path: syntax_schema.empty_entity
|
1076
1149
|
constants:
|
1077
1150
|
- _class: Expressir::Model::Constant
|
1078
1151
|
id: test
|
@@ -1098,6 +1171,7 @@ schemas:
|
|
1098
1171
|
applies_to:
|
1099
1172
|
- _class: Expressir::Model::Expressions::SimpleReference
|
1100
1173
|
id: empty_entity
|
1174
|
+
base_path: syntax_schema.empty_entity
|
1101
1175
|
variables:
|
1102
1176
|
- _class: Expressir::Model::Variable
|
1103
1177
|
id: test
|
@@ -1113,6 +1187,7 @@ schemas:
|
|
1113
1187
|
applies_to:
|
1114
1188
|
- _class: Expressir::Model::Expressions::SimpleReference
|
1115
1189
|
id: empty_entity
|
1190
|
+
base_path: syntax_schema.empty_entity
|
1116
1191
|
variables:
|
1117
1192
|
- _class: Expressir::Model::Variable
|
1118
1193
|
id: test
|
@@ -1132,6 +1207,7 @@ schemas:
|
|
1132
1207
|
applies_to:
|
1133
1208
|
- _class: Expressir::Model::Expressions::SimpleReference
|
1134
1209
|
id: empty_entity
|
1210
|
+
base_path: syntax_schema.empty_entity
|
1135
1211
|
variables:
|
1136
1212
|
- _class: Expressir::Model::Variable
|
1137
1213
|
id: test
|
@@ -1151,6 +1227,7 @@ schemas:
|
|
1151
1227
|
applies_to:
|
1152
1228
|
- _class: Expressir::Model::Expressions::SimpleReference
|
1153
1229
|
id: empty_entity
|
1230
|
+
base_path: syntax_schema.empty_entity
|
1154
1231
|
variables:
|
1155
1232
|
- _class: Expressir::Model::Variable
|
1156
1233
|
id: test
|
@@ -1169,6 +1246,7 @@ schemas:
|
|
1169
1246
|
applies_to:
|
1170
1247
|
- _class: Expressir::Model::Expressions::SimpleReference
|
1171
1248
|
id: empty_entity
|
1249
|
+
base_path: syntax_schema.empty_entity
|
1172
1250
|
variables:
|
1173
1251
|
- _class: Expressir::Model::Variable
|
1174
1252
|
id: test
|
@@ -1194,6 +1272,7 @@ schemas:
|
|
1194
1272
|
applies_to:
|
1195
1273
|
- _class: Expressir::Model::Expressions::SimpleReference
|
1196
1274
|
id: empty_entity
|
1275
|
+
base_path: syntax_schema.empty_entity
|
1197
1276
|
variables:
|
1198
1277
|
- _class: Expressir::Model::Variable
|
1199
1278
|
id: test
|
@@ -1219,6 +1298,7 @@ schemas:
|
|
1219
1298
|
applies_to:
|
1220
1299
|
- _class: Expressir::Model::Expressions::SimpleReference
|
1221
1300
|
id: empty_entity
|
1301
|
+
base_path: syntax_schema.empty_entity
|
1222
1302
|
statements:
|
1223
1303
|
- _class: Expressir::Model::Statements::Null
|
1224
1304
|
where:
|
@@ -1231,6 +1311,7 @@ schemas:
|
|
1231
1311
|
applies_to:
|
1232
1312
|
- _class: Expressir::Model::Expressions::SimpleReference
|
1233
1313
|
id: empty_entity
|
1314
|
+
base_path: syntax_schema.empty_entity
|
1234
1315
|
where:
|
1235
1316
|
- _class: Expressir::Model::Where
|
1236
1317
|
id: WR1
|
@@ -1728,6 +1809,7 @@ schemas:
|
|
1728
1809
|
ref:
|
1729
1810
|
_class: Expressir::Model::Expressions::SimpleReference
|
1730
1811
|
id: empty_procedure
|
1812
|
+
base_path: syntax_schema.empty_procedure
|
1731
1813
|
- _class: Expressir::Model::Procedure
|
1732
1814
|
id: call_parameter_statement
|
1733
1815
|
statements:
|
@@ -1735,6 +1817,7 @@ schemas:
|
|
1735
1817
|
ref:
|
1736
1818
|
_class: Expressir::Model::Expressions::SimpleReference
|
1737
1819
|
id: empty_procedure
|
1820
|
+
base_path: syntax_schema.empty_procedure
|
1738
1821
|
parameters:
|
1739
1822
|
- _class: Expressir::Model::Literals::Logical
|
1740
1823
|
value: :TRUE
|
@@ -1745,6 +1828,7 @@ schemas:
|
|
1745
1828
|
ref:
|
1746
1829
|
_class: Expressir::Model::Expressions::SimpleReference
|
1747
1830
|
id: empty_procedure
|
1831
|
+
base_path: syntax_schema.empty_procedure
|
1748
1832
|
parameters:
|
1749
1833
|
- _class: Expressir::Model::Literals::Logical
|
1750
1834
|
value: :TRUE
|
@@ -2054,6 +2138,7 @@ schemas:
|
|
2054
2138
|
items:
|
2055
2139
|
- _class: Expressir::Model::Expressions::SimpleReference
|
2056
2140
|
id: empty_type
|
2141
|
+
base_path: syntax_schema.empty_type
|
2057
2142
|
- _class: Expressir::Model::Type
|
2058
2143
|
id: select_list_multiple_type
|
2059
2144
|
type:
|
@@ -2061,8 +2146,10 @@ schemas:
|
|
2061
2146
|
items:
|
2062
2147
|
- _class: Expressir::Model::Expressions::SimpleReference
|
2063
2148
|
id: empty_type
|
2149
|
+
base_path: syntax_schema.empty_type
|
2064
2150
|
- _class: Expressir::Model::Expressions::SimpleReference
|
2065
2151
|
id: empty_type
|
2152
|
+
base_path: syntax_schema.empty_type
|
2066
2153
|
- _class: Expressir::Model::Type
|
2067
2154
|
id: select_extension_type_ref_type
|
2068
2155
|
type:
|
@@ -2070,6 +2157,7 @@ schemas:
|
|
2070
2157
|
extension_type:
|
2071
2158
|
_class: Expressir::Model::Expressions::SimpleReference
|
2072
2159
|
id: select_type
|
2160
|
+
base_path: syntax_schema.types.select_type
|
2073
2161
|
- _class: Expressir::Model::Type
|
2074
2162
|
id: select_extension_type_ref_list_type
|
2075
2163
|
type:
|
@@ -2077,9 +2165,11 @@ schemas:
|
|
2077
2165
|
extension_type:
|
2078
2166
|
_class: Expressir::Model::Expressions::SimpleReference
|
2079
2167
|
id: select_type
|
2168
|
+
base_path: syntax_schema.types.select_type
|
2080
2169
|
extension_items:
|
2081
2170
|
- _class: Expressir::Model::Expressions::SimpleReference
|
2082
2171
|
id: empty_type
|
2172
|
+
base_path: syntax_schema.empty_type
|
2083
2173
|
- _class: Expressir::Model::Type
|
2084
2174
|
id: select_extension_type_ref_list_multiple_type
|
2085
2175
|
type:
|
@@ -2087,11 +2177,14 @@ schemas:
|
|
2087
2177
|
extension_type:
|
2088
2178
|
_class: Expressir::Model::Expressions::SimpleReference
|
2089
2179
|
id: select_type
|
2180
|
+
base_path: syntax_schema.types.select_type
|
2090
2181
|
extension_items:
|
2091
2182
|
- _class: Expressir::Model::Expressions::SimpleReference
|
2092
2183
|
id: empty_type
|
2184
|
+
base_path: syntax_schema.empty_type
|
2093
2185
|
- _class: Expressir::Model::Expressions::SimpleReference
|
2094
2186
|
id: empty_type
|
2187
|
+
base_path: syntax_schema.empty_type
|
2095
2188
|
- _class: Expressir::Model::Type
|
2096
2189
|
id: enumeration_type
|
2097
2190
|
type:
|
@@ -2124,6 +2217,7 @@ schemas:
|
|
2124
2217
|
extension_type:
|
2125
2218
|
_class: Expressir::Model::Expressions::SimpleReference
|
2126
2219
|
id: enumeration_type
|
2220
|
+
base_path: syntax_schema.types.enumeration_type
|
2127
2221
|
- _class: Expressir::Model::Type
|
2128
2222
|
id: enumeration_extension_type_ref_list_type
|
2129
2223
|
type:
|
@@ -2131,6 +2225,7 @@ schemas:
|
|
2131
2225
|
extension_type:
|
2132
2226
|
_class: Expressir::Model::Expressions::SimpleReference
|
2133
2227
|
id: enumeration_type
|
2228
|
+
base_path: syntax_schema.types.enumeration_type
|
2134
2229
|
extension_items:
|
2135
2230
|
- _class: Expressir::Model::EnumerationItem
|
2136
2231
|
id: test
|
@@ -2141,6 +2236,7 @@ schemas:
|
|
2141
2236
|
extension_type:
|
2142
2237
|
_class: Expressir::Model::Expressions::SimpleReference
|
2143
2238
|
id: enumeration_type
|
2239
|
+
base_path: syntax_schema.types.enumeration_type
|
2144
2240
|
extension_items:
|
2145
2241
|
- _class: Expressir::Model::EnumerationItem
|
2146
2242
|
id: test
|
@@ -3295,6 +3391,7 @@ schemas:
|
|
3295
3391
|
ref:
|
3296
3392
|
_class: Expressir::Model::Expressions::SimpleReference
|
3297
3393
|
id: parameter_function
|
3394
|
+
base_path: syntax_schema.parameter_function
|
3298
3395
|
parameters:
|
3299
3396
|
- _class: Expressir::Model::Literals::Logical
|
3300
3397
|
value: :TRUE
|