expressir 1.4.3 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/codeql.yml +2 -14
- data/.github/workflows/rake.yml +6 -364
- data/.github/workflows/release.yml +15 -178
- data/.github/workflows/stress.yml +1 -18
- data/.rubocop.yml +1 -0
- data/.rubocop_todo.yml +21 -0
- data/Gemfile +12 -0
- data/README.adoc +6 -19
- data/Rakefile +6 -7
- data/exe/{format-test → expressir-format-test} +1 -1
- data/expressir.gemspec +23 -32
- data/expressir_wrapped.txt +23068 -0
- data/lib/expressir/cli.rb +1 -1
- data/lib/expressir/express/formatter.rb +661 -661
- data/lib/expressir/express/parser.rb +299 -33
- data/lib/expressir/express/visitor.rb +238 -133
- data/lib/expressir/liquid/cache_drop.rb +20 -0
- data/lib/expressir/liquid/data_type_drop.rb +8 -0
- data/lib/expressir/liquid/data_types/aggregate_drop.rb +21 -0
- data/lib/expressir/liquid/data_types/array_drop.rb +34 -0
- data/lib/expressir/liquid/data_types/bag_drop.rb +26 -0
- data/lib/expressir/liquid/data_types/binary_drop.rb +22 -0
- data/lib/expressir/liquid/data_types/boolean_drop.rb +10 -0
- data/lib/expressir/liquid/data_types/enumeration_drop.rb +30 -0
- data/lib/expressir/liquid/data_types/enumeration_item_drop.rb +17 -0
- data/lib/expressir/liquid/data_types/generic_drop.rb +17 -0
- data/lib/expressir/liquid/data_types/generic_entity_drop.rb +17 -0
- data/lib/expressir/liquid/data_types/integer_drop.rb +10 -0
- data/lib/expressir/liquid/data_types/list_drop.rb +30 -0
- data/lib/expressir/liquid/data_types/logical_drop.rb +10 -0
- data/lib/expressir/liquid/data_types/number_drop.rb +10 -0
- data/lib/expressir/liquid/data_types/real_drop.rb +18 -0
- data/lib/expressir/liquid/data_types/select_drop.rb +34 -0
- data/lib/expressir/liquid/data_types/set_drop.rb +26 -0
- data/lib/expressir/liquid/data_types/string_drop.rb +22 -0
- data/lib/expressir/liquid/declaration_drop.rb +8 -0
- data/lib/expressir/liquid/declarations/attribute_drop.rb +37 -0
- data/lib/expressir/liquid/declarations/constant_drop.rb +25 -0
- data/lib/expressir/liquid/declarations/entity_drop.rb +65 -0
- data/lib/expressir/liquid/declarations/function_drop.rb +93 -0
- data/lib/expressir/liquid/declarations/interface_drop.rb +30 -0
- data/lib/expressir/liquid/declarations/interface_item_drop.rb +22 -0
- data/lib/expressir/liquid/declarations/interfaced_item_drop.rb +34 -0
- data/lib/expressir/liquid/declarations/parameter_drop.rb +25 -0
- data/lib/expressir/liquid/declarations/procedure_drop.rb +89 -0
- data/lib/expressir/liquid/declarations/remark_item_drop.rb +22 -0
- data/lib/expressir/liquid/declarations/rule_drop.rb +105 -0
- data/lib/expressir/liquid/declarations/schema_drop.rb +91 -0
- data/lib/expressir/liquid/declarations/schema_version_drop.rb +26 -0
- data/lib/expressir/liquid/declarations/schema_version_item_drop.rb +22 -0
- data/lib/expressir/liquid/declarations/subtype_constraint_drop.rb +37 -0
- data/lib/expressir/liquid/declarations/type_drop.rb +37 -0
- data/lib/expressir/liquid/declarations/unique_rule_drop.rb +21 -0
- data/lib/expressir/liquid/declarations/variable_drop.rb +25 -0
- data/lib/expressir/liquid/declarations/where_rule_drop.rb +21 -0
- data/lib/expressir/liquid/expression_drop.rb +8 -0
- data/lib/expressir/liquid/expressions/aggregate_initializer_drop.rb +24 -0
- data/lib/expressir/liquid/expressions/aggregate_initializer_item_drop.rb +22 -0
- data/lib/expressir/liquid/expressions/binary_expression_drop.rb +26 -0
- data/lib/expressir/liquid/expressions/entity_constructor_drop.rb +26 -0
- data/lib/expressir/liquid/expressions/function_call_drop.rb +26 -0
- data/lib/expressir/liquid/expressions/interval_drop.rb +34 -0
- data/lib/expressir/liquid/expressions/query_expression_drop.rb +25 -0
- data/lib/expressir/liquid/expressions/unary_expression_drop.rb +22 -0
- data/lib/expressir/liquid/identifier_drop.rb +33 -0
- data/lib/expressir/liquid/literal_drop.rb +8 -0
- data/lib/expressir/liquid/literals/binary_drop.rb +18 -0
- data/lib/expressir/liquid/literals/integer_drop.rb +18 -0
- data/lib/expressir/liquid/literals/logical_drop.rb +18 -0
- data/lib/expressir/liquid/literals/real_drop.rb +18 -0
- data/lib/expressir/liquid/literals/string_drop.rb +22 -0
- data/lib/expressir/liquid/model_element_drop.rb +33 -0
- data/lib/expressir/liquid/reference_drop.rb +8 -0
- data/lib/expressir/liquid/references/attribute_reference_drop.rb +22 -0
- data/lib/expressir/liquid/references/group_reference_drop.rb +22 -0
- data/lib/expressir/liquid/references/index_reference_drop.rb +26 -0
- data/lib/expressir/liquid/references/simple_reference_drop.rb +22 -0
- data/lib/expressir/liquid/repository_drop.rb +22 -0
- data/lib/expressir/liquid/statement_drop.rb +8 -0
- data/lib/expressir/liquid/statements/alias_drop.rb +29 -0
- data/lib/expressir/liquid/statements/assignment_drop.rb +22 -0
- data/lib/expressir/liquid/statements/case_action_drop.rb +26 -0
- data/lib/expressir/liquid/statements/case_drop.rb +30 -0
- data/lib/expressir/liquid/statements/compound_drop.rb +22 -0
- data/lib/expressir/liquid/statements/escape_drop.rb +10 -0
- data/lib/expressir/liquid/statements/if_drop.rb +34 -0
- data/lib/expressir/liquid/statements/null_drop.rb +10 -0
- data/lib/expressir/liquid/statements/procedure_call_drop.rb +26 -0
- data/lib/expressir/liquid/statements/repeat_drop.rb +45 -0
- data/lib/expressir/liquid/statements/return_drop.rb +18 -0
- data/lib/expressir/liquid/statements/skip_drop.rb +10 -0
- data/lib/expressir/liquid/supertype_expression_drop.rb +8 -0
- data/lib/expressir/liquid/supertype_expressions/binary_supertype_expression_drop.rb +26 -0
- data/lib/expressir/liquid/supertype_expressions/oneof_supertype_expression_drop.rb +22 -0
- data/lib/expressir/liquid.rb +18 -0
- data/lib/expressir/model/declarations/interface_item.rb +1 -1
- data/lib/expressir/model/model_element.rb +7 -0
- data/lib/expressir/version.rb +1 -1
- data/lib/expressir.rb +2 -0
- metadata +101 -569
- data/.cross_rubies +0 -28
- data/.gitmodules +0 -6
- data/.yardopts +0 -11
- data/exe/generate-parser +0 -51
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/CMakeLists.txt +0 -191
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2019.vcxproj +0 -652
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2019.vcxproj.filters +0 -948
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2022.vcxproj +0 -652
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2022.vcxproj.filters +0 -948
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp-ios/Info.plist +0 -26
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp-ios/antlrcpp_ios.h +0 -17
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.pbxproj +0 -3040
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4.xcscheme +0 -76
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4_ios.xcscheme +0 -76
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4_static.xcscheme +0 -76
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.noarch.nuspec +0 -23
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.noarch.targets +0 -8
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.shared.nuspec +0 -30
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.shared.props +0 -21
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.shared.targets +0 -44
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.static.nuspec +0 -29
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.static.targets +0 -44
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/antlr4.jpg +0 -0
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/pack.cmd +0 -93
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.cpp +0 -10
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.h +0 -167
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.cpp +0 -10
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.h +0 -121
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.cpp +0 -23
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.h +0 -30
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.cpp +0 -180
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.h +0 -79
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.cpp +0 -61
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.h +0 -59
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.cpp +0 -25
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.h +0 -36
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.cpp +0 -414
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.h +0 -200
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.cpp +0 -11
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.h +0 -37
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.cpp +0 -193
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.h +0 -158
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.cpp +0 -39
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.h +0 -74
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.cpp +0 -78
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.h +0 -79
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.cpp +0 -15
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.h +0 -35
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.cpp +0 -336
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.h +0 -466
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.cpp +0 -84
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.h +0 -80
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.cpp +0 -64
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.h +0 -99
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.cpp +0 -52
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.h +0 -32
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/FlatHashMap.h +0 -57
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/FlatHashSet.h +0 -57
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.cpp +0 -18
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.h +0 -24
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.cpp +0 -12
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.h +0 -218
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.cpp +0 -19
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.h +0 -45
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.cpp +0 -294
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.h +0 -196
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.cpp +0 -60
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.h +0 -46
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.cpp +0 -36
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.h +0 -31
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.cpp +0 -92
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.h +0 -88
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.cpp +0 -46
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.h +0 -42
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Parser.cpp +0 -670
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Parser.h +0 -461
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.cpp +0 -294
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.h +0 -173
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.cpp +0 -138
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.h +0 -147
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.cpp +0 -53
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.h +0 -38
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.cpp +0 -65
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.h +0 -98
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.cpp +0 -157
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.h +0 -160
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.cpp +0 -144
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.h +0 -141
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.cpp +0 -27
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.h +0 -32
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.cpp +0 -54
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.h +0 -155
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Token.cpp +0 -9
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Token.h +0 -92
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenFactory.h +0 -30
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.cpp +0 -9
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.h +0 -85
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.cpp +0 -11
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.h +0 -137
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.cpp +0 -425
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.h +0 -295
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.cpp +0 -208
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.h +0 -117
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.cpp +0 -270
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.h +0 -115
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Version.h +0 -42
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.cpp +0 -64
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.h +0 -177
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.cpp +0 -9
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.h +0 -23
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-common.h +0 -101
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-runtime.h +0 -168
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.cpp +0 -159
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.h +0 -133
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.cpp +0 -106
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.h +0 -157
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.cpp +0 -233
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.h +0 -157
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.cpp +0 -39
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.h +0 -48
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.cpp +0 -628
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.h +0 -32
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.cpp +0 -33
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.h +0 -71
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.cpp +0 -56
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.h +0 -139
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNStateType.cpp +0 -33
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNStateType.h +0 -36
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNType.h +0 -20
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.cpp +0 -29
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.h +0 -35
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.cpp +0 -16
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.h +0 -68
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.cpp +0 -129
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.h +0 -51
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.cpp +0 -27
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.h +0 -33
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicBlockStartState.h +0 -24
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicState.h +0 -23
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockEndState.h +0 -26
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockStartState.h +0 -30
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.cpp +0 -14
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.h +0 -47
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.cpp +0 -14
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.h +0 -70
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.cpp +0 -25
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.h +0 -227
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.cpp +0 -12
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.h +0 -34
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.cpp +0 -31
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.h +0 -42
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.cpp +0 -15
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.h +0 -43
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/HashUtils.h +0 -18
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.cpp +0 -189
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.h +0 -76
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.cpp +0 -67
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.h +0 -44
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.cpp +0 -621
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.h +0 -199
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.cpp +0 -15
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.h +0 -100
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.cpp +0 -108
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.h +0 -128
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionType.h +0 -57
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.cpp +0 -43
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.h +0 -59
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.cpp +0 -45
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.h +0 -75
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.cpp +0 -50
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.h +0 -76
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.cpp +0 -43
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.h +0 -57
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.cpp +0 -36
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.h +0 -53
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.cpp +0 -36
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.h +0 -53
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.cpp +0 -43
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.h +0 -57
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.cpp +0 -36
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.h +0 -51
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.cpp +0 -43
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.h +0 -51
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.cpp +0 -16
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.h +0 -42
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LoopEndState.h +0 -26
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.cpp +0 -22
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.h +0 -27
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.cpp +0 -16
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.h +0 -25
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.cpp +0 -102
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.h +0 -102
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.cpp +0 -1413
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.h +0 -911
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulatorOptions.h +0 -50
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusBlockStartState.h +0 -29
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusLoopbackState.h +0 -25
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.cpp +0 -23
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.h +0 -35
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.cpp +0 -17
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.h +0 -62
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.cpp +0 -24
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.h +0 -50
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.cpp +0 -601
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.h +0 -225
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextCache.cpp +0 -56
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextCache.h +0 -63
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextMergeCache.cpp +0 -167
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextMergeCache.h +0 -101
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextMergeCacheOptions.h +0 -71
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextType.h +0 -21
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.cpp +0 -202
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.h +0 -436
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.cpp +0 -179
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.h +0 -60
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.cpp +0 -26
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.h +0 -31
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStartState.h +0 -26
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStopState.h +0 -27
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.cpp +0 -33
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.h +0 -42
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.cpp +0 -418
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.h +0 -237
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContextType.h +0 -23
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SerializedATNView.h +0 -101
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.cpp +0 -28
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.h +0 -38
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.cpp +0 -79
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.h +0 -43
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarBlockStartState.h +0 -24
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopEntryState.h +0 -37
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.cpp +0 -19
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.h +0 -25
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TokensStartState.h +0 -24
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.cpp +0 -36
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.h +0 -65
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TransitionType.cpp +0 -27
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TransitionType.h +0 -33
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.cpp +0 -21
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.h +0 -27
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.cpp +0 -115
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.h +0 -96
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.cpp +0 -60
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.h +0 -32
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.cpp +0 -59
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.h +0 -154
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.cpp +0 -17
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.h +0 -22
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/internal/Synchronization.cpp +0 -100
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/internal/Synchronization.h +0 -154
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.cpp +0 -124
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.h +0 -33
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.cpp +0 -61
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.h +0 -84
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.cpp +0 -508
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.h +0 -190
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.cpp +0 -120
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.h +0 -102
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.cpp +0 -4
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.h +0 -21
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.cpp +0 -8
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.h +0 -16
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.cpp +0 -43
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.h +0 -149
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/BitSet.h +0 -76
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.cpp +0 -207
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.h +0 -65
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Casts.h +0 -34
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Declarations.h +0 -161
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.cpp +0 -38
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.h +0 -16
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Unicode.h +0 -28
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Utf8.cpp +0 -242
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Utf8.h +0 -54
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/AbstractParseTreeVisitor.h +0 -129
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNode.h +0 -24
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.cpp +0 -54
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.h +0 -43
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.cpp +0 -66
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.h +0 -53
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.cpp +0 -12
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.h +0 -111
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.cpp +0 -9
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.h +0 -39
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeProperty.h +0 -50
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeType.h +0 -22
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.cpp +0 -9
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.h +0 -57
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.cpp +0 -48
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.h +0 -55
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNode.h +0 -40
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.cpp +0 -54
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.h +0 -32
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.cpp +0 -241
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.h +0 -78
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.cpp +0 -9
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.h +0 -44
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.cpp +0 -69
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.h +0 -132
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.cpp +0 -64
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.h +0 -105
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.cpp +0 -370
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.h +0 -185
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.cpp +0 -77
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.h +0 -117
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.cpp +0 -39
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.h +0 -86
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.cpp +0 -28
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.h +0 -51
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.cpp +0 -36
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.h +0 -80
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.cpp +0 -154
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.h +0 -86
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.cpp +0 -31
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.h +0 -40
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp +0 -180
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.g4 +0 -64
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.h +0 -53
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.tokens +0 -12
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.cpp +0 -13
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.h +0 -22
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.cpp +0 -20
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.h +0 -27
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.cpp +0 -30
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.h +0 -26
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.cpp +0 -20
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.h +0 -25
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.cpp +0 -33
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.h +0 -26
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.cpp +0 -23
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.h +0 -23
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.cpp +0 -24
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.h +0 -23
- data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/tests/Utf8Test.cpp +0 -110
- data/ext/express_parser/antlrgen/Express.interp +0 -532
- data/ext/express_parser/antlrgen/Express.tokens +0 -190
- data/ext/express_parser/antlrgen/ExpressBaseListener.cpp +0 -7
- data/ext/express_parser/antlrgen/ExpressBaseListener.h +0 -623
- data/ext/express_parser/antlrgen/ExpressBaseVisitor.cpp +0 -7
- data/ext/express_parser/antlrgen/ExpressBaseVisitor.h +0 -816
- data/ext/express_parser/antlrgen/ExpressLexer.cpp +0 -685
- data/ext/express_parser/antlrgen/ExpressLexer.h +0 -78
- data/ext/express_parser/antlrgen/ExpressLexer.interp +0 -534
- data/ext/express_parser/antlrgen/ExpressLexer.tokens +0 -190
- data/ext/express_parser/antlrgen/ExpressListener.cpp +0 -7
- data/ext/express_parser/antlrgen/ExpressListener.h +0 -616
- data/ext/express_parser/antlrgen/ExpressParser.cpp +0 -17591
- data/ext/express_parser/antlrgen/ExpressParser.h +0 -3692
- data/ext/express_parser/antlrgen/ExpressVisitor.cpp +0 -7
- data/ext/express_parser/antlrgen/ExpressVisitor.h +0 -422
- data/ext/express_parser/express_parser.cpp +0 -19405
- data/ext/express_parser/extconf.rb +0 -63
- data/rakelib/antlr4-native.rake +0 -173
- data/rakelib/cross-ruby.rake +0 -403
- data/spec/acceptance/version_spec.rb +0 -30
- data/spec/expressir/express/cache_spec.rb +0 -89
- data/spec/expressir/express/formatter_spec.rb +0 -171
- data/spec/expressir/express/parser_spec.rb +0 -141
- data/spec/expressir/model/model_element_spec.rb +0 -343
- data/spec/spec_helper.rb +0 -24
- data/spec/support/console_helper.rb +0 -29
- data/spec/syntax/multiple.exp +0 -23
- data/spec/syntax/multiple.yaml +0 -198
- data/spec/syntax/multiple_formatted.exp +0 -71
- data/spec/syntax/multiple_hyperlink_formatted.exp +0 -71
- data/spec/syntax/multiple_schema_head_hyperlink_formatted.exp +0 -13
- data/spec/syntax/remark.exp +0 -193
- data/spec/syntax/remark.yaml +0 -471
- data/spec/syntax/remark_formatted.exp +0 -228
- data/spec/syntax/single.exp +0 -4
- data/spec/syntax/single.yaml +0 -18
- data/spec/syntax/single_formatted.exp +0 -10
- data/spec/syntax/single_formatted.yaml +0 -36
- data/spec/syntax/syntax.exp +0 -333
- data/spec/syntax/syntax.yaml +0 -3509
- data/spec/syntax/syntax_formatted.exp +0 -902
- data/spec/syntax/syntax_hyperlink_formatted.exp +0 -902
- data/spec/syntax/syntax_schema_head_formatted.exp +0 -18
- /data/exe/{format → expressir-format} +0 -0
data/spec/syntax/syntax.yaml
DELETED
@@ -1,3509 +0,0 @@
|
|
1
|
-
---
|
2
|
-
_class: Expressir::Model::Repository
|
3
|
-
schemas:
|
4
|
-
- _class: Expressir::Model::Declarations::Schema
|
5
|
-
file: spec/syntax/syntax.exp
|
6
|
-
id: syntax_schema
|
7
|
-
version:
|
8
|
-
_class: Expressir::Model::Declarations::SchemaVersion
|
9
|
-
value: "{ISO standard 10303 part(41) object(1) version(8)}"
|
10
|
-
items:
|
11
|
-
- _class: Expressir::Model::Declarations::SchemaVersionItem
|
12
|
-
name: ISO
|
13
|
-
- _class: Expressir::Model::Declarations::SchemaVersionItem
|
14
|
-
name: standard
|
15
|
-
- _class: Expressir::Model::Declarations::SchemaVersionItem
|
16
|
-
value: '10303'
|
17
|
-
- _class: Expressir::Model::Declarations::SchemaVersionItem
|
18
|
-
name: part
|
19
|
-
value: '41'
|
20
|
-
- _class: Expressir::Model::Declarations::SchemaVersionItem
|
21
|
-
name: object
|
22
|
-
value: '1'
|
23
|
-
- _class: Expressir::Model::Declarations::SchemaVersionItem
|
24
|
-
name: version
|
25
|
-
value: '8'
|
26
|
-
interfaces:
|
27
|
-
- _class: Expressir::Model::Declarations::Interface
|
28
|
-
kind: :USE
|
29
|
-
schema:
|
30
|
-
_class: Expressir::Model::References::SimpleReference
|
31
|
-
id: contract_schema
|
32
|
-
- _class: Expressir::Model::Declarations::Interface
|
33
|
-
kind: :USE
|
34
|
-
schema:
|
35
|
-
_class: Expressir::Model::References::SimpleReference
|
36
|
-
id: contract_schema
|
37
|
-
items:
|
38
|
-
- _class: Expressir::Model::Declarations::InterfaceItem
|
39
|
-
ref:
|
40
|
-
_class: Expressir::Model::References::SimpleReference
|
41
|
-
id: contract
|
42
|
-
- _class: Expressir::Model::Declarations::Interface
|
43
|
-
kind: :USE
|
44
|
-
schema:
|
45
|
-
_class: Expressir::Model::References::SimpleReference
|
46
|
-
id: contract_schema
|
47
|
-
items:
|
48
|
-
- _class: Expressir::Model::Declarations::InterfaceItem
|
49
|
-
ref:
|
50
|
-
_class: Expressir::Model::References::SimpleReference
|
51
|
-
id: contract
|
52
|
-
- _class: Expressir::Model::Declarations::InterfaceItem
|
53
|
-
ref:
|
54
|
-
_class: Expressir::Model::References::SimpleReference
|
55
|
-
id: contract2
|
56
|
-
- _class: Expressir::Model::Declarations::Interface
|
57
|
-
kind: :USE
|
58
|
-
schema:
|
59
|
-
_class: Expressir::Model::References::SimpleReference
|
60
|
-
id: contract_schema
|
61
|
-
items:
|
62
|
-
- _class: Expressir::Model::Declarations::InterfaceItem
|
63
|
-
ref:
|
64
|
-
_class: Expressir::Model::References::SimpleReference
|
65
|
-
id: contract
|
66
|
-
id: contract2
|
67
|
-
- _class: Expressir::Model::Declarations::Interface
|
68
|
-
kind: :REFERENCE
|
69
|
-
schema:
|
70
|
-
_class: Expressir::Model::References::SimpleReference
|
71
|
-
id: contract_schema
|
72
|
-
- _class: Expressir::Model::Declarations::Interface
|
73
|
-
kind: :REFERENCE
|
74
|
-
schema:
|
75
|
-
_class: Expressir::Model::References::SimpleReference
|
76
|
-
id: contract_schema
|
77
|
-
items:
|
78
|
-
- _class: Expressir::Model::Declarations::InterfaceItem
|
79
|
-
ref:
|
80
|
-
_class: Expressir::Model::References::SimpleReference
|
81
|
-
id: contract
|
82
|
-
- _class: Expressir::Model::Declarations::Interface
|
83
|
-
kind: :REFERENCE
|
84
|
-
schema:
|
85
|
-
_class: Expressir::Model::References::SimpleReference
|
86
|
-
id: contract_schema
|
87
|
-
items:
|
88
|
-
- _class: Expressir::Model::Declarations::InterfaceItem
|
89
|
-
ref:
|
90
|
-
_class: Expressir::Model::References::SimpleReference
|
91
|
-
id: contract
|
92
|
-
- _class: Expressir::Model::Declarations::InterfaceItem
|
93
|
-
ref:
|
94
|
-
_class: Expressir::Model::References::SimpleReference
|
95
|
-
id: contract2
|
96
|
-
- _class: Expressir::Model::Declarations::Interface
|
97
|
-
kind: :REFERENCE
|
98
|
-
schema:
|
99
|
-
_class: Expressir::Model::References::SimpleReference
|
100
|
-
id: contract_schema
|
101
|
-
items:
|
102
|
-
- _class: Expressir::Model::Declarations::InterfaceItem
|
103
|
-
ref:
|
104
|
-
_class: Expressir::Model::References::SimpleReference
|
105
|
-
id: contract
|
106
|
-
id: contract2
|
107
|
-
constants:
|
108
|
-
- _class: Expressir::Model::Declarations::Constant
|
109
|
-
id: empty_constant
|
110
|
-
type:
|
111
|
-
_class: Expressir::Model::DataTypes::Boolean
|
112
|
-
expression:
|
113
|
-
_class: Expressir::Model::Literals::Logical
|
114
|
-
value: :TRUE
|
115
|
-
types:
|
116
|
-
- _class: Expressir::Model::Declarations::Type
|
117
|
-
id: empty_type
|
118
|
-
underlying_type:
|
119
|
-
_class: Expressir::Model::DataTypes::Boolean
|
120
|
-
- _class: Expressir::Model::Declarations::Type
|
121
|
-
id: where_type
|
122
|
-
underlying_type:
|
123
|
-
_class: Expressir::Model::DataTypes::Boolean
|
124
|
-
where_rules:
|
125
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
126
|
-
expression:
|
127
|
-
_class: Expressir::Model::Literals::Logical
|
128
|
-
value: :TRUE
|
129
|
-
- _class: Expressir::Model::Declarations::Type
|
130
|
-
id: where_label_type
|
131
|
-
underlying_type:
|
132
|
-
_class: Expressir::Model::DataTypes::Boolean
|
133
|
-
where_rules:
|
134
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
135
|
-
id: WR1
|
136
|
-
expression:
|
137
|
-
_class: Expressir::Model::Literals::Logical
|
138
|
-
value: :TRUE
|
139
|
-
entities:
|
140
|
-
- _class: Expressir::Model::Declarations::Entity
|
141
|
-
id: empty_entity
|
142
|
-
- _class: Expressir::Model::Declarations::Entity
|
143
|
-
id: abstract_entity
|
144
|
-
abstract: true
|
145
|
-
- _class: Expressir::Model::Declarations::Entity
|
146
|
-
id: abstract_supertype_entity
|
147
|
-
abstract: true
|
148
|
-
- _class: Expressir::Model::Declarations::Entity
|
149
|
-
id: abstract_supertype_constraint_entity
|
150
|
-
abstract: true
|
151
|
-
supertype_expression:
|
152
|
-
_class: Expressir::Model::References::SimpleReference
|
153
|
-
id: empty_entity
|
154
|
-
base_path: syntax_schema.empty_entity
|
155
|
-
- _class: Expressir::Model::Declarations::Entity
|
156
|
-
id: supertype_constraint_entity
|
157
|
-
supertype_expression:
|
158
|
-
_class: Expressir::Model::References::SimpleReference
|
159
|
-
id: empty_entity
|
160
|
-
base_path: syntax_schema.empty_entity
|
161
|
-
- _class: Expressir::Model::Declarations::Entity
|
162
|
-
id: subtype_entity
|
163
|
-
subtype_of:
|
164
|
-
- _class: Expressir::Model::References::SimpleReference
|
165
|
-
id: empty_entity
|
166
|
-
base_path: syntax_schema.empty_entity
|
167
|
-
- _class: Expressir::Model::Declarations::Entity
|
168
|
-
id: supertype_constraint_subtype_entity
|
169
|
-
supertype_expression:
|
170
|
-
_class: Expressir::Model::References::SimpleReference
|
171
|
-
id: empty_entity
|
172
|
-
base_path: syntax_schema.empty_entity
|
173
|
-
subtype_of:
|
174
|
-
- _class: Expressir::Model::References::SimpleReference
|
175
|
-
id: empty_entity
|
176
|
-
base_path: syntax_schema.empty_entity
|
177
|
-
- _class: Expressir::Model::Declarations::Entity
|
178
|
-
id: attribute_entity
|
179
|
-
attributes:
|
180
|
-
- _class: Expressir::Model::Declarations::Attribute
|
181
|
-
id: test
|
182
|
-
kind: :EXPLICIT
|
183
|
-
type:
|
184
|
-
_class: Expressir::Model::DataTypes::Boolean
|
185
|
-
- _class: Expressir::Model::Declarations::Entity
|
186
|
-
id: attribute_optional_entity
|
187
|
-
attributes:
|
188
|
-
- _class: Expressir::Model::Declarations::Attribute
|
189
|
-
id: test
|
190
|
-
kind: :EXPLICIT
|
191
|
-
optional: true
|
192
|
-
type:
|
193
|
-
_class: Expressir::Model::DataTypes::Boolean
|
194
|
-
- _class: Expressir::Model::Declarations::Entity
|
195
|
-
id: attribute_multiple_entity
|
196
|
-
attributes:
|
197
|
-
- _class: Expressir::Model::Declarations::Attribute
|
198
|
-
id: test
|
199
|
-
kind: :EXPLICIT
|
200
|
-
type:
|
201
|
-
_class: Expressir::Model::DataTypes::Boolean
|
202
|
-
- _class: Expressir::Model::Declarations::Attribute
|
203
|
-
id: test2
|
204
|
-
kind: :EXPLICIT
|
205
|
-
type:
|
206
|
-
_class: Expressir::Model::DataTypes::Boolean
|
207
|
-
- _class: Expressir::Model::Declarations::Entity
|
208
|
-
id: attribute_multiple_shorthand_entity
|
209
|
-
attributes:
|
210
|
-
- _class: Expressir::Model::Declarations::Attribute
|
211
|
-
id: test
|
212
|
-
kind: :EXPLICIT
|
213
|
-
type:
|
214
|
-
_class: Expressir::Model::DataTypes::Boolean
|
215
|
-
- _class: Expressir::Model::Declarations::Attribute
|
216
|
-
id: test2
|
217
|
-
kind: :EXPLICIT
|
218
|
-
type:
|
219
|
-
_class: Expressir::Model::DataTypes::Boolean
|
220
|
-
- _class: Expressir::Model::Declarations::Entity
|
221
|
-
id: attribute_redeclared_entity
|
222
|
-
subtype_of:
|
223
|
-
- _class: Expressir::Model::References::SimpleReference
|
224
|
-
id: attribute_entity
|
225
|
-
base_path: syntax_schema.attribute_entity
|
226
|
-
attributes:
|
227
|
-
- _class: Expressir::Model::Declarations::Attribute
|
228
|
-
kind: :EXPLICIT
|
229
|
-
supertype_attribute:
|
230
|
-
_class: Expressir::Model::References::AttributeReference
|
231
|
-
ref:
|
232
|
-
_class: Expressir::Model::References::GroupReference
|
233
|
-
ref:
|
234
|
-
_class: Expressir::Model::References::SimpleReference
|
235
|
-
id: SELF
|
236
|
-
entity:
|
237
|
-
_class: Expressir::Model::References::SimpleReference
|
238
|
-
id: attribute_entity
|
239
|
-
base_path: syntax_schema.attribute_entity
|
240
|
-
attribute:
|
241
|
-
_class: Expressir::Model::References::SimpleReference
|
242
|
-
id: test
|
243
|
-
type:
|
244
|
-
_class: Expressir::Model::DataTypes::Boolean
|
245
|
-
- _class: Expressir::Model::Declarations::Entity
|
246
|
-
id: attribute_redeclared_renamed_entity
|
247
|
-
subtype_of:
|
248
|
-
- _class: Expressir::Model::References::SimpleReference
|
249
|
-
id: attribute_entity
|
250
|
-
base_path: syntax_schema.attribute_entity
|
251
|
-
attributes:
|
252
|
-
- _class: Expressir::Model::Declarations::Attribute
|
253
|
-
id: test2
|
254
|
-
kind: :EXPLICIT
|
255
|
-
supertype_attribute:
|
256
|
-
_class: Expressir::Model::References::AttributeReference
|
257
|
-
ref:
|
258
|
-
_class: Expressir::Model::References::GroupReference
|
259
|
-
ref:
|
260
|
-
_class: Expressir::Model::References::SimpleReference
|
261
|
-
id: SELF
|
262
|
-
entity:
|
263
|
-
_class: Expressir::Model::References::SimpleReference
|
264
|
-
id: attribute_entity
|
265
|
-
base_path: syntax_schema.attribute_entity
|
266
|
-
attribute:
|
267
|
-
_class: Expressir::Model::References::SimpleReference
|
268
|
-
id: test
|
269
|
-
type:
|
270
|
-
_class: Expressir::Model::DataTypes::Boolean
|
271
|
-
- _class: Expressir::Model::Declarations::Entity
|
272
|
-
id: derived_attribute_entity
|
273
|
-
attributes:
|
274
|
-
- _class: Expressir::Model::Declarations::Attribute
|
275
|
-
id: test
|
276
|
-
kind: :DERIVED
|
277
|
-
type:
|
278
|
-
_class: Expressir::Model::DataTypes::Boolean
|
279
|
-
expression:
|
280
|
-
_class: Expressir::Model::Literals::Logical
|
281
|
-
value: :TRUE
|
282
|
-
- _class: Expressir::Model::Declarations::Entity
|
283
|
-
id: derived_attribute_redeclared_entity
|
284
|
-
subtype_of:
|
285
|
-
- _class: Expressir::Model::References::SimpleReference
|
286
|
-
id: attribute_entity
|
287
|
-
base_path: syntax_schema.attribute_entity
|
288
|
-
attributes:
|
289
|
-
- _class: Expressir::Model::Declarations::Attribute
|
290
|
-
kind: :DERIVED
|
291
|
-
supertype_attribute:
|
292
|
-
_class: Expressir::Model::References::AttributeReference
|
293
|
-
ref:
|
294
|
-
_class: Expressir::Model::References::GroupReference
|
295
|
-
ref:
|
296
|
-
_class: Expressir::Model::References::SimpleReference
|
297
|
-
id: SELF
|
298
|
-
entity:
|
299
|
-
_class: Expressir::Model::References::SimpleReference
|
300
|
-
id: attribute_entity
|
301
|
-
base_path: syntax_schema.attribute_entity
|
302
|
-
attribute:
|
303
|
-
_class: Expressir::Model::References::SimpleReference
|
304
|
-
id: test
|
305
|
-
type:
|
306
|
-
_class: Expressir::Model::DataTypes::Boolean
|
307
|
-
expression:
|
308
|
-
_class: Expressir::Model::Literals::Logical
|
309
|
-
value: :TRUE
|
310
|
-
- _class: Expressir::Model::Declarations::Entity
|
311
|
-
id: derived_attribute_redeclared_renamed_entity
|
312
|
-
subtype_of:
|
313
|
-
- _class: Expressir::Model::References::SimpleReference
|
314
|
-
id: attribute_entity
|
315
|
-
base_path: syntax_schema.attribute_entity
|
316
|
-
attributes:
|
317
|
-
- _class: Expressir::Model::Declarations::Attribute
|
318
|
-
id: test2
|
319
|
-
kind: :DERIVED
|
320
|
-
supertype_attribute:
|
321
|
-
_class: Expressir::Model::References::AttributeReference
|
322
|
-
ref:
|
323
|
-
_class: Expressir::Model::References::GroupReference
|
324
|
-
ref:
|
325
|
-
_class: Expressir::Model::References::SimpleReference
|
326
|
-
id: SELF
|
327
|
-
entity:
|
328
|
-
_class: Expressir::Model::References::SimpleReference
|
329
|
-
id: attribute_entity
|
330
|
-
base_path: syntax_schema.attribute_entity
|
331
|
-
attribute:
|
332
|
-
_class: Expressir::Model::References::SimpleReference
|
333
|
-
id: test
|
334
|
-
type:
|
335
|
-
_class: Expressir::Model::DataTypes::Boolean
|
336
|
-
expression:
|
337
|
-
_class: Expressir::Model::Literals::Logical
|
338
|
-
value: :TRUE
|
339
|
-
- _class: Expressir::Model::Declarations::Entity
|
340
|
-
id: inverse_attribute_entity
|
341
|
-
attributes:
|
342
|
-
- _class: Expressir::Model::Declarations::Attribute
|
343
|
-
id: test
|
344
|
-
kind: :INVERSE
|
345
|
-
type:
|
346
|
-
_class: Expressir::Model::References::SimpleReference
|
347
|
-
id: attribute_entity
|
348
|
-
base_path: syntax_schema.attribute_entity
|
349
|
-
expression:
|
350
|
-
_class: Expressir::Model::References::SimpleReference
|
351
|
-
id: test
|
352
|
-
base_path: syntax_schema.inverse_attribute_entity.test
|
353
|
-
- _class: Expressir::Model::Declarations::Entity
|
354
|
-
id: inverse_attribute_entity_entity
|
355
|
-
attributes:
|
356
|
-
- _class: Expressir::Model::Declarations::Attribute
|
357
|
-
id: test
|
358
|
-
kind: :INVERSE
|
359
|
-
type:
|
360
|
-
_class: Expressir::Model::References::SimpleReference
|
361
|
-
id: attribute_entity
|
362
|
-
base_path: syntax_schema.attribute_entity
|
363
|
-
expression:
|
364
|
-
_class: Expressir::Model::References::AttributeReference
|
365
|
-
ref:
|
366
|
-
_class: Expressir::Model::References::SimpleReference
|
367
|
-
id: attribute_entity
|
368
|
-
attribute:
|
369
|
-
_class: Expressir::Model::References::SimpleReference
|
370
|
-
id: test
|
371
|
-
- _class: Expressir::Model::Declarations::Entity
|
372
|
-
id: inverse_attribute_set_entity
|
373
|
-
attributes:
|
374
|
-
- _class: Expressir::Model::Declarations::Attribute
|
375
|
-
id: test
|
376
|
-
kind: :INVERSE
|
377
|
-
type:
|
378
|
-
_class: Expressir::Model::DataTypes::Set
|
379
|
-
base_type:
|
380
|
-
_class: Expressir::Model::References::SimpleReference
|
381
|
-
id: attribute_entity
|
382
|
-
base_path: syntax_schema.attribute_entity
|
383
|
-
expression:
|
384
|
-
_class: Expressir::Model::References::SimpleReference
|
385
|
-
id: test
|
386
|
-
base_path: syntax_schema.inverse_attribute_set_entity.test
|
387
|
-
- _class: Expressir::Model::Declarations::Entity
|
388
|
-
id: inverse_attribute_set_bound_entity
|
389
|
-
attributes:
|
390
|
-
- _class: Expressir::Model::Declarations::Attribute
|
391
|
-
id: test
|
392
|
-
kind: :INVERSE
|
393
|
-
type:
|
394
|
-
_class: Expressir::Model::DataTypes::Set
|
395
|
-
bound1:
|
396
|
-
_class: Expressir::Model::Literals::Integer
|
397
|
-
value: '1'
|
398
|
-
bound2:
|
399
|
-
_class: Expressir::Model::Literals::Integer
|
400
|
-
value: '9'
|
401
|
-
base_type:
|
402
|
-
_class: Expressir::Model::References::SimpleReference
|
403
|
-
id: attribute_entity
|
404
|
-
base_path: syntax_schema.attribute_entity
|
405
|
-
expression:
|
406
|
-
_class: Expressir::Model::References::SimpleReference
|
407
|
-
id: test
|
408
|
-
base_path: syntax_schema.inverse_attribute_set_bound_entity.test
|
409
|
-
- _class: Expressir::Model::Declarations::Entity
|
410
|
-
id: inverse_attribute_bag_entity
|
411
|
-
attributes:
|
412
|
-
- _class: Expressir::Model::Declarations::Attribute
|
413
|
-
id: test
|
414
|
-
kind: :INVERSE
|
415
|
-
type:
|
416
|
-
_class: Expressir::Model::DataTypes::Bag
|
417
|
-
base_type:
|
418
|
-
_class: Expressir::Model::References::SimpleReference
|
419
|
-
id: attribute_entity
|
420
|
-
base_path: syntax_schema.attribute_entity
|
421
|
-
expression:
|
422
|
-
_class: Expressir::Model::References::SimpleReference
|
423
|
-
id: test
|
424
|
-
base_path: syntax_schema.inverse_attribute_bag_entity.test
|
425
|
-
- _class: Expressir::Model::Declarations::Entity
|
426
|
-
id: inverse_attribute_bag_bound_entity
|
427
|
-
attributes:
|
428
|
-
- _class: Expressir::Model::Declarations::Attribute
|
429
|
-
id: test
|
430
|
-
kind: :INVERSE
|
431
|
-
type:
|
432
|
-
_class: Expressir::Model::DataTypes::Bag
|
433
|
-
bound1:
|
434
|
-
_class: Expressir::Model::Literals::Integer
|
435
|
-
value: '1'
|
436
|
-
bound2:
|
437
|
-
_class: Expressir::Model::Literals::Integer
|
438
|
-
value: '9'
|
439
|
-
base_type:
|
440
|
-
_class: Expressir::Model::References::SimpleReference
|
441
|
-
id: attribute_entity
|
442
|
-
base_path: syntax_schema.attribute_entity
|
443
|
-
expression:
|
444
|
-
_class: Expressir::Model::References::SimpleReference
|
445
|
-
id: test
|
446
|
-
base_path: syntax_schema.inverse_attribute_bag_bound_entity.test
|
447
|
-
- _class: Expressir::Model::Declarations::Entity
|
448
|
-
id: inverse_attribute_redeclared_entity
|
449
|
-
subtype_of:
|
450
|
-
- _class: Expressir::Model::References::SimpleReference
|
451
|
-
id: attribute_entity
|
452
|
-
base_path: syntax_schema.attribute_entity
|
453
|
-
attributes:
|
454
|
-
- _class: Expressir::Model::Declarations::Attribute
|
455
|
-
kind: :INVERSE
|
456
|
-
supertype_attribute:
|
457
|
-
_class: Expressir::Model::References::AttributeReference
|
458
|
-
ref:
|
459
|
-
_class: Expressir::Model::References::GroupReference
|
460
|
-
ref:
|
461
|
-
_class: Expressir::Model::References::SimpleReference
|
462
|
-
id: SELF
|
463
|
-
entity:
|
464
|
-
_class: Expressir::Model::References::SimpleReference
|
465
|
-
id: attribute_entity
|
466
|
-
base_path: syntax_schema.attribute_entity
|
467
|
-
attribute:
|
468
|
-
_class: Expressir::Model::References::SimpleReference
|
469
|
-
id: test
|
470
|
-
type:
|
471
|
-
_class: Expressir::Model::References::SimpleReference
|
472
|
-
id: attribute_entity
|
473
|
-
base_path: syntax_schema.attribute_entity
|
474
|
-
expression:
|
475
|
-
_class: Expressir::Model::References::SimpleReference
|
476
|
-
id: test
|
477
|
-
- _class: Expressir::Model::Declarations::Entity
|
478
|
-
id: inverse_attribute_redeclared_renamed_entity
|
479
|
-
subtype_of:
|
480
|
-
- _class: Expressir::Model::References::SimpleReference
|
481
|
-
id: attribute_entity
|
482
|
-
base_path: syntax_schema.attribute_entity
|
483
|
-
attributes:
|
484
|
-
- _class: Expressir::Model::Declarations::Attribute
|
485
|
-
id: test2
|
486
|
-
kind: :INVERSE
|
487
|
-
supertype_attribute:
|
488
|
-
_class: Expressir::Model::References::AttributeReference
|
489
|
-
ref:
|
490
|
-
_class: Expressir::Model::References::GroupReference
|
491
|
-
ref:
|
492
|
-
_class: Expressir::Model::References::SimpleReference
|
493
|
-
id: SELF
|
494
|
-
entity:
|
495
|
-
_class: Expressir::Model::References::SimpleReference
|
496
|
-
id: attribute_entity
|
497
|
-
base_path: syntax_schema.attribute_entity
|
498
|
-
attribute:
|
499
|
-
_class: Expressir::Model::References::SimpleReference
|
500
|
-
id: test
|
501
|
-
type:
|
502
|
-
_class: Expressir::Model::References::SimpleReference
|
503
|
-
id: attribute_entity
|
504
|
-
base_path: syntax_schema.attribute_entity
|
505
|
-
expression:
|
506
|
-
_class: Expressir::Model::References::SimpleReference
|
507
|
-
id: test
|
508
|
-
- _class: Expressir::Model::Declarations::Entity
|
509
|
-
id: unique_entity
|
510
|
-
attributes:
|
511
|
-
- _class: Expressir::Model::Declarations::Attribute
|
512
|
-
id: test
|
513
|
-
kind: :EXPLICIT
|
514
|
-
type:
|
515
|
-
_class: Expressir::Model::DataTypes::Boolean
|
516
|
-
unique_rules:
|
517
|
-
- _class: Expressir::Model::Declarations::UniqueRule
|
518
|
-
attributes:
|
519
|
-
- _class: Expressir::Model::References::SimpleReference
|
520
|
-
id: test
|
521
|
-
base_path: syntax_schema.unique_entity.test
|
522
|
-
- _class: Expressir::Model::Declarations::Entity
|
523
|
-
id: unique_label_entity
|
524
|
-
attributes:
|
525
|
-
- _class: Expressir::Model::Declarations::Attribute
|
526
|
-
id: test
|
527
|
-
kind: :EXPLICIT
|
528
|
-
type:
|
529
|
-
_class: Expressir::Model::DataTypes::Boolean
|
530
|
-
unique_rules:
|
531
|
-
- _class: Expressir::Model::Declarations::UniqueRule
|
532
|
-
id: UR1
|
533
|
-
attributes:
|
534
|
-
- _class: Expressir::Model::References::SimpleReference
|
535
|
-
id: test
|
536
|
-
base_path: syntax_schema.unique_label_entity.test
|
537
|
-
- _class: Expressir::Model::Declarations::Entity
|
538
|
-
id: unique_redeclared_entity
|
539
|
-
subtype_of:
|
540
|
-
- _class: Expressir::Model::References::SimpleReference
|
541
|
-
id: attribute_entity
|
542
|
-
base_path: syntax_schema.attribute_entity
|
543
|
-
unique_rules:
|
544
|
-
- _class: Expressir::Model::Declarations::UniqueRule
|
545
|
-
attributes:
|
546
|
-
- _class: Expressir::Model::References::AttributeReference
|
547
|
-
ref:
|
548
|
-
_class: Expressir::Model::References::GroupReference
|
549
|
-
ref:
|
550
|
-
_class: Expressir::Model::References::SimpleReference
|
551
|
-
id: SELF
|
552
|
-
entity:
|
553
|
-
_class: Expressir::Model::References::SimpleReference
|
554
|
-
id: attribute_entity
|
555
|
-
base_path: syntax_schema.attribute_entity
|
556
|
-
attribute:
|
557
|
-
_class: Expressir::Model::References::SimpleReference
|
558
|
-
id: test
|
559
|
-
- _class: Expressir::Model::Declarations::Entity
|
560
|
-
id: unique_label_redeclared_entity
|
561
|
-
subtype_of:
|
562
|
-
- _class: Expressir::Model::References::SimpleReference
|
563
|
-
id: attribute_entity
|
564
|
-
base_path: syntax_schema.attribute_entity
|
565
|
-
unique_rules:
|
566
|
-
- _class: Expressir::Model::Declarations::UniqueRule
|
567
|
-
id: UR1
|
568
|
-
attributes:
|
569
|
-
- _class: Expressir::Model::References::AttributeReference
|
570
|
-
ref:
|
571
|
-
_class: Expressir::Model::References::GroupReference
|
572
|
-
ref:
|
573
|
-
_class: Expressir::Model::References::SimpleReference
|
574
|
-
id: SELF
|
575
|
-
entity:
|
576
|
-
_class: Expressir::Model::References::SimpleReference
|
577
|
-
id: attribute_entity
|
578
|
-
base_path: syntax_schema.attribute_entity
|
579
|
-
attribute:
|
580
|
-
_class: Expressir::Model::References::SimpleReference
|
581
|
-
id: test
|
582
|
-
- _class: Expressir::Model::Declarations::Entity
|
583
|
-
id: where_entity
|
584
|
-
where_rules:
|
585
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
586
|
-
expression:
|
587
|
-
_class: Expressir::Model::Literals::Logical
|
588
|
-
value: :TRUE
|
589
|
-
- _class: Expressir::Model::Declarations::Entity
|
590
|
-
id: where_label_entity
|
591
|
-
where_rules:
|
592
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
593
|
-
id: WR1
|
594
|
-
expression:
|
595
|
-
_class: Expressir::Model::Literals::Logical
|
596
|
-
value: :TRUE
|
597
|
-
subtype_constraints:
|
598
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
599
|
-
id: empty_subtype_constraint
|
600
|
-
applies_to:
|
601
|
-
_class: Expressir::Model::References::SimpleReference
|
602
|
-
id: empty_entity
|
603
|
-
base_path: syntax_schema.empty_entity
|
604
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
605
|
-
id: abstract_supertype_subtype_constraint
|
606
|
-
applies_to:
|
607
|
-
_class: Expressir::Model::References::SimpleReference
|
608
|
-
id: empty_entity
|
609
|
-
base_path: syntax_schema.empty_entity
|
610
|
-
abstract: true
|
611
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
612
|
-
id: total_over_subtype_constraint
|
613
|
-
applies_to:
|
614
|
-
_class: Expressir::Model::References::SimpleReference
|
615
|
-
id: empty_entity
|
616
|
-
base_path: syntax_schema.empty_entity
|
617
|
-
total_over:
|
618
|
-
- _class: Expressir::Model::References::SimpleReference
|
619
|
-
id: a
|
620
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
621
|
-
id: supertype_expression_subtype_constraint
|
622
|
-
applies_to:
|
623
|
-
_class: Expressir::Model::References::SimpleReference
|
624
|
-
id: empty_entity
|
625
|
-
base_path: syntax_schema.empty_entity
|
626
|
-
supertype_expression:
|
627
|
-
_class: Expressir::Model::References::SimpleReference
|
628
|
-
id: a
|
629
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
630
|
-
id: supertype_expression_andor_subtype_constraint
|
631
|
-
applies_to:
|
632
|
-
_class: Expressir::Model::References::SimpleReference
|
633
|
-
id: empty_entity
|
634
|
-
base_path: syntax_schema.empty_entity
|
635
|
-
supertype_expression:
|
636
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
637
|
-
operator: :ANDOR
|
638
|
-
operand1:
|
639
|
-
_class: Expressir::Model::References::SimpleReference
|
640
|
-
id: a
|
641
|
-
operand2:
|
642
|
-
_class: Expressir::Model::References::SimpleReference
|
643
|
-
id: b
|
644
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
645
|
-
id: supertype_expression_and_subtype_constraint
|
646
|
-
applies_to:
|
647
|
-
_class: Expressir::Model::References::SimpleReference
|
648
|
-
id: empty_entity
|
649
|
-
base_path: syntax_schema.empty_entity
|
650
|
-
supertype_expression:
|
651
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
652
|
-
operator: :AND
|
653
|
-
operand1:
|
654
|
-
_class: Expressir::Model::References::SimpleReference
|
655
|
-
id: a
|
656
|
-
operand2:
|
657
|
-
_class: Expressir::Model::References::SimpleReference
|
658
|
-
id: b
|
659
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
660
|
-
id: supertype_expression_andor_and_subtype_constraint
|
661
|
-
applies_to:
|
662
|
-
_class: Expressir::Model::References::SimpleReference
|
663
|
-
id: empty_entity
|
664
|
-
base_path: syntax_schema.empty_entity
|
665
|
-
supertype_expression:
|
666
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
667
|
-
operator: :ANDOR
|
668
|
-
operand1:
|
669
|
-
_class: Expressir::Model::References::SimpleReference
|
670
|
-
id: a
|
671
|
-
operand2:
|
672
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
673
|
-
operator: :AND
|
674
|
-
operand1:
|
675
|
-
_class: Expressir::Model::References::SimpleReference
|
676
|
-
id: b
|
677
|
-
operand2:
|
678
|
-
_class: Expressir::Model::References::SimpleReference
|
679
|
-
id: c
|
680
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
681
|
-
id: supertype_expression_and_andor_subtype_constraint
|
682
|
-
applies_to:
|
683
|
-
_class: Expressir::Model::References::SimpleReference
|
684
|
-
id: empty_entity
|
685
|
-
base_path: syntax_schema.empty_entity
|
686
|
-
supertype_expression:
|
687
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
688
|
-
operator: :ANDOR
|
689
|
-
operand1:
|
690
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
691
|
-
operator: :AND
|
692
|
-
operand1:
|
693
|
-
_class: Expressir::Model::References::SimpleReference
|
694
|
-
id: a
|
695
|
-
operand2:
|
696
|
-
_class: Expressir::Model::References::SimpleReference
|
697
|
-
id: b
|
698
|
-
operand2:
|
699
|
-
_class: Expressir::Model::References::SimpleReference
|
700
|
-
id: c
|
701
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
702
|
-
id: supertype_expression_parenthesis_andor_and_subtype_constraint
|
703
|
-
applies_to:
|
704
|
-
_class: Expressir::Model::References::SimpleReference
|
705
|
-
id: empty_entity
|
706
|
-
base_path: syntax_schema.empty_entity
|
707
|
-
supertype_expression:
|
708
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
709
|
-
operator: :AND
|
710
|
-
operand1:
|
711
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
712
|
-
operator: :ANDOR
|
713
|
-
operand1:
|
714
|
-
_class: Expressir::Model::References::SimpleReference
|
715
|
-
id: a
|
716
|
-
operand2:
|
717
|
-
_class: Expressir::Model::References::SimpleReference
|
718
|
-
id: b
|
719
|
-
operand2:
|
720
|
-
_class: Expressir::Model::References::SimpleReference
|
721
|
-
id: c
|
722
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
723
|
-
id: supertype_expression_and_parenthesis_andor_subtype_constraint
|
724
|
-
applies_to:
|
725
|
-
_class: Expressir::Model::References::SimpleReference
|
726
|
-
id: empty_entity
|
727
|
-
base_path: syntax_schema.empty_entity
|
728
|
-
supertype_expression:
|
729
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
730
|
-
operator: :AND
|
731
|
-
operand1:
|
732
|
-
_class: Expressir::Model::References::SimpleReference
|
733
|
-
id: a
|
734
|
-
operand2:
|
735
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
736
|
-
operator: :ANDOR
|
737
|
-
operand1:
|
738
|
-
_class: Expressir::Model::References::SimpleReference
|
739
|
-
id: b
|
740
|
-
operand2:
|
741
|
-
_class: Expressir::Model::References::SimpleReference
|
742
|
-
id: c
|
743
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
744
|
-
id: supertype_expression_oneof_subtype_constraint
|
745
|
-
applies_to:
|
746
|
-
_class: Expressir::Model::References::SimpleReference
|
747
|
-
id: empty_entity
|
748
|
-
base_path: syntax_schema.empty_entity
|
749
|
-
supertype_expression:
|
750
|
-
_class: Expressir::Model::SupertypeExpressions::OneofSupertypeExpression
|
751
|
-
operands:
|
752
|
-
- _class: Expressir::Model::References::SimpleReference
|
753
|
-
id: a
|
754
|
-
- _class: Expressir::Model::References::SimpleReference
|
755
|
-
id: b
|
756
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
757
|
-
id: supertype_expression_and_oneof_subtype_constraint
|
758
|
-
applies_to:
|
759
|
-
_class: Expressir::Model::References::SimpleReference
|
760
|
-
id: empty_entity
|
761
|
-
base_path: syntax_schema.empty_entity
|
762
|
-
supertype_expression:
|
763
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
764
|
-
operator: :AND
|
765
|
-
operand1:
|
766
|
-
_class: Expressir::Model::References::SimpleReference
|
767
|
-
id: a
|
768
|
-
operand2:
|
769
|
-
_class: Expressir::Model::SupertypeExpressions::OneofSupertypeExpression
|
770
|
-
operands:
|
771
|
-
- _class: Expressir::Model::References::SimpleReference
|
772
|
-
id: b
|
773
|
-
- _class: Expressir::Model::References::SimpleReference
|
774
|
-
id: c
|
775
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
776
|
-
id: supertype_expression_andor_oneof_subtype_constraint
|
777
|
-
applies_to:
|
778
|
-
_class: Expressir::Model::References::SimpleReference
|
779
|
-
id: empty_entity
|
780
|
-
base_path: syntax_schema.empty_entity
|
781
|
-
supertype_expression:
|
782
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
783
|
-
operator: :ANDOR
|
784
|
-
operand1:
|
785
|
-
_class: Expressir::Model::References::SimpleReference
|
786
|
-
id: a
|
787
|
-
operand2:
|
788
|
-
_class: Expressir::Model::SupertypeExpressions::OneofSupertypeExpression
|
789
|
-
operands:
|
790
|
-
- _class: Expressir::Model::References::SimpleReference
|
791
|
-
id: b
|
792
|
-
- _class: Expressir::Model::References::SimpleReference
|
793
|
-
id: c
|
794
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
795
|
-
id: supertype_expression_oneof_and_subtype_constraint
|
796
|
-
applies_to:
|
797
|
-
_class: Expressir::Model::References::SimpleReference
|
798
|
-
id: empty_entity
|
799
|
-
base_path: syntax_schema.empty_entity
|
800
|
-
supertype_expression:
|
801
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
802
|
-
operator: :AND
|
803
|
-
operand1:
|
804
|
-
_class: Expressir::Model::SupertypeExpressions::OneofSupertypeExpression
|
805
|
-
operands:
|
806
|
-
- _class: Expressir::Model::References::SimpleReference
|
807
|
-
id: a
|
808
|
-
- _class: Expressir::Model::References::SimpleReference
|
809
|
-
id: b
|
810
|
-
operand2:
|
811
|
-
_class: Expressir::Model::References::SimpleReference
|
812
|
-
id: c
|
813
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
814
|
-
id: supertype_expression_oneof_andor_subtype_constraint
|
815
|
-
applies_to:
|
816
|
-
_class: Expressir::Model::References::SimpleReference
|
817
|
-
id: empty_entity
|
818
|
-
base_path: syntax_schema.empty_entity
|
819
|
-
supertype_expression:
|
820
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
821
|
-
operator: :ANDOR
|
822
|
-
operand1:
|
823
|
-
_class: Expressir::Model::SupertypeExpressions::OneofSupertypeExpression
|
824
|
-
operands:
|
825
|
-
- _class: Expressir::Model::References::SimpleReference
|
826
|
-
id: a
|
827
|
-
- _class: Expressir::Model::References::SimpleReference
|
828
|
-
id: b
|
829
|
-
operand2:
|
830
|
-
_class: Expressir::Model::References::SimpleReference
|
831
|
-
id: c
|
832
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
833
|
-
id: supertype_expression_oneof_and_oneof_subtype_constraint
|
834
|
-
applies_to:
|
835
|
-
_class: Expressir::Model::References::SimpleReference
|
836
|
-
id: empty_entity
|
837
|
-
base_path: syntax_schema.empty_entity
|
838
|
-
supertype_expression:
|
839
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
840
|
-
operator: :AND
|
841
|
-
operand1:
|
842
|
-
_class: Expressir::Model::SupertypeExpressions::OneofSupertypeExpression
|
843
|
-
operands:
|
844
|
-
- _class: Expressir::Model::References::SimpleReference
|
845
|
-
id: a
|
846
|
-
- _class: Expressir::Model::References::SimpleReference
|
847
|
-
id: b
|
848
|
-
operand2:
|
849
|
-
_class: Expressir::Model::SupertypeExpressions::OneofSupertypeExpression
|
850
|
-
operands:
|
851
|
-
- _class: Expressir::Model::References::SimpleReference
|
852
|
-
id: c
|
853
|
-
- _class: Expressir::Model::References::SimpleReference
|
854
|
-
id: d
|
855
|
-
- _class: Expressir::Model::Declarations::SubtypeConstraint
|
856
|
-
id: supertype_expression_oneof_andor_oneof_subtype_constraint
|
857
|
-
applies_to:
|
858
|
-
_class: Expressir::Model::References::SimpleReference
|
859
|
-
id: empty_entity
|
860
|
-
base_path: syntax_schema.empty_entity
|
861
|
-
supertype_expression:
|
862
|
-
_class: Expressir::Model::SupertypeExpressions::BinarySupertypeExpression
|
863
|
-
operator: :ANDOR
|
864
|
-
operand1:
|
865
|
-
_class: Expressir::Model::SupertypeExpressions::OneofSupertypeExpression
|
866
|
-
operands:
|
867
|
-
- _class: Expressir::Model::References::SimpleReference
|
868
|
-
id: a
|
869
|
-
- _class: Expressir::Model::References::SimpleReference
|
870
|
-
id: b
|
871
|
-
operand2:
|
872
|
-
_class: Expressir::Model::SupertypeExpressions::OneofSupertypeExpression
|
873
|
-
operands:
|
874
|
-
- _class: Expressir::Model::References::SimpleReference
|
875
|
-
id: c
|
876
|
-
- _class: Expressir::Model::References::SimpleReference
|
877
|
-
id: d
|
878
|
-
functions:
|
879
|
-
- _class: Expressir::Model::Declarations::Function
|
880
|
-
id: empty_function
|
881
|
-
return_type:
|
882
|
-
_class: Expressir::Model::DataTypes::Boolean
|
883
|
-
statements:
|
884
|
-
- _class: Expressir::Model::Statements::Null
|
885
|
-
- _class: Expressir::Model::Declarations::Function
|
886
|
-
id: parameter_function
|
887
|
-
parameters:
|
888
|
-
- _class: Expressir::Model::Declarations::Parameter
|
889
|
-
id: test
|
890
|
-
type:
|
891
|
-
_class: Expressir::Model::DataTypes::Boolean
|
892
|
-
return_type:
|
893
|
-
_class: Expressir::Model::DataTypes::Boolean
|
894
|
-
statements:
|
895
|
-
- _class: Expressir::Model::Statements::Null
|
896
|
-
- _class: Expressir::Model::Declarations::Function
|
897
|
-
id: multiple_parameter_function
|
898
|
-
parameters:
|
899
|
-
- _class: Expressir::Model::Declarations::Parameter
|
900
|
-
id: test
|
901
|
-
type:
|
902
|
-
_class: Expressir::Model::DataTypes::Boolean
|
903
|
-
- _class: Expressir::Model::Declarations::Parameter
|
904
|
-
id: test2
|
905
|
-
type:
|
906
|
-
_class: Expressir::Model::DataTypes::Boolean
|
907
|
-
return_type:
|
908
|
-
_class: Expressir::Model::DataTypes::Boolean
|
909
|
-
statements:
|
910
|
-
- _class: Expressir::Model::Statements::Null
|
911
|
-
- _class: Expressir::Model::Declarations::Function
|
912
|
-
id: multiple_shorthand_parameter_function
|
913
|
-
parameters:
|
914
|
-
- _class: Expressir::Model::Declarations::Parameter
|
915
|
-
id: test
|
916
|
-
type:
|
917
|
-
_class: Expressir::Model::DataTypes::Boolean
|
918
|
-
- _class: Expressir::Model::Declarations::Parameter
|
919
|
-
id: test2
|
920
|
-
type:
|
921
|
-
_class: Expressir::Model::DataTypes::Boolean
|
922
|
-
return_type:
|
923
|
-
_class: Expressir::Model::DataTypes::Boolean
|
924
|
-
statements:
|
925
|
-
- _class: Expressir::Model::Statements::Null
|
926
|
-
- _class: Expressir::Model::Declarations::Function
|
927
|
-
id: type_function
|
928
|
-
return_type:
|
929
|
-
_class: Expressir::Model::DataTypes::Boolean
|
930
|
-
types:
|
931
|
-
- _class: Expressir::Model::Declarations::Type
|
932
|
-
id: test
|
933
|
-
underlying_type:
|
934
|
-
_class: Expressir::Model::DataTypes::Boolean
|
935
|
-
statements:
|
936
|
-
- _class: Expressir::Model::Statements::Null
|
937
|
-
- _class: Expressir::Model::Declarations::Function
|
938
|
-
id: constant_function
|
939
|
-
return_type:
|
940
|
-
_class: Expressir::Model::DataTypes::Boolean
|
941
|
-
constants:
|
942
|
-
- _class: Expressir::Model::Declarations::Constant
|
943
|
-
id: test
|
944
|
-
type:
|
945
|
-
_class: Expressir::Model::DataTypes::Boolean
|
946
|
-
expression:
|
947
|
-
_class: Expressir::Model::Literals::Logical
|
948
|
-
value: :TRUE
|
949
|
-
statements:
|
950
|
-
- _class: Expressir::Model::Statements::Null
|
951
|
-
- _class: Expressir::Model::Declarations::Function
|
952
|
-
id: multiple_constant_function
|
953
|
-
return_type:
|
954
|
-
_class: Expressir::Model::DataTypes::Boolean
|
955
|
-
constants:
|
956
|
-
- _class: Expressir::Model::Declarations::Constant
|
957
|
-
id: test
|
958
|
-
type:
|
959
|
-
_class: Expressir::Model::DataTypes::Boolean
|
960
|
-
expression:
|
961
|
-
_class: Expressir::Model::Literals::Logical
|
962
|
-
value: :TRUE
|
963
|
-
- _class: Expressir::Model::Declarations::Constant
|
964
|
-
id: test2
|
965
|
-
type:
|
966
|
-
_class: Expressir::Model::DataTypes::Boolean
|
967
|
-
expression:
|
968
|
-
_class: Expressir::Model::Literals::Logical
|
969
|
-
value: :TRUE
|
970
|
-
statements:
|
971
|
-
- _class: Expressir::Model::Statements::Null
|
972
|
-
- _class: Expressir::Model::Declarations::Function
|
973
|
-
id: variable_function
|
974
|
-
return_type:
|
975
|
-
_class: Expressir::Model::DataTypes::Boolean
|
976
|
-
variables:
|
977
|
-
- _class: Expressir::Model::Declarations::Variable
|
978
|
-
id: test
|
979
|
-
type:
|
980
|
-
_class: Expressir::Model::DataTypes::Boolean
|
981
|
-
statements:
|
982
|
-
- _class: Expressir::Model::Statements::Null
|
983
|
-
- _class: Expressir::Model::Declarations::Function
|
984
|
-
id: multiple_variable_function
|
985
|
-
return_type:
|
986
|
-
_class: Expressir::Model::DataTypes::Boolean
|
987
|
-
variables:
|
988
|
-
- _class: Expressir::Model::Declarations::Variable
|
989
|
-
id: test
|
990
|
-
type:
|
991
|
-
_class: Expressir::Model::DataTypes::Boolean
|
992
|
-
- _class: Expressir::Model::Declarations::Variable
|
993
|
-
id: test2
|
994
|
-
type:
|
995
|
-
_class: Expressir::Model::DataTypes::Boolean
|
996
|
-
statements:
|
997
|
-
- _class: Expressir::Model::Statements::Null
|
998
|
-
- _class: Expressir::Model::Declarations::Function
|
999
|
-
id: multiple_shorthand_variable_function
|
1000
|
-
return_type:
|
1001
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1002
|
-
variables:
|
1003
|
-
- _class: Expressir::Model::Declarations::Variable
|
1004
|
-
id: test
|
1005
|
-
type:
|
1006
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1007
|
-
- _class: Expressir::Model::Declarations::Variable
|
1008
|
-
id: test2
|
1009
|
-
type:
|
1010
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1011
|
-
statements:
|
1012
|
-
- _class: Expressir::Model::Statements::Null
|
1013
|
-
- _class: Expressir::Model::Declarations::Function
|
1014
|
-
id: variable_expression_function
|
1015
|
-
return_type:
|
1016
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1017
|
-
variables:
|
1018
|
-
- _class: Expressir::Model::Declarations::Variable
|
1019
|
-
id: test
|
1020
|
-
type:
|
1021
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1022
|
-
expression:
|
1023
|
-
_class: Expressir::Model::Literals::Logical
|
1024
|
-
value: :TRUE
|
1025
|
-
statements:
|
1026
|
-
- _class: Expressir::Model::Statements::Null
|
1027
|
-
- _class: Expressir::Model::Declarations::Function
|
1028
|
-
id: multiple_variable_expression_function
|
1029
|
-
return_type:
|
1030
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1031
|
-
variables:
|
1032
|
-
- _class: Expressir::Model::Declarations::Variable
|
1033
|
-
id: test
|
1034
|
-
type:
|
1035
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1036
|
-
expression:
|
1037
|
-
_class: Expressir::Model::Literals::Logical
|
1038
|
-
value: :TRUE
|
1039
|
-
- _class: Expressir::Model::Declarations::Variable
|
1040
|
-
id: test2
|
1041
|
-
type:
|
1042
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1043
|
-
expression:
|
1044
|
-
_class: Expressir::Model::Literals::Logical
|
1045
|
-
value: :TRUE
|
1046
|
-
statements:
|
1047
|
-
- _class: Expressir::Model::Statements::Null
|
1048
|
-
- _class: Expressir::Model::Declarations::Function
|
1049
|
-
id: multiple_shorthand_variable_expression_function
|
1050
|
-
return_type:
|
1051
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1052
|
-
variables:
|
1053
|
-
- _class: Expressir::Model::Declarations::Variable
|
1054
|
-
id: test
|
1055
|
-
type:
|
1056
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1057
|
-
expression:
|
1058
|
-
_class: Expressir::Model::Literals::Logical
|
1059
|
-
value: :TRUE
|
1060
|
-
- _class: Expressir::Model::Declarations::Variable
|
1061
|
-
id: test2
|
1062
|
-
type:
|
1063
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1064
|
-
expression:
|
1065
|
-
_class: Expressir::Model::Literals::Logical
|
1066
|
-
value: :TRUE
|
1067
|
-
statements:
|
1068
|
-
- _class: Expressir::Model::Statements::Null
|
1069
|
-
rules:
|
1070
|
-
- _class: Expressir::Model::Declarations::Rule
|
1071
|
-
id: empty_rule
|
1072
|
-
applies_to:
|
1073
|
-
- _class: Expressir::Model::References::SimpleReference
|
1074
|
-
id: empty_entity
|
1075
|
-
base_path: syntax_schema.empty_entity
|
1076
|
-
where_rules:
|
1077
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
1078
|
-
expression:
|
1079
|
-
_class: Expressir::Model::Literals::Logical
|
1080
|
-
value: :TRUE
|
1081
|
-
- _class: Expressir::Model::Declarations::Rule
|
1082
|
-
id: type_rule
|
1083
|
-
applies_to:
|
1084
|
-
- _class: Expressir::Model::References::SimpleReference
|
1085
|
-
id: empty_entity
|
1086
|
-
base_path: syntax_schema.empty_entity
|
1087
|
-
types:
|
1088
|
-
- _class: Expressir::Model::Declarations::Type
|
1089
|
-
id: test
|
1090
|
-
underlying_type:
|
1091
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1092
|
-
where_rules:
|
1093
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
1094
|
-
expression:
|
1095
|
-
_class: Expressir::Model::Literals::Logical
|
1096
|
-
value: :TRUE
|
1097
|
-
- _class: Expressir::Model::Declarations::Rule
|
1098
|
-
id: constant_rule
|
1099
|
-
applies_to:
|
1100
|
-
- _class: Expressir::Model::References::SimpleReference
|
1101
|
-
id: empty_entity
|
1102
|
-
base_path: syntax_schema.empty_entity
|
1103
|
-
constants:
|
1104
|
-
- _class: Expressir::Model::Declarations::Constant
|
1105
|
-
id: test
|
1106
|
-
type:
|
1107
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1108
|
-
expression:
|
1109
|
-
_class: Expressir::Model::Literals::Logical
|
1110
|
-
value: :TRUE
|
1111
|
-
where_rules:
|
1112
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
1113
|
-
expression:
|
1114
|
-
_class: Expressir::Model::Literals::Logical
|
1115
|
-
value: :TRUE
|
1116
|
-
- _class: Expressir::Model::Declarations::Rule
|
1117
|
-
id: multiple_constant_rule
|
1118
|
-
applies_to:
|
1119
|
-
- _class: Expressir::Model::References::SimpleReference
|
1120
|
-
id: empty_entity
|
1121
|
-
base_path: syntax_schema.empty_entity
|
1122
|
-
constants:
|
1123
|
-
- _class: Expressir::Model::Declarations::Constant
|
1124
|
-
id: test
|
1125
|
-
type:
|
1126
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1127
|
-
expression:
|
1128
|
-
_class: Expressir::Model::Literals::Logical
|
1129
|
-
value: :TRUE
|
1130
|
-
- _class: Expressir::Model::Declarations::Constant
|
1131
|
-
id: test2
|
1132
|
-
type:
|
1133
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1134
|
-
expression:
|
1135
|
-
_class: Expressir::Model::Literals::Logical
|
1136
|
-
value: :TRUE
|
1137
|
-
where_rules:
|
1138
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
1139
|
-
expression:
|
1140
|
-
_class: Expressir::Model::Literals::Logical
|
1141
|
-
value: :TRUE
|
1142
|
-
- _class: Expressir::Model::Declarations::Rule
|
1143
|
-
id: variable_rule
|
1144
|
-
applies_to:
|
1145
|
-
- _class: Expressir::Model::References::SimpleReference
|
1146
|
-
id: empty_entity
|
1147
|
-
base_path: syntax_schema.empty_entity
|
1148
|
-
variables:
|
1149
|
-
- _class: Expressir::Model::Declarations::Variable
|
1150
|
-
id: test
|
1151
|
-
type:
|
1152
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1153
|
-
where_rules:
|
1154
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
1155
|
-
expression:
|
1156
|
-
_class: Expressir::Model::Literals::Logical
|
1157
|
-
value: :TRUE
|
1158
|
-
- _class: Expressir::Model::Declarations::Rule
|
1159
|
-
id: multiple_variable_rule
|
1160
|
-
applies_to:
|
1161
|
-
- _class: Expressir::Model::References::SimpleReference
|
1162
|
-
id: empty_entity
|
1163
|
-
base_path: syntax_schema.empty_entity
|
1164
|
-
variables:
|
1165
|
-
- _class: Expressir::Model::Declarations::Variable
|
1166
|
-
id: test
|
1167
|
-
type:
|
1168
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1169
|
-
- _class: Expressir::Model::Declarations::Variable
|
1170
|
-
id: test2
|
1171
|
-
type:
|
1172
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1173
|
-
where_rules:
|
1174
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
1175
|
-
expression:
|
1176
|
-
_class: Expressir::Model::Literals::Logical
|
1177
|
-
value: :TRUE
|
1178
|
-
- _class: Expressir::Model::Declarations::Rule
|
1179
|
-
id: multiple_shorthand_variable_rule
|
1180
|
-
applies_to:
|
1181
|
-
- _class: Expressir::Model::References::SimpleReference
|
1182
|
-
id: empty_entity
|
1183
|
-
base_path: syntax_schema.empty_entity
|
1184
|
-
variables:
|
1185
|
-
- _class: Expressir::Model::Declarations::Variable
|
1186
|
-
id: test
|
1187
|
-
type:
|
1188
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1189
|
-
- _class: Expressir::Model::Declarations::Variable
|
1190
|
-
id: test2
|
1191
|
-
type:
|
1192
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1193
|
-
where_rules:
|
1194
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
1195
|
-
expression:
|
1196
|
-
_class: Expressir::Model::Literals::Logical
|
1197
|
-
value: :TRUE
|
1198
|
-
- _class: Expressir::Model::Declarations::Rule
|
1199
|
-
id: variable_expression_rule
|
1200
|
-
applies_to:
|
1201
|
-
- _class: Expressir::Model::References::SimpleReference
|
1202
|
-
id: empty_entity
|
1203
|
-
base_path: syntax_schema.empty_entity
|
1204
|
-
variables:
|
1205
|
-
- _class: Expressir::Model::Declarations::Variable
|
1206
|
-
id: test
|
1207
|
-
type:
|
1208
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1209
|
-
expression:
|
1210
|
-
_class: Expressir::Model::Literals::Logical
|
1211
|
-
value: :TRUE
|
1212
|
-
where_rules:
|
1213
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
1214
|
-
expression:
|
1215
|
-
_class: Expressir::Model::Literals::Logical
|
1216
|
-
value: :TRUE
|
1217
|
-
- _class: Expressir::Model::Declarations::Rule
|
1218
|
-
id: multiple_variable_expression_rule
|
1219
|
-
applies_to:
|
1220
|
-
- _class: Expressir::Model::References::SimpleReference
|
1221
|
-
id: empty_entity
|
1222
|
-
base_path: syntax_schema.empty_entity
|
1223
|
-
variables:
|
1224
|
-
- _class: Expressir::Model::Declarations::Variable
|
1225
|
-
id: test
|
1226
|
-
type:
|
1227
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1228
|
-
expression:
|
1229
|
-
_class: Expressir::Model::Literals::Logical
|
1230
|
-
value: :TRUE
|
1231
|
-
- _class: Expressir::Model::Declarations::Variable
|
1232
|
-
id: test2
|
1233
|
-
type:
|
1234
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1235
|
-
expression:
|
1236
|
-
_class: Expressir::Model::Literals::Logical
|
1237
|
-
value: :TRUE
|
1238
|
-
where_rules:
|
1239
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
1240
|
-
expression:
|
1241
|
-
_class: Expressir::Model::Literals::Logical
|
1242
|
-
value: :TRUE
|
1243
|
-
- _class: Expressir::Model::Declarations::Rule
|
1244
|
-
id: multiple_shorthand_variable_expression_rule
|
1245
|
-
applies_to:
|
1246
|
-
- _class: Expressir::Model::References::SimpleReference
|
1247
|
-
id: empty_entity
|
1248
|
-
base_path: syntax_schema.empty_entity
|
1249
|
-
variables:
|
1250
|
-
- _class: Expressir::Model::Declarations::Variable
|
1251
|
-
id: test
|
1252
|
-
type:
|
1253
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1254
|
-
expression:
|
1255
|
-
_class: Expressir::Model::Literals::Logical
|
1256
|
-
value: :TRUE
|
1257
|
-
- _class: Expressir::Model::Declarations::Variable
|
1258
|
-
id: test2
|
1259
|
-
type:
|
1260
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1261
|
-
expression:
|
1262
|
-
_class: Expressir::Model::Literals::Logical
|
1263
|
-
value: :TRUE
|
1264
|
-
where_rules:
|
1265
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
1266
|
-
expression:
|
1267
|
-
_class: Expressir::Model::Literals::Logical
|
1268
|
-
value: :TRUE
|
1269
|
-
- _class: Expressir::Model::Declarations::Rule
|
1270
|
-
id: statement_rule
|
1271
|
-
applies_to:
|
1272
|
-
- _class: Expressir::Model::References::SimpleReference
|
1273
|
-
id: empty_entity
|
1274
|
-
base_path: syntax_schema.empty_entity
|
1275
|
-
statements:
|
1276
|
-
- _class: Expressir::Model::Statements::Null
|
1277
|
-
where_rules:
|
1278
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
1279
|
-
expression:
|
1280
|
-
_class: Expressir::Model::Literals::Logical
|
1281
|
-
value: :TRUE
|
1282
|
-
- _class: Expressir::Model::Declarations::Rule
|
1283
|
-
id: where_label_rule
|
1284
|
-
applies_to:
|
1285
|
-
- _class: Expressir::Model::References::SimpleReference
|
1286
|
-
id: empty_entity
|
1287
|
-
base_path: syntax_schema.empty_entity
|
1288
|
-
where_rules:
|
1289
|
-
- _class: Expressir::Model::Declarations::WhereRule
|
1290
|
-
id: WR1
|
1291
|
-
expression:
|
1292
|
-
_class: Expressir::Model::Literals::Logical
|
1293
|
-
value: :TRUE
|
1294
|
-
procedures:
|
1295
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1296
|
-
id: empty_procedure
|
1297
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1298
|
-
id: parameter_procedure
|
1299
|
-
parameters:
|
1300
|
-
- _class: Expressir::Model::Declarations::Parameter
|
1301
|
-
id: test
|
1302
|
-
type:
|
1303
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1304
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1305
|
-
id: multiple_parameter_procedure
|
1306
|
-
parameters:
|
1307
|
-
- _class: Expressir::Model::Declarations::Parameter
|
1308
|
-
id: test
|
1309
|
-
type:
|
1310
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1311
|
-
- _class: Expressir::Model::Declarations::Parameter
|
1312
|
-
id: test2
|
1313
|
-
type:
|
1314
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1315
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1316
|
-
id: multiple_shorthand_parameter_procedure
|
1317
|
-
parameters:
|
1318
|
-
- _class: Expressir::Model::Declarations::Parameter
|
1319
|
-
id: test
|
1320
|
-
type:
|
1321
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1322
|
-
- _class: Expressir::Model::Declarations::Parameter
|
1323
|
-
id: test2
|
1324
|
-
type:
|
1325
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1326
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1327
|
-
id: variable_parameter_procedure
|
1328
|
-
parameters:
|
1329
|
-
- _class: Expressir::Model::Declarations::Parameter
|
1330
|
-
id: test
|
1331
|
-
var: true
|
1332
|
-
type:
|
1333
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1334
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1335
|
-
id: multiple_variable_parameter_procedure
|
1336
|
-
parameters:
|
1337
|
-
- _class: Expressir::Model::Declarations::Parameter
|
1338
|
-
id: test
|
1339
|
-
var: true
|
1340
|
-
type:
|
1341
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1342
|
-
- _class: Expressir::Model::Declarations::Parameter
|
1343
|
-
id: test2
|
1344
|
-
type:
|
1345
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1346
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1347
|
-
id: multiple_variable_parameter2_procedure
|
1348
|
-
parameters:
|
1349
|
-
- _class: Expressir::Model::Declarations::Parameter
|
1350
|
-
id: test
|
1351
|
-
type:
|
1352
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1353
|
-
- _class: Expressir::Model::Declarations::Parameter
|
1354
|
-
id: test2
|
1355
|
-
var: true
|
1356
|
-
type:
|
1357
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1358
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1359
|
-
id: multiple_shorthand_variable_parameter_procedure
|
1360
|
-
parameters:
|
1361
|
-
- _class: Expressir::Model::Declarations::Parameter
|
1362
|
-
id: test
|
1363
|
-
var: true
|
1364
|
-
type:
|
1365
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1366
|
-
- _class: Expressir::Model::Declarations::Parameter
|
1367
|
-
id: test2
|
1368
|
-
var: true
|
1369
|
-
type:
|
1370
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1371
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1372
|
-
id: type_procedure
|
1373
|
-
types:
|
1374
|
-
- _class: Expressir::Model::Declarations::Type
|
1375
|
-
id: test
|
1376
|
-
underlying_type:
|
1377
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1378
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1379
|
-
id: constant_procedure
|
1380
|
-
constants:
|
1381
|
-
- _class: Expressir::Model::Declarations::Constant
|
1382
|
-
id: test
|
1383
|
-
type:
|
1384
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1385
|
-
expression:
|
1386
|
-
_class: Expressir::Model::Literals::Logical
|
1387
|
-
value: :TRUE
|
1388
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1389
|
-
id: multiple_constant_procedure
|
1390
|
-
constants:
|
1391
|
-
- _class: Expressir::Model::Declarations::Constant
|
1392
|
-
id: test
|
1393
|
-
type:
|
1394
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1395
|
-
expression:
|
1396
|
-
_class: Expressir::Model::Literals::Logical
|
1397
|
-
value: :TRUE
|
1398
|
-
- _class: Expressir::Model::Declarations::Constant
|
1399
|
-
id: test2
|
1400
|
-
type:
|
1401
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1402
|
-
expression:
|
1403
|
-
_class: Expressir::Model::Literals::Logical
|
1404
|
-
value: :TRUE
|
1405
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1406
|
-
id: variable_procedure
|
1407
|
-
variables:
|
1408
|
-
- _class: Expressir::Model::Declarations::Variable
|
1409
|
-
id: test
|
1410
|
-
type:
|
1411
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1412
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1413
|
-
id: multiple_variable_procedure
|
1414
|
-
variables:
|
1415
|
-
- _class: Expressir::Model::Declarations::Variable
|
1416
|
-
id: test
|
1417
|
-
type:
|
1418
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1419
|
-
- _class: Expressir::Model::Declarations::Variable
|
1420
|
-
id: test2
|
1421
|
-
type:
|
1422
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1423
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1424
|
-
id: multiple_shorthand_variable_procedure
|
1425
|
-
variables:
|
1426
|
-
- _class: Expressir::Model::Declarations::Variable
|
1427
|
-
id: test
|
1428
|
-
type:
|
1429
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1430
|
-
- _class: Expressir::Model::Declarations::Variable
|
1431
|
-
id: test2
|
1432
|
-
type:
|
1433
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1434
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1435
|
-
id: variable_expression_procedure
|
1436
|
-
variables:
|
1437
|
-
- _class: Expressir::Model::Declarations::Variable
|
1438
|
-
id: test
|
1439
|
-
type:
|
1440
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1441
|
-
expression:
|
1442
|
-
_class: Expressir::Model::Literals::Logical
|
1443
|
-
value: :TRUE
|
1444
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1445
|
-
id: multiple_variable_expression_procedure
|
1446
|
-
variables:
|
1447
|
-
- _class: Expressir::Model::Declarations::Variable
|
1448
|
-
id: test
|
1449
|
-
type:
|
1450
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1451
|
-
expression:
|
1452
|
-
_class: Expressir::Model::Literals::Logical
|
1453
|
-
value: :TRUE
|
1454
|
-
- _class: Expressir::Model::Declarations::Variable
|
1455
|
-
id: test2
|
1456
|
-
type:
|
1457
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1458
|
-
expression:
|
1459
|
-
_class: Expressir::Model::Literals::Logical
|
1460
|
-
value: :TRUE
|
1461
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1462
|
-
id: multiple_shorthand_variable_expression_procedure
|
1463
|
-
variables:
|
1464
|
-
- _class: Expressir::Model::Declarations::Variable
|
1465
|
-
id: test
|
1466
|
-
type:
|
1467
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1468
|
-
expression:
|
1469
|
-
_class: Expressir::Model::Literals::Logical
|
1470
|
-
value: :TRUE
|
1471
|
-
- _class: Expressir::Model::Declarations::Variable
|
1472
|
-
id: test2
|
1473
|
-
type:
|
1474
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1475
|
-
expression:
|
1476
|
-
_class: Expressir::Model::Literals::Logical
|
1477
|
-
value: :TRUE
|
1478
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1479
|
-
id: statement_procedure
|
1480
|
-
statements:
|
1481
|
-
- _class: Expressir::Model::Statements::Null
|
1482
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1483
|
-
id: statements
|
1484
|
-
procedures:
|
1485
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1486
|
-
id: alias_simple_reference_statement
|
1487
|
-
statements:
|
1488
|
-
- _class: Expressir::Model::Statements::Alias
|
1489
|
-
id: test
|
1490
|
-
expression:
|
1491
|
-
_class: Expressir::Model::References::SimpleReference
|
1492
|
-
id: test
|
1493
|
-
statements:
|
1494
|
-
- _class: Expressir::Model::Statements::Null
|
1495
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1496
|
-
id: alias_group_reference_statement
|
1497
|
-
statements:
|
1498
|
-
- _class: Expressir::Model::Statements::Alias
|
1499
|
-
id: test
|
1500
|
-
expression:
|
1501
|
-
_class: Expressir::Model::References::GroupReference
|
1502
|
-
ref:
|
1503
|
-
_class: Expressir::Model::References::SimpleReference
|
1504
|
-
id: test
|
1505
|
-
entity:
|
1506
|
-
_class: Expressir::Model::References::SimpleReference
|
1507
|
-
id: test2
|
1508
|
-
statements:
|
1509
|
-
- _class: Expressir::Model::Statements::Null
|
1510
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1511
|
-
id: alias_index_reference_statement
|
1512
|
-
statements:
|
1513
|
-
- _class: Expressir::Model::Statements::Alias
|
1514
|
-
id: test
|
1515
|
-
expression:
|
1516
|
-
_class: Expressir::Model::References::IndexReference
|
1517
|
-
ref:
|
1518
|
-
_class: Expressir::Model::References::SimpleReference
|
1519
|
-
id: test
|
1520
|
-
index1:
|
1521
|
-
_class: Expressir::Model::Literals::Integer
|
1522
|
-
value: '1'
|
1523
|
-
statements:
|
1524
|
-
- _class: Expressir::Model::Statements::Null
|
1525
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1526
|
-
id: alias_index2_reference_statement
|
1527
|
-
statements:
|
1528
|
-
- _class: Expressir::Model::Statements::Alias
|
1529
|
-
id: test
|
1530
|
-
expression:
|
1531
|
-
_class: Expressir::Model::References::IndexReference
|
1532
|
-
ref:
|
1533
|
-
_class: Expressir::Model::References::SimpleReference
|
1534
|
-
id: test
|
1535
|
-
index1:
|
1536
|
-
_class: Expressir::Model::Literals::Integer
|
1537
|
-
value: '1'
|
1538
|
-
index2:
|
1539
|
-
_class: Expressir::Model::Literals::Integer
|
1540
|
-
value: '9'
|
1541
|
-
statements:
|
1542
|
-
- _class: Expressir::Model::Statements::Null
|
1543
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1544
|
-
id: alias_attribute_reference_statement
|
1545
|
-
statements:
|
1546
|
-
- _class: Expressir::Model::Statements::Alias
|
1547
|
-
id: test
|
1548
|
-
expression:
|
1549
|
-
_class: Expressir::Model::References::AttributeReference
|
1550
|
-
ref:
|
1551
|
-
_class: Expressir::Model::References::SimpleReference
|
1552
|
-
id: test
|
1553
|
-
attribute:
|
1554
|
-
_class: Expressir::Model::References::SimpleReference
|
1555
|
-
id: test2
|
1556
|
-
statements:
|
1557
|
-
- _class: Expressir::Model::Statements::Null
|
1558
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1559
|
-
id: assignment_simple_reference_statement
|
1560
|
-
statements:
|
1561
|
-
- _class: Expressir::Model::Statements::Assignment
|
1562
|
-
ref:
|
1563
|
-
_class: Expressir::Model::References::SimpleReference
|
1564
|
-
id: test
|
1565
|
-
expression:
|
1566
|
-
_class: Expressir::Model::Literals::Logical
|
1567
|
-
value: :TRUE
|
1568
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1569
|
-
id: assignment_group_reference_statement
|
1570
|
-
statements:
|
1571
|
-
- _class: Expressir::Model::Statements::Assignment
|
1572
|
-
ref:
|
1573
|
-
_class: Expressir::Model::References::GroupReference
|
1574
|
-
ref:
|
1575
|
-
_class: Expressir::Model::References::SimpleReference
|
1576
|
-
id: test
|
1577
|
-
entity:
|
1578
|
-
_class: Expressir::Model::References::SimpleReference
|
1579
|
-
id: test2
|
1580
|
-
expression:
|
1581
|
-
_class: Expressir::Model::Literals::Logical
|
1582
|
-
value: :TRUE
|
1583
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1584
|
-
id: assignment_index_reference_statement
|
1585
|
-
statements:
|
1586
|
-
- _class: Expressir::Model::Statements::Assignment
|
1587
|
-
ref:
|
1588
|
-
_class: Expressir::Model::References::IndexReference
|
1589
|
-
ref:
|
1590
|
-
_class: Expressir::Model::References::SimpleReference
|
1591
|
-
id: test
|
1592
|
-
index1:
|
1593
|
-
_class: Expressir::Model::Literals::Integer
|
1594
|
-
value: '1'
|
1595
|
-
expression:
|
1596
|
-
_class: Expressir::Model::Literals::Logical
|
1597
|
-
value: :TRUE
|
1598
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1599
|
-
id: assignment_index2_reference_statement
|
1600
|
-
statements:
|
1601
|
-
- _class: Expressir::Model::Statements::Assignment
|
1602
|
-
ref:
|
1603
|
-
_class: Expressir::Model::References::IndexReference
|
1604
|
-
ref:
|
1605
|
-
_class: Expressir::Model::References::SimpleReference
|
1606
|
-
id: test
|
1607
|
-
index1:
|
1608
|
-
_class: Expressir::Model::Literals::Integer
|
1609
|
-
value: '1'
|
1610
|
-
index2:
|
1611
|
-
_class: Expressir::Model::Literals::Integer
|
1612
|
-
value: '9'
|
1613
|
-
expression:
|
1614
|
-
_class: Expressir::Model::Literals::Logical
|
1615
|
-
value: :TRUE
|
1616
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1617
|
-
id: assignment_attribute_reference_statement
|
1618
|
-
statements:
|
1619
|
-
- _class: Expressir::Model::Statements::Assignment
|
1620
|
-
ref:
|
1621
|
-
_class: Expressir::Model::References::AttributeReference
|
1622
|
-
ref:
|
1623
|
-
_class: Expressir::Model::References::SimpleReference
|
1624
|
-
id: test
|
1625
|
-
attribute:
|
1626
|
-
_class: Expressir::Model::References::SimpleReference
|
1627
|
-
id: test2
|
1628
|
-
expression:
|
1629
|
-
_class: Expressir::Model::Literals::Logical
|
1630
|
-
value: :TRUE
|
1631
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1632
|
-
id: case_statement
|
1633
|
-
statements:
|
1634
|
-
- _class: Expressir::Model::Statements::Case
|
1635
|
-
expression:
|
1636
|
-
_class: Expressir::Model::References::SimpleReference
|
1637
|
-
id: test
|
1638
|
-
actions:
|
1639
|
-
- _class: Expressir::Model::Statements::CaseAction
|
1640
|
-
labels:
|
1641
|
-
- _class: Expressir::Model::Literals::Logical
|
1642
|
-
value: :TRUE
|
1643
|
-
statement:
|
1644
|
-
_class: Expressir::Model::Statements::Null
|
1645
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1646
|
-
id: case_multiple_statement
|
1647
|
-
statements:
|
1648
|
-
- _class: Expressir::Model::Statements::Case
|
1649
|
-
expression:
|
1650
|
-
_class: Expressir::Model::References::SimpleReference
|
1651
|
-
id: test
|
1652
|
-
actions:
|
1653
|
-
- _class: Expressir::Model::Statements::CaseAction
|
1654
|
-
labels:
|
1655
|
-
- _class: Expressir::Model::Literals::Logical
|
1656
|
-
value: :TRUE
|
1657
|
-
statement:
|
1658
|
-
_class: Expressir::Model::Statements::Null
|
1659
|
-
- _class: Expressir::Model::Statements::CaseAction
|
1660
|
-
labels:
|
1661
|
-
- _class: Expressir::Model::Literals::Logical
|
1662
|
-
value: :TRUE
|
1663
|
-
statement:
|
1664
|
-
_class: Expressir::Model::Statements::Null
|
1665
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1666
|
-
id: case_multiple_shorthand_statement
|
1667
|
-
statements:
|
1668
|
-
- _class: Expressir::Model::Statements::Case
|
1669
|
-
expression:
|
1670
|
-
_class: Expressir::Model::References::SimpleReference
|
1671
|
-
id: test
|
1672
|
-
actions:
|
1673
|
-
- _class: Expressir::Model::Statements::CaseAction
|
1674
|
-
labels:
|
1675
|
-
- _class: Expressir::Model::Literals::Logical
|
1676
|
-
value: :TRUE
|
1677
|
-
- _class: Expressir::Model::Literals::Logical
|
1678
|
-
value: :TRUE
|
1679
|
-
statement:
|
1680
|
-
_class: Expressir::Model::Statements::Null
|
1681
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1682
|
-
id: case_otherwise_statement
|
1683
|
-
statements:
|
1684
|
-
- _class: Expressir::Model::Statements::Case
|
1685
|
-
expression:
|
1686
|
-
_class: Expressir::Model::References::SimpleReference
|
1687
|
-
id: test
|
1688
|
-
actions:
|
1689
|
-
- _class: Expressir::Model::Statements::CaseAction
|
1690
|
-
labels:
|
1691
|
-
- _class: Expressir::Model::Literals::Logical
|
1692
|
-
value: :TRUE
|
1693
|
-
statement:
|
1694
|
-
_class: Expressir::Model::Statements::Null
|
1695
|
-
otherwise_statement:
|
1696
|
-
_class: Expressir::Model::Statements::Null
|
1697
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1698
|
-
id: compound_statement
|
1699
|
-
statements:
|
1700
|
-
- _class: Expressir::Model::Statements::Compound
|
1701
|
-
statements:
|
1702
|
-
- _class: Expressir::Model::Statements::Null
|
1703
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1704
|
-
id: escape_statement
|
1705
|
-
statements:
|
1706
|
-
- _class: Expressir::Model::Statements::Escape
|
1707
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1708
|
-
id: if_statement
|
1709
|
-
statements:
|
1710
|
-
- _class: Expressir::Model::Statements::If
|
1711
|
-
expression:
|
1712
|
-
_class: Expressir::Model::Literals::Logical
|
1713
|
-
value: :TRUE
|
1714
|
-
statements:
|
1715
|
-
- _class: Expressir::Model::Statements::Null
|
1716
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1717
|
-
id: if2_statement
|
1718
|
-
statements:
|
1719
|
-
- _class: Expressir::Model::Statements::If
|
1720
|
-
expression:
|
1721
|
-
_class: Expressir::Model::Literals::Logical
|
1722
|
-
value: :TRUE
|
1723
|
-
statements:
|
1724
|
-
- _class: Expressir::Model::Statements::Null
|
1725
|
-
- _class: Expressir::Model::Statements::Null
|
1726
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1727
|
-
id: if_else_statement
|
1728
|
-
statements:
|
1729
|
-
- _class: Expressir::Model::Statements::If
|
1730
|
-
expression:
|
1731
|
-
_class: Expressir::Model::Literals::Logical
|
1732
|
-
value: :TRUE
|
1733
|
-
statements:
|
1734
|
-
- _class: Expressir::Model::Statements::Null
|
1735
|
-
else_statements:
|
1736
|
-
- _class: Expressir::Model::Statements::Null
|
1737
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1738
|
-
id: if2_else_statement
|
1739
|
-
statements:
|
1740
|
-
- _class: Expressir::Model::Statements::If
|
1741
|
-
expression:
|
1742
|
-
_class: Expressir::Model::Literals::Logical
|
1743
|
-
value: :TRUE
|
1744
|
-
statements:
|
1745
|
-
- _class: Expressir::Model::Statements::Null
|
1746
|
-
- _class: Expressir::Model::Statements::Null
|
1747
|
-
else_statements:
|
1748
|
-
- _class: Expressir::Model::Statements::Null
|
1749
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1750
|
-
id: if_else2_statement
|
1751
|
-
statements:
|
1752
|
-
- _class: Expressir::Model::Statements::If
|
1753
|
-
expression:
|
1754
|
-
_class: Expressir::Model::Literals::Logical
|
1755
|
-
value: :TRUE
|
1756
|
-
statements:
|
1757
|
-
- _class: Expressir::Model::Statements::Null
|
1758
|
-
else_statements:
|
1759
|
-
- _class: Expressir::Model::Statements::Null
|
1760
|
-
- _class: Expressir::Model::Statements::Null
|
1761
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1762
|
-
id: if2_else2_statement
|
1763
|
-
statements:
|
1764
|
-
- _class: Expressir::Model::Statements::If
|
1765
|
-
expression:
|
1766
|
-
_class: Expressir::Model::Literals::Logical
|
1767
|
-
value: :TRUE
|
1768
|
-
statements:
|
1769
|
-
- _class: Expressir::Model::Statements::Null
|
1770
|
-
- _class: Expressir::Model::Statements::Null
|
1771
|
-
else_statements:
|
1772
|
-
- _class: Expressir::Model::Statements::Null
|
1773
|
-
- _class: Expressir::Model::Statements::Null
|
1774
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1775
|
-
id: null_statement
|
1776
|
-
statements:
|
1777
|
-
- _class: Expressir::Model::Statements::Null
|
1778
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1779
|
-
id: call_statement
|
1780
|
-
statements:
|
1781
|
-
- _class: Expressir::Model::Statements::ProcedureCall
|
1782
|
-
procedure:
|
1783
|
-
_class: Expressir::Model::References::SimpleReference
|
1784
|
-
id: empty_procedure
|
1785
|
-
base_path: syntax_schema.empty_procedure
|
1786
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1787
|
-
id: call_parameter_statement
|
1788
|
-
statements:
|
1789
|
-
- _class: Expressir::Model::Statements::ProcedureCall
|
1790
|
-
procedure:
|
1791
|
-
_class: Expressir::Model::References::SimpleReference
|
1792
|
-
id: empty_procedure
|
1793
|
-
base_path: syntax_schema.empty_procedure
|
1794
|
-
parameters:
|
1795
|
-
- _class: Expressir::Model::Literals::Logical
|
1796
|
-
value: :TRUE
|
1797
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1798
|
-
id: call_parameter2_statement
|
1799
|
-
statements:
|
1800
|
-
- _class: Expressir::Model::Statements::ProcedureCall
|
1801
|
-
procedure:
|
1802
|
-
_class: Expressir::Model::References::SimpleReference
|
1803
|
-
id: empty_procedure
|
1804
|
-
base_path: syntax_schema.empty_procedure
|
1805
|
-
parameters:
|
1806
|
-
- _class: Expressir::Model::Literals::Logical
|
1807
|
-
value: :TRUE
|
1808
|
-
- _class: Expressir::Model::Literals::Logical
|
1809
|
-
value: :TRUE
|
1810
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1811
|
-
id: call_insert_statement
|
1812
|
-
statements:
|
1813
|
-
- _class: Expressir::Model::Statements::ProcedureCall
|
1814
|
-
procedure:
|
1815
|
-
_class: Expressir::Model::References::SimpleReference
|
1816
|
-
id: INSERT
|
1817
|
-
parameters:
|
1818
|
-
- _class: Expressir::Model::Literals::Logical
|
1819
|
-
value: :TRUE
|
1820
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1821
|
-
id: call_remove_statement
|
1822
|
-
statements:
|
1823
|
-
- _class: Expressir::Model::Statements::ProcedureCall
|
1824
|
-
procedure:
|
1825
|
-
_class: Expressir::Model::References::SimpleReference
|
1826
|
-
id: REMOVE
|
1827
|
-
parameters:
|
1828
|
-
- _class: Expressir::Model::Literals::Logical
|
1829
|
-
value: :TRUE
|
1830
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1831
|
-
id: repeat_statement
|
1832
|
-
statements:
|
1833
|
-
- _class: Expressir::Model::Statements::Repeat
|
1834
|
-
statements:
|
1835
|
-
- _class: Expressir::Model::Statements::Null
|
1836
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1837
|
-
id: repeat_variable_statement
|
1838
|
-
statements:
|
1839
|
-
- _class: Expressir::Model::Statements::Repeat
|
1840
|
-
id: test
|
1841
|
-
bound1:
|
1842
|
-
_class: Expressir::Model::Literals::Integer
|
1843
|
-
value: '1'
|
1844
|
-
bound2:
|
1845
|
-
_class: Expressir::Model::Literals::Integer
|
1846
|
-
value: '9'
|
1847
|
-
statements:
|
1848
|
-
- _class: Expressir::Model::Statements::Null
|
1849
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1850
|
-
id: repeat_variable_increment_statement
|
1851
|
-
statements:
|
1852
|
-
- _class: Expressir::Model::Statements::Repeat
|
1853
|
-
id: test
|
1854
|
-
bound1:
|
1855
|
-
_class: Expressir::Model::Literals::Integer
|
1856
|
-
value: '1'
|
1857
|
-
bound2:
|
1858
|
-
_class: Expressir::Model::Literals::Integer
|
1859
|
-
value: '9'
|
1860
|
-
increment:
|
1861
|
-
_class: Expressir::Model::Literals::Integer
|
1862
|
-
value: '2'
|
1863
|
-
statements:
|
1864
|
-
- _class: Expressir::Model::Statements::Null
|
1865
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1866
|
-
id: repeat_while_statement
|
1867
|
-
statements:
|
1868
|
-
- _class: Expressir::Model::Statements::Repeat
|
1869
|
-
while_expression:
|
1870
|
-
_class: Expressir::Model::Literals::Logical
|
1871
|
-
value: :TRUE
|
1872
|
-
statements:
|
1873
|
-
- _class: Expressir::Model::Statements::Null
|
1874
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1875
|
-
id: repeat_until_statement
|
1876
|
-
statements:
|
1877
|
-
- _class: Expressir::Model::Statements::Repeat
|
1878
|
-
until_expression:
|
1879
|
-
_class: Expressir::Model::Literals::Logical
|
1880
|
-
value: :TRUE
|
1881
|
-
statements:
|
1882
|
-
- _class: Expressir::Model::Statements::Null
|
1883
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1884
|
-
id: return_statement
|
1885
|
-
statements:
|
1886
|
-
- _class: Expressir::Model::Statements::Return
|
1887
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1888
|
-
id: return_expression_statement
|
1889
|
-
statements:
|
1890
|
-
- _class: Expressir::Model::Statements::Return
|
1891
|
-
expression:
|
1892
|
-
_class: Expressir::Model::Literals::Logical
|
1893
|
-
value: :TRUE
|
1894
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1895
|
-
id: skip_statement
|
1896
|
-
statements:
|
1897
|
-
- _class: Expressir::Model::Statements::Skip
|
1898
|
-
- _class: Expressir::Model::Declarations::Procedure
|
1899
|
-
id: types
|
1900
|
-
types:
|
1901
|
-
- _class: Expressir::Model::Declarations::Type
|
1902
|
-
id: binary_type
|
1903
|
-
underlying_type:
|
1904
|
-
_class: Expressir::Model::DataTypes::Binary
|
1905
|
-
- _class: Expressir::Model::Declarations::Type
|
1906
|
-
id: binary_width_type
|
1907
|
-
underlying_type:
|
1908
|
-
_class: Expressir::Model::DataTypes::Binary
|
1909
|
-
width:
|
1910
|
-
_class: Expressir::Model::Literals::Integer
|
1911
|
-
value: '3'
|
1912
|
-
- _class: Expressir::Model::Declarations::Type
|
1913
|
-
id: binary_width_fixed_type
|
1914
|
-
underlying_type:
|
1915
|
-
_class: Expressir::Model::DataTypes::Binary
|
1916
|
-
width:
|
1917
|
-
_class: Expressir::Model::Literals::Integer
|
1918
|
-
value: '3'
|
1919
|
-
fixed: true
|
1920
|
-
- _class: Expressir::Model::Declarations::Type
|
1921
|
-
id: boolean_type
|
1922
|
-
underlying_type:
|
1923
|
-
_class: Expressir::Model::DataTypes::Boolean
|
1924
|
-
- _class: Expressir::Model::Declarations::Type
|
1925
|
-
id: integer_type
|
1926
|
-
underlying_type:
|
1927
|
-
_class: Expressir::Model::DataTypes::Integer
|
1928
|
-
- _class: Expressir::Model::Declarations::Type
|
1929
|
-
id: logical_type
|
1930
|
-
underlying_type:
|
1931
|
-
_class: Expressir::Model::DataTypes::Logical
|
1932
|
-
- _class: Expressir::Model::Declarations::Type
|
1933
|
-
id: number_type
|
1934
|
-
underlying_type:
|
1935
|
-
_class: Expressir::Model::DataTypes::Number
|
1936
|
-
- _class: Expressir::Model::Declarations::Type
|
1937
|
-
id: real_type
|
1938
|
-
underlying_type:
|
1939
|
-
_class: Expressir::Model::DataTypes::Real
|
1940
|
-
- _class: Expressir::Model::Declarations::Type
|
1941
|
-
id: real_precision_type
|
1942
|
-
underlying_type:
|
1943
|
-
_class: Expressir::Model::DataTypes::Real
|
1944
|
-
precision:
|
1945
|
-
_class: Expressir::Model::Literals::Integer
|
1946
|
-
value: '3'
|
1947
|
-
- _class: Expressir::Model::Declarations::Type
|
1948
|
-
id: string_type
|
1949
|
-
underlying_type:
|
1950
|
-
_class: Expressir::Model::DataTypes::String
|
1951
|
-
- _class: Expressir::Model::Declarations::Type
|
1952
|
-
id: string_width_type
|
1953
|
-
underlying_type:
|
1954
|
-
_class: Expressir::Model::DataTypes::String
|
1955
|
-
width:
|
1956
|
-
_class: Expressir::Model::Literals::Integer
|
1957
|
-
value: '3'
|
1958
|
-
- _class: Expressir::Model::Declarations::Type
|
1959
|
-
id: string_width_fixed_type
|
1960
|
-
underlying_type:
|
1961
|
-
_class: Expressir::Model::DataTypes::String
|
1962
|
-
width:
|
1963
|
-
_class: Expressir::Model::Literals::Integer
|
1964
|
-
value: '3'
|
1965
|
-
fixed: true
|
1966
|
-
- _class: Expressir::Model::Declarations::Type
|
1967
|
-
id: array_type
|
1968
|
-
underlying_type:
|
1969
|
-
_class: Expressir::Model::DataTypes::Array
|
1970
|
-
bound1:
|
1971
|
-
_class: Expressir::Model::Literals::Integer
|
1972
|
-
value: '1'
|
1973
|
-
bound2:
|
1974
|
-
_class: Expressir::Model::Literals::Integer
|
1975
|
-
value: '9'
|
1976
|
-
base_type:
|
1977
|
-
_class: Expressir::Model::DataTypes::String
|
1978
|
-
- _class: Expressir::Model::Declarations::Type
|
1979
|
-
id: array_optional_type
|
1980
|
-
underlying_type:
|
1981
|
-
_class: Expressir::Model::DataTypes::Array
|
1982
|
-
bound1:
|
1983
|
-
_class: Expressir::Model::Literals::Integer
|
1984
|
-
value: '1'
|
1985
|
-
bound2:
|
1986
|
-
_class: Expressir::Model::Literals::Integer
|
1987
|
-
value: '9'
|
1988
|
-
optional: true
|
1989
|
-
base_type:
|
1990
|
-
_class: Expressir::Model::DataTypes::String
|
1991
|
-
- _class: Expressir::Model::Declarations::Type
|
1992
|
-
id: array_unique_type
|
1993
|
-
underlying_type:
|
1994
|
-
_class: Expressir::Model::DataTypes::Array
|
1995
|
-
bound1:
|
1996
|
-
_class: Expressir::Model::Literals::Integer
|
1997
|
-
value: '1'
|
1998
|
-
bound2:
|
1999
|
-
_class: Expressir::Model::Literals::Integer
|
2000
|
-
value: '9'
|
2001
|
-
unique: true
|
2002
|
-
base_type:
|
2003
|
-
_class: Expressir::Model::DataTypes::String
|
2004
|
-
- _class: Expressir::Model::Declarations::Type
|
2005
|
-
id: array_optional_unique_type
|
2006
|
-
underlying_type:
|
2007
|
-
_class: Expressir::Model::DataTypes::Array
|
2008
|
-
bound1:
|
2009
|
-
_class: Expressir::Model::Literals::Integer
|
2010
|
-
value: '1'
|
2011
|
-
bound2:
|
2012
|
-
_class: Expressir::Model::Literals::Integer
|
2013
|
-
value: '9'
|
2014
|
-
optional: true
|
2015
|
-
unique: true
|
2016
|
-
base_type:
|
2017
|
-
_class: Expressir::Model::DataTypes::String
|
2018
|
-
- _class: Expressir::Model::Declarations::Type
|
2019
|
-
id: bag_type
|
2020
|
-
underlying_type:
|
2021
|
-
_class: Expressir::Model::DataTypes::Bag
|
2022
|
-
base_type:
|
2023
|
-
_class: Expressir::Model::DataTypes::String
|
2024
|
-
- _class: Expressir::Model::Declarations::Type
|
2025
|
-
id: bag_bound_type
|
2026
|
-
underlying_type:
|
2027
|
-
_class: Expressir::Model::DataTypes::Bag
|
2028
|
-
bound1:
|
2029
|
-
_class: Expressir::Model::Literals::Integer
|
2030
|
-
value: '1'
|
2031
|
-
bound2:
|
2032
|
-
_class: Expressir::Model::Literals::Integer
|
2033
|
-
value: '9'
|
2034
|
-
base_type:
|
2035
|
-
_class: Expressir::Model::DataTypes::String
|
2036
|
-
- _class: Expressir::Model::Declarations::Type
|
2037
|
-
id: list_type
|
2038
|
-
underlying_type:
|
2039
|
-
_class: Expressir::Model::DataTypes::List
|
2040
|
-
base_type:
|
2041
|
-
_class: Expressir::Model::DataTypes::String
|
2042
|
-
- _class: Expressir::Model::Declarations::Type
|
2043
|
-
id: list_bound_type
|
2044
|
-
underlying_type:
|
2045
|
-
_class: Expressir::Model::DataTypes::List
|
2046
|
-
bound1:
|
2047
|
-
_class: Expressir::Model::Literals::Integer
|
2048
|
-
value: '1'
|
2049
|
-
bound2:
|
2050
|
-
_class: Expressir::Model::Literals::Integer
|
2051
|
-
value: '9'
|
2052
|
-
base_type:
|
2053
|
-
_class: Expressir::Model::DataTypes::String
|
2054
|
-
- _class: Expressir::Model::Declarations::Type
|
2055
|
-
id: list_unique_type
|
2056
|
-
underlying_type:
|
2057
|
-
_class: Expressir::Model::DataTypes::List
|
2058
|
-
unique: true
|
2059
|
-
base_type:
|
2060
|
-
_class: Expressir::Model::DataTypes::String
|
2061
|
-
- _class: Expressir::Model::Declarations::Type
|
2062
|
-
id: list_bound_unique_type
|
2063
|
-
underlying_type:
|
2064
|
-
_class: Expressir::Model::DataTypes::List
|
2065
|
-
bound1:
|
2066
|
-
_class: Expressir::Model::Literals::Integer
|
2067
|
-
value: '1'
|
2068
|
-
bound2:
|
2069
|
-
_class: Expressir::Model::Literals::Integer
|
2070
|
-
value: '9'
|
2071
|
-
unique: true
|
2072
|
-
base_type:
|
2073
|
-
_class: Expressir::Model::DataTypes::String
|
2074
|
-
- _class: Expressir::Model::Declarations::Type
|
2075
|
-
id: set_type
|
2076
|
-
underlying_type:
|
2077
|
-
_class: Expressir::Model::DataTypes::Set
|
2078
|
-
base_type:
|
2079
|
-
_class: Expressir::Model::DataTypes::String
|
2080
|
-
- _class: Expressir::Model::Declarations::Type
|
2081
|
-
id: set_bound_type
|
2082
|
-
underlying_type:
|
2083
|
-
_class: Expressir::Model::DataTypes::Set
|
2084
|
-
bound1:
|
2085
|
-
_class: Expressir::Model::Literals::Integer
|
2086
|
-
value: '1'
|
2087
|
-
bound2:
|
2088
|
-
_class: Expressir::Model::Literals::Integer
|
2089
|
-
value: '9'
|
2090
|
-
base_type:
|
2091
|
-
_class: Expressir::Model::DataTypes::String
|
2092
|
-
- _class: Expressir::Model::Declarations::Type
|
2093
|
-
id: select_type
|
2094
|
-
underlying_type:
|
2095
|
-
_class: Expressir::Model::DataTypes::Select
|
2096
|
-
- _class: Expressir::Model::Declarations::Type
|
2097
|
-
id: select_extensible_type
|
2098
|
-
underlying_type:
|
2099
|
-
_class: Expressir::Model::DataTypes::Select
|
2100
|
-
extensible: true
|
2101
|
-
- _class: Expressir::Model::Declarations::Type
|
2102
|
-
id: select_extensible_generic_entity_type
|
2103
|
-
underlying_type:
|
2104
|
-
_class: Expressir::Model::DataTypes::Select
|
2105
|
-
extensible: true
|
2106
|
-
generic_entity: true
|
2107
|
-
- _class: Expressir::Model::Declarations::Type
|
2108
|
-
id: select_item_type
|
2109
|
-
underlying_type:
|
2110
|
-
_class: Expressir::Model::DataTypes::Select
|
2111
|
-
items:
|
2112
|
-
- _class: Expressir::Model::References::SimpleReference
|
2113
|
-
id: empty_type
|
2114
|
-
base_path: syntax_schema.empty_type
|
2115
|
-
- _class: Expressir::Model::Declarations::Type
|
2116
|
-
id: select_multiple_item_type
|
2117
|
-
underlying_type:
|
2118
|
-
_class: Expressir::Model::DataTypes::Select
|
2119
|
-
items:
|
2120
|
-
- _class: Expressir::Model::References::SimpleReference
|
2121
|
-
id: empty_type
|
2122
|
-
base_path: syntax_schema.empty_type
|
2123
|
-
- _class: Expressir::Model::References::SimpleReference
|
2124
|
-
id: empty_type
|
2125
|
-
base_path: syntax_schema.empty_type
|
2126
|
-
- _class: Expressir::Model::Declarations::Type
|
2127
|
-
id: select_based_on_type
|
2128
|
-
underlying_type:
|
2129
|
-
_class: Expressir::Model::DataTypes::Select
|
2130
|
-
based_on:
|
2131
|
-
_class: Expressir::Model::References::SimpleReference
|
2132
|
-
id: select_type
|
2133
|
-
base_path: syntax_schema.types.select_type
|
2134
|
-
- _class: Expressir::Model::Declarations::Type
|
2135
|
-
id: select_based_on_item_type
|
2136
|
-
underlying_type:
|
2137
|
-
_class: Expressir::Model::DataTypes::Select
|
2138
|
-
based_on:
|
2139
|
-
_class: Expressir::Model::References::SimpleReference
|
2140
|
-
id: select_type
|
2141
|
-
base_path: syntax_schema.types.select_type
|
2142
|
-
items:
|
2143
|
-
- _class: Expressir::Model::References::SimpleReference
|
2144
|
-
id: empty_type
|
2145
|
-
base_path: syntax_schema.empty_type
|
2146
|
-
- _class: Expressir::Model::Declarations::Type
|
2147
|
-
id: select_based_on_multiple_item_type
|
2148
|
-
underlying_type:
|
2149
|
-
_class: Expressir::Model::DataTypes::Select
|
2150
|
-
based_on:
|
2151
|
-
_class: Expressir::Model::References::SimpleReference
|
2152
|
-
id: select_type
|
2153
|
-
base_path: syntax_schema.types.select_type
|
2154
|
-
items:
|
2155
|
-
- _class: Expressir::Model::References::SimpleReference
|
2156
|
-
id: empty_type
|
2157
|
-
base_path: syntax_schema.empty_type
|
2158
|
-
- _class: Expressir::Model::References::SimpleReference
|
2159
|
-
id: empty_type
|
2160
|
-
base_path: syntax_schema.empty_type
|
2161
|
-
- _class: Expressir::Model::Declarations::Type
|
2162
|
-
id: enumeration_type
|
2163
|
-
underlying_type:
|
2164
|
-
_class: Expressir::Model::DataTypes::Enumeration
|
2165
|
-
- _class: Expressir::Model::Declarations::Type
|
2166
|
-
id: enumeration_extensible_type
|
2167
|
-
underlying_type:
|
2168
|
-
_class: Expressir::Model::DataTypes::Enumeration
|
2169
|
-
extensible: true
|
2170
|
-
- _class: Expressir::Model::Declarations::Type
|
2171
|
-
id: enumeration_item_type
|
2172
|
-
underlying_type:
|
2173
|
-
_class: Expressir::Model::DataTypes::Enumeration
|
2174
|
-
items:
|
2175
|
-
- _class: Expressir::Model::DataTypes::EnumerationItem
|
2176
|
-
id: test
|
2177
|
-
- _class: Expressir::Model::Declarations::Type
|
2178
|
-
id: enumeration_multiple_item_type
|
2179
|
-
underlying_type:
|
2180
|
-
_class: Expressir::Model::DataTypes::Enumeration
|
2181
|
-
items:
|
2182
|
-
- _class: Expressir::Model::DataTypes::EnumerationItem
|
2183
|
-
id: test
|
2184
|
-
- _class: Expressir::Model::DataTypes::EnumerationItem
|
2185
|
-
id: test2
|
2186
|
-
- _class: Expressir::Model::Declarations::Type
|
2187
|
-
id: enumeration_based_on_type
|
2188
|
-
underlying_type:
|
2189
|
-
_class: Expressir::Model::DataTypes::Enumeration
|
2190
|
-
based_on:
|
2191
|
-
_class: Expressir::Model::References::SimpleReference
|
2192
|
-
id: enumeration_type
|
2193
|
-
base_path: syntax_schema.types.enumeration_type
|
2194
|
-
- _class: Expressir::Model::Declarations::Type
|
2195
|
-
id: enumeration_based_on_item_type
|
2196
|
-
underlying_type:
|
2197
|
-
_class: Expressir::Model::DataTypes::Enumeration
|
2198
|
-
based_on:
|
2199
|
-
_class: Expressir::Model::References::SimpleReference
|
2200
|
-
id: enumeration_type
|
2201
|
-
base_path: syntax_schema.types.enumeration_type
|
2202
|
-
items:
|
2203
|
-
- _class: Expressir::Model::DataTypes::EnumerationItem
|
2204
|
-
id: test
|
2205
|
-
- _class: Expressir::Model::Declarations::Type
|
2206
|
-
id: enumeration_based_on_multiple_item_type
|
2207
|
-
underlying_type:
|
2208
|
-
_class: Expressir::Model::DataTypes::Enumeration
|
2209
|
-
based_on:
|
2210
|
-
_class: Expressir::Model::References::SimpleReference
|
2211
|
-
id: enumeration_type
|
2212
|
-
base_path: syntax_schema.types.enumeration_type
|
2213
|
-
items:
|
2214
|
-
- _class: Expressir::Model::DataTypes::EnumerationItem
|
2215
|
-
id: test
|
2216
|
-
- _class: Expressir::Model::DataTypes::EnumerationItem
|
2217
|
-
id: test2
|
2218
|
-
functions:
|
2219
|
-
- _class: Expressir::Model::Declarations::Function
|
2220
|
-
id: generic_type
|
2221
|
-
return_type:
|
2222
|
-
_class: Expressir::Model::DataTypes::Generic
|
2223
|
-
statements:
|
2224
|
-
- _class: Expressir::Model::Statements::Null
|
2225
|
-
- _class: Expressir::Model::Declarations::Function
|
2226
|
-
id: generic_label_type
|
2227
|
-
return_type:
|
2228
|
-
_class: Expressir::Model::DataTypes::Generic
|
2229
|
-
id: label
|
2230
|
-
statements:
|
2231
|
-
- _class: Expressir::Model::Statements::Null
|
2232
|
-
- _class: Expressir::Model::Declarations::Function
|
2233
|
-
id: generic_entity_type
|
2234
|
-
return_type:
|
2235
|
-
_class: Expressir::Model::DataTypes::GenericEntity
|
2236
|
-
statements:
|
2237
|
-
- _class: Expressir::Model::Statements::Null
|
2238
|
-
- _class: Expressir::Model::Declarations::Function
|
2239
|
-
id: generic_entity_label_type
|
2240
|
-
return_type:
|
2241
|
-
_class: Expressir::Model::DataTypes::GenericEntity
|
2242
|
-
id: label
|
2243
|
-
statements:
|
2244
|
-
- _class: Expressir::Model::Statements::Null
|
2245
|
-
- _class: Expressir::Model::Declarations::Procedure
|
2246
|
-
id: expressions
|
2247
|
-
variables:
|
2248
|
-
- _class: Expressir::Model::Declarations::Variable
|
2249
|
-
id: binary_expression
|
2250
|
-
type:
|
2251
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2252
|
-
expression:
|
2253
|
-
_class: Expressir::Model::Literals::Binary
|
2254
|
-
value: '011110000111100001111000'
|
2255
|
-
- _class: Expressir::Model::Declarations::Variable
|
2256
|
-
id: integer_expression
|
2257
|
-
type:
|
2258
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2259
|
-
expression:
|
2260
|
-
_class: Expressir::Model::Literals::Integer
|
2261
|
-
value: '999'
|
2262
|
-
- _class: Expressir::Model::Declarations::Variable
|
2263
|
-
id: true_logical_expression
|
2264
|
-
type:
|
2265
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2266
|
-
expression:
|
2267
|
-
_class: Expressir::Model::Literals::Logical
|
2268
|
-
value: :TRUE
|
2269
|
-
- _class: Expressir::Model::Declarations::Variable
|
2270
|
-
id: false_logical_expression
|
2271
|
-
type:
|
2272
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2273
|
-
expression:
|
2274
|
-
_class: Expressir::Model::Literals::Logical
|
2275
|
-
value: :FALSE
|
2276
|
-
- _class: Expressir::Model::Declarations::Variable
|
2277
|
-
id: unknown_logical_expression
|
2278
|
-
type:
|
2279
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2280
|
-
expression:
|
2281
|
-
_class: Expressir::Model::Literals::Logical
|
2282
|
-
value: :UNKNOWN
|
2283
|
-
- _class: Expressir::Model::Declarations::Variable
|
2284
|
-
id: real_expression
|
2285
|
-
type:
|
2286
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2287
|
-
expression:
|
2288
|
-
_class: Expressir::Model::Literals::Real
|
2289
|
-
value: '999.999'
|
2290
|
-
- _class: Expressir::Model::Declarations::Variable
|
2291
|
-
id: simple_string_expression
|
2292
|
-
type:
|
2293
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2294
|
-
expression:
|
2295
|
-
_class: Expressir::Model::Literals::String
|
2296
|
-
value: xxx
|
2297
|
-
- _class: Expressir::Model::Declarations::Variable
|
2298
|
-
id: utf8_simple_string_expression
|
2299
|
-
type:
|
2300
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2301
|
-
expression:
|
2302
|
-
_class: Expressir::Model::Literals::String
|
2303
|
-
value: 'UTF8 test: Příliš žluťoučký kůň úpěl ďábelské ódy.'
|
2304
|
-
- _class: Expressir::Model::Declarations::Variable
|
2305
|
-
id: encoded_string_expression
|
2306
|
-
type:
|
2307
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2308
|
-
expression:
|
2309
|
-
_class: Expressir::Model::Literals::String
|
2310
|
-
value: '000000780000007800000078'
|
2311
|
-
encoded: true
|
2312
|
-
- _class: Expressir::Model::Declarations::Variable
|
2313
|
-
id: const_e_expression
|
2314
|
-
type:
|
2315
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2316
|
-
expression:
|
2317
|
-
_class: Expressir::Model::References::SimpleReference
|
2318
|
-
id: CONST_E
|
2319
|
-
- _class: Expressir::Model::Declarations::Variable
|
2320
|
-
id: indeterminate_expression
|
2321
|
-
type:
|
2322
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2323
|
-
expression:
|
2324
|
-
_class: Expressir::Model::References::SimpleReference
|
2325
|
-
id: "?"
|
2326
|
-
- _class: Expressir::Model::Declarations::Variable
|
2327
|
-
id: pi_expression
|
2328
|
-
type:
|
2329
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2330
|
-
expression:
|
2331
|
-
_class: Expressir::Model::References::SimpleReference
|
2332
|
-
id: PI
|
2333
|
-
- _class: Expressir::Model::Declarations::Variable
|
2334
|
-
id: self_expression
|
2335
|
-
type:
|
2336
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2337
|
-
expression:
|
2338
|
-
_class: Expressir::Model::References::SimpleReference
|
2339
|
-
id: SELF
|
2340
|
-
- _class: Expressir::Model::Declarations::Variable
|
2341
|
-
id: abs_expression
|
2342
|
-
type:
|
2343
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2344
|
-
expression:
|
2345
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2346
|
-
function:
|
2347
|
-
_class: Expressir::Model::References::SimpleReference
|
2348
|
-
id: ABS
|
2349
|
-
parameters:
|
2350
|
-
- _class: Expressir::Model::Literals::Logical
|
2351
|
-
value: :TRUE
|
2352
|
-
- _class: Expressir::Model::Declarations::Variable
|
2353
|
-
id: acos_expression
|
2354
|
-
type:
|
2355
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2356
|
-
expression:
|
2357
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2358
|
-
function:
|
2359
|
-
_class: Expressir::Model::References::SimpleReference
|
2360
|
-
id: ACOS
|
2361
|
-
parameters:
|
2362
|
-
- _class: Expressir::Model::Literals::Logical
|
2363
|
-
value: :TRUE
|
2364
|
-
- _class: Expressir::Model::Declarations::Variable
|
2365
|
-
id: asin_expression
|
2366
|
-
type:
|
2367
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2368
|
-
expression:
|
2369
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2370
|
-
function:
|
2371
|
-
_class: Expressir::Model::References::SimpleReference
|
2372
|
-
id: ASIN
|
2373
|
-
parameters:
|
2374
|
-
- _class: Expressir::Model::Literals::Logical
|
2375
|
-
value: :TRUE
|
2376
|
-
- _class: Expressir::Model::Declarations::Variable
|
2377
|
-
id: atan_expression
|
2378
|
-
type:
|
2379
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2380
|
-
expression:
|
2381
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2382
|
-
function:
|
2383
|
-
_class: Expressir::Model::References::SimpleReference
|
2384
|
-
id: ATAN
|
2385
|
-
parameters:
|
2386
|
-
- _class: Expressir::Model::Literals::Logical
|
2387
|
-
value: :TRUE
|
2388
|
-
- _class: Expressir::Model::Declarations::Variable
|
2389
|
-
id: blength_expression
|
2390
|
-
type:
|
2391
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2392
|
-
expression:
|
2393
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2394
|
-
function:
|
2395
|
-
_class: Expressir::Model::References::SimpleReference
|
2396
|
-
id: BLENGTH
|
2397
|
-
parameters:
|
2398
|
-
- _class: Expressir::Model::Literals::Logical
|
2399
|
-
value: :TRUE
|
2400
|
-
- _class: Expressir::Model::Declarations::Variable
|
2401
|
-
id: cos_expression
|
2402
|
-
type:
|
2403
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2404
|
-
expression:
|
2405
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2406
|
-
function:
|
2407
|
-
_class: Expressir::Model::References::SimpleReference
|
2408
|
-
id: COS
|
2409
|
-
parameters:
|
2410
|
-
- _class: Expressir::Model::Literals::Logical
|
2411
|
-
value: :TRUE
|
2412
|
-
- _class: Expressir::Model::Declarations::Variable
|
2413
|
-
id: exists_expression
|
2414
|
-
type:
|
2415
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2416
|
-
expression:
|
2417
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2418
|
-
function:
|
2419
|
-
_class: Expressir::Model::References::SimpleReference
|
2420
|
-
id: EXISTS
|
2421
|
-
parameters:
|
2422
|
-
- _class: Expressir::Model::Literals::Logical
|
2423
|
-
value: :TRUE
|
2424
|
-
- _class: Expressir::Model::Declarations::Variable
|
2425
|
-
id: exp_expression
|
2426
|
-
type:
|
2427
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2428
|
-
expression:
|
2429
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2430
|
-
function:
|
2431
|
-
_class: Expressir::Model::References::SimpleReference
|
2432
|
-
id: EXP
|
2433
|
-
parameters:
|
2434
|
-
- _class: Expressir::Model::Literals::Logical
|
2435
|
-
value: :TRUE
|
2436
|
-
- _class: Expressir::Model::Declarations::Variable
|
2437
|
-
id: format_expression
|
2438
|
-
type:
|
2439
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2440
|
-
expression:
|
2441
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2442
|
-
function:
|
2443
|
-
_class: Expressir::Model::References::SimpleReference
|
2444
|
-
id: FORMAT
|
2445
|
-
parameters:
|
2446
|
-
- _class: Expressir::Model::Literals::Logical
|
2447
|
-
value: :TRUE
|
2448
|
-
- _class: Expressir::Model::Declarations::Variable
|
2449
|
-
id: hibound_expression
|
2450
|
-
type:
|
2451
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2452
|
-
expression:
|
2453
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2454
|
-
function:
|
2455
|
-
_class: Expressir::Model::References::SimpleReference
|
2456
|
-
id: HIBOUND
|
2457
|
-
parameters:
|
2458
|
-
- _class: Expressir::Model::Literals::Logical
|
2459
|
-
value: :TRUE
|
2460
|
-
- _class: Expressir::Model::Declarations::Variable
|
2461
|
-
id: hiindex_expression
|
2462
|
-
type:
|
2463
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2464
|
-
expression:
|
2465
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2466
|
-
function:
|
2467
|
-
_class: Expressir::Model::References::SimpleReference
|
2468
|
-
id: HIINDEX
|
2469
|
-
parameters:
|
2470
|
-
- _class: Expressir::Model::Literals::Logical
|
2471
|
-
value: :TRUE
|
2472
|
-
- _class: Expressir::Model::Declarations::Variable
|
2473
|
-
id: length_expression
|
2474
|
-
type:
|
2475
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2476
|
-
expression:
|
2477
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2478
|
-
function:
|
2479
|
-
_class: Expressir::Model::References::SimpleReference
|
2480
|
-
id: LENGTH
|
2481
|
-
parameters:
|
2482
|
-
- _class: Expressir::Model::Literals::Logical
|
2483
|
-
value: :TRUE
|
2484
|
-
- _class: Expressir::Model::Declarations::Variable
|
2485
|
-
id: lobound_expression
|
2486
|
-
type:
|
2487
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2488
|
-
expression:
|
2489
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2490
|
-
function:
|
2491
|
-
_class: Expressir::Model::References::SimpleReference
|
2492
|
-
id: LOBOUND
|
2493
|
-
parameters:
|
2494
|
-
- _class: Expressir::Model::Literals::Logical
|
2495
|
-
value: :TRUE
|
2496
|
-
- _class: Expressir::Model::Declarations::Variable
|
2497
|
-
id: loindex_expression
|
2498
|
-
type:
|
2499
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2500
|
-
expression:
|
2501
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2502
|
-
function:
|
2503
|
-
_class: Expressir::Model::References::SimpleReference
|
2504
|
-
id: LOINDEX
|
2505
|
-
parameters:
|
2506
|
-
- _class: Expressir::Model::Literals::Logical
|
2507
|
-
value: :TRUE
|
2508
|
-
- _class: Expressir::Model::Declarations::Variable
|
2509
|
-
id: log_expression
|
2510
|
-
type:
|
2511
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2512
|
-
expression:
|
2513
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2514
|
-
function:
|
2515
|
-
_class: Expressir::Model::References::SimpleReference
|
2516
|
-
id: LOG
|
2517
|
-
parameters:
|
2518
|
-
- _class: Expressir::Model::Literals::Logical
|
2519
|
-
value: :TRUE
|
2520
|
-
- _class: Expressir::Model::Declarations::Variable
|
2521
|
-
id: log2_expression
|
2522
|
-
type:
|
2523
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2524
|
-
expression:
|
2525
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2526
|
-
function:
|
2527
|
-
_class: Expressir::Model::References::SimpleReference
|
2528
|
-
id: LOG2
|
2529
|
-
parameters:
|
2530
|
-
- _class: Expressir::Model::Literals::Logical
|
2531
|
-
value: :TRUE
|
2532
|
-
- _class: Expressir::Model::Declarations::Variable
|
2533
|
-
id: log10_expression
|
2534
|
-
type:
|
2535
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2536
|
-
expression:
|
2537
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2538
|
-
function:
|
2539
|
-
_class: Expressir::Model::References::SimpleReference
|
2540
|
-
id: LOG10
|
2541
|
-
parameters:
|
2542
|
-
- _class: Expressir::Model::Literals::Logical
|
2543
|
-
value: :TRUE
|
2544
|
-
- _class: Expressir::Model::Declarations::Variable
|
2545
|
-
id: nvl_expression
|
2546
|
-
type:
|
2547
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2548
|
-
expression:
|
2549
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2550
|
-
function:
|
2551
|
-
_class: Expressir::Model::References::SimpleReference
|
2552
|
-
id: NVL
|
2553
|
-
parameters:
|
2554
|
-
- _class: Expressir::Model::Literals::Logical
|
2555
|
-
value: :TRUE
|
2556
|
-
- _class: Expressir::Model::Declarations::Variable
|
2557
|
-
id: odd_expression
|
2558
|
-
type:
|
2559
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2560
|
-
expression:
|
2561
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2562
|
-
function:
|
2563
|
-
_class: Expressir::Model::References::SimpleReference
|
2564
|
-
id: ODD
|
2565
|
-
parameters:
|
2566
|
-
- _class: Expressir::Model::Literals::Logical
|
2567
|
-
value: :TRUE
|
2568
|
-
- _class: Expressir::Model::Declarations::Variable
|
2569
|
-
id: rolesof_expression
|
2570
|
-
type:
|
2571
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2572
|
-
expression:
|
2573
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2574
|
-
function:
|
2575
|
-
_class: Expressir::Model::References::SimpleReference
|
2576
|
-
id: ROLESOF
|
2577
|
-
parameters:
|
2578
|
-
- _class: Expressir::Model::Literals::Logical
|
2579
|
-
value: :TRUE
|
2580
|
-
- _class: Expressir::Model::Declarations::Variable
|
2581
|
-
id: sin_expression
|
2582
|
-
type:
|
2583
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2584
|
-
expression:
|
2585
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2586
|
-
function:
|
2587
|
-
_class: Expressir::Model::References::SimpleReference
|
2588
|
-
id: SIN
|
2589
|
-
parameters:
|
2590
|
-
- _class: Expressir::Model::Literals::Logical
|
2591
|
-
value: :TRUE
|
2592
|
-
- _class: Expressir::Model::Declarations::Variable
|
2593
|
-
id: sizeof_expression
|
2594
|
-
type:
|
2595
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2596
|
-
expression:
|
2597
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2598
|
-
function:
|
2599
|
-
_class: Expressir::Model::References::SimpleReference
|
2600
|
-
id: SIZEOF
|
2601
|
-
parameters:
|
2602
|
-
- _class: Expressir::Model::Literals::Logical
|
2603
|
-
value: :TRUE
|
2604
|
-
- _class: Expressir::Model::Declarations::Variable
|
2605
|
-
id: sqrt_expression
|
2606
|
-
type:
|
2607
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2608
|
-
expression:
|
2609
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2610
|
-
function:
|
2611
|
-
_class: Expressir::Model::References::SimpleReference
|
2612
|
-
id: SQRT
|
2613
|
-
parameters:
|
2614
|
-
- _class: Expressir::Model::Literals::Logical
|
2615
|
-
value: :TRUE
|
2616
|
-
- _class: Expressir::Model::Declarations::Variable
|
2617
|
-
id: tan_expression
|
2618
|
-
type:
|
2619
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2620
|
-
expression:
|
2621
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2622
|
-
function:
|
2623
|
-
_class: Expressir::Model::References::SimpleReference
|
2624
|
-
id: TAN
|
2625
|
-
parameters:
|
2626
|
-
- _class: Expressir::Model::Literals::Logical
|
2627
|
-
value: :TRUE
|
2628
|
-
- _class: Expressir::Model::Declarations::Variable
|
2629
|
-
id: typeof_expression
|
2630
|
-
type:
|
2631
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2632
|
-
expression:
|
2633
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2634
|
-
function:
|
2635
|
-
_class: Expressir::Model::References::SimpleReference
|
2636
|
-
id: TYPEOF
|
2637
|
-
parameters:
|
2638
|
-
- _class: Expressir::Model::Literals::Logical
|
2639
|
-
value: :TRUE
|
2640
|
-
- _class: Expressir::Model::Declarations::Variable
|
2641
|
-
id: usedin_expression
|
2642
|
-
type:
|
2643
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2644
|
-
expression:
|
2645
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2646
|
-
function:
|
2647
|
-
_class: Expressir::Model::References::SimpleReference
|
2648
|
-
id: USEDIN
|
2649
|
-
parameters:
|
2650
|
-
- _class: Expressir::Model::Literals::Logical
|
2651
|
-
value: :TRUE
|
2652
|
-
- _class: Expressir::Model::Declarations::Variable
|
2653
|
-
id: value_expression
|
2654
|
-
type:
|
2655
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2656
|
-
expression:
|
2657
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2658
|
-
function:
|
2659
|
-
_class: Expressir::Model::References::SimpleReference
|
2660
|
-
id: VALUE
|
2661
|
-
parameters:
|
2662
|
-
- _class: Expressir::Model::Literals::Logical
|
2663
|
-
value: :TRUE
|
2664
|
-
- _class: Expressir::Model::Declarations::Variable
|
2665
|
-
id: value_in_expression
|
2666
|
-
type:
|
2667
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2668
|
-
expression:
|
2669
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2670
|
-
function:
|
2671
|
-
_class: Expressir::Model::References::SimpleReference
|
2672
|
-
id: VALUE_IN
|
2673
|
-
parameters:
|
2674
|
-
- _class: Expressir::Model::Literals::Logical
|
2675
|
-
value: :TRUE
|
2676
|
-
- _class: Expressir::Model::Declarations::Variable
|
2677
|
-
id: value_unique_expression
|
2678
|
-
type:
|
2679
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2680
|
-
expression:
|
2681
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
2682
|
-
function:
|
2683
|
-
_class: Expressir::Model::References::SimpleReference
|
2684
|
-
id: VALUE_UNIQUE
|
2685
|
-
parameters:
|
2686
|
-
- _class: Expressir::Model::Literals::Logical
|
2687
|
-
value: :TRUE
|
2688
|
-
- _class: Expressir::Model::Declarations::Variable
|
2689
|
-
id: plus_expression
|
2690
|
-
type:
|
2691
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2692
|
-
expression:
|
2693
|
-
_class: Expressir::Model::Expressions::UnaryExpression
|
2694
|
-
operator: :PLUS
|
2695
|
-
operand:
|
2696
|
-
_class: Expressir::Model::Literals::Integer
|
2697
|
-
value: '4'
|
2698
|
-
- _class: Expressir::Model::Declarations::Variable
|
2699
|
-
id: plus_addition_expression
|
2700
|
-
type:
|
2701
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2702
|
-
expression:
|
2703
|
-
_class: Expressir::Model::Expressions::UnaryExpression
|
2704
|
-
operator: :PLUS
|
2705
|
-
operand:
|
2706
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2707
|
-
operator: :ADDITION
|
2708
|
-
operand1:
|
2709
|
-
_class: Expressir::Model::Literals::Integer
|
2710
|
-
value: '4'
|
2711
|
-
operand2:
|
2712
|
-
_class: Expressir::Model::Literals::Integer
|
2713
|
-
value: '2'
|
2714
|
-
- _class: Expressir::Model::Declarations::Variable
|
2715
|
-
id: minus_expression
|
2716
|
-
type:
|
2717
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2718
|
-
expression:
|
2719
|
-
_class: Expressir::Model::Expressions::UnaryExpression
|
2720
|
-
operator: :MINUS
|
2721
|
-
operand:
|
2722
|
-
_class: Expressir::Model::Literals::Integer
|
2723
|
-
value: '4'
|
2724
|
-
- _class: Expressir::Model::Declarations::Variable
|
2725
|
-
id: minus_addition_expression
|
2726
|
-
type:
|
2727
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2728
|
-
expression:
|
2729
|
-
_class: Expressir::Model::Expressions::UnaryExpression
|
2730
|
-
operator: :MINUS
|
2731
|
-
operand:
|
2732
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2733
|
-
operator: :ADDITION
|
2734
|
-
operand1:
|
2735
|
-
_class: Expressir::Model::Literals::Integer
|
2736
|
-
value: '4'
|
2737
|
-
operand2:
|
2738
|
-
_class: Expressir::Model::Literals::Integer
|
2739
|
-
value: '2'
|
2740
|
-
- _class: Expressir::Model::Declarations::Variable
|
2741
|
-
id: addition_expression
|
2742
|
-
type:
|
2743
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2744
|
-
expression:
|
2745
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2746
|
-
operator: :ADDITION
|
2747
|
-
operand1:
|
2748
|
-
_class: Expressir::Model::Literals::Integer
|
2749
|
-
value: '4'
|
2750
|
-
operand2:
|
2751
|
-
_class: Expressir::Model::Literals::Integer
|
2752
|
-
value: '2'
|
2753
|
-
- _class: Expressir::Model::Declarations::Variable
|
2754
|
-
id: subtraction_expression
|
2755
|
-
type:
|
2756
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2757
|
-
expression:
|
2758
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2759
|
-
operator: :SUBTRACTION
|
2760
|
-
operand1:
|
2761
|
-
_class: Expressir::Model::Literals::Integer
|
2762
|
-
value: '4'
|
2763
|
-
operand2:
|
2764
|
-
_class: Expressir::Model::Literals::Integer
|
2765
|
-
value: '2'
|
2766
|
-
- _class: Expressir::Model::Declarations::Variable
|
2767
|
-
id: multiplication_expression
|
2768
|
-
type:
|
2769
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2770
|
-
expression:
|
2771
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2772
|
-
operator: :MULTIPLICATION
|
2773
|
-
operand1:
|
2774
|
-
_class: Expressir::Model::Literals::Integer
|
2775
|
-
value: '4'
|
2776
|
-
operand2:
|
2777
|
-
_class: Expressir::Model::Literals::Integer
|
2778
|
-
value: '2'
|
2779
|
-
- _class: Expressir::Model::Declarations::Variable
|
2780
|
-
id: real_division_expression
|
2781
|
-
type:
|
2782
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2783
|
-
expression:
|
2784
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2785
|
-
operator: :REAL_DIVISION
|
2786
|
-
operand1:
|
2787
|
-
_class: Expressir::Model::Literals::Integer
|
2788
|
-
value: '4'
|
2789
|
-
operand2:
|
2790
|
-
_class: Expressir::Model::Literals::Integer
|
2791
|
-
value: '2'
|
2792
|
-
- _class: Expressir::Model::Declarations::Variable
|
2793
|
-
id: integer_division_expression
|
2794
|
-
type:
|
2795
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2796
|
-
expression:
|
2797
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2798
|
-
operator: :INTEGER_DIVISION
|
2799
|
-
operand1:
|
2800
|
-
_class: Expressir::Model::Literals::Integer
|
2801
|
-
value: '4'
|
2802
|
-
operand2:
|
2803
|
-
_class: Expressir::Model::Literals::Integer
|
2804
|
-
value: '2'
|
2805
|
-
- _class: Expressir::Model::Declarations::Variable
|
2806
|
-
id: modulo_expression
|
2807
|
-
type:
|
2808
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2809
|
-
expression:
|
2810
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2811
|
-
operator: :MODULO
|
2812
|
-
operand1:
|
2813
|
-
_class: Expressir::Model::Literals::Integer
|
2814
|
-
value: '4'
|
2815
|
-
operand2:
|
2816
|
-
_class: Expressir::Model::Literals::Integer
|
2817
|
-
value: '2'
|
2818
|
-
- _class: Expressir::Model::Declarations::Variable
|
2819
|
-
id: exponentiation_expression
|
2820
|
-
type:
|
2821
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2822
|
-
expression:
|
2823
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2824
|
-
operator: :EXPONENTIATION
|
2825
|
-
operand1:
|
2826
|
-
_class: Expressir::Model::Literals::Integer
|
2827
|
-
value: '4'
|
2828
|
-
operand2:
|
2829
|
-
_class: Expressir::Model::Literals::Integer
|
2830
|
-
value: '2'
|
2831
|
-
- _class: Expressir::Model::Declarations::Variable
|
2832
|
-
id: addition_addition_expression
|
2833
|
-
type:
|
2834
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2835
|
-
expression:
|
2836
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2837
|
-
operator: :ADDITION
|
2838
|
-
operand1:
|
2839
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2840
|
-
operator: :ADDITION
|
2841
|
-
operand1:
|
2842
|
-
_class: Expressir::Model::Literals::Integer
|
2843
|
-
value: '4'
|
2844
|
-
operand2:
|
2845
|
-
_class: Expressir::Model::Literals::Integer
|
2846
|
-
value: '2'
|
2847
|
-
operand2:
|
2848
|
-
_class: Expressir::Model::Literals::Integer
|
2849
|
-
value: '1'
|
2850
|
-
- _class: Expressir::Model::Declarations::Variable
|
2851
|
-
id: subtraction_subtraction_expression
|
2852
|
-
type:
|
2853
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2854
|
-
expression:
|
2855
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2856
|
-
operator: :SUBTRACTION
|
2857
|
-
operand1:
|
2858
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2859
|
-
operator: :SUBTRACTION
|
2860
|
-
operand1:
|
2861
|
-
_class: Expressir::Model::Literals::Integer
|
2862
|
-
value: '4'
|
2863
|
-
operand2:
|
2864
|
-
_class: Expressir::Model::Literals::Integer
|
2865
|
-
value: '2'
|
2866
|
-
operand2:
|
2867
|
-
_class: Expressir::Model::Literals::Integer
|
2868
|
-
value: '1'
|
2869
|
-
- _class: Expressir::Model::Declarations::Variable
|
2870
|
-
id: addition_subtraction_expression
|
2871
|
-
type:
|
2872
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2873
|
-
expression:
|
2874
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2875
|
-
operator: :SUBTRACTION
|
2876
|
-
operand1:
|
2877
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2878
|
-
operator: :ADDITION
|
2879
|
-
operand1:
|
2880
|
-
_class: Expressir::Model::Literals::Integer
|
2881
|
-
value: '4'
|
2882
|
-
operand2:
|
2883
|
-
_class: Expressir::Model::Literals::Integer
|
2884
|
-
value: '2'
|
2885
|
-
operand2:
|
2886
|
-
_class: Expressir::Model::Literals::Integer
|
2887
|
-
value: '1'
|
2888
|
-
- _class: Expressir::Model::Declarations::Variable
|
2889
|
-
id: subtraction_addition_expression
|
2890
|
-
type:
|
2891
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2892
|
-
expression:
|
2893
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2894
|
-
operator: :ADDITION
|
2895
|
-
operand1:
|
2896
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2897
|
-
operator: :SUBTRACTION
|
2898
|
-
operand1:
|
2899
|
-
_class: Expressir::Model::Literals::Integer
|
2900
|
-
value: '4'
|
2901
|
-
operand2:
|
2902
|
-
_class: Expressir::Model::Literals::Integer
|
2903
|
-
value: '2'
|
2904
|
-
operand2:
|
2905
|
-
_class: Expressir::Model::Literals::Integer
|
2906
|
-
value: '1'
|
2907
|
-
- _class: Expressir::Model::Declarations::Variable
|
2908
|
-
id: addition_multiplication_expression
|
2909
|
-
type:
|
2910
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2911
|
-
expression:
|
2912
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2913
|
-
operator: :ADDITION
|
2914
|
-
operand1:
|
2915
|
-
_class: Expressir::Model::Literals::Integer
|
2916
|
-
value: '8'
|
2917
|
-
operand2:
|
2918
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2919
|
-
operator: :MULTIPLICATION
|
2920
|
-
operand1:
|
2921
|
-
_class: Expressir::Model::Literals::Integer
|
2922
|
-
value: '4'
|
2923
|
-
operand2:
|
2924
|
-
_class: Expressir::Model::Literals::Integer
|
2925
|
-
value: '2'
|
2926
|
-
- _class: Expressir::Model::Declarations::Variable
|
2927
|
-
id: multiplication_addition_expression
|
2928
|
-
type:
|
2929
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2930
|
-
expression:
|
2931
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2932
|
-
operator: :ADDITION
|
2933
|
-
operand1:
|
2934
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2935
|
-
operator: :MULTIPLICATION
|
2936
|
-
operand1:
|
2937
|
-
_class: Expressir::Model::Literals::Integer
|
2938
|
-
value: '8'
|
2939
|
-
operand2:
|
2940
|
-
_class: Expressir::Model::Literals::Integer
|
2941
|
-
value: '4'
|
2942
|
-
operand2:
|
2943
|
-
_class: Expressir::Model::Literals::Integer
|
2944
|
-
value: '2'
|
2945
|
-
- _class: Expressir::Model::Declarations::Variable
|
2946
|
-
id: parenthesis_addition_multiplication_expression
|
2947
|
-
type:
|
2948
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2949
|
-
expression:
|
2950
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2951
|
-
operator: :MULTIPLICATION
|
2952
|
-
operand1:
|
2953
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2954
|
-
operator: :ADDITION
|
2955
|
-
operand1:
|
2956
|
-
_class: Expressir::Model::Literals::Integer
|
2957
|
-
value: '8'
|
2958
|
-
operand2:
|
2959
|
-
_class: Expressir::Model::Literals::Integer
|
2960
|
-
value: '4'
|
2961
|
-
operand2:
|
2962
|
-
_class: Expressir::Model::Literals::Integer
|
2963
|
-
value: '2'
|
2964
|
-
- _class: Expressir::Model::Declarations::Variable
|
2965
|
-
id: multiplication_parenthesis_addition_expression
|
2966
|
-
type:
|
2967
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2968
|
-
expression:
|
2969
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2970
|
-
operator: :MULTIPLICATION
|
2971
|
-
operand1:
|
2972
|
-
_class: Expressir::Model::Literals::Integer
|
2973
|
-
value: '8'
|
2974
|
-
operand2:
|
2975
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2976
|
-
operator: :ADDITION
|
2977
|
-
operand1:
|
2978
|
-
_class: Expressir::Model::Literals::Integer
|
2979
|
-
value: '4'
|
2980
|
-
operand2:
|
2981
|
-
_class: Expressir::Model::Literals::Integer
|
2982
|
-
value: '2'
|
2983
|
-
- _class: Expressir::Model::Declarations::Variable
|
2984
|
-
id: equal_expression
|
2985
|
-
type:
|
2986
|
-
_class: Expressir::Model::DataTypes::Boolean
|
2987
|
-
expression:
|
2988
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
2989
|
-
operator: :EQUAL
|
2990
|
-
operand1:
|
2991
|
-
_class: Expressir::Model::Literals::Integer
|
2992
|
-
value: '4'
|
2993
|
-
operand2:
|
2994
|
-
_class: Expressir::Model::Literals::Integer
|
2995
|
-
value: '2'
|
2996
|
-
- _class: Expressir::Model::Declarations::Variable
|
2997
|
-
id: not_equal_expression
|
2998
|
-
type:
|
2999
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3000
|
-
expression:
|
3001
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3002
|
-
operator: :NOT_EQUAL
|
3003
|
-
operand1:
|
3004
|
-
_class: Expressir::Model::Literals::Integer
|
3005
|
-
value: '4'
|
3006
|
-
operand2:
|
3007
|
-
_class: Expressir::Model::Literals::Integer
|
3008
|
-
value: '2'
|
3009
|
-
- _class: Expressir::Model::Declarations::Variable
|
3010
|
-
id: instance_equal_expression
|
3011
|
-
type:
|
3012
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3013
|
-
expression:
|
3014
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3015
|
-
operator: :INSTANCE_EQUAL
|
3016
|
-
operand1:
|
3017
|
-
_class: Expressir::Model::Literals::Integer
|
3018
|
-
value: '4'
|
3019
|
-
operand2:
|
3020
|
-
_class: Expressir::Model::Literals::Integer
|
3021
|
-
value: '2'
|
3022
|
-
- _class: Expressir::Model::Declarations::Variable
|
3023
|
-
id: instance_not_equal_expression
|
3024
|
-
type:
|
3025
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3026
|
-
expression:
|
3027
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3028
|
-
operator: :INSTANCE_NOT_EQUAL
|
3029
|
-
operand1:
|
3030
|
-
_class: Expressir::Model::Literals::Integer
|
3031
|
-
value: '4'
|
3032
|
-
operand2:
|
3033
|
-
_class: Expressir::Model::Literals::Integer
|
3034
|
-
value: '2'
|
3035
|
-
- _class: Expressir::Model::Declarations::Variable
|
3036
|
-
id: lt_expression
|
3037
|
-
type:
|
3038
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3039
|
-
expression:
|
3040
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3041
|
-
operator: :LESS_THAN
|
3042
|
-
operand1:
|
3043
|
-
_class: Expressir::Model::Literals::Integer
|
3044
|
-
value: '4'
|
3045
|
-
operand2:
|
3046
|
-
_class: Expressir::Model::Literals::Integer
|
3047
|
-
value: '2'
|
3048
|
-
- _class: Expressir::Model::Declarations::Variable
|
3049
|
-
id: gt_expression
|
3050
|
-
type:
|
3051
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3052
|
-
expression:
|
3053
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3054
|
-
operator: :GREATER_THAN
|
3055
|
-
operand1:
|
3056
|
-
_class: Expressir::Model::Literals::Integer
|
3057
|
-
value: '4'
|
3058
|
-
operand2:
|
3059
|
-
_class: Expressir::Model::Literals::Integer
|
3060
|
-
value: '2'
|
3061
|
-
- _class: Expressir::Model::Declarations::Variable
|
3062
|
-
id: lte_expression
|
3063
|
-
type:
|
3064
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3065
|
-
expression:
|
3066
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3067
|
-
operator: :LESS_THAN_OR_EQUAL
|
3068
|
-
operand1:
|
3069
|
-
_class: Expressir::Model::Literals::Integer
|
3070
|
-
value: '4'
|
3071
|
-
operand2:
|
3072
|
-
_class: Expressir::Model::Literals::Integer
|
3073
|
-
value: '2'
|
3074
|
-
- _class: Expressir::Model::Declarations::Variable
|
3075
|
-
id: gte_expression
|
3076
|
-
type:
|
3077
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3078
|
-
expression:
|
3079
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3080
|
-
operator: :GREATER_THAN_OR_EQUAL
|
3081
|
-
operand1:
|
3082
|
-
_class: Expressir::Model::Literals::Integer
|
3083
|
-
value: '4'
|
3084
|
-
operand2:
|
3085
|
-
_class: Expressir::Model::Literals::Integer
|
3086
|
-
value: '2'
|
3087
|
-
- _class: Expressir::Model::Declarations::Variable
|
3088
|
-
id: not_expression
|
3089
|
-
type:
|
3090
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3091
|
-
expression:
|
3092
|
-
_class: Expressir::Model::Expressions::UnaryExpression
|
3093
|
-
operator: :NOT
|
3094
|
-
operand:
|
3095
|
-
_class: Expressir::Model::Literals::Logical
|
3096
|
-
value: :TRUE
|
3097
|
-
- _class: Expressir::Model::Declarations::Variable
|
3098
|
-
id: not_or_expression
|
3099
|
-
type:
|
3100
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3101
|
-
expression:
|
3102
|
-
_class: Expressir::Model::Expressions::UnaryExpression
|
3103
|
-
operator: :NOT
|
3104
|
-
operand:
|
3105
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3106
|
-
operator: :OR
|
3107
|
-
operand1:
|
3108
|
-
_class: Expressir::Model::Literals::Logical
|
3109
|
-
value: :TRUE
|
3110
|
-
operand2:
|
3111
|
-
_class: Expressir::Model::Literals::Logical
|
3112
|
-
value: :FALSE
|
3113
|
-
- _class: Expressir::Model::Declarations::Variable
|
3114
|
-
id: or_expression
|
3115
|
-
type:
|
3116
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3117
|
-
expression:
|
3118
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3119
|
-
operator: :OR
|
3120
|
-
operand1:
|
3121
|
-
_class: Expressir::Model::Literals::Logical
|
3122
|
-
value: :TRUE
|
3123
|
-
operand2:
|
3124
|
-
_class: Expressir::Model::Literals::Logical
|
3125
|
-
value: :FALSE
|
3126
|
-
- _class: Expressir::Model::Declarations::Variable
|
3127
|
-
id: and_expression
|
3128
|
-
type:
|
3129
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3130
|
-
expression:
|
3131
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3132
|
-
operator: :AND
|
3133
|
-
operand1:
|
3134
|
-
_class: Expressir::Model::Literals::Logical
|
3135
|
-
value: :TRUE
|
3136
|
-
operand2:
|
3137
|
-
_class: Expressir::Model::Literals::Logical
|
3138
|
-
value: :FALSE
|
3139
|
-
- _class: Expressir::Model::Declarations::Variable
|
3140
|
-
id: or_or_expression
|
3141
|
-
type:
|
3142
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3143
|
-
expression:
|
3144
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3145
|
-
operator: :OR
|
3146
|
-
operand1:
|
3147
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3148
|
-
operator: :OR
|
3149
|
-
operand1:
|
3150
|
-
_class: Expressir::Model::Literals::Logical
|
3151
|
-
value: :TRUE
|
3152
|
-
operand2:
|
3153
|
-
_class: Expressir::Model::Literals::Logical
|
3154
|
-
value: :FALSE
|
3155
|
-
operand2:
|
3156
|
-
_class: Expressir::Model::Literals::Logical
|
3157
|
-
value: :TRUE
|
3158
|
-
- _class: Expressir::Model::Declarations::Variable
|
3159
|
-
id: and_and_expression
|
3160
|
-
type:
|
3161
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3162
|
-
expression:
|
3163
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3164
|
-
operator: :AND
|
3165
|
-
operand1:
|
3166
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3167
|
-
operator: :AND
|
3168
|
-
operand1:
|
3169
|
-
_class: Expressir::Model::Literals::Logical
|
3170
|
-
value: :TRUE
|
3171
|
-
operand2:
|
3172
|
-
_class: Expressir::Model::Literals::Logical
|
3173
|
-
value: :FALSE
|
3174
|
-
operand2:
|
3175
|
-
_class: Expressir::Model::Literals::Logical
|
3176
|
-
value: :TRUE
|
3177
|
-
- _class: Expressir::Model::Declarations::Variable
|
3178
|
-
id: or_and_expression
|
3179
|
-
type:
|
3180
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3181
|
-
expression:
|
3182
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3183
|
-
operator: :OR
|
3184
|
-
operand1:
|
3185
|
-
_class: Expressir::Model::Literals::Logical
|
3186
|
-
value: :TRUE
|
3187
|
-
operand2:
|
3188
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3189
|
-
operator: :AND
|
3190
|
-
operand1:
|
3191
|
-
_class: Expressir::Model::Literals::Logical
|
3192
|
-
value: :FALSE
|
3193
|
-
operand2:
|
3194
|
-
_class: Expressir::Model::Literals::Logical
|
3195
|
-
value: :TRUE
|
3196
|
-
- _class: Expressir::Model::Declarations::Variable
|
3197
|
-
id: and_or_expression
|
3198
|
-
type:
|
3199
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3200
|
-
expression:
|
3201
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3202
|
-
operator: :OR
|
3203
|
-
operand1:
|
3204
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3205
|
-
operator: :AND
|
3206
|
-
operand1:
|
3207
|
-
_class: Expressir::Model::Literals::Logical
|
3208
|
-
value: :TRUE
|
3209
|
-
operand2:
|
3210
|
-
_class: Expressir::Model::Literals::Logical
|
3211
|
-
value: :FALSE
|
3212
|
-
operand2:
|
3213
|
-
_class: Expressir::Model::Literals::Logical
|
3214
|
-
value: :TRUE
|
3215
|
-
- _class: Expressir::Model::Declarations::Variable
|
3216
|
-
id: parenthesis_or_and_expression
|
3217
|
-
type:
|
3218
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3219
|
-
expression:
|
3220
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3221
|
-
operator: :AND
|
3222
|
-
operand1:
|
3223
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3224
|
-
operator: :OR
|
3225
|
-
operand1:
|
3226
|
-
_class: Expressir::Model::Literals::Logical
|
3227
|
-
value: :TRUE
|
3228
|
-
operand2:
|
3229
|
-
_class: Expressir::Model::Literals::Logical
|
3230
|
-
value: :FALSE
|
3231
|
-
operand2:
|
3232
|
-
_class: Expressir::Model::Literals::Logical
|
3233
|
-
value: :TRUE
|
3234
|
-
- _class: Expressir::Model::Declarations::Variable
|
3235
|
-
id: and_parenthesis_or_expression
|
3236
|
-
type:
|
3237
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3238
|
-
expression:
|
3239
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3240
|
-
operator: :AND
|
3241
|
-
operand1:
|
3242
|
-
_class: Expressir::Model::Literals::Logical
|
3243
|
-
value: :TRUE
|
3244
|
-
operand2:
|
3245
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3246
|
-
operator: :OR
|
3247
|
-
operand1:
|
3248
|
-
_class: Expressir::Model::Literals::Logical
|
3249
|
-
value: :FALSE
|
3250
|
-
operand2:
|
3251
|
-
_class: Expressir::Model::Literals::Logical
|
3252
|
-
value: :TRUE
|
3253
|
-
- _class: Expressir::Model::Declarations::Variable
|
3254
|
-
id: combine_expression
|
3255
|
-
type:
|
3256
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3257
|
-
expression:
|
3258
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3259
|
-
operator: :COMBINE
|
3260
|
-
operand1:
|
3261
|
-
_class: Expressir::Model::References::SimpleReference
|
3262
|
-
id: test
|
3263
|
-
operand2:
|
3264
|
-
_class: Expressir::Model::References::SimpleReference
|
3265
|
-
id: test2
|
3266
|
-
- _class: Expressir::Model::Declarations::Variable
|
3267
|
-
id: in_expression
|
3268
|
-
type:
|
3269
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3270
|
-
expression:
|
3271
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3272
|
-
operator: :IN
|
3273
|
-
operand1:
|
3274
|
-
_class: Expressir::Model::Literals::Logical
|
3275
|
-
value: :TRUE
|
3276
|
-
operand2:
|
3277
|
-
_class: Expressir::Model::Expressions::AggregateInitializer
|
3278
|
-
items:
|
3279
|
-
- _class: Expressir::Model::Literals::Logical
|
3280
|
-
value: :TRUE
|
3281
|
-
- _class: Expressir::Model::Declarations::Variable
|
3282
|
-
id: like_expression
|
3283
|
-
type:
|
3284
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3285
|
-
expression:
|
3286
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3287
|
-
operator: :LIKE
|
3288
|
-
operand1:
|
3289
|
-
_class: Expressir::Model::Literals::String
|
3290
|
-
value: xxx
|
3291
|
-
operand2:
|
3292
|
-
_class: Expressir::Model::Literals::String
|
3293
|
-
value: xxx
|
3294
|
-
- _class: Expressir::Model::Declarations::Variable
|
3295
|
-
id: aggregate_initializer_expression
|
3296
|
-
type:
|
3297
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3298
|
-
expression:
|
3299
|
-
_class: Expressir::Model::Expressions::AggregateInitializer
|
3300
|
-
items:
|
3301
|
-
- _class: Expressir::Model::Literals::Integer
|
3302
|
-
value: '4'
|
3303
|
-
- _class: Expressir::Model::Declarations::Variable
|
3304
|
-
id: repeated_aggregate_initializer_expression
|
3305
|
-
type:
|
3306
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3307
|
-
expression:
|
3308
|
-
_class: Expressir::Model::Expressions::AggregateInitializer
|
3309
|
-
items:
|
3310
|
-
- _class: Expressir::Model::Expressions::AggregateInitializerItem
|
3311
|
-
expression:
|
3312
|
-
_class: Expressir::Model::Literals::Integer
|
3313
|
-
value: '4'
|
3314
|
-
repetition:
|
3315
|
-
_class: Expressir::Model::Literals::Integer
|
3316
|
-
value: '2'
|
3317
|
-
- _class: Expressir::Model::Declarations::Variable
|
3318
|
-
id: complex_aggregate_initializer_expression
|
3319
|
-
type:
|
3320
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3321
|
-
expression:
|
3322
|
-
_class: Expressir::Model::Expressions::AggregateInitializer
|
3323
|
-
items:
|
3324
|
-
- _class: Expressir::Model::Expressions::BinaryExpression
|
3325
|
-
operator: :ADDITION
|
3326
|
-
operand1:
|
3327
|
-
_class: Expressir::Model::Literals::Integer
|
3328
|
-
value: '4'
|
3329
|
-
operand2:
|
3330
|
-
_class: Expressir::Model::Literals::Integer
|
3331
|
-
value: '2'
|
3332
|
-
- _class: Expressir::Model::Declarations::Variable
|
3333
|
-
id: complex_repeated_aggregate_initializer_expression
|
3334
|
-
type:
|
3335
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3336
|
-
expression:
|
3337
|
-
_class: Expressir::Model::Expressions::AggregateInitializer
|
3338
|
-
items:
|
3339
|
-
- _class: Expressir::Model::Expressions::AggregateInitializerItem
|
3340
|
-
expression:
|
3341
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3342
|
-
operator: :ADDITION
|
3343
|
-
operand1:
|
3344
|
-
_class: Expressir::Model::Literals::Integer
|
3345
|
-
value: '4'
|
3346
|
-
operand2:
|
3347
|
-
_class: Expressir::Model::Literals::Integer
|
3348
|
-
value: '2'
|
3349
|
-
repetition:
|
3350
|
-
_class: Expressir::Model::Expressions::BinaryExpression
|
3351
|
-
operator: :ADDITION
|
3352
|
-
operand1:
|
3353
|
-
_class: Expressir::Model::Literals::Integer
|
3354
|
-
value: '4'
|
3355
|
-
operand2:
|
3356
|
-
_class: Expressir::Model::Literals::Integer
|
3357
|
-
value: '2'
|
3358
|
-
- _class: Expressir::Model::Declarations::Variable
|
3359
|
-
id: call_expression
|
3360
|
-
type:
|
3361
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3362
|
-
expression:
|
3363
|
-
_class: Expressir::Model::Expressions::FunctionCall
|
3364
|
-
function:
|
3365
|
-
_class: Expressir::Model::References::SimpleReference
|
3366
|
-
id: parameter_function
|
3367
|
-
base_path: syntax_schema.parameter_function
|
3368
|
-
parameters:
|
3369
|
-
- _class: Expressir::Model::Literals::Logical
|
3370
|
-
value: :TRUE
|
3371
|
-
- _class: Expressir::Model::Declarations::Variable
|
3372
|
-
id: simple_reference_expression
|
3373
|
-
type:
|
3374
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3375
|
-
expression:
|
3376
|
-
_class: Expressir::Model::References::SimpleReference
|
3377
|
-
id: test
|
3378
|
-
- _class: Expressir::Model::Declarations::Variable
|
3379
|
-
id: group_reference_expression
|
3380
|
-
type:
|
3381
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3382
|
-
expression:
|
3383
|
-
_class: Expressir::Model::References::GroupReference
|
3384
|
-
ref:
|
3385
|
-
_class: Expressir::Model::References::SimpleReference
|
3386
|
-
id: test
|
3387
|
-
entity:
|
3388
|
-
_class: Expressir::Model::References::SimpleReference
|
3389
|
-
id: test2
|
3390
|
-
- _class: Expressir::Model::Declarations::Variable
|
3391
|
-
id: index_reference_expression
|
3392
|
-
type:
|
3393
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3394
|
-
expression:
|
3395
|
-
_class: Expressir::Model::References::IndexReference
|
3396
|
-
ref:
|
3397
|
-
_class: Expressir::Model::References::SimpleReference
|
3398
|
-
id: test
|
3399
|
-
index1:
|
3400
|
-
_class: Expressir::Model::Literals::Integer
|
3401
|
-
value: '1'
|
3402
|
-
- _class: Expressir::Model::Declarations::Variable
|
3403
|
-
id: index2_reference_expression
|
3404
|
-
type:
|
3405
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3406
|
-
expression:
|
3407
|
-
_class: Expressir::Model::References::IndexReference
|
3408
|
-
ref:
|
3409
|
-
_class: Expressir::Model::References::SimpleReference
|
3410
|
-
id: test
|
3411
|
-
index1:
|
3412
|
-
_class: Expressir::Model::Literals::Integer
|
3413
|
-
value: '1'
|
3414
|
-
index2:
|
3415
|
-
_class: Expressir::Model::Literals::Integer
|
3416
|
-
value: '9'
|
3417
|
-
- _class: Expressir::Model::Declarations::Variable
|
3418
|
-
id: attribute_reference_expression
|
3419
|
-
type:
|
3420
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3421
|
-
expression:
|
3422
|
-
_class: Expressir::Model::References::AttributeReference
|
3423
|
-
ref:
|
3424
|
-
_class: Expressir::Model::References::SimpleReference
|
3425
|
-
id: test
|
3426
|
-
attribute:
|
3427
|
-
_class: Expressir::Model::References::SimpleReference
|
3428
|
-
id: test2
|
3429
|
-
- _class: Expressir::Model::Declarations::Variable
|
3430
|
-
id: lt_lt_interval_expression
|
3431
|
-
type:
|
3432
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3433
|
-
expression:
|
3434
|
-
_class: Expressir::Model::Expressions::Interval
|
3435
|
-
low:
|
3436
|
-
_class: Expressir::Model::Literals::Integer
|
3437
|
-
value: '1'
|
3438
|
-
operator1: :LESS_THAN
|
3439
|
-
item:
|
3440
|
-
_class: Expressir::Model::Literals::Integer
|
3441
|
-
value: '5'
|
3442
|
-
operator2: :LESS_THAN
|
3443
|
-
high:
|
3444
|
-
_class: Expressir::Model::Literals::Integer
|
3445
|
-
value: '9'
|
3446
|
-
- _class: Expressir::Model::Declarations::Variable
|
3447
|
-
id: lte_lt_interval_expression
|
3448
|
-
type:
|
3449
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3450
|
-
expression:
|
3451
|
-
_class: Expressir::Model::Expressions::Interval
|
3452
|
-
low:
|
3453
|
-
_class: Expressir::Model::Literals::Integer
|
3454
|
-
value: '1'
|
3455
|
-
operator1: :LESS_THAN_OR_EQUAL
|
3456
|
-
item:
|
3457
|
-
_class: Expressir::Model::Literals::Integer
|
3458
|
-
value: '5'
|
3459
|
-
operator2: :LESS_THAN
|
3460
|
-
high:
|
3461
|
-
_class: Expressir::Model::Literals::Integer
|
3462
|
-
value: '9'
|
3463
|
-
- _class: Expressir::Model::Declarations::Variable
|
3464
|
-
id: lt_lte_interval_expression
|
3465
|
-
type:
|
3466
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3467
|
-
expression:
|
3468
|
-
_class: Expressir::Model::Expressions::Interval
|
3469
|
-
low:
|
3470
|
-
_class: Expressir::Model::Literals::Integer
|
3471
|
-
value: '1'
|
3472
|
-
operator1: :LESS_THAN
|
3473
|
-
item:
|
3474
|
-
_class: Expressir::Model::Literals::Integer
|
3475
|
-
value: '5'
|
3476
|
-
operator2: :LESS_THAN_OR_EQUAL
|
3477
|
-
high:
|
3478
|
-
_class: Expressir::Model::Literals::Integer
|
3479
|
-
value: '9'
|
3480
|
-
- _class: Expressir::Model::Declarations::Variable
|
3481
|
-
id: lte_lte_interval_expression
|
3482
|
-
type:
|
3483
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3484
|
-
expression:
|
3485
|
-
_class: Expressir::Model::Expressions::Interval
|
3486
|
-
low:
|
3487
|
-
_class: Expressir::Model::Literals::Integer
|
3488
|
-
value: '1'
|
3489
|
-
operator1: :LESS_THAN_OR_EQUAL
|
3490
|
-
item:
|
3491
|
-
_class: Expressir::Model::Literals::Integer
|
3492
|
-
value: '5'
|
3493
|
-
operator2: :LESS_THAN_OR_EQUAL
|
3494
|
-
high:
|
3495
|
-
_class: Expressir::Model::Literals::Integer
|
3496
|
-
value: '9'
|
3497
|
-
- _class: Expressir::Model::Declarations::Variable
|
3498
|
-
id: query_expression
|
3499
|
-
type:
|
3500
|
-
_class: Expressir::Model::DataTypes::Boolean
|
3501
|
-
expression:
|
3502
|
-
_class: Expressir::Model::Expressions::QueryExpression
|
3503
|
-
id: test
|
3504
|
-
aggregate_source:
|
3505
|
-
_class: Expressir::Model::References::SimpleReference
|
3506
|
-
id: test2
|
3507
|
-
expression:
|
3508
|
-
_class: Expressir::Model::Literals::Logical
|
3509
|
-
value: :TRUE
|