expressir 0.2.4 → 0.2.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/release.yml +4 -3
- data/Rakefile +0 -9
- data/expressir.gemspec +3 -1
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/CMakeLists.txt +118 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2013.vcxproj +637 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2013.vcxproj.filters +984 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2015.vcxproj +652 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2015.vcxproj.filters +990 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2017.vcxproj +652 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2017.vcxproj.filters +990 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2019.vcxproj +652 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2019.vcxproj.filters +990 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp-ios/Info.plist +26 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp-ios/antlrcpp_ios.h +17 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.pbxproj +3024 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4.xcscheme +76 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4_ios.xcscheme +80 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4_static.xcscheme +80 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.cpp +10 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.h +167 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.cpp +10 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.h +121 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.cpp +34 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.h +27 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.cpp +155 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.h +69 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.cpp +61 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.h +59 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.cpp +25 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.h +36 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.cpp +414 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.h +200 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.cpp +11 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.h +37 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.cpp +195 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.h +158 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.cpp +39 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.h +74 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.cpp +78 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.h +79 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.cpp +15 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.h +35 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.cpp +333 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.h +466 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.cpp +84 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.h +80 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.cpp +64 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.h +99 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.cpp +51 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.h +32 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.cpp +18 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.h +24 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.cpp +12 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.h +218 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.cpp +19 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.h +45 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.cpp +295 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.h +196 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.cpp +75 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.h +52 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.cpp +36 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.h +31 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.cpp +92 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.h +88 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.cpp +46 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.h +42 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Parser.cpp +648 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Parser.h +467 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.cpp +306 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.h +179 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.cpp +141 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.h +147 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.cpp +53 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.h +38 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.cpp +66 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.h +98 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.cpp +167 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.h +164 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.cpp +143 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.h +137 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.cpp +27 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.h +32 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.cpp +53 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.h +155 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Token.cpp +9 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Token.h +92 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenFactory.h +30 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.cpp +9 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.h +85 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.cpp +11 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.h +137 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.cpp +425 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.h +293 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.cpp +211 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.h +123 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.cpp +270 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.h +115 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.cpp +104 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.h +193 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.cpp +9 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.h +23 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-common.h +137 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-runtime.h +167 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.cpp +209 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.h +112 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.cpp +113 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.h +148 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.cpp +228 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.h +110 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.cpp +64 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.h +50 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.cpp +758 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.h +85 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSerializer.cpp +621 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSerializer.h +61 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.cpp +63 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.h +87 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.cpp +72 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.h +133 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNType.h +20 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AbstractPredicateTransition.cpp +14 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AbstractPredicateTransition.h +24 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.cpp +33 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.h +33 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.cpp +16 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.h +68 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.cpp +82 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.h +43 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.cpp +31 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.h +30 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicBlockStartState.cpp +12 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicBlockStartState.h +22 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicState.cpp +12 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicState.h +21 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockEndState.cpp +15 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockEndState.h +24 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockStartState.cpp +9 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockStartState.h +21 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.cpp +14 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.h +47 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.cpp +14 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.h +70 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.cpp +25 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.h +227 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.cpp +17 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.h +30 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EmptyPredictionContext.cpp +35 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EmptyPredictionContext.h +27 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.cpp +35 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.h +39 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.cpp +15 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.h +43 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.cpp +158 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.h +109 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.cpp +84 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.h +44 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.cpp +628 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.h +210 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.cpp +9 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.h +66 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.cpp +107 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.h +115 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionType.h +55 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.cpp +55 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.h +63 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.cpp +62 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.h +87 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.cpp +63 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.h +82 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.cpp +56 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.h +61 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.cpp +47 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.h +57 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.cpp +47 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.h +57 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.cpp +56 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.h +61 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.cpp +47 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.h +55 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.cpp +56 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.h +55 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.cpp +16 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.h +42 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LoopEndState.cpp +12 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LoopEndState.h +22 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile +67 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.cpp +27 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.h +25 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.cpp +12 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.h +20 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.cpp +102 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.h +102 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.cpp +1366 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.h +904 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusBlockStartState.cpp +12 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusBlockStartState.h +25 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusLoopbackState.cpp +12 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusLoopbackState.h +22 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.cpp +32 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.h +29 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.cpp +17 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.h +62 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.cpp +34 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.h +39 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.cpp +662 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.h +254 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.cpp +201 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.h +436 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.cpp +179 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.h +60 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.cpp +30 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.h +29 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStartState.cpp +16 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStartState.h +25 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStopState.cpp +12 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStopState.h +25 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.cpp +37 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.h +40 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.cpp +377 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.h +222 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.cpp +32 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.h +30 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.cpp +81 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.h +36 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarBlockStartState.cpp +12 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarBlockStartState.h +21 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopEntryState.cpp +15 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopEntryState.h +35 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.cpp +19 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.h +21 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TokensStartState.cpp +12 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TokensStartState.h +21 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.cpp +44 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.h +76 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.cpp +25 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.h +25 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.cpp +127 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.h +91 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.cpp +67 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.h +32 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.cpp +100 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.h +144 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.cpp +20 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.h +23 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.cpp +124 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.h +31 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.cpp +89 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.h +84 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.cpp +521 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.h +198 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.cpp +134 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.h +76 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.cpp +4 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.h +21 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.cpp +13 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.h +170 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.cpp +43 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.h +110 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/BitSet.h +76 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.cpp +248 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.h +78 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Declarations.h +163 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.cpp +36 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.h +54 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/guid.cpp +303 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/guid.h +112 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/AbstractParseTreeVisitor.h +128 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNode.cpp +9 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNode.h +19 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.cpp +23 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.h +33 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.cpp +71 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.h +53 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.cpp +15 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.h +102 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.cpp +9 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.h +39 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeProperty.h +50 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.cpp +9 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.h +57 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.cpp +49 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.h +31 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNode.cpp +9 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNode.h +32 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.cpp +57 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.h +33 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.cpp +241 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.h +78 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.cpp +9 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.h +44 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.cpp +69 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.h +132 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.cpp +64 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.h +105 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.cpp +371 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.h +185 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.cpp +77 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.h +117 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.cpp +39 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.h +86 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.cpp +28 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.h +51 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.cpp +36 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.h +80 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.cpp +154 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.h +86 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.cpp +31 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.h +40 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp +173 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.g4 +64 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.h +56 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.tokens +12 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.cpp +13 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.h +22 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.cpp +20 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.h +27 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.cpp +30 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.h +26 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.cpp +20 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.h +25 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.cpp +33 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.h +26 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.cpp +23 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.h +23 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.cpp +24 -0
- data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.h +23 -0
- data/lib/expressir/version.rb +1 -1
- metadata +329 -4
@@ -0,0 +1,104 @@
|
|
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 "Token.h"
|
7
|
+
|
8
|
+
#include "Vocabulary.h"
|
9
|
+
|
10
|
+
using namespace antlr4::dfa;
|
11
|
+
|
12
|
+
const Vocabulary Vocabulary::EMPTY_VOCABULARY;
|
13
|
+
|
14
|
+
Vocabulary::Vocabulary(const std::vector<std::string> &literalNames, const std::vector<std::string> &symbolicNames)
|
15
|
+
: Vocabulary(literalNames, symbolicNames, {}) {
|
16
|
+
}
|
17
|
+
|
18
|
+
Vocabulary::Vocabulary(const std::vector<std::string> &literalNames,
|
19
|
+
const std::vector<std::string> &symbolicNames, const std::vector<std::string> &displayNames)
|
20
|
+
: _literalNames(literalNames), _symbolicNames(symbolicNames), _displayNames(displayNames),
|
21
|
+
_maxTokenType(std::max(_displayNames.size(), std::max(_literalNames.size(), _symbolicNames.size())) - 1) {
|
22
|
+
// See note here on -1 part: https://github.com/antlr/antlr4/pull/1146
|
23
|
+
}
|
24
|
+
|
25
|
+
Vocabulary::~Vocabulary() {
|
26
|
+
}
|
27
|
+
|
28
|
+
Vocabulary Vocabulary::fromTokenNames(const std::vector<std::string> &tokenNames) {
|
29
|
+
if (tokenNames.empty()) {
|
30
|
+
return EMPTY_VOCABULARY;
|
31
|
+
}
|
32
|
+
|
33
|
+
std::vector<std::string> literalNames = tokenNames;
|
34
|
+
std::vector<std::string> symbolicNames = tokenNames;
|
35
|
+
std::locale locale;
|
36
|
+
for (size_t i = 0; i < tokenNames.size(); i++) {
|
37
|
+
std::string tokenName = tokenNames[i];
|
38
|
+
if (tokenName == "") {
|
39
|
+
continue;
|
40
|
+
}
|
41
|
+
|
42
|
+
if (!tokenName.empty()) {
|
43
|
+
char firstChar = tokenName[0];
|
44
|
+
if (firstChar == '\'') {
|
45
|
+
symbolicNames[i] = "";
|
46
|
+
continue;
|
47
|
+
} else if (std::isupper(firstChar, locale)) {
|
48
|
+
literalNames[i] = "";
|
49
|
+
continue;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
// wasn't a literal or symbolic name
|
54
|
+
literalNames[i] = "";
|
55
|
+
symbolicNames[i] = "";
|
56
|
+
}
|
57
|
+
|
58
|
+
return Vocabulary(literalNames, symbolicNames, tokenNames);
|
59
|
+
}
|
60
|
+
|
61
|
+
size_t Vocabulary::getMaxTokenType() const {
|
62
|
+
return _maxTokenType;
|
63
|
+
}
|
64
|
+
|
65
|
+
std::string Vocabulary::getLiteralName(size_t tokenType) const {
|
66
|
+
if (tokenType < _literalNames.size()) {
|
67
|
+
return _literalNames[tokenType];
|
68
|
+
}
|
69
|
+
|
70
|
+
return "";
|
71
|
+
}
|
72
|
+
|
73
|
+
std::string Vocabulary::getSymbolicName(size_t tokenType) const {
|
74
|
+
if (tokenType == Token::EOF) {
|
75
|
+
return "EOF";
|
76
|
+
}
|
77
|
+
|
78
|
+
if (tokenType < _symbolicNames.size()) {
|
79
|
+
return _symbolicNames[tokenType];
|
80
|
+
}
|
81
|
+
|
82
|
+
return "";
|
83
|
+
}
|
84
|
+
|
85
|
+
std::string Vocabulary::getDisplayName(size_t tokenType) const {
|
86
|
+
if (tokenType < _displayNames.size()) {
|
87
|
+
std::string displayName = _displayNames[tokenType];
|
88
|
+
if (!displayName.empty()) {
|
89
|
+
return displayName;
|
90
|
+
}
|
91
|
+
}
|
92
|
+
|
93
|
+
std::string literalName = getLiteralName(tokenType);
|
94
|
+
if (!literalName.empty()) {
|
95
|
+
return literalName;
|
96
|
+
}
|
97
|
+
|
98
|
+
std::string symbolicName = getSymbolicName(tokenType);
|
99
|
+
if (!symbolicName.empty()) {
|
100
|
+
return symbolicName;
|
101
|
+
}
|
102
|
+
|
103
|
+
return std::to_string(tokenType);
|
104
|
+
}
|
@@ -0,0 +1,193 @@
|
|
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 "antlr4-common.h"
|
9
|
+
|
10
|
+
namespace antlr4 {
|
11
|
+
namespace dfa {
|
12
|
+
|
13
|
+
/// This class provides a default implementation of the <seealso cref="Vocabulary"/>
|
14
|
+
/// interface.
|
15
|
+
class ANTLR4CPP_PUBLIC Vocabulary {
|
16
|
+
public:
|
17
|
+
Vocabulary(Vocabulary const&) = default;
|
18
|
+
virtual ~Vocabulary();
|
19
|
+
|
20
|
+
/// Gets an empty <seealso cref="Vocabulary"/> instance.
|
21
|
+
///
|
22
|
+
/// <para>
|
23
|
+
/// No literal or symbol names are assigned to token types, so
|
24
|
+
/// <seealso cref="#getDisplayName(int)"/> returns the numeric value for all tokens
|
25
|
+
/// except <seealso cref="Token#EOF"/>.</para>
|
26
|
+
static const Vocabulary EMPTY_VOCABULARY;
|
27
|
+
|
28
|
+
Vocabulary() {}
|
29
|
+
|
30
|
+
/// <summary>
|
31
|
+
/// Constructs a new instance of <seealso cref="Vocabulary"/> from the specified
|
32
|
+
/// literal and symbolic token names.
|
33
|
+
/// </summary>
|
34
|
+
/// <param name="literalNames"> The literal names assigned to tokens, or {@code null}
|
35
|
+
/// if no literal names are assigned. </param>
|
36
|
+
/// <param name="symbolicNames"> The symbolic names assigned to tokens, or
|
37
|
+
/// {@code null} if no symbolic names are assigned.
|
38
|
+
/// </param>
|
39
|
+
/// <seealso cref= #getLiteralName(int) </seealso>
|
40
|
+
/// <seealso cref= #getSymbolicName(int) </seealso>
|
41
|
+
Vocabulary(const std::vector<std::string> &literalNames, const std::vector<std::string> &symbolicNames);
|
42
|
+
|
43
|
+
/// <summary>
|
44
|
+
/// Constructs a new instance of <seealso cref="Vocabulary"/> from the specified
|
45
|
+
/// literal, symbolic, and display token names.
|
46
|
+
/// </summary>
|
47
|
+
/// <param name="literalNames"> The literal names assigned to tokens, or {@code null}
|
48
|
+
/// if no literal names are assigned. </param>
|
49
|
+
/// <param name="symbolicNames"> The symbolic names assigned to tokens, or
|
50
|
+
/// {@code null} if no symbolic names are assigned. </param>
|
51
|
+
/// <param name="displayNames"> The display names assigned to tokens, or {@code null}
|
52
|
+
/// to use the values in {@code literalNames} and {@code symbolicNames} as
|
53
|
+
/// the source of display names, as described in
|
54
|
+
/// <seealso cref="#getDisplayName(int)"/>.
|
55
|
+
/// </param>
|
56
|
+
/// <seealso cref= #getLiteralName(int) </seealso>
|
57
|
+
/// <seealso cref= #getSymbolicName(int) </seealso>
|
58
|
+
/// <seealso cref= #getDisplayName(int) </seealso>
|
59
|
+
Vocabulary(const std::vector<std::string> &literalNames, const std::vector<std::string> &symbolicNames,
|
60
|
+
const std::vector<std::string> &displayNames);
|
61
|
+
|
62
|
+
/// <summary>
|
63
|
+
/// Returns a <seealso cref="Vocabulary"/> instance from the specified set of token
|
64
|
+
/// names. This method acts as a compatibility layer for the single
|
65
|
+
/// {@code tokenNames} array generated by previous releases of ANTLR.
|
66
|
+
///
|
67
|
+
/// <para>The resulting vocabulary instance returns {@code null} for
|
68
|
+
/// <seealso cref="#getLiteralName(int)"/> and <seealso cref="#getSymbolicName(int)"/>, and the
|
69
|
+
/// value from {@code tokenNames} for the display names.</para>
|
70
|
+
/// </summary>
|
71
|
+
/// <param name="tokenNames"> The token names, or {@code null} if no token names are
|
72
|
+
/// available. </param>
|
73
|
+
/// <returns> A <seealso cref="Vocabulary"/> instance which uses {@code tokenNames} for
|
74
|
+
/// the display names of tokens. </returns>
|
75
|
+
static Vocabulary fromTokenNames(const std::vector<std::string> &tokenNames);
|
76
|
+
|
77
|
+
/// <summary>
|
78
|
+
/// Returns the highest token type value. It can be used to iterate from
|
79
|
+
/// zero to that number, inclusively, thus querying all stored entries. </summary>
|
80
|
+
/// <returns> the highest token type value </returns>
|
81
|
+
virtual size_t getMaxTokenType() const;
|
82
|
+
|
83
|
+
/// <summary>
|
84
|
+
/// Gets the string literal associated with a token type. The string returned
|
85
|
+
/// by this method, when not {@code null}, can be used unaltered in a parser
|
86
|
+
/// grammar to represent this token type.
|
87
|
+
///
|
88
|
+
/// <para>The following table shows examples of lexer rules and the literal
|
89
|
+
/// names assigned to the corresponding token types.</para>
|
90
|
+
///
|
91
|
+
/// <table>
|
92
|
+
/// <tr>
|
93
|
+
/// <th>Rule</th>
|
94
|
+
/// <th>Literal Name</th>
|
95
|
+
/// <th>Java String Literal</th>
|
96
|
+
/// </tr>
|
97
|
+
/// <tr>
|
98
|
+
/// <td>{@code THIS : 'this';}</td>
|
99
|
+
/// <td>{@code 'this'}</td>
|
100
|
+
/// <td>{@code "'this'"}</td>
|
101
|
+
/// </tr>
|
102
|
+
/// <tr>
|
103
|
+
/// <td>{@code SQUOTE : '\'';}</td>
|
104
|
+
/// <td>{@code '\''}</td>
|
105
|
+
/// <td>{@code "'\\''"}</td>
|
106
|
+
/// </tr>
|
107
|
+
/// <tr>
|
108
|
+
/// <td>{@code ID : [A-Z]+;}</td>
|
109
|
+
/// <td>n/a</td>
|
110
|
+
/// <td>{@code null}</td>
|
111
|
+
/// </tr>
|
112
|
+
/// </table>
|
113
|
+
/// </summary>
|
114
|
+
/// <param name="tokenType"> The token type.
|
115
|
+
/// </param>
|
116
|
+
/// <returns> The string literal associated with the specified token type, or
|
117
|
+
/// {@code null} if no string literal is associated with the type. </returns>
|
118
|
+
virtual std::string getLiteralName(size_t tokenType) const;
|
119
|
+
|
120
|
+
/// <summary>
|
121
|
+
/// Gets the symbolic name associated with a token type. The string returned
|
122
|
+
/// by this method, when not {@code null}, can be used unaltered in a parser
|
123
|
+
/// grammar to represent this token type.
|
124
|
+
///
|
125
|
+
/// <para>This method supports token types defined by any of the following
|
126
|
+
/// methods:</para>
|
127
|
+
///
|
128
|
+
/// <ul>
|
129
|
+
/// <li>Tokens created by lexer rules.</li>
|
130
|
+
/// <li>Tokens defined in a <code>tokens{}</code> block in a lexer or parser
|
131
|
+
/// grammar.</li>
|
132
|
+
/// <li>The implicitly defined {@code EOF} token, which has the token type
|
133
|
+
/// <seealso cref="Token#EOF"/>.</li>
|
134
|
+
/// </ul>
|
135
|
+
///
|
136
|
+
/// <para>The following table shows examples of lexer rules and the literal
|
137
|
+
/// names assigned to the corresponding token types.</para>
|
138
|
+
///
|
139
|
+
/// <table>
|
140
|
+
/// <tr>
|
141
|
+
/// <th>Rule</th>
|
142
|
+
/// <th>Symbolic Name</th>
|
143
|
+
/// </tr>
|
144
|
+
/// <tr>
|
145
|
+
/// <td>{@code THIS : 'this';}</td>
|
146
|
+
/// <td>{@code THIS}</td>
|
147
|
+
/// </tr>
|
148
|
+
/// <tr>
|
149
|
+
/// <td>{@code SQUOTE : '\'';}</td>
|
150
|
+
/// <td>{@code SQUOTE}</td>
|
151
|
+
/// </tr>
|
152
|
+
/// <tr>
|
153
|
+
/// <td>{@code ID : [A-Z]+;}</td>
|
154
|
+
/// <td>{@code ID}</td>
|
155
|
+
/// </tr>
|
156
|
+
/// </table>
|
157
|
+
/// </summary>
|
158
|
+
/// <param name="tokenType"> The token type.
|
159
|
+
/// </param>
|
160
|
+
/// <returns> The symbolic name associated with the specified token type, or
|
161
|
+
/// {@code null} if no symbolic name is associated with the type. </returns>
|
162
|
+
virtual std::string getSymbolicName(size_t tokenType) const;
|
163
|
+
|
164
|
+
/// <summary>
|
165
|
+
/// Gets the display name of a token type.
|
166
|
+
///
|
167
|
+
/// <para>ANTLR provides a default implementation of this method, but
|
168
|
+
/// applications are free to override the behavior in any manner which makes
|
169
|
+
/// sense for the application. The default implementation returns the first
|
170
|
+
/// result from the following list which produces a non-{@code null}
|
171
|
+
/// result.</para>
|
172
|
+
///
|
173
|
+
/// <ol>
|
174
|
+
/// <li>The result of <seealso cref="#getLiteralName"/></li>
|
175
|
+
/// <li>The result of <seealso cref="#getSymbolicName"/></li>
|
176
|
+
/// <li>The result of <seealso cref="Integer#toString"/></li>
|
177
|
+
/// </ol>
|
178
|
+
/// </summary>
|
179
|
+
/// <param name="tokenType"> The token type.
|
180
|
+
/// </param>
|
181
|
+
/// <returns> The display name of the token type, for use in error reporting or
|
182
|
+
/// other user-visible messages which reference specific token types. </returns>
|
183
|
+
virtual std::string getDisplayName(size_t tokenType) const;
|
184
|
+
|
185
|
+
private:
|
186
|
+
std::vector<std::string> const _literalNames;
|
187
|
+
std::vector<std::string> const _symbolicNames;
|
188
|
+
std::vector<std::string> const _displayNames;
|
189
|
+
const size_t _maxTokenType = 0;
|
190
|
+
};
|
191
|
+
|
192
|
+
} // namespace atn
|
193
|
+
} // namespace antlr4
|
@@ -0,0 +1,9 @@
|
|
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 "WritableToken.h"
|
7
|
+
|
8
|
+
antlr4::WritableToken::~WritableToken() {
|
9
|
+
}
|
@@ -0,0 +1,23 @@
|
|
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 "Token.h"
|
9
|
+
|
10
|
+
namespace antlr4 {
|
11
|
+
|
12
|
+
class ANTLR4CPP_PUBLIC WritableToken : public Token {
|
13
|
+
public:
|
14
|
+
virtual ~WritableToken();
|
15
|
+
virtual void setText(const std::string &text) = 0;
|
16
|
+
virtual void setType(size_t ttype) = 0;
|
17
|
+
virtual void setLine(size_t line) = 0;
|
18
|
+
virtual void setCharPositionInLine(size_t pos) = 0;
|
19
|
+
virtual void setChannel(size_t channel) = 0;
|
20
|
+
virtual void setTokenIndex(size_t index) = 0;
|
21
|
+
};
|
22
|
+
|
23
|
+
} // namespace antlr4
|
@@ -0,0 +1,137 @@
|
|
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 <algorithm>
|
9
|
+
#include <assert.h>
|
10
|
+
#include <atomic>
|
11
|
+
#include <codecvt>
|
12
|
+
#include <chrono>
|
13
|
+
#include <fstream>
|
14
|
+
#include <iostream>
|
15
|
+
#include <iterator>
|
16
|
+
#include <limits>
|
17
|
+
#include <limits.h>
|
18
|
+
#include <list>
|
19
|
+
#include <map>
|
20
|
+
#include <memory>
|
21
|
+
#include <set>
|
22
|
+
#include <stdarg.h>
|
23
|
+
#include <stdint.h>
|
24
|
+
#include <stdlib.h>
|
25
|
+
#include <sstream>
|
26
|
+
#include <stack>
|
27
|
+
#include <string>
|
28
|
+
#include <typeinfo>
|
29
|
+
#include <type_traits>
|
30
|
+
#include <unordered_map>
|
31
|
+
#include <unordered_set>
|
32
|
+
#include <utility>
|
33
|
+
#include <vector>
|
34
|
+
#include <mutex>
|
35
|
+
#include <exception>
|
36
|
+
#include <bitset>
|
37
|
+
#include <condition_variable>
|
38
|
+
#include <functional>
|
39
|
+
|
40
|
+
// Defines for the Guid class and other platform dependent stuff.
|
41
|
+
#ifdef _WIN32
|
42
|
+
#ifdef _MSC_VER
|
43
|
+
#pragma warning (disable: 4250) // Class inherits by dominance.
|
44
|
+
#pragma warning (disable: 4512) // assignment operator could not be generated
|
45
|
+
|
46
|
+
#if _MSC_VER < 1900
|
47
|
+
// Before VS 2015 code like "while (true)" will create a (useless) warning in level 4.
|
48
|
+
#pragma warning (disable: 4127) // conditional expression is constant
|
49
|
+
#endif
|
50
|
+
#endif
|
51
|
+
|
52
|
+
#define GUID_WINDOWS
|
53
|
+
|
54
|
+
#ifdef _WIN64
|
55
|
+
typedef __int64 ssize_t;
|
56
|
+
#else
|
57
|
+
typedef __int32 ssize_t;
|
58
|
+
#endif
|
59
|
+
|
60
|
+
#if _MSC_VER >= 1900 && _MSC_VER < 2000
|
61
|
+
// VS 2015 has a known bug when using std::codecvt_utf8<char32_t>
|
62
|
+
// so we have to temporarily use __int32 instead.
|
63
|
+
// https://connect.microsoft.com/VisualStudio/feedback/details/1403302/unresolved-external-when-using-codecvt-utf8
|
64
|
+
typedef std::basic_string<__int32> i32string;
|
65
|
+
|
66
|
+
typedef i32string UTF32String;
|
67
|
+
#else
|
68
|
+
typedef std::u32string UTF32String;
|
69
|
+
#endif
|
70
|
+
|
71
|
+
#ifdef ANTLR4CPP_EXPORTS
|
72
|
+
#define ANTLR4CPP_PUBLIC __declspec(dllexport)
|
73
|
+
#else
|
74
|
+
#ifdef ANTLR4CPP_STATIC
|
75
|
+
#define ANTLR4CPP_PUBLIC
|
76
|
+
#else
|
77
|
+
#define ANTLR4CPP_PUBLIC __declspec(dllimport)
|
78
|
+
#endif
|
79
|
+
#endif
|
80
|
+
|
81
|
+
#if defined(_MSC_VER) && !defined(__clang__)
|
82
|
+
// clang-cl should escape this to prevent [ignored-attributes].
|
83
|
+
namespace std {
|
84
|
+
class ANTLR4CPP_PUBLIC exception; // Prevents warning C4275 from MSVC.
|
85
|
+
} // namespace std
|
86
|
+
#endif
|
87
|
+
|
88
|
+
#elif defined(__APPLE__)
|
89
|
+
typedef std::u32string UTF32String;
|
90
|
+
|
91
|
+
#define GUID_CFUUID
|
92
|
+
#if __GNUC__ >= 4
|
93
|
+
#define ANTLR4CPP_PUBLIC __attribute__ ((visibility ("default")))
|
94
|
+
#else
|
95
|
+
#define ANTLR4CPP_PUBLIC
|
96
|
+
#endif
|
97
|
+
#else
|
98
|
+
typedef std::u32string UTF32String;
|
99
|
+
|
100
|
+
#define GUID_LIBUUID
|
101
|
+
#if __GNUC__ >= 6
|
102
|
+
#define ANTLR4CPP_PUBLIC __attribute__ ((visibility ("default")))
|
103
|
+
#else
|
104
|
+
#define ANTLR4CPP_PUBLIC
|
105
|
+
#endif
|
106
|
+
#endif
|
107
|
+
|
108
|
+
#include "support/guid.h"
|
109
|
+
#include "support/Declarations.h"
|
110
|
+
|
111
|
+
#if !defined(HAS_NOEXCEPT)
|
112
|
+
#if defined(__clang__)
|
113
|
+
#if __has_feature(cxx_noexcept)
|
114
|
+
#define HAS_NOEXCEPT
|
115
|
+
#endif
|
116
|
+
#else
|
117
|
+
#if defined(__GXX_EXPERIMENTAL_CXX0X__) && __GNUC__ * 10 + __GNUC_MINOR__ >= 46 || \
|
118
|
+
defined(_MSC_FULL_VER) && _MSC_FULL_VER >= 190023026
|
119
|
+
#define HAS_NOEXCEPT
|
120
|
+
#endif
|
121
|
+
#endif
|
122
|
+
|
123
|
+
#ifdef HAS_NOEXCEPT
|
124
|
+
#define NOEXCEPT noexcept
|
125
|
+
#else
|
126
|
+
#define NOEXCEPT
|
127
|
+
#endif
|
128
|
+
#endif
|
129
|
+
|
130
|
+
// We have to undefine this symbol as ANTLR will use this name for own members and even
|
131
|
+
// generated functions. Because EOF is a global macro we cannot use e.g. a namespace scope to disambiguate.
|
132
|
+
#ifdef EOF
|
133
|
+
#undef EOF
|
134
|
+
#endif
|
135
|
+
|
136
|
+
#define INVALID_INDEX std::numeric_limits<size_t>::max()
|
137
|
+
template<class T> using Ref = std::shared_ptr<T>;
|