expressir 1.4.3 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/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
@@ -1,45 +0,0 @@
|
|
1
|
-
/* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
|
2
|
-
* Use of this file is governed by the BSD 3-clause license that
|
3
|
-
* can be found in the LICENSE.txt file in the project root.
|
4
|
-
*/
|
5
|
-
|
6
|
-
#pragma once
|
7
|
-
|
8
|
-
#include "ParserRuleContext.h"
|
9
|
-
|
10
|
-
namespace antlr4 {
|
11
|
-
|
12
|
-
/**
|
13
|
-
* This class extends {@link ParserRuleContext} by allowing the value of
|
14
|
-
* {@link #getRuleIndex} to be explicitly set for the context.
|
15
|
-
*
|
16
|
-
* <p>
|
17
|
-
* {@link ParserRuleContext} does not include field storage for the rule index
|
18
|
-
* since the context classes created by the code generator override the
|
19
|
-
* {@link #getRuleIndex} method to return the correct value for that context.
|
20
|
-
* Since the parser interpreter does not use the context classes generated for a
|
21
|
-
* parser, this class (with slightly more memory overhead per node) is used to
|
22
|
-
* provide equivalent functionality.</p>
|
23
|
-
*/
|
24
|
-
class ANTLR4CPP_PUBLIC InterpreterRuleContext : public ParserRuleContext {
|
25
|
-
public:
|
26
|
-
InterpreterRuleContext();
|
27
|
-
|
28
|
-
/**
|
29
|
-
* Constructs a new {@link InterpreterRuleContext} with the specified
|
30
|
-
* parent, invoking state, and rule index.
|
31
|
-
*
|
32
|
-
* @param parent The parent context.
|
33
|
-
* @param invokingStateNumber The invoking state number.
|
34
|
-
* @param ruleIndex The rule index for the current context.
|
35
|
-
*/
|
36
|
-
InterpreterRuleContext(ParserRuleContext *parent, size_t invokingStateNumber, size_t ruleIndex);
|
37
|
-
|
38
|
-
virtual size_t getRuleIndex() const override;
|
39
|
-
|
40
|
-
protected:
|
41
|
-
/** This is the backing field for {@link #getRuleIndex}. */
|
42
|
-
const size_t _ruleIndex = INVALID_INDEX;
|
43
|
-
};
|
44
|
-
|
45
|
-
} // namespace antlr4
|
@@ -1,294 +0,0 @@
|
|
1
|
-
/* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
|
2
|
-
* Use of this file is governed by the BSD 3-clause license that
|
3
|
-
* can be found in the LICENSE.txt file in the project root.
|
4
|
-
*/
|
5
|
-
|
6
|
-
#include "atn/LexerATNSimulator.h"
|
7
|
-
#include "Exceptions.h"
|
8
|
-
#include "misc/Interval.h"
|
9
|
-
#include "CommonTokenFactory.h"
|
10
|
-
#include "LexerNoViableAltException.h"
|
11
|
-
#include "ANTLRErrorListener.h"
|
12
|
-
#include "support/CPPUtils.h"
|
13
|
-
#include "CommonToken.h"
|
14
|
-
|
15
|
-
#include "Lexer.h"
|
16
|
-
|
17
|
-
#define DEBUG_LEXER 0
|
18
|
-
|
19
|
-
using namespace antlrcpp;
|
20
|
-
using namespace antlr4;
|
21
|
-
|
22
|
-
Lexer::Lexer() : Recognizer() {
|
23
|
-
InitializeInstanceFields();
|
24
|
-
_input = nullptr;
|
25
|
-
}
|
26
|
-
|
27
|
-
Lexer::Lexer(CharStream *input) : Recognizer(), _input(input) {
|
28
|
-
InitializeInstanceFields();
|
29
|
-
}
|
30
|
-
|
31
|
-
void Lexer::reset() {
|
32
|
-
// wack Lexer state variables
|
33
|
-
_input->seek(0); // rewind the input
|
34
|
-
|
35
|
-
_syntaxErrors = 0;
|
36
|
-
token.reset();
|
37
|
-
type = Token::INVALID_TYPE;
|
38
|
-
channel = Token::DEFAULT_CHANNEL;
|
39
|
-
tokenStartCharIndex = INVALID_INDEX;
|
40
|
-
tokenStartCharPositionInLine = 0;
|
41
|
-
tokenStartLine = 0;
|
42
|
-
type = 0;
|
43
|
-
_text = "";
|
44
|
-
|
45
|
-
hitEOF = false;
|
46
|
-
mode = Lexer::DEFAULT_MODE;
|
47
|
-
modeStack.clear();
|
48
|
-
|
49
|
-
getInterpreter<atn::LexerATNSimulator>()->reset();
|
50
|
-
}
|
51
|
-
|
52
|
-
std::unique_ptr<Token> Lexer::nextToken() {
|
53
|
-
// Mark start location in char stream so unbuffered streams are
|
54
|
-
// guaranteed at least have text of current token
|
55
|
-
ssize_t tokenStartMarker = _input->mark();
|
56
|
-
|
57
|
-
auto onExit = finally([this, tokenStartMarker]{
|
58
|
-
// make sure we release marker after match or
|
59
|
-
// unbuffered char stream will keep buffering
|
60
|
-
_input->release(tokenStartMarker);
|
61
|
-
});
|
62
|
-
|
63
|
-
while (true) {
|
64
|
-
outerContinue:
|
65
|
-
if (hitEOF) {
|
66
|
-
emitEOF();
|
67
|
-
return std::move(token);
|
68
|
-
}
|
69
|
-
|
70
|
-
token.reset();
|
71
|
-
channel = Token::DEFAULT_CHANNEL;
|
72
|
-
tokenStartCharIndex = _input->index();
|
73
|
-
tokenStartCharPositionInLine = getInterpreter<atn::LexerATNSimulator>()->getCharPositionInLine();
|
74
|
-
tokenStartLine = getInterpreter<atn::LexerATNSimulator>()->getLine();
|
75
|
-
_text = "";
|
76
|
-
do {
|
77
|
-
type = Token::INVALID_TYPE;
|
78
|
-
size_t ttype;
|
79
|
-
try {
|
80
|
-
ttype = getInterpreter<atn::LexerATNSimulator>()->match(_input, mode);
|
81
|
-
} catch (LexerNoViableAltException &e) {
|
82
|
-
notifyListeners(e); // report error
|
83
|
-
recover(e);
|
84
|
-
ttype = SKIP;
|
85
|
-
}
|
86
|
-
if (_input->LA(1) == EOF) {
|
87
|
-
hitEOF = true;
|
88
|
-
}
|
89
|
-
if (type == Token::INVALID_TYPE) {
|
90
|
-
type = ttype;
|
91
|
-
}
|
92
|
-
if (type == SKIP) {
|
93
|
-
goto outerContinue;
|
94
|
-
}
|
95
|
-
} while (type == MORE);
|
96
|
-
if (token == nullptr) {
|
97
|
-
emit();
|
98
|
-
}
|
99
|
-
return std::move(token);
|
100
|
-
}
|
101
|
-
}
|
102
|
-
|
103
|
-
void Lexer::skip() {
|
104
|
-
type = SKIP;
|
105
|
-
}
|
106
|
-
|
107
|
-
void Lexer::more() {
|
108
|
-
type = MORE;
|
109
|
-
}
|
110
|
-
|
111
|
-
void Lexer::setMode(size_t m) {
|
112
|
-
mode = m;
|
113
|
-
}
|
114
|
-
|
115
|
-
void Lexer::pushMode(size_t m) {
|
116
|
-
#if DEBUG_LEXER == 1
|
117
|
-
std::cout << "pushMode " << m << std::endl;
|
118
|
-
#endif
|
119
|
-
|
120
|
-
modeStack.push_back(mode);
|
121
|
-
setMode(m);
|
122
|
-
}
|
123
|
-
|
124
|
-
size_t Lexer::popMode() {
|
125
|
-
if (modeStack.empty()) {
|
126
|
-
throw EmptyStackException();
|
127
|
-
}
|
128
|
-
#if DEBUG_LEXER == 1
|
129
|
-
std::cout << std::string("popMode back to ") << modeStack.back() << std::endl;
|
130
|
-
#endif
|
131
|
-
|
132
|
-
setMode(modeStack.back());
|
133
|
-
modeStack.pop_back();
|
134
|
-
return mode;
|
135
|
-
}
|
136
|
-
|
137
|
-
|
138
|
-
TokenFactory<CommonToken>* Lexer::getTokenFactory() {
|
139
|
-
return _factory;
|
140
|
-
}
|
141
|
-
|
142
|
-
void Lexer::setInputStream(IntStream *input) {
|
143
|
-
reset();
|
144
|
-
_input = dynamic_cast<CharStream*>(input);
|
145
|
-
}
|
146
|
-
|
147
|
-
std::string Lexer::getSourceName() {
|
148
|
-
return _input->getSourceName();
|
149
|
-
}
|
150
|
-
|
151
|
-
CharStream* Lexer::getInputStream() {
|
152
|
-
return _input;
|
153
|
-
}
|
154
|
-
|
155
|
-
void Lexer::emit(std::unique_ptr<Token> newToken) {
|
156
|
-
token = std::move(newToken);
|
157
|
-
}
|
158
|
-
|
159
|
-
Token* Lexer::emit() {
|
160
|
-
emit(_factory->create({ this, _input }, type, _text, channel,
|
161
|
-
tokenStartCharIndex, getCharIndex() - 1, tokenStartLine, tokenStartCharPositionInLine));
|
162
|
-
return token.get();
|
163
|
-
}
|
164
|
-
|
165
|
-
Token* Lexer::emitEOF() {
|
166
|
-
size_t cpos = getCharPositionInLine();
|
167
|
-
size_t line = getLine();
|
168
|
-
emit(_factory->create({ this, _input }, EOF, "", Token::DEFAULT_CHANNEL, _input->index(), _input->index() - 1, line, cpos));
|
169
|
-
return token.get();
|
170
|
-
}
|
171
|
-
|
172
|
-
size_t Lexer::getLine() const {
|
173
|
-
return getInterpreter<atn::LexerATNSimulator>()->getLine();
|
174
|
-
}
|
175
|
-
|
176
|
-
size_t Lexer::getCharPositionInLine() {
|
177
|
-
return getInterpreter<atn::LexerATNSimulator>()->getCharPositionInLine();
|
178
|
-
}
|
179
|
-
|
180
|
-
void Lexer::setLine(size_t line) {
|
181
|
-
getInterpreter<atn::LexerATNSimulator>()->setLine(line);
|
182
|
-
}
|
183
|
-
|
184
|
-
void Lexer::setCharPositionInLine(size_t charPositionInLine) {
|
185
|
-
getInterpreter<atn::LexerATNSimulator>()->setCharPositionInLine(charPositionInLine);
|
186
|
-
}
|
187
|
-
|
188
|
-
size_t Lexer::getCharIndex() {
|
189
|
-
return _input->index();
|
190
|
-
}
|
191
|
-
|
192
|
-
std::string Lexer::getText() {
|
193
|
-
if (!_text.empty()) {
|
194
|
-
return _text;
|
195
|
-
}
|
196
|
-
return getInterpreter<atn::LexerATNSimulator>()->getText(_input);
|
197
|
-
}
|
198
|
-
|
199
|
-
void Lexer::setText(const std::string &text) {
|
200
|
-
_text = text;
|
201
|
-
}
|
202
|
-
|
203
|
-
std::unique_ptr<Token> Lexer::getToken() {
|
204
|
-
return std::move(token);
|
205
|
-
}
|
206
|
-
|
207
|
-
void Lexer::setToken(std::unique_ptr<Token> newToken) {
|
208
|
-
token = std::move(newToken);
|
209
|
-
}
|
210
|
-
|
211
|
-
void Lexer::setType(size_t ttype) {
|
212
|
-
type = ttype;
|
213
|
-
}
|
214
|
-
|
215
|
-
size_t Lexer::getType() {
|
216
|
-
return type;
|
217
|
-
}
|
218
|
-
|
219
|
-
void Lexer::setChannel(size_t newChannel) {
|
220
|
-
channel = newChannel;
|
221
|
-
}
|
222
|
-
|
223
|
-
size_t Lexer::getChannel() {
|
224
|
-
return channel;
|
225
|
-
}
|
226
|
-
|
227
|
-
std::vector<std::unique_ptr<Token>> Lexer::getAllTokens() {
|
228
|
-
std::vector<std::unique_ptr<Token>> tokens;
|
229
|
-
std::unique_ptr<Token> t = nextToken();
|
230
|
-
while (t->getType() != EOF) {
|
231
|
-
tokens.push_back(std::move(t));
|
232
|
-
t = nextToken();
|
233
|
-
}
|
234
|
-
return tokens;
|
235
|
-
}
|
236
|
-
|
237
|
-
void Lexer::recover(const LexerNoViableAltException &/*e*/) {
|
238
|
-
if (_input->LA(1) != EOF) {
|
239
|
-
// skip a char and try again
|
240
|
-
getInterpreter<atn::LexerATNSimulator>()->consume(_input);
|
241
|
-
}
|
242
|
-
}
|
243
|
-
|
244
|
-
void Lexer::notifyListeners(const LexerNoViableAltException & /*e*/) {
|
245
|
-
++_syntaxErrors;
|
246
|
-
std::string text = _input->getText(misc::Interval(tokenStartCharIndex, _input->index()));
|
247
|
-
std::string msg = std::string("token recognition error at: '") + getErrorDisplay(text) + std::string("'");
|
248
|
-
|
249
|
-
ProxyErrorListener &listener = getErrorListenerDispatch();
|
250
|
-
listener.syntaxError(this, nullptr, tokenStartLine, tokenStartCharPositionInLine, msg, std::current_exception());
|
251
|
-
}
|
252
|
-
|
253
|
-
std::string Lexer::getErrorDisplay(const std::string &s) {
|
254
|
-
std::stringstream ss;
|
255
|
-
for (auto c : s) {
|
256
|
-
switch (c) {
|
257
|
-
case '\n':
|
258
|
-
ss << "\\n";
|
259
|
-
break;
|
260
|
-
case '\t':
|
261
|
-
ss << "\\t";
|
262
|
-
break;
|
263
|
-
case '\r':
|
264
|
-
ss << "\\r";
|
265
|
-
break;
|
266
|
-
default:
|
267
|
-
ss << c;
|
268
|
-
break;
|
269
|
-
}
|
270
|
-
}
|
271
|
-
return ss.str();
|
272
|
-
}
|
273
|
-
|
274
|
-
void Lexer::recover(RecognitionException * /*re*/) {
|
275
|
-
// TODO: Do we lose character or line position information?
|
276
|
-
_input->consume();
|
277
|
-
}
|
278
|
-
|
279
|
-
size_t Lexer::getNumberOfSyntaxErrors() {
|
280
|
-
return _syntaxErrors;
|
281
|
-
}
|
282
|
-
|
283
|
-
void Lexer::InitializeInstanceFields() {
|
284
|
-
_syntaxErrors = 0;
|
285
|
-
token = nullptr;
|
286
|
-
_factory = CommonTokenFactory::DEFAULT.get();
|
287
|
-
tokenStartCharIndex = INVALID_INDEX;
|
288
|
-
tokenStartLine = 0;
|
289
|
-
tokenStartCharPositionInLine = 0;
|
290
|
-
hitEOF = false;
|
291
|
-
channel = 0;
|
292
|
-
type = 0;
|
293
|
-
mode = Lexer::DEFAULT_MODE;
|
294
|
-
}
|
@@ -1,196 +0,0 @@
|
|
1
|
-
/* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
|
2
|
-
* Use of this file is governed by the BSD 3-clause license that
|
3
|
-
* can be found in the LICENSE.txt file in the project root.
|
4
|
-
*/
|
5
|
-
|
6
|
-
#pragma once
|
7
|
-
|
8
|
-
#include "Recognizer.h"
|
9
|
-
#include "TokenSource.h"
|
10
|
-
#include "CharStream.h"
|
11
|
-
#include "Token.h"
|
12
|
-
|
13
|
-
namespace antlr4 {
|
14
|
-
|
15
|
-
/// A lexer is recognizer that draws input symbols from a character stream.
|
16
|
-
/// lexer grammars result in a subclass of this object. A Lexer object
|
17
|
-
/// uses simplified match() and error recovery mechanisms in the interest
|
18
|
-
/// of speed.
|
19
|
-
class ANTLR4CPP_PUBLIC Lexer : public Recognizer, public TokenSource {
|
20
|
-
public:
|
21
|
-
static constexpr size_t DEFAULT_MODE = 0;
|
22
|
-
static constexpr size_t MORE = std::numeric_limits<size_t>::max() - 1;
|
23
|
-
static constexpr size_t SKIP = std::numeric_limits<size_t>::max() - 2;
|
24
|
-
|
25
|
-
static constexpr size_t DEFAULT_TOKEN_CHANNEL = Token::DEFAULT_CHANNEL;
|
26
|
-
static constexpr size_t HIDDEN = Token::HIDDEN_CHANNEL;
|
27
|
-
static constexpr size_t MIN_CHAR_VALUE = 0;
|
28
|
-
static constexpr size_t MAX_CHAR_VALUE = 0x10FFFF;
|
29
|
-
|
30
|
-
CharStream *_input; // Pure reference, usually from statically allocated instance.
|
31
|
-
|
32
|
-
protected:
|
33
|
-
/// How to create token objects.
|
34
|
-
TokenFactory<CommonToken> *_factory;
|
35
|
-
|
36
|
-
public:
|
37
|
-
/// The goal of all lexer rules/methods is to create a token object.
|
38
|
-
/// This is an instance variable as multiple rules may collaborate to
|
39
|
-
/// create a single token. nextToken will return this object after
|
40
|
-
/// matching lexer rule(s). If you subclass to allow multiple token
|
41
|
-
/// emissions, then set this to the last token to be matched or
|
42
|
-
/// something nonnull so that the auto token emit mechanism will not
|
43
|
-
/// emit another token.
|
44
|
-
|
45
|
-
// Life cycle of a token is this:
|
46
|
-
// Created by emit() (via the token factory) or by action code, holding ownership of it.
|
47
|
-
// Ownership is handed over to the token stream when calling nextToken().
|
48
|
-
std::unique_ptr<Token> token;
|
49
|
-
|
50
|
-
/// <summary>
|
51
|
-
/// What character index in the stream did the current token start at?
|
52
|
-
/// Needed, for example, to get the text for current token. Set at
|
53
|
-
/// the start of nextToken.
|
54
|
-
/// </summary>
|
55
|
-
size_t tokenStartCharIndex;
|
56
|
-
|
57
|
-
/// <summary>
|
58
|
-
/// The line on which the first character of the token resides </summary>
|
59
|
-
size_t tokenStartLine;
|
60
|
-
|
61
|
-
/// The character position of first character within the line.
|
62
|
-
size_t tokenStartCharPositionInLine;
|
63
|
-
|
64
|
-
/// Once we see EOF on char stream, next token will be EOF.
|
65
|
-
/// If you have DONE : EOF ; then you see DONE EOF.
|
66
|
-
bool hitEOF;
|
67
|
-
|
68
|
-
/// The channel number for the current token.
|
69
|
-
size_t channel;
|
70
|
-
|
71
|
-
/// The token type for the current token.
|
72
|
-
size_t type;
|
73
|
-
|
74
|
-
// Use the vector as a stack.
|
75
|
-
std::vector<size_t> modeStack;
|
76
|
-
size_t mode;
|
77
|
-
|
78
|
-
Lexer();
|
79
|
-
Lexer(CharStream *input);
|
80
|
-
virtual ~Lexer() {}
|
81
|
-
|
82
|
-
virtual void reset();
|
83
|
-
|
84
|
-
/// Return a token from this source; i.e., match a token on the char stream.
|
85
|
-
virtual std::unique_ptr<Token> nextToken() override;
|
86
|
-
|
87
|
-
/// Instruct the lexer to skip creating a token for current lexer rule
|
88
|
-
/// and look for another token. nextToken() knows to keep looking when
|
89
|
-
/// a lexer rule finishes with token set to SKIP_TOKEN. Recall that
|
90
|
-
/// if token == null at end of any token rule, it creates one for you
|
91
|
-
/// and emits it.
|
92
|
-
virtual void skip();
|
93
|
-
virtual void more();
|
94
|
-
virtual void setMode(size_t m);
|
95
|
-
virtual void pushMode(size_t m);
|
96
|
-
virtual size_t popMode();
|
97
|
-
|
98
|
-
template<typename T1>
|
99
|
-
void setTokenFactory(TokenFactory<T1> *factory) {
|
100
|
-
this->_factory = factory;
|
101
|
-
}
|
102
|
-
|
103
|
-
virtual TokenFactory<CommonToken>* getTokenFactory() override;
|
104
|
-
|
105
|
-
/// Set the char stream and reset the lexer
|
106
|
-
virtual void setInputStream(IntStream *input) override;
|
107
|
-
|
108
|
-
virtual std::string getSourceName() override;
|
109
|
-
|
110
|
-
virtual CharStream* getInputStream() override;
|
111
|
-
|
112
|
-
/// By default does not support multiple emits per nextToken invocation
|
113
|
-
/// for efficiency reasons. Subclasses can override this method, nextToken,
|
114
|
-
/// and getToken (to push tokens into a list and pull from that list
|
115
|
-
/// rather than a single variable as this implementation does).
|
116
|
-
virtual void emit(std::unique_ptr<Token> newToken);
|
117
|
-
|
118
|
-
/// The standard method called to automatically emit a token at the
|
119
|
-
/// outermost lexical rule. The token object should point into the
|
120
|
-
/// char buffer start..stop. If there is a text override in 'text',
|
121
|
-
/// use that to set the token's text. Override this method to emit
|
122
|
-
/// custom Token objects or provide a new factory.
|
123
|
-
virtual Token* emit();
|
124
|
-
|
125
|
-
virtual Token* emitEOF();
|
126
|
-
|
127
|
-
virtual size_t getLine() const override;
|
128
|
-
|
129
|
-
virtual size_t getCharPositionInLine() override;
|
130
|
-
|
131
|
-
virtual void setLine(size_t line);
|
132
|
-
|
133
|
-
virtual void setCharPositionInLine(size_t charPositionInLine);
|
134
|
-
|
135
|
-
/// What is the index of the current character of lookahead?
|
136
|
-
virtual size_t getCharIndex();
|
137
|
-
|
138
|
-
/// Return the text matched so far for the current token or any
|
139
|
-
/// text override.
|
140
|
-
virtual std::string getText();
|
141
|
-
|
142
|
-
/// Set the complete text of this token; it wipes any previous
|
143
|
-
/// changes to the text.
|
144
|
-
virtual void setText(const std::string &text);
|
145
|
-
|
146
|
-
/// Override if emitting multiple tokens.
|
147
|
-
virtual std::unique_ptr<Token> getToken();
|
148
|
-
|
149
|
-
virtual void setToken(std::unique_ptr<Token> newToken);
|
150
|
-
|
151
|
-
virtual void setType(size_t ttype);
|
152
|
-
|
153
|
-
virtual size_t getType();
|
154
|
-
|
155
|
-
virtual void setChannel(size_t newChannel);
|
156
|
-
|
157
|
-
virtual size_t getChannel();
|
158
|
-
|
159
|
-
virtual const std::vector<std::string>& getChannelNames() const = 0;
|
160
|
-
|
161
|
-
virtual const std::vector<std::string>& getModeNames() const = 0;
|
162
|
-
|
163
|
-
/// Return a list of all Token objects in input char stream.
|
164
|
-
/// Forces load of all tokens. Does not include EOF token.
|
165
|
-
virtual std::vector<std::unique_ptr<Token>> getAllTokens();
|
166
|
-
|
167
|
-
virtual void recover(const LexerNoViableAltException &e);
|
168
|
-
|
169
|
-
virtual void notifyListeners(const LexerNoViableAltException &e);
|
170
|
-
|
171
|
-
virtual std::string getErrorDisplay(const std::string &s);
|
172
|
-
|
173
|
-
/// Lexers can normally match any char in it's vocabulary after matching
|
174
|
-
/// a token, so do the easy thing and just kill a character and hope
|
175
|
-
/// it all works out. You can instead use the rule invocation stack
|
176
|
-
/// to do sophisticated error recovery if you are in a fragment rule.
|
177
|
-
virtual void recover(RecognitionException *re);
|
178
|
-
|
179
|
-
/// <summary>
|
180
|
-
/// Gets the number of syntax errors reported during parsing. This value is
|
181
|
-
/// incremented each time <seealso cref="#notifyErrorListeners"/> is called.
|
182
|
-
/// </summary>
|
183
|
-
/// <seealso cref= #notifyListeners </seealso>
|
184
|
-
virtual size_t getNumberOfSyntaxErrors();
|
185
|
-
|
186
|
-
protected:
|
187
|
-
/// You can set the text for the current token to override what is in
|
188
|
-
/// the input char buffer (via setText()).
|
189
|
-
std::string _text;
|
190
|
-
|
191
|
-
private:
|
192
|
-
size_t _syntaxErrors;
|
193
|
-
void InitializeInstanceFields();
|
194
|
-
};
|
195
|
-
|
196
|
-
} // namespace antlr4
|
@@ -1,60 +0,0 @@
|
|
1
|
-
/* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
|
2
|
-
* Use of this file is governed by the BSD 3-clause license that
|
3
|
-
* can be found in the LICENSE.txt file in the project root.
|
4
|
-
*/
|
5
|
-
|
6
|
-
#include "atn/ATNType.h"
|
7
|
-
#include "atn/LexerATNSimulator.h"
|
8
|
-
#include "dfa/DFA.h"
|
9
|
-
#include "Exceptions.h"
|
10
|
-
#include "Vocabulary.h"
|
11
|
-
|
12
|
-
#include "LexerInterpreter.h"
|
13
|
-
|
14
|
-
using namespace antlr4;
|
15
|
-
|
16
|
-
LexerInterpreter::LexerInterpreter(const std::string &grammarFileName, const dfa::Vocabulary &vocabulary,
|
17
|
-
const std::vector<std::string> &ruleNames, const std::vector<std::string> &channelNames, const std::vector<std::string> &modeNames,
|
18
|
-
const atn::ATN &atn, CharStream *input)
|
19
|
-
: Lexer(input), _grammarFileName(grammarFileName), _atn(atn), _ruleNames(ruleNames),
|
20
|
-
_channelNames(channelNames), _modeNames(modeNames),
|
21
|
-
_vocabulary(vocabulary) {
|
22
|
-
|
23
|
-
if (_atn.grammarType != atn::ATNType::LEXER) {
|
24
|
-
throw IllegalArgumentException("The ATN must be a lexer ATN.");
|
25
|
-
}
|
26
|
-
|
27
|
-
for (size_t i = 0; i < atn.getNumberOfDecisions(); ++i) {
|
28
|
-
_decisionToDFA.push_back(dfa::DFA(_atn.getDecisionState(i), i));
|
29
|
-
}
|
30
|
-
_interpreter = new atn::LexerATNSimulator(this, _atn, _decisionToDFA, _sharedContextCache); /* mem-check: deleted in d-tor */
|
31
|
-
}
|
32
|
-
|
33
|
-
LexerInterpreter::~LexerInterpreter()
|
34
|
-
{
|
35
|
-
delete _interpreter;
|
36
|
-
}
|
37
|
-
|
38
|
-
const atn::ATN& LexerInterpreter::getATN() const {
|
39
|
-
return _atn;
|
40
|
-
}
|
41
|
-
|
42
|
-
std::string LexerInterpreter::getGrammarFileName() const {
|
43
|
-
return _grammarFileName;
|
44
|
-
}
|
45
|
-
|
46
|
-
const std::vector<std::string>& LexerInterpreter::getRuleNames() const {
|
47
|
-
return _ruleNames;
|
48
|
-
}
|
49
|
-
|
50
|
-
const std::vector<std::string>& LexerInterpreter::getChannelNames() const {
|
51
|
-
return _channelNames;
|
52
|
-
}
|
53
|
-
|
54
|
-
const std::vector<std::string>& LexerInterpreter::getModeNames() const {
|
55
|
-
return _modeNames;
|
56
|
-
}
|
57
|
-
|
58
|
-
const dfa::Vocabulary& LexerInterpreter::getVocabulary() const {
|
59
|
-
return _vocabulary;
|
60
|
-
}
|
@@ -1,46 +0,0 @@
|
|
1
|
-
/* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
|
2
|
-
* Use of this file is governed by the BSD 3-clause license that
|
3
|
-
* can be found in the LICENSE.txt file in the project root.
|
4
|
-
*/
|
5
|
-
|
6
|
-
#pragma once
|
7
|
-
|
8
|
-
#include "Lexer.h"
|
9
|
-
#include "atn/PredictionContext.h"
|
10
|
-
#include "atn/PredictionContextCache.h"
|
11
|
-
#include "Vocabulary.h"
|
12
|
-
|
13
|
-
namespace antlr4 {
|
14
|
-
|
15
|
-
class ANTLR4CPP_PUBLIC LexerInterpreter : public Lexer {
|
16
|
-
public:
|
17
|
-
LexerInterpreter(const std::string &grammarFileName, const dfa::Vocabulary &vocabulary,
|
18
|
-
const std::vector<std::string> &ruleNames, const std::vector<std::string> &channelNames,
|
19
|
-
const std::vector<std::string> &modeNames, const atn::ATN &atn, CharStream *input);
|
20
|
-
|
21
|
-
~LexerInterpreter();
|
22
|
-
|
23
|
-
virtual const atn::ATN& getATN() const override;
|
24
|
-
virtual std::string getGrammarFileName() const override;
|
25
|
-
virtual const std::vector<std::string>& getRuleNames() const override;
|
26
|
-
virtual const std::vector<std::string>& getChannelNames() const override;
|
27
|
-
virtual const std::vector<std::string>& getModeNames() const override;
|
28
|
-
|
29
|
-
virtual const dfa::Vocabulary& getVocabulary() const override;
|
30
|
-
|
31
|
-
protected:
|
32
|
-
const std::string _grammarFileName;
|
33
|
-
const atn::ATN &_atn;
|
34
|
-
|
35
|
-
const std::vector<std::string> &_ruleNames;
|
36
|
-
const std::vector<std::string> &_channelNames;
|
37
|
-
const std::vector<std::string> &_modeNames;
|
38
|
-
std::vector<dfa::DFA> _decisionToDFA;
|
39
|
-
|
40
|
-
atn::PredictionContextCache _sharedContextCache;
|
41
|
-
|
42
|
-
private:
|
43
|
-
dfa::Vocabulary _vocabulary;
|
44
|
-
};
|
45
|
-
|
46
|
-
} // namespace antlr4
|
data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.cpp
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
/* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
|
2
|
-
* Use of this file is governed by the BSD 3-clause license that
|
3
|
-
* can be found in the LICENSE.txt file in the project root.
|
4
|
-
*/
|
5
|
-
|
6
|
-
#include "misc/Interval.h"
|
7
|
-
#include "support/CPPUtils.h"
|
8
|
-
#include "CharStream.h"
|
9
|
-
#include "Lexer.h"
|
10
|
-
|
11
|
-
#include "LexerNoViableAltException.h"
|
12
|
-
|
13
|
-
using namespace antlr4;
|
14
|
-
|
15
|
-
LexerNoViableAltException::LexerNoViableAltException(Lexer *lexer, CharStream *input, size_t startIndex,
|
16
|
-
atn::ATNConfigSet *deadEndConfigs)
|
17
|
-
: RecognitionException(lexer, input, nullptr, nullptr), _startIndex(startIndex), _deadEndConfigs(deadEndConfigs) {
|
18
|
-
}
|
19
|
-
|
20
|
-
size_t LexerNoViableAltException::getStartIndex() {
|
21
|
-
return _startIndex;
|
22
|
-
}
|
23
|
-
|
24
|
-
atn::ATNConfigSet* LexerNoViableAltException::getDeadEndConfigs() {
|
25
|
-
return _deadEndConfigs;
|
26
|
-
}
|
27
|
-
|
28
|
-
std::string LexerNoViableAltException::toString() {
|
29
|
-
std::string symbol;
|
30
|
-
if (_startIndex < getInputStream()->size()) {
|
31
|
-
symbol = static_cast<CharStream *>(getInputStream())->getText(misc::Interval(_startIndex, _startIndex));
|
32
|
-
symbol = antlrcpp::escapeWhitespace(symbol, false);
|
33
|
-
}
|
34
|
-
std::string format = "LexerNoViableAltException('" + symbol + "')";
|
35
|
-
return format;
|
36
|
-
}
|