expressir 1.2.5-x64-mingw-ucrt
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 +7 -0
- data/.cross_rubies +15 -0
- data/.github/workflows/rake.yml +300 -0
- data/.github/workflows/release.yml +120 -0
- data/.gitignore +23 -0
- data/.gitmodules +6 -0
- data/.hound.yml +3 -0
- data/.rspec +2 -0
- data/.rubocop.yml +17 -0
- data/.yardopts +11 -0
- data/Gemfile +4 -0
- data/README.adoc +147 -0
- data/Rakefile +17 -0
- data/bin/console +11 -0
- data/bin/rspec +29 -0
- data/bin/setup +8 -0
- data/docs/development.md +90 -0
- data/exe/expressir +22 -0
- data/exe/format +18 -0
- data/exe/format-test +81 -0
- data/exe/generate-parser +51 -0
- data/expressir.gemspec +48 -0
- data/lib/expressir/cli/ui.rb +36 -0
- data/lib/expressir/cli.rb +21 -0
- data/lib/expressir/config.rb +23 -0
- data/lib/expressir/express/3.1/express_parser.so +0 -0
- data/lib/expressir/express/cache.rb +51 -0
- data/lib/expressir/express/formatter.rb +1608 -0
- data/lib/expressir/express/hyperlink_formatter.rb +36 -0
- data/lib/expressir/express/model_visitor.rb +24 -0
- data/lib/expressir/express/parser.rb +84 -0
- data/lib/expressir/express/resolve_references_model_visitor.rb +31 -0
- data/lib/expressir/express/schema_head_formatter.rb +23 -0
- data/lib/expressir/express/visitor.rb +2578 -0
- data/lib/expressir/model/cache.rb +17 -0
- data/lib/expressir/model/data_type.rb +9 -0
- data/lib/expressir/model/data_types/aggregate.rb +31 -0
- data/lib/expressir/model/data_types/array.rb +31 -0
- data/lib/expressir/model/data_types/bag.rb +25 -0
- data/lib/expressir/model/data_types/binary.rb +22 -0
- data/lib/expressir/model/data_types/boolean.rb +10 -0
- data/lib/expressir/model/data_types/enumeration.rb +25 -0
- data/lib/expressir/model/data_types/enumeration_item.rb +26 -0
- data/lib/expressir/model/data_types/generic.rb +26 -0
- data/lib/expressir/model/data_types/generic_entity.rb +26 -0
- data/lib/expressir/model/data_types/integer.rb +10 -0
- data/lib/expressir/model/data_types/list.rb +28 -0
- data/lib/expressir/model/data_types/logical.rb +10 -0
- data/lib/expressir/model/data_types/number.rb +10 -0
- data/lib/expressir/model/data_types/real.rb +19 -0
- data/lib/expressir/model/data_types/select.rb +28 -0
- data/lib/expressir/model/data_types/set.rb +25 -0
- data/lib/expressir/model/data_types/string.rb +22 -0
- data/lib/expressir/model/declaration.rb +9 -0
- data/lib/expressir/model/declarations/attribute.rb +47 -0
- data/lib/expressir/model/declarations/constant.rb +34 -0
- data/lib/expressir/model/declarations/entity.rb +53 -0
- data/lib/expressir/model/declarations/function.rb +67 -0
- data/lib/expressir/model/declarations/interface.rb +28 -0
- data/lib/expressir/model/declarations/interface_item.rb +23 -0
- data/lib/expressir/model/declarations/interfaced_item.rb +37 -0
- data/lib/expressir/model/declarations/parameter.rb +34 -0
- data/lib/expressir/model/declarations/procedure.rb +64 -0
- data/lib/expressir/model/declarations/remark_item.rb +21 -0
- data/lib/expressir/model/declarations/rule.rb +71 -0
- data/lib/expressir/model/declarations/schema.rb +117 -0
- data/lib/expressir/model/declarations/schema_version.rb +22 -0
- data/lib/expressir/model/declarations/schema_version_item.rb +22 -0
- data/lib/expressir/model/declarations/subtype_constraint.rb +40 -0
- data/lib/expressir/model/declarations/type.rb +45 -0
- data/lib/expressir/model/declarations/unique_rule.rb +31 -0
- data/lib/expressir/model/declarations/variable.rb +34 -0
- data/lib/expressir/model/declarations/where_rule.rb +31 -0
- data/lib/expressir/model/expression.rb +9 -0
- data/lib/expressir/model/expressions/aggregate_initializer.rb +19 -0
- data/lib/expressir/model/expressions/aggregate_initializer_item.rb +22 -0
- data/lib/expressir/model/expressions/binary_expression.rb +53 -0
- data/lib/expressir/model/expressions/entity_constructor.rb +22 -0
- data/lib/expressir/model/expressions/function_call.rb +22 -0
- data/lib/expressir/model/expressions/interval.rb +34 -0
- data/lib/expressir/model/expressions/query_expression.rb +35 -0
- data/lib/expressir/model/expressions/unary_expression.rb +27 -0
- data/lib/expressir/model/identifier.rb +34 -0
- data/lib/expressir/model/literal.rb +9 -0
- data/lib/expressir/model/literals/binary.rb +19 -0
- data/lib/expressir/model/literals/integer.rb +19 -0
- data/lib/expressir/model/literals/logical.rb +23 -0
- data/lib/expressir/model/literals/real.rb +19 -0
- data/lib/expressir/model/literals/string.rb +22 -0
- data/lib/expressir/model/model_element.rb +208 -0
- data/lib/expressir/model/reference.rb +9 -0
- data/lib/expressir/model/references/attribute_reference.rb +22 -0
- data/lib/expressir/model/references/group_reference.rb +22 -0
- data/lib/expressir/model/references/index_reference.rb +27 -0
- data/lib/expressir/model/references/simple_reference.rb +24 -0
- data/lib/expressir/model/repository.rb +23 -0
- data/lib/expressir/model/statement.rb +9 -0
- data/lib/expressir/model/statements/alias.rb +35 -0
- data/lib/expressir/model/statements/assignment.rb +22 -0
- data/lib/expressir/model/statements/case.rb +25 -0
- data/lib/expressir/model/statements/case_action.rb +22 -0
- data/lib/expressir/model/statements/compound.rb +19 -0
- data/lib/expressir/model/statements/escape.rb +10 -0
- data/lib/expressir/model/statements/if.rb +25 -0
- data/lib/expressir/model/statements/null.rb +10 -0
- data/lib/expressir/model/statements/procedure_call.rb +22 -0
- data/lib/expressir/model/statements/repeat.rb +47 -0
- data/lib/expressir/model/statements/return.rb +19 -0
- data/lib/expressir/model/statements/skip.rb +10 -0
- data/lib/expressir/model/supertype_expression.rb +9 -0
- data/lib/expressir/model/supertype_expressions/binary_supertype_expression.rb +29 -0
- data/lib/expressir/model/supertype_expressions/oneof_supertype_expression.rb +19 -0
- data/lib/expressir/model.rb +79 -0
- data/lib/expressir/version.rb +3 -0
- data/lib/expressir.rb +20 -0
- data/rakelib/antlr4-native.rake +63 -0
- data/rakelib/cross-ruby.rake +367 -0
- data/spec/acceptance/version_spec.rb +17 -0
- data/spec/expressir/express/cache_spec.rb +67 -0
- data/spec/expressir/express/formatter_spec.rb +135 -0
- data/spec/expressir/express/parser_spec.rb +104 -0
- data/spec/expressir/model/model_element_spec.rb +274 -0
- data/spec/spec_helper.rb +17 -0
- data/spec/support/console_helper.rb +29 -0
- data/spec/syntax/multiple.exp +23 -0
- data/spec/syntax/multiple.yaml +198 -0
- data/spec/syntax/multiple_formatted.exp +71 -0
- data/spec/syntax/multiple_hyperlink_formatted.exp +71 -0
- data/spec/syntax/multiple_schema_head_hyperlink_formatted.exp +13 -0
- data/spec/syntax/remark.exp +191 -0
- data/spec/syntax/remark.yaml +466 -0
- data/spec/syntax/remark_formatted.exp +227 -0
- data/spec/syntax/single.exp +4 -0
- data/spec/syntax/single.yaml +18 -0
- data/spec/syntax/single_formatted.exp +10 -0
- data/spec/syntax/single_formatted.yaml +36 -0
- data/spec/syntax/syntax.exp +333 -0
- data/spec/syntax/syntax.yaml +3509 -0
- data/spec/syntax/syntax_formatted.exp +902 -0
- data/spec/syntax/syntax_hyperlink_formatted.exp +902 -0
- data/spec/syntax/syntax_schema_head_formatted.exp +18 -0
- metadata +387 -0
@@ -0,0 +1,71 @@
|
|
1
|
+
SCHEMA multiple_schema;
|
2
|
+
|
3
|
+
REFERENCE FROM {{{<<express:multiple_schema2,multiple_schema2>>}}};
|
4
|
+
REFERENCE FROM {{{<<express:multiple_schema3,multiple_schema3>>}}}
|
5
|
+
({{{<<express:multiple_schema3.attribute_entity3,attribute_entity3>>}}});
|
6
|
+
REFERENCE FROM {{{<<express:multiple_schema4,multiple_schema4>>}}}
|
7
|
+
({{{<<express:multiple_schema4.attribute_entity,attribute_entity>>}}} AS attribute_entity4);
|
8
|
+
|
9
|
+
ENTITY test;
|
10
|
+
END_ENTITY;
|
11
|
+
|
12
|
+
ENTITY empty_entity;
|
13
|
+
END_ENTITY;
|
14
|
+
|
15
|
+
ENTITY attribute_entity;
|
16
|
+
test : BOOLEAN;
|
17
|
+
END_ENTITY;
|
18
|
+
|
19
|
+
ENTITY subtype_empty_entity
|
20
|
+
SUBTYPE OF ({{{<<express:multiple_schema.empty_entity,empty_entity>>}}});
|
21
|
+
END_ENTITY;
|
22
|
+
|
23
|
+
ENTITY subtype_attribute_entity
|
24
|
+
SUBTYPE OF ({{{<<express:multiple_schema.attribute_entity,attribute_entity>>}}});
|
25
|
+
SELF\{{{<<express:multiple_schema.attribute_entity,attribute_entity>>}}}.test : BOOLEAN;
|
26
|
+
END_ENTITY;
|
27
|
+
|
28
|
+
ENTITY subtype_attribute_entity2
|
29
|
+
SUBTYPE OF ({{{<<express:multiple_schema2.attribute_entity2,attribute_entity2>>}}});
|
30
|
+
SELF\{{{<<express:multiple_schema2.attribute_entity2,attribute_entity2>>}}}.test : BOOLEAN;
|
31
|
+
END_ENTITY;
|
32
|
+
|
33
|
+
ENTITY subtype_attribute_entity3
|
34
|
+
SUBTYPE OF ({{{<<express:multiple_schema3.attribute_entity3,attribute_entity3>>}}});
|
35
|
+
SELF\{{{<<express:multiple_schema3.attribute_entity3,attribute_entity3>>}}}.test : BOOLEAN;
|
36
|
+
END_ENTITY;
|
37
|
+
|
38
|
+
ENTITY subtype_attribute_entity4
|
39
|
+
SUBTYPE OF ({{{<<express:multiple_schema4.attribute_entity,attribute_entity4>>}}});
|
40
|
+
SELF\{{{<<express:multiple_schema4.attribute_entity,attribute_entity4>>}}}.test : BOOLEAN;
|
41
|
+
END_ENTITY;
|
42
|
+
|
43
|
+
ENTITY subtype_missing_entity
|
44
|
+
SUBTYPE OF (missing_entity);
|
45
|
+
END_ENTITY;
|
46
|
+
|
47
|
+
END_SCHEMA;
|
48
|
+
|
49
|
+
SCHEMA multiple_schema2;
|
50
|
+
|
51
|
+
ENTITY attribute_entity2;
|
52
|
+
test : BOOLEAN;
|
53
|
+
END_ENTITY;
|
54
|
+
|
55
|
+
END_SCHEMA;
|
56
|
+
|
57
|
+
SCHEMA multiple_schema3;
|
58
|
+
|
59
|
+
ENTITY attribute_entity3;
|
60
|
+
test : BOOLEAN;
|
61
|
+
END_ENTITY;
|
62
|
+
|
63
|
+
END_SCHEMA;
|
64
|
+
|
65
|
+
SCHEMA multiple_schema4;
|
66
|
+
|
67
|
+
ENTITY attribute_entity;
|
68
|
+
test : BOOLEAN;
|
69
|
+
END_ENTITY;
|
70
|
+
|
71
|
+
END_SCHEMA;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
SCHEMA multiple_schema;
|
2
|
+
|
3
|
+
REFERENCE FROM {{{<<express:multiple_schema2,multiple_schema2>>}}};
|
4
|
+
REFERENCE FROM {{{<<express:multiple_schema3,multiple_schema3>>}}}
|
5
|
+
({{{<<express:multiple_schema3.attribute_entity3,attribute_entity3>>}}});
|
6
|
+
REFERENCE FROM {{{<<express:multiple_schema4,multiple_schema4>>}}}
|
7
|
+
({{{<<express:multiple_schema4.attribute_entity,attribute_entity>>}}} AS attribute_entity4);
|
8
|
+
|
9
|
+
SCHEMA multiple_schema2;
|
10
|
+
|
11
|
+
SCHEMA multiple_schema3;
|
12
|
+
|
13
|
+
SCHEMA multiple_schema4;
|
@@ -0,0 +1,191 @@
|
|
1
|
+
(*"remark_schema"
|
2
|
+
Any character within the EXPRESS character set may occur between the start and end of
|
3
|
+
an embedded remark including the newline character; therefore, embedded remarks can span
|
4
|
+
several physical lines.
|
5
|
+
*)
|
6
|
+
--"remark_schema" The tail remark is written at the end of a physical line.
|
7
|
+
--"remark_schema" UTF8 test: Příliš žluťoučký kůň úpěl ďábelské ódy.
|
8
|
+
|
9
|
+
--"remark_schema" universal scope - schema before
|
10
|
+
|
11
|
+
SCHEMA remark_schema;
|
12
|
+
|
13
|
+
CONSTANT remark_constant : STRING := 'xxx'; END_CONSTANT;
|
14
|
+
TYPE remark_type = ENUMERATION OF (remark_enumeration_item);
|
15
|
+
WHERE WR1: TRUE;
|
16
|
+
--"WR1" type scope - type where
|
17
|
+
--"wr:WR1" type scope - type where, with prefix
|
18
|
+
--"IP1" type scope - type informal proposition
|
19
|
+
--"ip:IP1" type scope - type informal proposition, with prefix
|
20
|
+
END_TYPE;
|
21
|
+
ENTITY remark_entity;
|
22
|
+
remark_attribute : STRING;
|
23
|
+
DERIVE remark_derived_attribute : STRING := 'xxx';
|
24
|
+
INVERSE remark_inverse_attribute : remark_entity FOR remark_attribute;
|
25
|
+
UNIQUE UR1: remark_attribute;
|
26
|
+
WHERE WR1: TRUE;
|
27
|
+
--"remark_attribute" entity scope - entity attribute
|
28
|
+
--"remark_derived_attribute" entity scope - entity derived attribute
|
29
|
+
--"remark_inverse_attribute" entity scope - entity inverse attribute
|
30
|
+
--"UR1" entity scope - entity unique
|
31
|
+
--"WR1" entity scope - entity where
|
32
|
+
--"wr:WR1" entity scope - entity where, with prefix
|
33
|
+
--"IP1" entity scope - entity informal proposition
|
34
|
+
--"ip:IP1" entity scope - entity informal proposition, with prefix
|
35
|
+
END_ENTITY;
|
36
|
+
SUBTYPE_CONSTRAINT remark_subtype_constraint FOR remark_entity; END_SUBTYPE_CONSTRAINT;
|
37
|
+
FUNCTION remark_function(remark_parameter : STRING) : BOOLEAN;
|
38
|
+
TYPE remark_type = ENUMERATION OF (remark_enumeration_item); END_TYPE;
|
39
|
+
CONSTANT remark_constant : STRING := 'xxx'; END_CONSTANT;
|
40
|
+
LOCAL remark_variable : STRING; END_LOCAL;
|
41
|
+
ALIAS remark_alias FOR remark_variable; ;
|
42
|
+
--"remark_alias" function alias scope - function alias
|
43
|
+
END_ALIAS;
|
44
|
+
REPEAT remark_repeat := 1 TO 9; ;
|
45
|
+
--"remark_repeat" function repeat scope - function repeat
|
46
|
+
END_REPEAT;
|
47
|
+
remark_variable := QUERY(remark_query <* remark_variable | TRUE
|
48
|
+
--"remark_query" function query scope - function query
|
49
|
+
);
|
50
|
+
--"remark_parameter" function scope - function parameter
|
51
|
+
--"remark_type" function scope - function type
|
52
|
+
--"remark_type.remark_enumeration_item" function scope - function enumeration item
|
53
|
+
--"remark_enumeration_item" function scope - function enumeration item, on the same level as the type
|
54
|
+
--"remark_constant" function scope - function constant
|
55
|
+
--"remark_variable" function scope - function variable
|
56
|
+
END_FUNCTION;
|
57
|
+
RULE remark_rule FOR (remark_entity);
|
58
|
+
TYPE remark_type = ENUMERATION OF (remark_enumeration_item); END_TYPE;
|
59
|
+
CONSTANT remark_constant : STRING := 'xxx'; END_CONSTANT;
|
60
|
+
LOCAL remark_variable : STRING; END_LOCAL;
|
61
|
+
ALIAS remark_alias FOR remark_variable; ;
|
62
|
+
--"remark_alias" rule alias scope - rule alias
|
63
|
+
END_ALIAS;
|
64
|
+
REPEAT remark_repeat := 1 TO 9; ;
|
65
|
+
--"remark_repeat" rule repeat scope - rule repeat
|
66
|
+
END_REPEAT;
|
67
|
+
remark_variable := QUERY(remark_query <* remark_variable | TRUE
|
68
|
+
--"remark_query" rule query scope - rule query
|
69
|
+
);
|
70
|
+
WHERE WR1: TRUE;
|
71
|
+
--"remark_type" rule scope - rule type
|
72
|
+
--"remark_type.remark_enumeration_item" rule scope - rule enumeration item
|
73
|
+
--"remark_enumeration_item" rule scope - rule enumeration item, on the same level as the type
|
74
|
+
--"remark_constant" rule scope - rule constant
|
75
|
+
--"remark_variable" rule scope - rule variable
|
76
|
+
--"WR1" rule scope - rule where
|
77
|
+
--"wr:WR1" rule scope - rule where, with prefix
|
78
|
+
--"IP1" rule scope - rule informal proposition
|
79
|
+
--"ip:IP1" rule scope - rule informal proposition, with prefix
|
80
|
+
END_RULE;
|
81
|
+
PROCEDURE remark_procedure(remark_parameter : STRING);
|
82
|
+
TYPE remark_type = ENUMERATION OF (remark_enumeration_item); END_TYPE;
|
83
|
+
CONSTANT remark_constant : STRING := 'xxx'; END_CONSTANT;
|
84
|
+
LOCAL remark_variable : STRING; END_LOCAL;
|
85
|
+
ALIAS remark_alias FOR remark_variable; ;
|
86
|
+
--"remark_alias" procedure alias scope - procedure alias
|
87
|
+
END_ALIAS;
|
88
|
+
REPEAT remark_repeat := 1 TO 9; ;
|
89
|
+
--"remark_repeat" procedure repeat scope - procedure repeat
|
90
|
+
END_REPEAT;
|
91
|
+
remark_variable := QUERY(remark_query <* remark_variable | TRUE
|
92
|
+
--"remark_query" procedure query scope - procedure query
|
93
|
+
);
|
94
|
+
--"remark_parameter" procedure scope - procedure parameter
|
95
|
+
--"remark_type" procedure scope - procedure type
|
96
|
+
--"remark_type.remark_enumeration_item" procedure scope - procedure enumeration item
|
97
|
+
--"remark_enumeration_item" procedure scope - procedure enumeration item, on the same level as the type
|
98
|
+
--"remark_constant" procedure scope - procedure constant
|
99
|
+
--"remark_variable" procedure scope - procedure variable
|
100
|
+
END_PROCEDURE;
|
101
|
+
|
102
|
+
--"remark_constant" schema scope - constant
|
103
|
+
--"remark_type" schema scope - type
|
104
|
+
--"remark_type.WR1" schema scope - type where
|
105
|
+
--"remark_type.wr:WR1" schema scope - type where, with prefix
|
106
|
+
--"remark_type.IP1" schema scope - type informal proposition
|
107
|
+
--"remark_type.ip:IP1" schema scope - type informal proposition, with prefix
|
108
|
+
--"remark_type.remark_enumeration_item" schema scope - enumeration item
|
109
|
+
--"remark_enumeration_item" schema scope - enumeration item, on the same level as the type
|
110
|
+
--"remark_entity" schema scope - entity
|
111
|
+
--"remark_entity.remark_attribute" schema scope - entity attribute
|
112
|
+
--"remark_entity.remark_derived_attribute" schema scope - entity derived attribute
|
113
|
+
--"remark_entity.remark_inverse_attribute" schema scope - entity inverse attribute
|
114
|
+
--"remark_entity.UR1" schema scope - entity unique
|
115
|
+
--"remark_entity.WR1" schema scope - entity where
|
116
|
+
--"remark_entity.wr:WR1" schema scope - entity where, with prefix
|
117
|
+
--"remark_entity.IP1" schema scope - entity informal proposition
|
118
|
+
--"remark_entity.ip:IP1" schema scope - entity informal proposition, with prefix
|
119
|
+
--"remark_subtype_constraint" schema scope - subtype constraint
|
120
|
+
--"remark_function" schema scope - function
|
121
|
+
--"remark_function.remark_parameter" schema scope - function parameter
|
122
|
+
--"remark_function.remark_type" schema scope - function type
|
123
|
+
--"remark_function.remark_type.remark_enumeration_item" schema scope - function enumeration item
|
124
|
+
--"remark_function.remark_enumeration_item" schema scope - function enumeration item, on the same level as the type
|
125
|
+
--"remark_function.remark_constant" schema scope - function constant
|
126
|
+
--"remark_function.remark_variable" schema scope - function variable
|
127
|
+
--"remark_rule" schema scope - rule
|
128
|
+
--"remark_rule.remark_type" schema scope - rule type
|
129
|
+
--"remark_rule.remark_type.remark_enumeration_item" schema scope - rule enumeration item
|
130
|
+
--"remark_rule.remark_enumeration_item" schema scope - rule enumeration item, on the same level as the type
|
131
|
+
--"remark_rule.remark_constant" schema scope - rule constant
|
132
|
+
--"remark_rule.remark_variable" schema scope - rule variable
|
133
|
+
--"remark_rule.WR1" schema scope - rule where
|
134
|
+
--"remark_rule.wr:WR1" schema scope - rule where, with prefix
|
135
|
+
--"remark_rule.IP1" schema scope - rule informal proposition
|
136
|
+
--"remark_rule.ip:IP1" schema scope - rule informal proposition, with prefix
|
137
|
+
--"remark_procedure" schema scope - procedure
|
138
|
+
--"remark_procedure.remark_parameter" schema scope - procedure parameter
|
139
|
+
--"remark_procedure.remark_type" schema scope - procedure type
|
140
|
+
--"remark_procedure.remark_type.remark_enumeration_item" schema scope - procedure enumeration item
|
141
|
+
--"remark_procedure.remark_enumeration_item" schema scope - procedure enumeration item, on the same level as the type
|
142
|
+
--"remark_procedure.remark_constant" schema scope - procedure constant
|
143
|
+
--"remark_procedure.remark_variable" schema scope - procedure variable
|
144
|
+
--"remark_item" schema scope - schema remark item
|
145
|
+
|
146
|
+
END_SCHEMA;
|
147
|
+
|
148
|
+
--"remark_schema" universal scope - schema
|
149
|
+
--"remark_schema.remark_constant" universal scope - constant
|
150
|
+
--"remark_schema.remark_type" universal scope - type
|
151
|
+
--"remark_schema.remark_type.WR1" universal scope - type where
|
152
|
+
--"remark_schema.remark_type.wr:WR1" universal scope - type where, with prefix
|
153
|
+
--"remark_schema.remark_type.IP1" universal scope - type informal proposition
|
154
|
+
--"remark_schema.remark_type.ip:IP1" universal scope - type informal proposition, with prefix
|
155
|
+
--"remark_schema.remark_type.remark_enumeration_item" universal scope - enumeration item
|
156
|
+
--"remark_schema.remark_enumeration_item" universal scope - enumeration item, on the same level as the type
|
157
|
+
--"remark_schema.remark_entity" universal scope - entity
|
158
|
+
--"remark_schema.remark_entity.remark_attribute" universal scope - entity attribute
|
159
|
+
--"remark_schema.remark_entity.remark_derived_attribute" universal scope - entity derived attribute
|
160
|
+
--"remark_schema.remark_entity.remark_inverse_attribute" universal scope - entity inverse attribute
|
161
|
+
--"remark_schema.remark_entity.UR1" universal scope - entity unique
|
162
|
+
--"remark_schema.remark_entity.WR1" universal scope - entity where
|
163
|
+
--"remark_schema.remark_entity.wr:WR1" universal scope - entity where, with prefix
|
164
|
+
--"remark_schema.remark_entity.IP1" universal scope - entity informal proposition
|
165
|
+
--"remark_schema.remark_entity.ip:IP1" universal scope - entity informal proposition, with prefix
|
166
|
+
--"remark_schema.remark_subtype_constraint" universal scope - subtype constraint
|
167
|
+
--"remark_schema.remark_function" universal scope - function
|
168
|
+
--"remark_schema.remark_function.remark_parameter" universal scope - function parameter
|
169
|
+
--"remark_schema.remark_function.remark_type" universal scope - function type
|
170
|
+
--"remark_schema.remark_function.remark_type.remark_enumeration_item" universal scope - function enumeration item
|
171
|
+
--"remark_schema.remark_function.remark_enumeration_item" universal scope - function enumeration item, on the same level as the type
|
172
|
+
--"remark_schema.remark_function.remark_constant" universal scope - function constant
|
173
|
+
--"remark_schema.remark_function.remark_variable" universal scope - function variable
|
174
|
+
--"remark_schema.remark_rule" universal scope - rule
|
175
|
+
--"remark_schema.remark_rule.remark_type" universal scope - rule type
|
176
|
+
--"remark_schema.remark_rule.remark_type.remark_enumeration_item" universal scope - rule enumeration item
|
177
|
+
--"remark_schema.remark_rule.remark_enumeration_item" universal scope - rule enumeration item, on the same level as the type
|
178
|
+
--"remark_schema.remark_rule.remark_constant" universal scope - rule constant
|
179
|
+
--"remark_schema.remark_rule.remark_variable" universal scope - rule variable
|
180
|
+
--"remark_schema.remark_rule.WR1" universal scope - rule where
|
181
|
+
--"remark_schema.remark_rule.wr:WR1" universal scope - rule where, with prefix
|
182
|
+
--"remark_schema.remark_rule.IP1" universal scope - rule informal proposition
|
183
|
+
--"remark_schema.remark_rule.ip:IP1" universal scope - rule informal proposition, with prefix
|
184
|
+
--"remark_schema.remark_procedure" universal scope - procedure
|
185
|
+
--"remark_schema.remark_procedure.remark_parameter" universal scope - procedure parameter
|
186
|
+
--"remark_schema.remark_procedure.remark_type" universal scope - procedure type
|
187
|
+
--"remark_schema.remark_procedure.remark_type.remark_enumeration_item" universal scope - procedure enumeration item
|
188
|
+
--"remark_schema.remark_procedure.remark_enumeration_item" universal scope - procedure enumeration item, on the same level as the type
|
189
|
+
--"remark_schema.remark_procedure.remark_constant" universal scope - procedure constant
|
190
|
+
--"remark_schema.remark_procedure.remark_variable" universal scope - procedure variable
|
191
|
+
--"remark_schema.remark_item" universal scope - schema remark item
|