expressir 0.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/workflows/rake.yml +46 -0
- data/.github/workflows/release.yml +75 -0
- data/.gitignore +15 -0
- data/.gitmodules +3 -0
- data/.rspec +2 -0
- data/.rubocop.yml +508 -0
- data/Gemfile +6 -0
- data/README.adoc +147 -0
- data/Rakefile +17 -0
- data/bin/console +12 -0
- data/bin/rspec +29 -0
- data/bin/setup +8 -0
- data/demo.rb +18 -0
- data/docs/development.md +90 -0
- data/exe/expressir +20 -0
- data/exe/generate-parser +48 -0
- data/expressir.gemspec +40 -0
- 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/ext/express-parser/antlrgen/Express.interp +532 -0
- data/ext/express-parser/antlrgen/Express.tokens +190 -0
- data/ext/express-parser/antlrgen/ExpressBaseListener.cpp +7 -0
- data/ext/express-parser/antlrgen/ExpressBaseListener.h +623 -0
- data/ext/express-parser/antlrgen/ExpressBaseVisitor.cpp +7 -0
- data/ext/express-parser/antlrgen/ExpressBaseVisitor.h +816 -0
- data/ext/express-parser/antlrgen/ExpressLexer.cpp +1169 -0
- data/ext/express-parser/antlrgen/ExpressLexer.h +85 -0
- data/ext/express-parser/antlrgen/ExpressLexer.interp +534 -0
- data/ext/express-parser/antlrgen/ExpressLexer.tokens +190 -0
- data/ext/express-parser/antlrgen/ExpressListener.cpp +7 -0
- data/ext/express-parser/antlrgen/ExpressListener.h +616 -0
- data/ext/express-parser/antlrgen/ExpressParser.cpp +17284 -0
- data/ext/express-parser/antlrgen/ExpressParser.h +3696 -0
- data/ext/express-parser/antlrgen/ExpressVisitor.cpp +7 -0
- data/ext/express-parser/antlrgen/ExpressVisitor.h +422 -0
- data/ext/express-parser/express_parser.cpp +17931 -0
- data/ext/express-parser/extconf.rb +34 -0
- data/lib/express_parser.so +0 -0
- data/lib/expressir.rb +21 -0
- data/lib/expressir/cli.rb +27 -0
- data/lib/expressir/cli/ui.rb +36 -0
- data/lib/expressir/config.rb +23 -0
- data/lib/expressir/express.rb +11 -0
- data/lib/expressir/express/aggregate_dimension.rb +38 -0
- data/lib/expressir/express/attribute.rb +15 -0
- data/lib/expressir/express/comment.rb +7 -0
- data/lib/expressir/express/defined_type.rb +36 -0
- data/lib/expressir/express/derived.rb +65 -0
- data/lib/expressir/express/derived_aggregate.rb +43 -0
- data/lib/expressir/express/entity.rb +137 -0
- data/lib/expressir/express/explicit.rb +70 -0
- data/lib/expressir/express/explicit_aggregate.rb +46 -0
- data/lib/expressir/express/explicit_or_derived.rb +16 -0
- data/lib/expressir/express/global_rule.rb +44 -0
- data/lib/expressir/express/interface_specification.rb +51 -0
- data/lib/expressir/express/interfaced_item.rb +38 -0
- data/lib/expressir/express/inverse.rb +46 -0
- data/lib/expressir/express/inverse_aggregate.rb +37 -0
- data/lib/expressir/express/model_element.rb +7 -0
- data/lib/expressir/express/named_type.rb +19 -0
- data/lib/expressir/express/remark.rb +8 -0
- data/lib/expressir/express/repository.rb +306 -0
- data/lib/expressir/express/schema_definition.rb +96 -0
- data/lib/expressir/express/subtype_constraint.rb +14 -0
- data/lib/expressir/express/type.rb +26 -0
- data/lib/expressir/express/type_aggregate.rb +42 -0
- data/lib/expressir/express/type_enum.rb +29 -0
- data/lib/expressir/express/type_parser.rb +45 -0
- data/lib/expressir/express/type_select.rb +82 -0
- data/lib/expressir/express/unique_rule.rb +35 -0
- data/lib/expressir/express/where_rule.rb +32 -0
- data/lib/expressir/express_exp/formatter.rb +1450 -0
- data/lib/expressir/express_exp/parser.rb +36 -0
- data/lib/expressir/express_exp/visitor.rb +2451 -0
- data/lib/expressir/express_parser.rb +30 -0
- data/lib/expressir/model.rb +65 -0
- data/lib/expressir/model/attribute.rb +27 -0
- data/lib/expressir/model/constant.rb +17 -0
- data/lib/expressir/model/entity.rb +46 -0
- data/lib/expressir/model/enumeration_item.rb +11 -0
- data/lib/expressir/model/expressions/aggregate_initializer.rb +13 -0
- data/lib/expressir/model/expressions/aggregate_item.rb +15 -0
- data/lib/expressir/model/expressions/attribute_reference.rb +15 -0
- data/lib/expressir/model/expressions/binary_expression.rb +40 -0
- data/lib/expressir/model/expressions/call.rb +15 -0
- data/lib/expressir/model/expressions/entity_constructor.rb +15 -0
- data/lib/expressir/model/expressions/group_reference.rb +15 -0
- data/lib/expressir/model/expressions/index_reference.rb +17 -0
- data/lib/expressir/model/expressions/interval.rb +21 -0
- data/lib/expressir/model/expressions/query_expression.rb +26 -0
- data/lib/expressir/model/expressions/simple_reference.rb +13 -0
- data/lib/expressir/model/expressions/unary_expression.rb +19 -0
- data/lib/expressir/model/function.rb +62 -0
- data/lib/expressir/model/identifier.rb +9 -0
- data/lib/expressir/model/interface.rb +18 -0
- data/lib/expressir/model/literals/binary.rb +13 -0
- data/lib/expressir/model/literals/integer.rb +13 -0
- data/lib/expressir/model/literals/logical.rb +17 -0
- data/lib/expressir/model/literals/real.rb +13 -0
- data/lib/expressir/model/literals/string.rb +15 -0
- data/lib/expressir/model/parameter.rb +17 -0
- data/lib/expressir/model/procedure.rb +60 -0
- data/lib/expressir/model/renamed_ref.rb +13 -0
- data/lib/expressir/model/repository.rb +19 -0
- data/lib/expressir/model/rule.rb +62 -0
- data/lib/expressir/model/schema.rb +67 -0
- data/lib/expressir/model/scope.rb +17 -0
- data/lib/expressir/model/statements/alias.rb +26 -0
- data/lib/expressir/model/statements/assignment.rb +15 -0
- data/lib/expressir/model/statements/call.rb +15 -0
- data/lib/expressir/model/statements/case.rb +17 -0
- data/lib/expressir/model/statements/case_action.rb +15 -0
- data/lib/expressir/model/statements/compound.rb +13 -0
- data/lib/expressir/model/statements/escape.rb +8 -0
- data/lib/expressir/model/statements/if.rb +17 -0
- data/lib/expressir/model/statements/null.rb +8 -0
- data/lib/expressir/model/statements/repeat.rb +34 -0
- data/lib/expressir/model/statements/return.rb +13 -0
- data/lib/expressir/model/statements/skip.rb +8 -0
- data/lib/expressir/model/subtype_constraint.rb +27 -0
- data/lib/expressir/model/type.rb +24 -0
- data/lib/expressir/model/types/aggregate.rb +17 -0
- data/lib/expressir/model/types/array.rb +21 -0
- data/lib/expressir/model/types/bag.rb +17 -0
- data/lib/expressir/model/types/binary.rb +15 -0
- data/lib/expressir/model/types/boolean.rb +8 -0
- data/lib/expressir/model/types/enumeration.rb +19 -0
- data/lib/expressir/model/types/generic.rb +13 -0
- data/lib/expressir/model/types/generic_entity.rb +13 -0
- data/lib/expressir/model/types/integer.rb +8 -0
- data/lib/expressir/model/types/list.rb +19 -0
- data/lib/expressir/model/types/logical.rb +8 -0
- data/lib/expressir/model/types/number.rb +8 -0
- data/lib/expressir/model/types/real.rb +13 -0
- data/lib/expressir/model/types/select.rb +21 -0
- data/lib/expressir/model/types/set.rb +17 -0
- data/lib/expressir/model/types/string.rb +15 -0
- data/lib/expressir/model/unique.rb +15 -0
- data/lib/expressir/model/variable.rb +17 -0
- data/lib/expressir/model/where.rb +15 -0
- data/lib/expressir/parser.rb +6 -0
- data/lib/expressir/parser/owl_parser.rb +8 -0
- data/lib/expressir/version.rb +3 -0
- data/original/examples/ap233/ap233e1_arm_lf_stepmod-2010-11-12.exp +9589 -0
- data/original/examples/ap233/ap233e1_arm_lf_stepmod-2010-11-12.owl +36619 -0
- data/original/examples/ap233/ap233e1_arm_lf_stepmod-2010-11-12.xml +13294 -0
- data/original/examples/employment/eclipse/.project +17 -0
- data/original/examples/employment/eclipse/Export/Employment.png +0 -0
- data/original/examples/employment/eclipse/Express/employment_schema.exp +33 -0
- data/original/examples/employment/eclipse/Express/employment_schema.xmi +77 -0
- data/original/examples/employment/eclipse/Express/employment_schema.xml +93 -0
- data/original/examples/employment/eclipse/Models/Employment.uml +4 -0
- data/original/examples/employment/eclipse/Models/Employment.umldi +240 -0
- data/original/examples/employment/eclipse/readme.txt +7 -0
- data/original/examples/employment/employment_schema.exp +33 -0
- data/original/examples/employment/employment_schema.rb +232 -0
- data/original/examples/employment/employment_schema.xml +93 -0
- data/original/examples/employment/employment_schema___module.rb +46 -0
- data/original/examples/employment/employment_schema___p28attr.rb +126 -0
- data/original/examples/employment/employment_schema___p28inst.rb +26 -0
- data/original/examples/employment/example_employment_data.xml +1 -0
- data/original/examples/employment/example_employment_data_copy.xml +1 -0
- data/original/examples/employment/example_employment_reader.rb +30 -0
- data/original/examples/employment/example_employment_writer.rb +51 -0
- data/original/examples/plcs/ap239e1_arm_lf_dexlib_2010-01-06.exp +3710 -0
- data/original/examples/plcs/ap239e1_arm_lf_dexlib_2010-01-06.owl +35880 -0
- data/original/examples/plcs/ap239e1_arm_lf_dexlib_2010-01-06.xmi +15357 -0
- data/original/examples/plcs/ap239e1_arm_lf_dexlib_2010-01-06.xml +9468 -0
- data/original/examples/plcs/ap239e2_arm_lf_stepmod-2010-01-25.exp +8404 -0
- data/original/examples/plcs/ap239e2_arm_lf_stepmod-2010-01-25.owl +43147 -0
- data/original/examples/plcs/ap239e2_arm_lf_stepmod-2010-01-25.xmi +18341 -0
- data/original/examples/plcs/ap239e2_arm_lf_stepmod-2010-01-25.xml +11632 -0
- data/original/examples/syntax/remark.exp +145 -0
- data/original/examples/syntax/remark_formatted.exp +174 -0
- data/original/examples/syntax/syntax.exp +310 -0
- data/original/examples/syntax/syntax_formatted.exp +1187 -0
- data/original/exp2ruby.rb +525 -0
- data/original/expsm.rb +34 -0
- data/original/mapping_owl.rb +1018 -0
- data/original/mapping_sysml.rb +2281 -0
- data/original/mapping_uml2.rb +599 -0
- data/original/mapping_uml2_eclipse.rb +433 -0
- data/original/reeper.rb +134 -0
- data/spec/acceptance/express_to_owl_spec.rb +18 -0
- data/spec/acceptance/version_spec.rb +12 -0
- data/spec/expressir/express/repository_spec.rb +25 -0
- data/spec/expressir/express_exp/ap233_spec.rb +22 -0
- data/spec/expressir/express_exp/format_remark_spec.rb +28 -0
- data/spec/expressir/express_exp/format_syntax_spec.rb +28 -0
- data/spec/expressir/express_exp/parse_remark_spec.rb +345 -0
- data/spec/expressir/express_exp/parse_syntax_spec.rb +2998 -0
- data/spec/expressir/model/find_spec.rb +110 -0
- data/spec/expressr_spec.rb +5 -0
- data/spec/spec_helper.rb +17 -0
- data/spec/support/console_helper.rb +29 -0
- metadata +695 -0
@@ -0,0 +1,652 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<ItemGroup Label="ProjectConfigurations">
|
4
|
+
<ProjectConfiguration Include="Debug Static|Win32">
|
5
|
+
<Configuration>Debug Static</Configuration>
|
6
|
+
<Platform>Win32</Platform>
|
7
|
+
</ProjectConfiguration>
|
8
|
+
<ProjectConfiguration Include="Debug Static|x64">
|
9
|
+
<Configuration>Debug Static</Configuration>
|
10
|
+
<Platform>x64</Platform>
|
11
|
+
</ProjectConfiguration>
|
12
|
+
<ProjectConfiguration Include="Debug DLL|Win32">
|
13
|
+
<Configuration>Debug DLL</Configuration>
|
14
|
+
<Platform>Win32</Platform>
|
15
|
+
</ProjectConfiguration>
|
16
|
+
<ProjectConfiguration Include="Debug DLL|x64">
|
17
|
+
<Configuration>Debug DLL</Configuration>
|
18
|
+
<Platform>x64</Platform>
|
19
|
+
</ProjectConfiguration>
|
20
|
+
<ProjectConfiguration Include="Release Static|Win32">
|
21
|
+
<Configuration>Release Static</Configuration>
|
22
|
+
<Platform>Win32</Platform>
|
23
|
+
</ProjectConfiguration>
|
24
|
+
<ProjectConfiguration Include="Release Static|x64">
|
25
|
+
<Configuration>Release Static</Configuration>
|
26
|
+
<Platform>x64</Platform>
|
27
|
+
</ProjectConfiguration>
|
28
|
+
<ProjectConfiguration Include="Release DLL|Win32">
|
29
|
+
<Configuration>Release DLL</Configuration>
|
30
|
+
<Platform>Win32</Platform>
|
31
|
+
</ProjectConfiguration>
|
32
|
+
<ProjectConfiguration Include="Release DLL|x64">
|
33
|
+
<Configuration>Release DLL</Configuration>
|
34
|
+
<Platform>x64</Platform>
|
35
|
+
</ProjectConfiguration>
|
36
|
+
</ItemGroup>
|
37
|
+
<PropertyGroup Label="Globals">
|
38
|
+
<ProjectGuid>{A9762991-1B57-4DCE-90C0-EE42B96947BE}</ProjectGuid>
|
39
|
+
<Keyword>Win32Proj</Keyword>
|
40
|
+
<RootNamespace>antlr4cpp</RootNamespace>
|
41
|
+
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
42
|
+
</PropertyGroup>
|
43
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
44
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|Win32'" Label="Configuration">
|
45
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
46
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
47
|
+
<CharacterSet>Unicode</CharacterSet>
|
48
|
+
<PlatformToolset>v140</PlatformToolset>
|
49
|
+
</PropertyGroup>
|
50
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|Win32'" Label="Configuration">
|
51
|
+
<ConfigurationType>StaticLibrary</ConfigurationType>
|
52
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
53
|
+
<CharacterSet>Unicode</CharacterSet>
|
54
|
+
<PlatformToolset>v140</PlatformToolset>
|
55
|
+
</PropertyGroup>
|
56
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|x64'" Label="Configuration">
|
57
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
58
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
59
|
+
<CharacterSet>Unicode</CharacterSet>
|
60
|
+
<PlatformToolset>v140</PlatformToolset>
|
61
|
+
</PropertyGroup>
|
62
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|x64'" Label="Configuration">
|
63
|
+
<ConfigurationType>StaticLibrary</ConfigurationType>
|
64
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
65
|
+
<CharacterSet>Unicode</CharacterSet>
|
66
|
+
<PlatformToolset>v140</PlatformToolset>
|
67
|
+
</PropertyGroup>
|
68
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|Win32'" Label="Configuration">
|
69
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
70
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
71
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
72
|
+
<CharacterSet>Unicode</CharacterSet>
|
73
|
+
<PlatformToolset>v140</PlatformToolset>
|
74
|
+
</PropertyGroup>
|
75
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|Win32'" Label="Configuration">
|
76
|
+
<ConfigurationType>StaticLibrary</ConfigurationType>
|
77
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
78
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
79
|
+
<CharacterSet>Unicode</CharacterSet>
|
80
|
+
<PlatformToolset>v140</PlatformToolset>
|
81
|
+
</PropertyGroup>
|
82
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|x64'" Label="Configuration">
|
83
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
84
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
85
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
86
|
+
<CharacterSet>Unicode</CharacterSet>
|
87
|
+
<PlatformToolset>v140</PlatformToolset>
|
88
|
+
</PropertyGroup>
|
89
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|x64'" Label="Configuration">
|
90
|
+
<ConfigurationType>StaticLibrary</ConfigurationType>
|
91
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
92
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
93
|
+
<CharacterSet>Unicode</CharacterSet>
|
94
|
+
<PlatformToolset>v140</PlatformToolset>
|
95
|
+
</PropertyGroup>
|
96
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
97
|
+
<ImportGroup Label="ExtensionSettings">
|
98
|
+
</ImportGroup>
|
99
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug DLL|Win32'">
|
100
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
101
|
+
</ImportGroup>
|
102
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|Win32'" Label="PropertySheets">
|
103
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
104
|
+
</ImportGroup>
|
105
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|x64'" Label="PropertySheets">
|
106
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
107
|
+
</ImportGroup>
|
108
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|x64'" Label="PropertySheets">
|
109
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
110
|
+
</ImportGroup>
|
111
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release DLL|Win32'">
|
112
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
113
|
+
</ImportGroup>
|
114
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|Win32'" Label="PropertySheets">
|
115
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
116
|
+
</ImportGroup>
|
117
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|x64'" Label="PropertySheets">
|
118
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
119
|
+
</ImportGroup>
|
120
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|x64'" Label="PropertySheets">
|
121
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
122
|
+
</ImportGroup>
|
123
|
+
<PropertyGroup Label="UserMacros" />
|
124
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|Win32'">
|
125
|
+
<LinkIncremental>true</LinkIncremental>
|
126
|
+
<OutDir>$(SolutionDir)bin\vs-2015\$(PlatformTarget)\$(Configuration)\</OutDir>
|
127
|
+
<IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
|
128
|
+
<TargetName>antlr4-runtime</TargetName>
|
129
|
+
</PropertyGroup>
|
130
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|Win32'">
|
131
|
+
<LinkIncremental>true</LinkIncremental>
|
132
|
+
<OutDir>$(SolutionDir)bin\vs-2015\$(PlatformTarget)\$(Configuration)\</OutDir>
|
133
|
+
<IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
|
134
|
+
<TargetName>antlr4-runtime</TargetName>
|
135
|
+
</PropertyGroup>
|
136
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|x64'">
|
137
|
+
<LinkIncremental>true</LinkIncremental>
|
138
|
+
<OutDir>$(SolutionDir)bin\vs-2015\$(PlatformTarget)\$(Configuration)\</OutDir>
|
139
|
+
<IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
|
140
|
+
<TargetName>antlr4-runtime</TargetName>
|
141
|
+
</PropertyGroup>
|
142
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|x64'">
|
143
|
+
<LinkIncremental>true</LinkIncremental>
|
144
|
+
<OutDir>$(SolutionDir)bin\vs-2015\$(PlatformTarget)\$(Configuration)\</OutDir>
|
145
|
+
<IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
|
146
|
+
<TargetName>antlr4-runtime</TargetName>
|
147
|
+
</PropertyGroup>
|
148
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|Win32'">
|
149
|
+
<LinkIncremental>false</LinkIncremental>
|
150
|
+
<OutDir>$(SolutionDir)bin\vs-2015\$(PlatformTarget)\$(Configuration)\</OutDir>
|
151
|
+
<IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
|
152
|
+
<TargetName>antlr4-runtime</TargetName>
|
153
|
+
</PropertyGroup>
|
154
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|Win32'">
|
155
|
+
<LinkIncremental>false</LinkIncremental>
|
156
|
+
<OutDir>$(SolutionDir)bin\vs-2015\$(PlatformTarget)\$(Configuration)\</OutDir>
|
157
|
+
<IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
|
158
|
+
<TargetName>antlr4-runtime</TargetName>
|
159
|
+
</PropertyGroup>
|
160
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|x64'">
|
161
|
+
<LinkIncremental>false</LinkIncremental>
|
162
|
+
<OutDir>$(SolutionDir)bin\vs-2015\$(PlatformTarget)\$(Configuration)\</OutDir>
|
163
|
+
<IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
|
164
|
+
<TargetName>antlr4-runtime</TargetName>
|
165
|
+
</PropertyGroup>
|
166
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|x64'">
|
167
|
+
<LinkIncremental>false</LinkIncremental>
|
168
|
+
<OutDir>$(SolutionDir)bin\vs-2015\$(PlatformTarget)\$(Configuration)\</OutDir>
|
169
|
+
<IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
|
170
|
+
<TargetName>antlr4-runtime</TargetName>
|
171
|
+
</PropertyGroup>
|
172
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|Win32'">
|
173
|
+
<ClCompile>
|
174
|
+
<WarningLevel>Level4</WarningLevel>
|
175
|
+
<Optimization>Disabled</Optimization>
|
176
|
+
<PreprocessorDefinitions>ANTLR4CPP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
177
|
+
<AdditionalIncludeDirectories>src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
178
|
+
<PrecompiledHeaderFile>
|
179
|
+
</PrecompiledHeaderFile>
|
180
|
+
<ForcedIncludeFiles>
|
181
|
+
</ForcedIncludeFiles>
|
182
|
+
<DisableSpecificWarnings>4251</DisableSpecificWarnings>
|
183
|
+
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
184
|
+
<MinimalRebuild>false</MinimalRebuild>
|
185
|
+
</ClCompile>
|
186
|
+
<Link>
|
187
|
+
<SubSystem>Windows</SubSystem>
|
188
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
189
|
+
</Link>
|
190
|
+
</ItemDefinitionGroup>
|
191
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|Win32'">
|
192
|
+
<ClCompile>
|
193
|
+
<WarningLevel>Level4</WarningLevel>
|
194
|
+
<Optimization>Disabled</Optimization>
|
195
|
+
<PreprocessorDefinitions>ANTLR4CPP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
196
|
+
<AdditionalIncludeDirectories>src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
197
|
+
<PrecompiledHeaderFile>
|
198
|
+
</PrecompiledHeaderFile>
|
199
|
+
<ForcedIncludeFiles>
|
200
|
+
</ForcedIncludeFiles>
|
201
|
+
<DisableSpecificWarnings>4251</DisableSpecificWarnings>
|
202
|
+
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
203
|
+
<MinimalRebuild>false</MinimalRebuild>
|
204
|
+
</ClCompile>
|
205
|
+
<Link>
|
206
|
+
<SubSystem>Windows</SubSystem>
|
207
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
208
|
+
</Link>
|
209
|
+
</ItemDefinitionGroup>
|
210
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|x64'">
|
211
|
+
<ClCompile>
|
212
|
+
<WarningLevel>Level4</WarningLevel>
|
213
|
+
<Optimization>Disabled</Optimization>
|
214
|
+
<PreprocessorDefinitions>ANTLR4CPP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
215
|
+
<AdditionalIncludeDirectories>src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
216
|
+
<PrecompiledHeaderFile>
|
217
|
+
</PrecompiledHeaderFile>
|
218
|
+
<ForcedIncludeFiles>
|
219
|
+
</ForcedIncludeFiles>
|
220
|
+
<DisableSpecificWarnings>4251</DisableSpecificWarnings>
|
221
|
+
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
222
|
+
<MinimalRebuild>false</MinimalRebuild>
|
223
|
+
</ClCompile>
|
224
|
+
<Link>
|
225
|
+
<SubSystem>Windows</SubSystem>
|
226
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
227
|
+
</Link>
|
228
|
+
</ItemDefinitionGroup>
|
229
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|x64'">
|
230
|
+
<ClCompile>
|
231
|
+
<WarningLevel>Level4</WarningLevel>
|
232
|
+
<Optimization>Disabled</Optimization>
|
233
|
+
<PreprocessorDefinitions>ANTLR4CPP_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
234
|
+
<AdditionalIncludeDirectories>src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
235
|
+
<PrecompiledHeaderFile>
|
236
|
+
</PrecompiledHeaderFile>
|
237
|
+
<ForcedIncludeFiles>
|
238
|
+
</ForcedIncludeFiles>
|
239
|
+
<DisableSpecificWarnings>4251</DisableSpecificWarnings>
|
240
|
+
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
241
|
+
<MinimalRebuild>false</MinimalRebuild>
|
242
|
+
</ClCompile>
|
243
|
+
<Link>
|
244
|
+
<SubSystem>Windows</SubSystem>
|
245
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
246
|
+
</Link>
|
247
|
+
</ItemDefinitionGroup>
|
248
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|Win32'">
|
249
|
+
<ClCompile>
|
250
|
+
<WarningLevel>Level4</WarningLevel>
|
251
|
+
<Optimization>MaxSpeed</Optimization>
|
252
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
253
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
254
|
+
<PreprocessorDefinitions>ANTLR4CPP_DLL;ANTLR4CPP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
255
|
+
<AdditionalIncludeDirectories>src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
256
|
+
<PrecompiledHeaderFile>
|
257
|
+
</PrecompiledHeaderFile>
|
258
|
+
<ForcedIncludeFiles>
|
259
|
+
</ForcedIncludeFiles>
|
260
|
+
<DisableSpecificWarnings>4251</DisableSpecificWarnings>
|
261
|
+
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
262
|
+
</ClCompile>
|
263
|
+
<Link>
|
264
|
+
<SubSystem>Windows</SubSystem>
|
265
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
266
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
267
|
+
<OptimizeReferences>true</OptimizeReferences>
|
268
|
+
</Link>
|
269
|
+
</ItemDefinitionGroup>
|
270
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|Win32'">
|
271
|
+
<ClCompile>
|
272
|
+
<WarningLevel>Level4</WarningLevel>
|
273
|
+
<Optimization>MaxSpeed</Optimization>
|
274
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
275
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
276
|
+
<PreprocessorDefinitions>ANTLR4CPP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
277
|
+
<AdditionalIncludeDirectories>src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
278
|
+
<PrecompiledHeaderFile>
|
279
|
+
</PrecompiledHeaderFile>
|
280
|
+
<ForcedIncludeFiles>
|
281
|
+
</ForcedIncludeFiles>
|
282
|
+
<DisableSpecificWarnings>4251</DisableSpecificWarnings>
|
283
|
+
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
284
|
+
</ClCompile>
|
285
|
+
<Link>
|
286
|
+
<SubSystem>Windows</SubSystem>
|
287
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
288
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
289
|
+
<OptimizeReferences>true</OptimizeReferences>
|
290
|
+
</Link>
|
291
|
+
</ItemDefinitionGroup>
|
292
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|x64'">
|
293
|
+
<ClCompile>
|
294
|
+
<WarningLevel>Level4</WarningLevel>
|
295
|
+
<Optimization>MaxSpeed</Optimization>
|
296
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
297
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
298
|
+
<PreprocessorDefinitions>ANTLR4CPP_DLL;ANTLR4CPP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
299
|
+
<AdditionalIncludeDirectories>src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
300
|
+
<PrecompiledHeaderFile>
|
301
|
+
</PrecompiledHeaderFile>
|
302
|
+
<ForcedIncludeFiles>
|
303
|
+
</ForcedIncludeFiles>
|
304
|
+
<DisableSpecificWarnings>4251</DisableSpecificWarnings>
|
305
|
+
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
306
|
+
</ClCompile>
|
307
|
+
<Link>
|
308
|
+
<SubSystem>Windows</SubSystem>
|
309
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
310
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
311
|
+
<OptimizeReferences>true</OptimizeReferences>
|
312
|
+
</Link>
|
313
|
+
</ItemDefinitionGroup>
|
314
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|x64'">
|
315
|
+
<ClCompile>
|
316
|
+
<WarningLevel>Level4</WarningLevel>
|
317
|
+
<Optimization>MaxSpeed</Optimization>
|
318
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
319
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
320
|
+
<PreprocessorDefinitions>ANTLR4CPP_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
321
|
+
<AdditionalIncludeDirectories>src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
322
|
+
<PrecompiledHeaderFile>
|
323
|
+
</PrecompiledHeaderFile>
|
324
|
+
<ForcedIncludeFiles>
|
325
|
+
</ForcedIncludeFiles>
|
326
|
+
<DisableSpecificWarnings>4251</DisableSpecificWarnings>
|
327
|
+
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
328
|
+
</ClCompile>
|
329
|
+
<Link>
|
330
|
+
<SubSystem>Windows</SubSystem>
|
331
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
332
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
333
|
+
<OptimizeReferences>true</OptimizeReferences>
|
334
|
+
</Link>
|
335
|
+
</ItemDefinitionGroup>
|
336
|
+
<ItemGroup>
|
337
|
+
<ClCompile Include="src\ANTLRErrorListener.cpp" />
|
338
|
+
<ClCompile Include="src\ANTLRErrorStrategy.cpp" />
|
339
|
+
<ClCompile Include="src\ANTLRFileStream.cpp" />
|
340
|
+
<ClCompile Include="src\ANTLRInputStream.cpp" />
|
341
|
+
<ClCompile Include="src\atn\AbstractPredicateTransition.cpp" />
|
342
|
+
<ClCompile Include="src\atn\ActionTransition.cpp" />
|
343
|
+
<ClCompile Include="src\atn\AmbiguityInfo.cpp" />
|
344
|
+
<ClCompile Include="src\atn\ArrayPredictionContext.cpp" />
|
345
|
+
<ClCompile Include="src\atn\ATN.cpp" />
|
346
|
+
<ClCompile Include="src\atn\ATNConfig.cpp" />
|
347
|
+
<ClCompile Include="src\atn\ATNConfigSet.cpp" />
|
348
|
+
<ClCompile Include="src\atn\ATNDeserializationOptions.cpp" />
|
349
|
+
<ClCompile Include="src\atn\ATNDeserializer.cpp" />
|
350
|
+
<ClCompile Include="src\atn\ATNSerializer.cpp" />
|
351
|
+
<ClCompile Include="src\atn\ATNSimulator.cpp" />
|
352
|
+
<ClCompile Include="src\atn\ATNState.cpp" />
|
353
|
+
<ClCompile Include="src\atn\AtomTransition.cpp" />
|
354
|
+
<ClCompile Include="src\atn\BasicBlockStartState.cpp" />
|
355
|
+
<ClCompile Include="src\atn\BasicState.cpp" />
|
356
|
+
<ClCompile Include="src\atn\BlockEndState.cpp" />
|
357
|
+
<ClCompile Include="src\atn\BlockStartState.cpp" />
|
358
|
+
<ClCompile Include="src\atn\ContextSensitivityInfo.cpp" />
|
359
|
+
<ClCompile Include="src\atn\DecisionEventInfo.cpp" />
|
360
|
+
<ClCompile Include="src\atn\DecisionInfo.cpp" />
|
361
|
+
<ClCompile Include="src\atn\DecisionState.cpp" />
|
362
|
+
<ClCompile Include="src\atn\EmptyPredictionContext.cpp" />
|
363
|
+
<ClCompile Include="src\atn\EpsilonTransition.cpp" />
|
364
|
+
<ClCompile Include="src\atn\ErrorInfo.cpp" />
|
365
|
+
<ClCompile Include="src\atn\LexerAction.cpp" />
|
366
|
+
<ClCompile Include="src\atn\LexerActionExecutor.cpp" />
|
367
|
+
<ClCompile Include="src\atn\LexerATNConfig.cpp" />
|
368
|
+
<ClCompile Include="src\atn\LexerATNSimulator.cpp" />
|
369
|
+
<ClCompile Include="src\atn\LexerChannelAction.cpp" />
|
370
|
+
<ClCompile Include="src\atn\LexerCustomAction.cpp" />
|
371
|
+
<ClCompile Include="src\atn\LexerIndexedCustomAction.cpp" />
|
372
|
+
<ClCompile Include="src\atn\LexerModeAction.cpp" />
|
373
|
+
<ClCompile Include="src\atn\LexerMoreAction.cpp" />
|
374
|
+
<ClCompile Include="src\atn\LexerPopModeAction.cpp" />
|
375
|
+
<ClCompile Include="src\atn\LexerPushModeAction.cpp" />
|
376
|
+
<ClCompile Include="src\atn\LexerSkipAction.cpp" />
|
377
|
+
<ClCompile Include="src\atn\LexerTypeAction.cpp" />
|
378
|
+
<ClCompile Include="src\atn\LL1Analyzer.cpp" />
|
379
|
+
<ClCompile Include="src\atn\LookaheadEventInfo.cpp" />
|
380
|
+
<ClCompile Include="src\atn\LoopEndState.cpp" />
|
381
|
+
<ClCompile Include="src\atn\NotSetTransition.cpp" />
|
382
|
+
<ClCompile Include="src\atn\OrderedATNConfigSet.cpp" />
|
383
|
+
<ClCompile Include="src\atn\ParseInfo.cpp" />
|
384
|
+
<ClCompile Include="src\atn\ParserATNSimulator.cpp" />
|
385
|
+
<ClCompile Include="src\atn\PlusBlockStartState.cpp" />
|
386
|
+
<ClCompile Include="src\atn\PlusLoopbackState.cpp" />
|
387
|
+
<ClCompile Include="src\atn\PrecedencePredicateTransition.cpp" />
|
388
|
+
<ClCompile Include="src\atn\PredicateEvalInfo.cpp" />
|
389
|
+
<ClCompile Include="src\atn\PredicateTransition.cpp" />
|
390
|
+
<ClCompile Include="src\atn\PredictionContext.cpp" />
|
391
|
+
<ClCompile Include="src\atn\PredictionMode.cpp" />
|
392
|
+
<ClCompile Include="src\atn\ProfilingATNSimulator.cpp" />
|
393
|
+
<ClCompile Include="src\atn\RangeTransition.cpp" />
|
394
|
+
<ClCompile Include="src\atn\RuleStartState.cpp" />
|
395
|
+
<ClCompile Include="src\atn\RuleStopState.cpp" />
|
396
|
+
<ClCompile Include="src\atn\RuleTransition.cpp" />
|
397
|
+
<ClCompile Include="src\atn\SemanticContext.cpp" />
|
398
|
+
<ClCompile Include="src\atn\SetTransition.cpp" />
|
399
|
+
<ClCompile Include="src\atn\SingletonPredictionContext.cpp" />
|
400
|
+
<ClCompile Include="src\atn\StarBlockStartState.cpp" />
|
401
|
+
<ClCompile Include="src\atn\StarLoopbackState.cpp" />
|
402
|
+
<ClCompile Include="src\atn\StarLoopEntryState.cpp" />
|
403
|
+
<ClCompile Include="src\atn\TokensStartState.cpp" />
|
404
|
+
<ClCompile Include="src\atn\Transition.cpp" />
|
405
|
+
<ClCompile Include="src\atn\WildcardTransition.cpp" />
|
406
|
+
<ClCompile Include="src\BailErrorStrategy.cpp" />
|
407
|
+
<ClCompile Include="src\BaseErrorListener.cpp" />
|
408
|
+
<ClCompile Include="src\BufferedTokenStream.cpp" />
|
409
|
+
<ClCompile Include="src\CharStream.cpp" />
|
410
|
+
<ClCompile Include="src\CommonToken.cpp" />
|
411
|
+
<ClCompile Include="src\CommonTokenFactory.cpp" />
|
412
|
+
<ClCompile Include="src\CommonTokenStream.cpp" />
|
413
|
+
<ClCompile Include="src\ConsoleErrorListener.cpp" />
|
414
|
+
<ClCompile Include="src\DefaultErrorStrategy.cpp" />
|
415
|
+
<ClCompile Include="src\dfa\DFA.cpp" />
|
416
|
+
<ClCompile Include="src\dfa\DFASerializer.cpp" />
|
417
|
+
<ClCompile Include="src\dfa\DFAState.cpp" />
|
418
|
+
<ClCompile Include="src\dfa\LexerDFASerializer.cpp" />
|
419
|
+
<ClCompile Include="src\DiagnosticErrorListener.cpp" />
|
420
|
+
<ClCompile Include="src\Exceptions.cpp" />
|
421
|
+
<ClCompile Include="src\FailedPredicateException.cpp" />
|
422
|
+
<ClCompile Include="src\InputMismatchException.cpp" />
|
423
|
+
<ClCompile Include="src\InterpreterRuleContext.cpp" />
|
424
|
+
<ClCompile Include="src\IntStream.cpp" />
|
425
|
+
<ClCompile Include="src\Lexer.cpp" />
|
426
|
+
<ClCompile Include="src\LexerInterpreter.cpp" />
|
427
|
+
<ClCompile Include="src\LexerNoViableAltException.cpp" />
|
428
|
+
<ClCompile Include="src\ListTokenSource.cpp" />
|
429
|
+
<ClCompile Include="src\misc\InterpreterDataReader.cpp" />
|
430
|
+
<ClCompile Include="src\misc\Interval.cpp" />
|
431
|
+
<ClCompile Include="src\misc\IntervalSet.cpp" />
|
432
|
+
<ClCompile Include="src\misc\MurmurHash.cpp" />
|
433
|
+
<ClCompile Include="src\misc\Predicate.cpp" />
|
434
|
+
<ClCompile Include="src\NoViableAltException.cpp" />
|
435
|
+
<ClCompile Include="src\Parser.cpp" />
|
436
|
+
<ClCompile Include="src\ParserInterpreter.cpp" />
|
437
|
+
<ClCompile Include="src\ParserRuleContext.cpp" />
|
438
|
+
<ClCompile Include="src\ProxyErrorListener.cpp" />
|
439
|
+
<ClCompile Include="src\RecognitionException.cpp" />
|
440
|
+
<ClCompile Include="src\Recognizer.cpp" />
|
441
|
+
<ClCompile Include="src\RuleContext.cpp" />
|
442
|
+
<ClCompile Include="src\RuleContextWithAltNum.cpp" />
|
443
|
+
<ClCompile Include="src\RuntimeMetaData.cpp" />
|
444
|
+
<ClCompile Include="src\support\Any.cpp" />
|
445
|
+
<ClCompile Include="src\support\Arrays.cpp" />
|
446
|
+
<ClCompile Include="src\support\CPPUtils.cpp" />
|
447
|
+
<ClCompile Include="src\support\guid.cpp" />
|
448
|
+
<ClCompile Include="src\support\StringUtils.cpp" />
|
449
|
+
<ClCompile Include="src\Token.cpp" />
|
450
|
+
<ClCompile Include="src\TokenSource.cpp" />
|
451
|
+
<ClCompile Include="src\TokenStream.cpp" />
|
452
|
+
<ClCompile Include="src\TokenStreamRewriter.cpp" />
|
453
|
+
<ClCompile Include="src\tree\ErrorNode.cpp" />
|
454
|
+
<ClCompile Include="src\tree\ErrorNodeImpl.cpp" />
|
455
|
+
<ClCompile Include="src\tree\IterativeParseTreeWalker.cpp" />
|
456
|
+
<ClCompile Include="src\tree\ParseTree.cpp" />
|
457
|
+
<ClCompile Include="src\tree\ParseTreeListener.cpp" />
|
458
|
+
<ClCompile Include="src\tree\ParseTreeVisitor.cpp" />
|
459
|
+
<ClCompile Include="src\tree\ParseTreeWalker.cpp" />
|
460
|
+
<ClCompile Include="src\tree\pattern\Chunk.cpp" />
|
461
|
+
<ClCompile Include="src\tree\pattern\ParseTreeMatch.cpp" />
|
462
|
+
<ClCompile Include="src\tree\pattern\ParseTreePattern.cpp" />
|
463
|
+
<ClCompile Include="src\tree\pattern\ParseTreePatternMatcher.cpp" />
|
464
|
+
<ClCompile Include="src\tree\pattern\RuleTagToken.cpp" />
|
465
|
+
<ClCompile Include="src\tree\pattern\TagChunk.cpp" />
|
466
|
+
<ClCompile Include="src\tree\pattern\TextChunk.cpp" />
|
467
|
+
<ClCompile Include="src\tree\pattern\TokenTagToken.cpp" />
|
468
|
+
<ClCompile Include="src\tree\TerminalNode.cpp" />
|
469
|
+
<ClCompile Include="src\tree\TerminalNodeImpl.cpp" />
|
470
|
+
<ClCompile Include="src\tree\Trees.cpp" />
|
471
|
+
<ClCompile Include="src\tree\xpath\XPath.cpp" />
|
472
|
+
<ClCompile Include="src\tree\xpath\XPathElement.cpp" />
|
473
|
+
<ClCompile Include="src\tree\xpath\XPathLexer.cpp" />
|
474
|
+
<ClCompile Include="src\tree\xpath\XPathLexerErrorListener.cpp" />
|
475
|
+
<ClCompile Include="src\tree\xpath\XPathRuleAnywhereElement.cpp" />
|
476
|
+
<ClCompile Include="src\tree\xpath\XPathRuleElement.cpp" />
|
477
|
+
<ClCompile Include="src\tree\xpath\XPathTokenAnywhereElement.cpp" />
|
478
|
+
<ClCompile Include="src\tree\xpath\XPathTokenElement.cpp" />
|
479
|
+
<ClCompile Include="src\tree\xpath\XPathWildcardAnywhereElement.cpp" />
|
480
|
+
<ClCompile Include="src\tree\xpath\XPathWildcardElement.cpp" />
|
481
|
+
<ClCompile Include="src\UnbufferedCharStream.cpp" />
|
482
|
+
<ClCompile Include="src\UnbufferedTokenStream.cpp" />
|
483
|
+
<ClCompile Include="src\Vocabulary.cpp" />
|
484
|
+
<ClCompile Include="src\WritableToken.cpp" />
|
485
|
+
</ItemGroup>
|
486
|
+
<ItemGroup>
|
487
|
+
<ClInclude Include="src\antlr4-common.h" />
|
488
|
+
<ClInclude Include="src\antlr4-runtime.h" />
|
489
|
+
<ClInclude Include="src\ANTLRErrorListener.h" />
|
490
|
+
<ClInclude Include="src\ANTLRErrorStrategy.h" />
|
491
|
+
<ClInclude Include="src\ANTLRFileStream.h" />
|
492
|
+
<ClInclude Include="src\ANTLRInputStream.h" />
|
493
|
+
<ClInclude Include="src\atn\AbstractPredicateTransition.h" />
|
494
|
+
<ClInclude Include="src\atn\ActionTransition.h" />
|
495
|
+
<ClInclude Include="src\atn\AmbiguityInfo.h" />
|
496
|
+
<ClInclude Include="src\atn\ArrayPredictionContext.h" />
|
497
|
+
<ClInclude Include="src\atn\ATN.h" />
|
498
|
+
<ClInclude Include="src\atn\ATNConfig.h" />
|
499
|
+
<ClInclude Include="src\atn\ATNConfigSet.h" />
|
500
|
+
<ClInclude Include="src\atn\ATNDeserializationOptions.h" />
|
501
|
+
<ClInclude Include="src\atn\ATNDeserializer.h" />
|
502
|
+
<ClInclude Include="src\atn\ATNSerializer.h" />
|
503
|
+
<ClInclude Include="src\atn\ATNSimulator.h" />
|
504
|
+
<ClInclude Include="src\atn\ATNState.h" />
|
505
|
+
<ClInclude Include="src\atn\ATNType.h" />
|
506
|
+
<ClInclude Include="src\atn\AtomTransition.h" />
|
507
|
+
<ClInclude Include="src\atn\BasicBlockStartState.h" />
|
508
|
+
<ClInclude Include="src\atn\BasicState.h" />
|
509
|
+
<ClInclude Include="src\atn\BlockEndState.h" />
|
510
|
+
<ClInclude Include="src\atn\BlockStartState.h" />
|
511
|
+
<ClInclude Include="src\atn\ConfigLookup.h" />
|
512
|
+
<ClInclude Include="src\atn\ContextSensitivityInfo.h" />
|
513
|
+
<ClInclude Include="src\atn\DecisionEventInfo.h" />
|
514
|
+
<ClInclude Include="src\atn\DecisionInfo.h" />
|
515
|
+
<ClInclude Include="src\atn\DecisionState.h" />
|
516
|
+
<ClInclude Include="src\atn\EmptyPredictionContext.h" />
|
517
|
+
<ClInclude Include="src\atn\EpsilonTransition.h" />
|
518
|
+
<ClInclude Include="src\atn\ErrorInfo.h" />
|
519
|
+
<ClInclude Include="src\atn\LexerAction.h" />
|
520
|
+
<ClInclude Include="src\atn\LexerActionExecutor.h" />
|
521
|
+
<ClInclude Include="src\atn\LexerActionType.h" />
|
522
|
+
<ClInclude Include="src\atn\LexerATNConfig.h" />
|
523
|
+
<ClInclude Include="src\atn\LexerATNSimulator.h" />
|
524
|
+
<ClInclude Include="src\atn\LexerChannelAction.h" />
|
525
|
+
<ClInclude Include="src\atn\LexerCustomAction.h" />
|
526
|
+
<ClInclude Include="src\atn\LexerIndexedCustomAction.h" />
|
527
|
+
<ClInclude Include="src\atn\LexerModeAction.h" />
|
528
|
+
<ClInclude Include="src\atn\LexerMoreAction.h" />
|
529
|
+
<ClInclude Include="src\atn\LexerPopModeAction.h" />
|
530
|
+
<ClInclude Include="src\atn\LexerPushModeAction.h" />
|
531
|
+
<ClInclude Include="src\atn\LexerSkipAction.h" />
|
532
|
+
<ClInclude Include="src\atn\LexerTypeAction.h" />
|
533
|
+
<ClInclude Include="src\atn\LL1Analyzer.h" />
|
534
|
+
<ClInclude Include="src\atn\LookaheadEventInfo.h" />
|
535
|
+
<ClInclude Include="src\atn\LoopEndState.h" />
|
536
|
+
<ClInclude Include="src\atn\NotSetTransition.h" />
|
537
|
+
<ClInclude Include="src\atn\OrderedATNConfigSet.h" />
|
538
|
+
<ClInclude Include="src\atn\ParseInfo.h" />
|
539
|
+
<ClInclude Include="src\atn\ParserATNSimulator.h" />
|
540
|
+
<ClInclude Include="src\atn\PlusBlockStartState.h" />
|
541
|
+
<ClInclude Include="src\atn\PlusLoopbackState.h" />
|
542
|
+
<ClInclude Include="src\atn\PrecedencePredicateTransition.h" />
|
543
|
+
<ClInclude Include="src\atn\PredicateEvalInfo.h" />
|
544
|
+
<ClInclude Include="src\atn\PredicateTransition.h" />
|
545
|
+
<ClInclude Include="src\atn\PredictionContext.h" />
|
546
|
+
<ClInclude Include="src\atn\PredictionMode.h" />
|
547
|
+
<ClInclude Include="src\atn\ProfilingATNSimulator.h" />
|
548
|
+
<ClInclude Include="src\atn\RangeTransition.h" />
|
549
|
+
<ClInclude Include="src\atn\RuleStartState.h" />
|
550
|
+
<ClInclude Include="src\atn\RuleStopState.h" />
|
551
|
+
<ClInclude Include="src\atn\RuleTransition.h" />
|
552
|
+
<ClInclude Include="src\atn\SemanticContext.h" />
|
553
|
+
<ClInclude Include="src\atn\SetTransition.h" />
|
554
|
+
<ClInclude Include="src\atn\SingletonPredictionContext.h" />
|
555
|
+
<ClInclude Include="src\atn\StarBlockStartState.h" />
|
556
|
+
<ClInclude Include="src\atn\StarLoopbackState.h" />
|
557
|
+
<ClInclude Include="src\atn\StarLoopEntryState.h" />
|
558
|
+
<ClInclude Include="src\atn\TokensStartState.h" />
|
559
|
+
<ClInclude Include="src\atn\Transition.h" />
|
560
|
+
<ClInclude Include="src\atn\WildcardTransition.h" />
|
561
|
+
<ClInclude Include="src\BailErrorStrategy.h" />
|
562
|
+
<ClInclude Include="src\BaseErrorListener.h" />
|
563
|
+
<ClInclude Include="src\BufferedTokenStream.h" />
|
564
|
+
<ClInclude Include="src\CharStream.h" />
|
565
|
+
<ClInclude Include="src\CommonToken.h" />
|
566
|
+
<ClInclude Include="src\CommonTokenFactory.h" />
|
567
|
+
<ClInclude Include="src\CommonTokenStream.h" />
|
568
|
+
<ClInclude Include="src\ConsoleErrorListener.h" />
|
569
|
+
<ClInclude Include="src\DefaultErrorStrategy.h" />
|
570
|
+
<ClInclude Include="src\dfa\DFA.h" />
|
571
|
+
<ClInclude Include="src\dfa\DFASerializer.h" />
|
572
|
+
<ClInclude Include="src\dfa\DFAState.h" />
|
573
|
+
<ClInclude Include="src\dfa\LexerDFASerializer.h" />
|
574
|
+
<ClInclude Include="src\DiagnosticErrorListener.h" />
|
575
|
+
<ClInclude Include="src\Exceptions.h" />
|
576
|
+
<ClInclude Include="src\FailedPredicateException.h" />
|
577
|
+
<ClInclude Include="src\InputMismatchException.h" />
|
578
|
+
<ClInclude Include="src\InterpreterRuleContext.h" />
|
579
|
+
<ClInclude Include="src\IntStream.h" />
|
580
|
+
<ClInclude Include="src\Lexer.h" />
|
581
|
+
<ClInclude Include="src\LexerInterpreter.h" />
|
582
|
+
<ClInclude Include="src\LexerNoViableAltException.h" />
|
583
|
+
<ClInclude Include="src\ListTokenSource.h" />
|
584
|
+
<ClInclude Include="src\misc\InterpreterDataReader.h" />
|
585
|
+
<ClInclude Include="src\misc\Interval.h" />
|
586
|
+
<ClInclude Include="src\misc\IntervalSet.h" />
|
587
|
+
<ClInclude Include="src\misc\MurmurHash.h" />
|
588
|
+
<ClInclude Include="src\misc\Predicate.h" />
|
589
|
+
<ClInclude Include="src\misc\TestRig.h" />
|
590
|
+
<ClInclude Include="src\NoViableAltException.h" />
|
591
|
+
<ClInclude Include="src\Parser.h" />
|
592
|
+
<ClInclude Include="src\ParserInterpreter.h" />
|
593
|
+
<ClInclude Include="src\ParserRuleContext.h" />
|
594
|
+
<ClInclude Include="src\ProxyErrorListener.h" />
|
595
|
+
<ClInclude Include="src\RecognitionException.h" />
|
596
|
+
<ClInclude Include="src\Recognizer.h" />
|
597
|
+
<ClInclude Include="src\RuleContext.h" />
|
598
|
+
<ClInclude Include="src\RuleContextWithAltNum.h" />
|
599
|
+
<ClInclude Include="src\RuntimeMetaData.h" />
|
600
|
+
<ClInclude Include="src\support\Any.h" />
|
601
|
+
<ClInclude Include="src\support\Arrays.h" />
|
602
|
+
<ClInclude Include="src\support\BitSet.h" />
|
603
|
+
<ClInclude Include="src\support\CPPUtils.h" />
|
604
|
+
<ClInclude Include="src\support\Declarations.h" />
|
605
|
+
<ClInclude Include="src\support\guid.h" />
|
606
|
+
<ClInclude Include="src\support\StringUtils.h" />
|
607
|
+
<ClInclude Include="src\Token.h" />
|
608
|
+
<ClInclude Include="src\TokenFactory.h" />
|
609
|
+
<ClInclude Include="src\TokenSource.h" />
|
610
|
+
<ClInclude Include="src\TokenStream.h" />
|
611
|
+
<ClInclude Include="src\TokenStreamRewriter.h" />
|
612
|
+
<ClInclude Include="src\tree\AbstractParseTreeVisitor.h" />
|
613
|
+
<ClInclude Include="src\tree\ErrorNode.h" />
|
614
|
+
<ClInclude Include="src\tree\ErrorNodeImpl.h" />
|
615
|
+
<ClInclude Include="src\tree\IterativeParseTreeWalker.h" />
|
616
|
+
<ClInclude Include="src\tree\ParseTree.h" />
|
617
|
+
<ClInclude Include="src\tree\ParseTreeListener.h" />
|
618
|
+
<ClInclude Include="src\tree\ParseTreeProperty.h" />
|
619
|
+
<ClInclude Include="src\tree\ParseTreeVisitor.h" />
|
620
|
+
<ClInclude Include="src\tree\ParseTreeWalker.h" />
|
621
|
+
<ClInclude Include="src\tree\pattern\Chunk.h" />
|
622
|
+
<ClInclude Include="src\tree\pattern\ParseTreeMatch.h" />
|
623
|
+
<ClInclude Include="src\tree\pattern\ParseTreePattern.h" />
|
624
|
+
<ClInclude Include="src\tree\pattern\ParseTreePatternMatcher.h" />
|
625
|
+
<ClInclude Include="src\tree\pattern\RuleTagToken.h" />
|
626
|
+
<ClInclude Include="src\tree\pattern\TagChunk.h" />
|
627
|
+
<ClInclude Include="src\tree\pattern\TextChunk.h" />
|
628
|
+
<ClInclude Include="src\tree\pattern\TokenTagToken.h" />
|
629
|
+
<ClInclude Include="src\tree\RuleNode.h" />
|
630
|
+
<ClInclude Include="src\tree\SyntaxTree.h" />
|
631
|
+
<ClInclude Include="src\tree\TerminalNode.h" />
|
632
|
+
<ClInclude Include="src\tree\TerminalNodeImpl.h" />
|
633
|
+
<ClInclude Include="src\tree\Trees.h" />
|
634
|
+
<ClInclude Include="src\tree\xpath\XPath.h" />
|
635
|
+
<ClInclude Include="src\tree\xpath\XPathElement.h" />
|
636
|
+
<ClInclude Include="src\tree\xpath\XPathLexer.h" />
|
637
|
+
<ClInclude Include="src\tree\xpath\XPathLexerErrorListener.h" />
|
638
|
+
<ClInclude Include="src\tree\xpath\XPathRuleAnywhereElement.h" />
|
639
|
+
<ClInclude Include="src\tree\xpath\XPathRuleElement.h" />
|
640
|
+
<ClInclude Include="src\tree\xpath\XPathTokenAnywhereElement.h" />
|
641
|
+
<ClInclude Include="src\tree\xpath\XPathTokenElement.h" />
|
642
|
+
<ClInclude Include="src\tree\xpath\XPathWildcardAnywhereElement.h" />
|
643
|
+
<ClInclude Include="src\tree\xpath\XPathWildcardElement.h" />
|
644
|
+
<ClInclude Include="src\UnbufferedCharStream.h" />
|
645
|
+
<ClInclude Include="src\UnbufferedTokenStream.h" />
|
646
|
+
<ClInclude Include="src\Vocabulary.h" />
|
647
|
+
<ClInclude Include="src\WritableToken.h" />
|
648
|
+
</ItemGroup>
|
649
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
650
|
+
<ImportGroup Label="ExtensionTargets">
|
651
|
+
</ImportGroup>
|
652
|
+
</Project>
|