expressir 0.2.4 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (331) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/release.yml +4 -3
  3. data/Rakefile +0 -9
  4. data/expressir.gemspec +3 -1
  5. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/CMakeLists.txt +118 -0
  6. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2013.vcxproj +637 -0
  7. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2013.vcxproj.filters +984 -0
  8. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2015.vcxproj +652 -0
  9. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2015.vcxproj.filters +990 -0
  10. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2017.vcxproj +652 -0
  11. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2017.vcxproj.filters +990 -0
  12. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2019.vcxproj +652 -0
  13. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2019.vcxproj.filters +990 -0
  14. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp-ios/Info.plist +26 -0
  15. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp-ios/antlrcpp_ios.h +17 -0
  16. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.pbxproj +3024 -0
  17. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  18. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  19. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4.xcscheme +76 -0
  20. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4_ios.xcscheme +80 -0
  21. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4_static.xcscheme +80 -0
  22. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.cpp +10 -0
  23. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.h +167 -0
  24. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.cpp +10 -0
  25. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.h +121 -0
  26. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.cpp +34 -0
  27. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.h +27 -0
  28. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.cpp +155 -0
  29. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.h +69 -0
  30. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.cpp +61 -0
  31. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.h +59 -0
  32. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.cpp +25 -0
  33. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.h +36 -0
  34. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.cpp +414 -0
  35. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.h +200 -0
  36. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.cpp +11 -0
  37. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.h +37 -0
  38. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.cpp +195 -0
  39. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.h +158 -0
  40. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.cpp +39 -0
  41. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.h +74 -0
  42. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.cpp +78 -0
  43. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.h +79 -0
  44. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.cpp +15 -0
  45. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.h +35 -0
  46. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.cpp +333 -0
  47. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.h +466 -0
  48. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.cpp +84 -0
  49. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.h +80 -0
  50. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.cpp +64 -0
  51. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.h +99 -0
  52. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.cpp +51 -0
  53. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.h +32 -0
  54. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.cpp +18 -0
  55. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.h +24 -0
  56. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.cpp +12 -0
  57. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.h +218 -0
  58. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.cpp +19 -0
  59. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.h +45 -0
  60. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.cpp +295 -0
  61. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.h +196 -0
  62. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.cpp +75 -0
  63. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.h +52 -0
  64. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.cpp +36 -0
  65. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.h +31 -0
  66. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.cpp +92 -0
  67. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.h +88 -0
  68. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.cpp +46 -0
  69. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.h +42 -0
  70. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Parser.cpp +648 -0
  71. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Parser.h +467 -0
  72. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.cpp +306 -0
  73. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.h +179 -0
  74. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.cpp +141 -0
  75. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.h +147 -0
  76. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.cpp +53 -0
  77. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.h +38 -0
  78. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.cpp +66 -0
  79. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.h +98 -0
  80. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.cpp +167 -0
  81. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.h +164 -0
  82. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.cpp +143 -0
  83. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.h +137 -0
  84. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.cpp +27 -0
  85. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.h +32 -0
  86. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.cpp +53 -0
  87. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.h +155 -0
  88. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Token.cpp +9 -0
  89. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Token.h +92 -0
  90. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenFactory.h +30 -0
  91. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.cpp +9 -0
  92. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.h +85 -0
  93. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.cpp +11 -0
  94. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.h +137 -0
  95. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.cpp +425 -0
  96. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.h +293 -0
  97. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.cpp +211 -0
  98. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.h +123 -0
  99. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.cpp +270 -0
  100. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.h +115 -0
  101. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.cpp +104 -0
  102. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.h +193 -0
  103. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.cpp +9 -0
  104. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.h +23 -0
  105. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-common.h +137 -0
  106. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-runtime.h +167 -0
  107. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.cpp +209 -0
  108. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.h +112 -0
  109. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.cpp +113 -0
  110. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.h +148 -0
  111. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.cpp +228 -0
  112. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.h +110 -0
  113. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.cpp +64 -0
  114. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.h +50 -0
  115. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.cpp +758 -0
  116. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.h +85 -0
  117. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSerializer.cpp +621 -0
  118. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSerializer.h +61 -0
  119. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.cpp +63 -0
  120. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.h +87 -0
  121. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.cpp +72 -0
  122. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.h +133 -0
  123. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNType.h +20 -0
  124. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AbstractPredicateTransition.cpp +14 -0
  125. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AbstractPredicateTransition.h +24 -0
  126. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.cpp +33 -0
  127. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.h +33 -0
  128. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.cpp +16 -0
  129. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.h +68 -0
  130. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.cpp +82 -0
  131. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.h +43 -0
  132. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.cpp +31 -0
  133. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.h +30 -0
  134. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicBlockStartState.cpp +12 -0
  135. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicBlockStartState.h +22 -0
  136. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicState.cpp +12 -0
  137. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicState.h +21 -0
  138. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockEndState.cpp +15 -0
  139. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockEndState.h +24 -0
  140. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockStartState.cpp +9 -0
  141. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockStartState.h +21 -0
  142. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.cpp +14 -0
  143. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.h +47 -0
  144. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.cpp +14 -0
  145. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.h +70 -0
  146. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.cpp +25 -0
  147. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.h +227 -0
  148. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.cpp +17 -0
  149. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.h +30 -0
  150. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EmptyPredictionContext.cpp +35 -0
  151. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EmptyPredictionContext.h +27 -0
  152. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.cpp +35 -0
  153. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.h +39 -0
  154. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.cpp +15 -0
  155. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.h +43 -0
  156. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.cpp +158 -0
  157. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.h +109 -0
  158. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.cpp +84 -0
  159. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.h +44 -0
  160. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.cpp +628 -0
  161. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.h +210 -0
  162. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.cpp +9 -0
  163. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.h +66 -0
  164. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.cpp +107 -0
  165. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.h +115 -0
  166. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionType.h +55 -0
  167. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.cpp +55 -0
  168. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.h +63 -0
  169. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.cpp +62 -0
  170. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.h +87 -0
  171. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.cpp +63 -0
  172. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.h +82 -0
  173. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.cpp +56 -0
  174. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.h +61 -0
  175. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.cpp +47 -0
  176. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.h +57 -0
  177. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.cpp +47 -0
  178. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.h +57 -0
  179. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.cpp +56 -0
  180. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.h +61 -0
  181. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.cpp +47 -0
  182. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.h +55 -0
  183. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.cpp +56 -0
  184. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.h +55 -0
  185. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.cpp +16 -0
  186. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.h +42 -0
  187. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LoopEndState.cpp +12 -0
  188. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LoopEndState.h +22 -0
  189. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile +67 -0
  190. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.cpp +27 -0
  191. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.h +25 -0
  192. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.cpp +12 -0
  193. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.h +20 -0
  194. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.cpp +102 -0
  195. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.h +102 -0
  196. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.cpp +1366 -0
  197. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.h +904 -0
  198. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusBlockStartState.cpp +12 -0
  199. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusBlockStartState.h +25 -0
  200. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusLoopbackState.cpp +12 -0
  201. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusLoopbackState.h +22 -0
  202. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.cpp +32 -0
  203. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.h +29 -0
  204. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.cpp +17 -0
  205. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.h +62 -0
  206. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.cpp +34 -0
  207. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.h +39 -0
  208. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.cpp +662 -0
  209. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.h +254 -0
  210. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.cpp +201 -0
  211. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.h +436 -0
  212. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.cpp +179 -0
  213. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.h +60 -0
  214. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.cpp +30 -0
  215. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.h +29 -0
  216. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStartState.cpp +16 -0
  217. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStartState.h +25 -0
  218. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStopState.cpp +12 -0
  219. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStopState.h +25 -0
  220. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.cpp +37 -0
  221. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.h +40 -0
  222. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.cpp +377 -0
  223. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.h +222 -0
  224. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.cpp +32 -0
  225. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.h +30 -0
  226. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.cpp +81 -0
  227. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.h +36 -0
  228. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarBlockStartState.cpp +12 -0
  229. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarBlockStartState.h +21 -0
  230. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopEntryState.cpp +15 -0
  231. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopEntryState.h +35 -0
  232. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.cpp +19 -0
  233. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.h +21 -0
  234. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TokensStartState.cpp +12 -0
  235. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TokensStartState.h +21 -0
  236. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.cpp +44 -0
  237. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.h +76 -0
  238. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.cpp +25 -0
  239. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.h +25 -0
  240. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.cpp +127 -0
  241. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.h +91 -0
  242. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.cpp +67 -0
  243. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.h +32 -0
  244. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.cpp +100 -0
  245. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.h +144 -0
  246. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.cpp +20 -0
  247. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.h +23 -0
  248. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.cpp +124 -0
  249. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.h +31 -0
  250. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.cpp +89 -0
  251. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.h +84 -0
  252. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.cpp +521 -0
  253. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.h +198 -0
  254. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.cpp +134 -0
  255. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.h +76 -0
  256. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.cpp +4 -0
  257. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.h +21 -0
  258. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.cpp +13 -0
  259. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.h +170 -0
  260. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.cpp +43 -0
  261. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.h +110 -0
  262. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/BitSet.h +76 -0
  263. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.cpp +248 -0
  264. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.h +78 -0
  265. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Declarations.h +163 -0
  266. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.cpp +36 -0
  267. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.h +54 -0
  268. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/guid.cpp +303 -0
  269. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/guid.h +112 -0
  270. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/AbstractParseTreeVisitor.h +128 -0
  271. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNode.cpp +9 -0
  272. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNode.h +19 -0
  273. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.cpp +23 -0
  274. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.h +33 -0
  275. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.cpp +71 -0
  276. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.h +53 -0
  277. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.cpp +15 -0
  278. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.h +102 -0
  279. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.cpp +9 -0
  280. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.h +39 -0
  281. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeProperty.h +50 -0
  282. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.cpp +9 -0
  283. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.h +57 -0
  284. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.cpp +49 -0
  285. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.h +31 -0
  286. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNode.cpp +9 -0
  287. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNode.h +32 -0
  288. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.cpp +57 -0
  289. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.h +33 -0
  290. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.cpp +241 -0
  291. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.h +78 -0
  292. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.cpp +9 -0
  293. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.h +44 -0
  294. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.cpp +69 -0
  295. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.h +132 -0
  296. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.cpp +64 -0
  297. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.h +105 -0
  298. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.cpp +371 -0
  299. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.h +185 -0
  300. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.cpp +77 -0
  301. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.h +117 -0
  302. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.cpp +39 -0
  303. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.h +86 -0
  304. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.cpp +28 -0
  305. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.h +51 -0
  306. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.cpp +36 -0
  307. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.h +80 -0
  308. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.cpp +154 -0
  309. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.h +86 -0
  310. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.cpp +31 -0
  311. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.h +40 -0
  312. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp +173 -0
  313. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.g4 +64 -0
  314. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.h +56 -0
  315. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.tokens +12 -0
  316. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.cpp +13 -0
  317. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.h +22 -0
  318. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.cpp +20 -0
  319. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.h +27 -0
  320. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.cpp +30 -0
  321. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.h +26 -0
  322. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.cpp +20 -0
  323. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.h +25 -0
  324. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.cpp +33 -0
  325. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.h +26 -0
  326. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.cpp +23 -0
  327. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.h +23 -0
  328. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.cpp +24 -0
  329. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.h +23 -0
  330. data/lib/expressir/version.rb +1 -1
  331. metadata +329 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cff7428d58c1f3f1faa367b23adeb27edba0ee849212a5e58c03a09615e309c5
4
- data.tar.gz: 96280284a32b4d1fb8b6f898a071cc472b937ee05e4ff12dd1a2a076673e8e38
3
+ metadata.gz: 567720b9ed58f631e97fe20795af2c4b99850cadb1e6fef158d8d264cde9a201
4
+ data.tar.gz: a9ecc46df11220f963c69235c1b27aa7d97bad00b5b961f16bc1548feed2e2a7
5
5
  SHA512:
6
- metadata.gz: 5932cf8677560a1b3ca3e65c719fad882fb28e2557014e56c658ffe89fbc510533998d137cfdfc3ee3d9aa9f393301d70276e4f5753b9ab325dcb4c115068f5e
7
- data.tar.gz: 29c4f8cf53df8aeb92d0aa925100febf76548b51ae1d47726e84d430344c5590d877438432b7e9f37d5972b73f9c2ed3a29e0ea731a4eab1c7ecbd6ff1f6ab17
6
+ metadata.gz: 278e45df08db09c8e84d5c61173315e80a68bdadd1c729940f42e07a684255b15cf1ab82edd6d241304f896e5a06e71a00008d8975f20e7e513b314db69c1afc
7
+ data.tar.gz: 642fdc300642949ab9d6eeb9d3142ac0972383930b56909f3aafada88164527fb74440b94eb61504e584e2b80452c2defbc9d5fab8445bba8bd7f58d58c0fb00
@@ -56,7 +56,7 @@ jobs:
56
56
 
57
57
  - uses: ruby/setup-ruby@v1
58
58
  with:
59
- ruby-version: '2.4'
59
+ ruby-version: '2.6'
60
60
 
61
61
  - run: ls -l pkg/
62
62
 
@@ -65,10 +65,11 @@ jobs:
65
65
  RUBYGEMS_API_KEY: ${{secrets.LUTAML_CI_RUBYGEMS_API_KEY}}
66
66
  run: |
67
67
  mkdir -p ~/.gem
68
- touch ~/.gem/credentials
69
- cat <<'EOF' >> ~/.gem/credentials
68
+ cat <<'EOF' > ~/.gem/credentials
70
69
  ---
71
70
  :rubygems_api_key: ${RUBYGEMS_API_KEY}
72
71
  EOF
73
72
  chmod 0600 ~/.gem/credentials
73
+ gem -v
74
+ gem signin
74
75
  for gem in pkg/*.gem; do gem push $gem -V -k rubygems ; done
data/Rakefile CHANGED
@@ -15,12 +15,3 @@ end
15
15
  ext = Rake::ExtensionTask.new("express_parser", spec) do |ext|
16
16
  ext.ext_dir = "ext/express-parser"
17
17
  end
18
-
19
- # workaround for:
20
- # Don't know how to build task 'tmp/RUBY_PLATFORM/stage/ext/express-parser/antlr4-upstream' (see --tasks)
21
- antlr_dir = File.join ext.ext_dir, 'antlr4-upstream'
22
- stage_dir = File.join ext.tmp_dir, RUBY_PLATFORM, 'stage'
23
- antrl4_out_dir = File.join stage_dir, antlr_dir
24
- file antrl4_out_dir do |t|
25
- FileUtils.ln_s File.expand_path(antlr_dir), antrl4_out_dir
26
- end
@@ -17,7 +17,9 @@ Gem::Specification.new do |spec|
17
17
  spec.metadata["source_code_uri"] = spec.homepage
18
18
  spec.metadata["changelog_uri"] = "https://github.com/lutaml/expressir/releases"
19
19
 
20
- spec.files = `git ls-files`.split("\n")
20
+ spec.files = `git ls-files`.split("\n")\
21
+ + Dir.glob('ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/**/*')
22
+
21
23
  spec.test_files = `git ls-files -- {spec}/*`.split("\n")
22
24
 
23
25
  spec.bindir = "exe"
@@ -0,0 +1,118 @@
1
+
2
+ include_directories(
3
+ ${PROJECT_SOURCE_DIR}/runtime/src
4
+ ${PROJECT_SOURCE_DIR}/runtime/src/atn
5
+ ${PROJECT_SOURCE_DIR}/runtime/src/dfa
6
+ ${PROJECT_SOURCE_DIR}/runtime/src/misc
7
+ ${PROJECT_SOURCE_DIR}/runtime/src/support
8
+ ${PROJECT_SOURCE_DIR}/runtime/src/tree
9
+ ${PROJECT_SOURCE_DIR}/runtime/src/tree/pattern
10
+ ${PROJECT_SOURCE_DIR}/runtime/src/tree/xpath
11
+ )
12
+
13
+
14
+ file(GLOB libantlrcpp_SRC
15
+ "${PROJECT_SOURCE_DIR}/runtime/src/*.cpp"
16
+ "${PROJECT_SOURCE_DIR}/runtime/src/atn/*.cpp"
17
+ "${PROJECT_SOURCE_DIR}/runtime/src/dfa/*.cpp"
18
+ "${PROJECT_SOURCE_DIR}/runtime/src/misc/*.cpp"
19
+ "${PROJECT_SOURCE_DIR}/runtime/src/support/*.cpp"
20
+ "${PROJECT_SOURCE_DIR}/runtime/src/tree/*.cpp"
21
+ "${PROJECT_SOURCE_DIR}/runtime/src/tree/pattern/*.cpp"
22
+ "${PROJECT_SOURCE_DIR}/runtime/src/tree/xpath/*.cpp"
23
+ )
24
+
25
+ add_library(antlr4_shared SHARED ${libantlrcpp_SRC})
26
+ add_library(antlr4_static STATIC ${libantlrcpp_SRC})
27
+
28
+ set(LIB_OUTPUT_DIR "${CMAKE_HOME_DIRECTORY}/dist") # put generated libraries here.
29
+ message(STATUS "Output libraries to ${LIB_OUTPUT_DIR}")
30
+
31
+ # make sure 'make' works fine even if ${LIB_OUTPUT_DIR} is deleted.
32
+ add_custom_target(make_lib_output_dir ALL
33
+ COMMAND ${CMAKE_COMMAND} -E make_directory ${LIB_OUTPUT_DIR}
34
+ )
35
+
36
+ add_dependencies(antlr4_shared make_lib_output_dir)
37
+ add_dependencies(antlr4_static make_lib_output_dir)
38
+
39
+ if(CMAKE_SYSTEM_NAME MATCHES "Linux")
40
+ target_link_libraries(antlr4_shared ${UUID_LIBRARIES})
41
+ target_link_libraries(antlr4_static ${UUID_LIBRARIES})
42
+ elseif(APPLE)
43
+ target_link_libraries(antlr4_shared ${COREFOUNDATION_LIBRARY})
44
+ target_link_libraries(antlr4_static ${COREFOUNDATION_LIBRARY})
45
+ endif()
46
+
47
+ if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
48
+ set(disabled_compile_warnings "/wd4251")
49
+ else()
50
+ set(disabled_compile_warnings "-Wno-overloaded-virtual")
51
+ endif()
52
+
53
+
54
+ if("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
55
+ set(disabled_compile_warnings "${disabled_compile_warnings} -Wno-dollar-in-identifier-extension -Wno-four-char-constants")
56
+ elseif("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU" OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "Intel")
57
+ set(disabled_compile_warnings "${disabled_compile_warnings} -Wno-multichar")
58
+ endif()
59
+
60
+ set(extra_share_compile_flags "")
61
+ set(extra_static_compile_flags "")
62
+ if(WIN32)
63
+ set(extra_share_compile_flags "-DANTLR4CPP_EXPORTS")
64
+ set(extra_static_compile_flags "-DANTLR4CPP_STATIC")
65
+ endif(WIN32)
66
+ if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
67
+ if(WITH_STATIC_CRT)
68
+ target_compile_options(antlr4_shared PRIVATE "/MT$<$<CONFIG:Debug>:d>")
69
+ target_compile_options(antlr4_static PRIVATE "/MT$<$<CONFIG:Debug>:d>")
70
+ else()
71
+ target_compile_options(antlr4_shared PRIVATE "/MD$<$<CONFIG:Debug>:d>")
72
+ target_compile_options(antlr4_static PRIVATE "/MD$<$<CONFIG:Debug>:d>")
73
+ endif()
74
+ endif()
75
+
76
+ set(static_lib_suffix "")
77
+ if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
78
+ set(static_lib_suffix "-static")
79
+ endif()
80
+
81
+ if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
82
+ set(extra_share_compile_flags "-DANTLR4CPP_EXPORTS -MP /wd4251")
83
+ set(extra_static_compile_flags "-DANTLR4CPP_STATIC -MP")
84
+ endif()
85
+
86
+ set_target_properties(antlr4_shared
87
+ PROPERTIES VERSION ${ANTLR_VERSION}
88
+ SOVERSION ${ANTLR_VERSION}
89
+ OUTPUT_NAME antlr4-runtime
90
+ LIBRARY_OUTPUT_DIRECTORY ${LIB_OUTPUT_DIR}
91
+ # TODO: test in windows. DLL is treated as runtime.
92
+ # see https://cmake.org/cmake/help/v3.0/prop_tgt/LIBRARY_OUTPUT_DIRECTORY.html
93
+ RUNTIME_OUTPUT_DIRECTORY ${LIB_OUTPUT_DIR}
94
+ ARCHIVE_OUTPUT_DIRECTORY ${LIB_OUTPUT_DIR}
95
+ COMPILE_FLAGS "${disabled_compile_warnings} ${extra_share_compile_flags}")
96
+
97
+ set_target_properties(antlr4_static
98
+ PROPERTIES VERSION ${ANTLR_VERSION}
99
+ SOVERSION ${ANTLR_VERSION}
100
+ OUTPUT_NAME "antlr4-runtime${static_lib_suffix}"
101
+ ARCHIVE_OUTPUT_DIRECTORY ${LIB_OUTPUT_DIR}
102
+ COMPILE_FLAGS "${disabled_compile_warnings} ${extra_static_compile_flags}")
103
+
104
+ install(TARGETS antlr4_shared
105
+ DESTINATION lib
106
+ EXPORT antlr4-targets)
107
+ install(TARGETS antlr4_static
108
+ DESTINATION lib
109
+ EXPORT antlr4-targets)
110
+
111
+ install(DIRECTORY "${PROJECT_SOURCE_DIR}/runtime/src/"
112
+ DESTINATION "include/antlr4-runtime"
113
+ COMPONENT dev
114
+ FILES_MATCHING PATTERN "*.h"
115
+ )
116
+
117
+
118
+
@@ -0,0 +1,637 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <Project DefaultTargets="Build" ToolsVersion="12.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>{229A61DC-1207-4E4E-88B0-F4CB7205672D}</ProjectGuid>
39
+ <Keyword>Win32Proj</Keyword>
40
+ <RootNamespace>antlr4cpp</RootNamespace>
41
+ </PropertyGroup>
42
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
43
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|Win32'" Label="Configuration">
44
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
45
+ <UseDebugLibraries>true</UseDebugLibraries>
46
+ <CharacterSet>Unicode</CharacterSet>
47
+ <PlatformToolset>v120</PlatformToolset>
48
+ </PropertyGroup>
49
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|Win32'" Label="Configuration">
50
+ <ConfigurationType>StaticLibrary</ConfigurationType>
51
+ <UseDebugLibraries>true</UseDebugLibraries>
52
+ <CharacterSet>Unicode</CharacterSet>
53
+ <PlatformToolset>v120</PlatformToolset>
54
+ </PropertyGroup>
55
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|x64'" Label="Configuration">
56
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
57
+ <UseDebugLibraries>true</UseDebugLibraries>
58
+ <CharacterSet>Unicode</CharacterSet>
59
+ <PlatformToolset>v120</PlatformToolset>
60
+ </PropertyGroup>
61
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|x64'" Label="Configuration">
62
+ <ConfigurationType>StaticLibrary</ConfigurationType>
63
+ <UseDebugLibraries>true</UseDebugLibraries>
64
+ <CharacterSet>Unicode</CharacterSet>
65
+ <PlatformToolset>v120</PlatformToolset>
66
+ </PropertyGroup>
67
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|Win32'" Label="Configuration">
68
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
69
+ <UseDebugLibraries>false</UseDebugLibraries>
70
+ <WholeProgramOptimization>true</WholeProgramOptimization>
71
+ <CharacterSet>Unicode</CharacterSet>
72
+ <PlatformToolset>v120</PlatformToolset>
73
+ </PropertyGroup>
74
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|Win32'" Label="Configuration">
75
+ <ConfigurationType>StaticLibrary</ConfigurationType>
76
+ <UseDebugLibraries>false</UseDebugLibraries>
77
+ <WholeProgramOptimization>true</WholeProgramOptimization>
78
+ <CharacterSet>Unicode</CharacterSet>
79
+ <PlatformToolset>v120</PlatformToolset>
80
+ </PropertyGroup>
81
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|x64'" Label="Configuration">
82
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
83
+ <UseDebugLibraries>false</UseDebugLibraries>
84
+ <WholeProgramOptimization>true</WholeProgramOptimization>
85
+ <CharacterSet>Unicode</CharacterSet>
86
+ <PlatformToolset>v120</PlatformToolset>
87
+ </PropertyGroup>
88
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|x64'" Label="Configuration">
89
+ <ConfigurationType>StaticLibrary</ConfigurationType>
90
+ <UseDebugLibraries>false</UseDebugLibraries>
91
+ <WholeProgramOptimization>true</WholeProgramOptimization>
92
+ <CharacterSet>Unicode</CharacterSet>
93
+ <PlatformToolset>v120</PlatformToolset>
94
+ </PropertyGroup>
95
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
96
+ <ImportGroup Label="ExtensionSettings">
97
+ </ImportGroup>
98
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug DLL|Win32'">
99
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
100
+ </ImportGroup>
101
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|Win32'" Label="PropertySheets">
102
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
103
+ </ImportGroup>
104
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|x64'" Label="PropertySheets">
105
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
106
+ </ImportGroup>
107
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|x64'" Label="PropertySheets">
108
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
109
+ </ImportGroup>
110
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release DLL|Win32'">
111
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
112
+ </ImportGroup>
113
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|Win32'" Label="PropertySheets">
114
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
115
+ </ImportGroup>
116
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|x64'" Label="PropertySheets">
117
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
118
+ </ImportGroup>
119
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|x64'" Label="PropertySheets">
120
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
121
+ </ImportGroup>
122
+ <PropertyGroup Label="UserMacros" />
123
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|Win32'">
124
+ <LinkIncremental>true</LinkIncremental>
125
+ <OutDir>$(SolutionDir)bin\vs-2013\$(PlatformTarget)\$(Configuration)\</OutDir>
126
+ <IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
127
+ <TargetName>antlr4-runtime</TargetName>
128
+ </PropertyGroup>
129
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|Win32'">
130
+ <LinkIncremental>true</LinkIncremental>
131
+ <OutDir>$(SolutionDir)bin\vs-2013\$(PlatformTarget)\$(Configuration)\</OutDir>
132
+ <IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
133
+ <TargetName>antlr4-runtime</TargetName>
134
+ </PropertyGroup>
135
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|x64'">
136
+ <LinkIncremental>true</LinkIncremental>
137
+ <OutDir>$(SolutionDir)bin\vs-2013\$(PlatformTarget)\$(Configuration)\</OutDir>
138
+ <IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
139
+ <TargetName>antlr4-runtime</TargetName>
140
+ </PropertyGroup>
141
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|x64'">
142
+ <LinkIncremental>true</LinkIncremental>
143
+ <OutDir>$(SolutionDir)bin\vs-2013\$(PlatformTarget)\$(Configuration)\</OutDir>
144
+ <IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
145
+ <TargetName>antlr4-runtime</TargetName>
146
+ </PropertyGroup>
147
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|Win32'">
148
+ <LinkIncremental>false</LinkIncremental>
149
+ <OutDir>$(SolutionDir)bin\vs-2013\$(PlatformTarget)\$(Configuration)\</OutDir>
150
+ <IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
151
+ <TargetName>antlr4-runtime</TargetName>
152
+ </PropertyGroup>
153
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|Win32'">
154
+ <LinkIncremental>false</LinkIncremental>
155
+ <OutDir>$(SolutionDir)bin\vs-2013\$(PlatformTarget)\$(Configuration)\</OutDir>
156
+ <IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
157
+ <TargetName>antlr4-runtime</TargetName>
158
+ </PropertyGroup>
159
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|x64'">
160
+ <LinkIncremental>false</LinkIncremental>
161
+ <OutDir>$(SolutionDir)bin\vs-2013\$(PlatformTarget)\$(Configuration)\</OutDir>
162
+ <IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
163
+ <TargetName>antlr4-runtime</TargetName>
164
+ </PropertyGroup>
165
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|x64'">
166
+ <LinkIncremental>false</LinkIncremental>
167
+ <OutDir>$(SolutionDir)bin\vs-2013\$(PlatformTarget)\$(Configuration)\</OutDir>
168
+ <IntDir>$(SolutionDir)obj\$(PlatformTarget)\$(Configuration)\$(ProjectName)\</IntDir>
169
+ <TargetName>antlr4-runtime</TargetName>
170
+ </PropertyGroup>
171
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|Win32'">
172
+ <ClCompile>
173
+ <WarningLevel>Level4</WarningLevel>
174
+ <Optimization>Disabled</Optimization>
175
+ <PreprocessorDefinitions>ANTLR4CPP_DLL;ANTLR4CPP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
176
+ <AdditionalIncludeDirectories>src/tree;src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
177
+ <PrecompiledHeaderFile>
178
+ </PrecompiledHeaderFile>
179
+ <ForcedIncludeFiles>
180
+ </ForcedIncludeFiles>
181
+ <DisableSpecificWarnings>4251</DisableSpecificWarnings>
182
+ </ClCompile>
183
+ <Link>
184
+ <SubSystem>Windows</SubSystem>
185
+ <GenerateDebugInformation>true</GenerateDebugInformation>
186
+ </Link>
187
+ </ItemDefinitionGroup>
188
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|Win32'">
189
+ <ClCompile>
190
+ <WarningLevel>Level4</WarningLevel>
191
+ <Optimization>Disabled</Optimization>
192
+ <PreprocessorDefinitions>ANTLR4CPP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
193
+ <AdditionalIncludeDirectories>src/tree;src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
194
+ <PrecompiledHeaderFile>
195
+ </PrecompiledHeaderFile>
196
+ <ForcedIncludeFiles>
197
+ </ForcedIncludeFiles>
198
+ <DisableSpecificWarnings>4251</DisableSpecificWarnings>
199
+ </ClCompile>
200
+ <Link>
201
+ <SubSystem>Windows</SubSystem>
202
+ <GenerateDebugInformation>true</GenerateDebugInformation>
203
+ </Link>
204
+ </ItemDefinitionGroup>
205
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug DLL|x64'">
206
+ <ClCompile>
207
+ <WarningLevel>Level4</WarningLevel>
208
+ <Optimization>Disabled</Optimization>
209
+ <PreprocessorDefinitions>ANTLR4CPP_DLL;ANTLR4CPP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
210
+ <AdditionalIncludeDirectories>src/tree;src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
211
+ <PrecompiledHeaderFile>
212
+ </PrecompiledHeaderFile>
213
+ <ForcedIncludeFiles>
214
+ </ForcedIncludeFiles>
215
+ <DisableSpecificWarnings>4251</DisableSpecificWarnings>
216
+ </ClCompile>
217
+ <Link>
218
+ <SubSystem>Windows</SubSystem>
219
+ <GenerateDebugInformation>true</GenerateDebugInformation>
220
+ </Link>
221
+ </ItemDefinitionGroup>
222
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Static|x64'">
223
+ <ClCompile>
224
+ <WarningLevel>Level4</WarningLevel>
225
+ <Optimization>Disabled</Optimization>
226
+ <PreprocessorDefinitions>ANTLR4CPP_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
227
+ <AdditionalIncludeDirectories>src/tree;src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
228
+ <PrecompiledHeaderFile>
229
+ </PrecompiledHeaderFile>
230
+ <ForcedIncludeFiles>
231
+ </ForcedIncludeFiles>
232
+ <DisableSpecificWarnings>4251</DisableSpecificWarnings>
233
+ </ClCompile>
234
+ <Link>
235
+ <SubSystem>Windows</SubSystem>
236
+ <GenerateDebugInformation>true</GenerateDebugInformation>
237
+ </Link>
238
+ </ItemDefinitionGroup>
239
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|Win32'">
240
+ <ClCompile>
241
+ <WarningLevel>Level4</WarningLevel>
242
+ <Optimization>MaxSpeed</Optimization>
243
+ <FunctionLevelLinking>true</FunctionLevelLinking>
244
+ <IntrinsicFunctions>true</IntrinsicFunctions>
245
+ <PreprocessorDefinitions>ANTLR4CPP_DLL;ANTLR4CPP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
246
+ <AdditionalIncludeDirectories>src/tree;src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
247
+ <PrecompiledHeaderFile>
248
+ </PrecompiledHeaderFile>
249
+ <ForcedIncludeFiles>
250
+ </ForcedIncludeFiles>
251
+ <DisableSpecificWarnings>4251</DisableSpecificWarnings>
252
+ </ClCompile>
253
+ <Link>
254
+ <SubSystem>Windows</SubSystem>
255
+ <GenerateDebugInformation>true</GenerateDebugInformation>
256
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
257
+ <OptimizeReferences>true</OptimizeReferences>
258
+ </Link>
259
+ </ItemDefinitionGroup>
260
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|Win32'">
261
+ <ClCompile>
262
+ <WarningLevel>Level4</WarningLevel>
263
+ <Optimization>MaxSpeed</Optimization>
264
+ <FunctionLevelLinking>true</FunctionLevelLinking>
265
+ <IntrinsicFunctions>true</IntrinsicFunctions>
266
+ <PreprocessorDefinitions>ANTLR4CPP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
267
+ <AdditionalIncludeDirectories>src/tree;src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
268
+ <PrecompiledHeaderFile>
269
+ </PrecompiledHeaderFile>
270
+ <ForcedIncludeFiles>
271
+ </ForcedIncludeFiles>
272
+ <DisableSpecificWarnings>4251</DisableSpecificWarnings>
273
+ </ClCompile>
274
+ <Link>
275
+ <SubSystem>Windows</SubSystem>
276
+ <GenerateDebugInformation>true</GenerateDebugInformation>
277
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
278
+ <OptimizeReferences>true</OptimizeReferences>
279
+ </Link>
280
+ </ItemDefinitionGroup>
281
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release DLL|x64'">
282
+ <ClCompile>
283
+ <WarningLevel>Level4</WarningLevel>
284
+ <Optimization>MaxSpeed</Optimization>
285
+ <FunctionLevelLinking>true</FunctionLevelLinking>
286
+ <IntrinsicFunctions>true</IntrinsicFunctions>
287
+ <PreprocessorDefinitions>ANTLR4CPP_DLL;ANTLR4CPP_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
288
+ <AdditionalIncludeDirectories>src/tree;src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
289
+ <PrecompiledHeaderFile>
290
+ </PrecompiledHeaderFile>
291
+ <ForcedIncludeFiles>
292
+ </ForcedIncludeFiles>
293
+ <DisableSpecificWarnings>4251</DisableSpecificWarnings>
294
+ </ClCompile>
295
+ <Link>
296
+ <SubSystem>Windows</SubSystem>
297
+ <GenerateDebugInformation>true</GenerateDebugInformation>
298
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
299
+ <OptimizeReferences>true</OptimizeReferences>
300
+ </Link>
301
+ </ItemDefinitionGroup>
302
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Static|x64'">
303
+ <ClCompile>
304
+ <WarningLevel>Level4</WarningLevel>
305
+ <Optimization>MaxSpeed</Optimization>
306
+ <FunctionLevelLinking>true</FunctionLevelLinking>
307
+ <IntrinsicFunctions>true</IntrinsicFunctions>
308
+ <PreprocessorDefinitions>ANTLR4CPP_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
309
+ <AdditionalIncludeDirectories>src/tree;src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
310
+ <PrecompiledHeaderFile>
311
+ </PrecompiledHeaderFile>
312
+ <ForcedIncludeFiles>
313
+ </ForcedIncludeFiles>
314
+ <DisableSpecificWarnings>4251</DisableSpecificWarnings>
315
+ </ClCompile>
316
+ <Link>
317
+ <SubSystem>Windows</SubSystem>
318
+ <GenerateDebugInformation>true</GenerateDebugInformation>
319
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
320
+ <OptimizeReferences>true</OptimizeReferences>
321
+ </Link>
322
+ </ItemDefinitionGroup>
323
+ <ItemGroup>
324
+ <ClCompile Include="src\ANTLRErrorListener.cpp" />
325
+ <ClCompile Include="src\ANTLRErrorStrategy.cpp" />
326
+ <ClCompile Include="src\ANTLRFileStream.cpp" />
327
+ <ClCompile Include="src\ANTLRInputStream.cpp" />
328
+ <ClCompile Include="src\atn\AbstractPredicateTransition.cpp" />
329
+ <ClCompile Include="src\atn\ActionTransition.cpp" />
330
+ <ClCompile Include="src\atn\AmbiguityInfo.cpp" />
331
+ <ClCompile Include="src\atn\ArrayPredictionContext.cpp" />
332
+ <ClCompile Include="src\atn\ATN.cpp" />
333
+ <ClCompile Include="src\atn\ATNConfig.cpp" />
334
+ <ClCompile Include="src\atn\ATNConfigSet.cpp" />
335
+ <ClCompile Include="src\atn\ATNDeserializationOptions.cpp" />
336
+ <ClCompile Include="src\atn\ATNDeserializer.cpp" />
337
+ <ClCompile Include="src\atn\ATNSerializer.cpp" />
338
+ <ClCompile Include="src\atn\ATNSimulator.cpp" />
339
+ <ClCompile Include="src\atn\ATNState.cpp" />
340
+ <ClCompile Include="src\atn\AtomTransition.cpp" />
341
+ <ClCompile Include="src\atn\BasicBlockStartState.cpp" />
342
+ <ClCompile Include="src\atn\BasicState.cpp" />
343
+ <ClCompile Include="src\atn\BlockEndState.cpp" />
344
+ <ClCompile Include="src\atn\BlockStartState.cpp" />
345
+ <ClCompile Include="src\atn\ContextSensitivityInfo.cpp" />
346
+ <ClCompile Include="src\atn\DecisionEventInfo.cpp" />
347
+ <ClCompile Include="src\atn\DecisionInfo.cpp" />
348
+ <ClCompile Include="src\atn\DecisionState.cpp" />
349
+ <ClCompile Include="src\atn\EmptyPredictionContext.cpp" />
350
+ <ClCompile Include="src\atn\EpsilonTransition.cpp" />
351
+ <ClCompile Include="src\atn\ErrorInfo.cpp" />
352
+ <ClCompile Include="src\atn\LexerAction.cpp" />
353
+ <ClCompile Include="src\atn\LexerActionExecutor.cpp" />
354
+ <ClCompile Include="src\atn\LexerATNConfig.cpp" />
355
+ <ClCompile Include="src\atn\LexerATNSimulator.cpp" />
356
+ <ClCompile Include="src\atn\LexerChannelAction.cpp" />
357
+ <ClCompile Include="src\atn\LexerCustomAction.cpp" />
358
+ <ClCompile Include="src\atn\LexerIndexedCustomAction.cpp" />
359
+ <ClCompile Include="src\atn\LexerModeAction.cpp" />
360
+ <ClCompile Include="src\atn\LexerMoreAction.cpp" />
361
+ <ClCompile Include="src\atn\LexerPopModeAction.cpp" />
362
+ <ClCompile Include="src\atn\LexerPushModeAction.cpp" />
363
+ <ClCompile Include="src\atn\LexerSkipAction.cpp" />
364
+ <ClCompile Include="src\atn\LexerTypeAction.cpp" />
365
+ <ClCompile Include="src\atn\LL1Analyzer.cpp" />
366
+ <ClCompile Include="src\atn\LookaheadEventInfo.cpp" />
367
+ <ClCompile Include="src\atn\LoopEndState.cpp" />
368
+ <ClCompile Include="src\atn\NotSetTransition.cpp" />
369
+ <ClCompile Include="src\atn\OrderedATNConfigSet.cpp" />
370
+ <ClCompile Include="src\atn\ParseInfo.cpp" />
371
+ <ClCompile Include="src\atn\ParserATNSimulator.cpp" />
372
+ <ClCompile Include="src\atn\PlusBlockStartState.cpp" />
373
+ <ClCompile Include="src\atn\PlusLoopbackState.cpp" />
374
+ <ClCompile Include="src\atn\PrecedencePredicateTransition.cpp" />
375
+ <ClCompile Include="src\atn\PredicateEvalInfo.cpp" />
376
+ <ClCompile Include="src\atn\PredicateTransition.cpp" />
377
+ <ClCompile Include="src\atn\PredictionContext.cpp" />
378
+ <ClCompile Include="src\atn\PredictionMode.cpp" />
379
+ <ClCompile Include="src\atn\ProfilingATNSimulator.cpp" />
380
+ <ClCompile Include="src\atn\RangeTransition.cpp" />
381
+ <ClCompile Include="src\atn\RuleStartState.cpp" />
382
+ <ClCompile Include="src\atn\RuleStopState.cpp" />
383
+ <ClCompile Include="src\atn\RuleTransition.cpp" />
384
+ <ClCompile Include="src\atn\SemanticContext.cpp" />
385
+ <ClCompile Include="src\atn\SetTransition.cpp" />
386
+ <ClCompile Include="src\atn\SingletonPredictionContext.cpp" />
387
+ <ClCompile Include="src\atn\StarBlockStartState.cpp" />
388
+ <ClCompile Include="src\atn\StarLoopbackState.cpp" />
389
+ <ClCompile Include="src\atn\StarLoopEntryState.cpp" />
390
+ <ClCompile Include="src\atn\TokensStartState.cpp" />
391
+ <ClCompile Include="src\atn\Transition.cpp" />
392
+ <ClCompile Include="src\atn\WildcardTransition.cpp" />
393
+ <ClCompile Include="src\BailErrorStrategy.cpp" />
394
+ <ClCompile Include="src\BaseErrorListener.cpp" />
395
+ <ClCompile Include="src\BufferedTokenStream.cpp" />
396
+ <ClCompile Include="src\CharStream.cpp" />
397
+ <ClCompile Include="src\CommonToken.cpp" />
398
+ <ClCompile Include="src\CommonTokenFactory.cpp" />
399
+ <ClCompile Include="src\CommonTokenStream.cpp" />
400
+ <ClCompile Include="src\ConsoleErrorListener.cpp" />
401
+ <ClCompile Include="src\DefaultErrorStrategy.cpp" />
402
+ <ClCompile Include="src\dfa\DFA.cpp" />
403
+ <ClCompile Include="src\dfa\DFASerializer.cpp" />
404
+ <ClCompile Include="src\dfa\DFAState.cpp" />
405
+ <ClCompile Include="src\dfa\LexerDFASerializer.cpp" />
406
+ <ClCompile Include="src\DiagnosticErrorListener.cpp" />
407
+ <ClCompile Include="src\Exceptions.cpp" />
408
+ <ClCompile Include="src\FailedPredicateException.cpp" />
409
+ <ClCompile Include="src\InputMismatchException.cpp" />
410
+ <ClCompile Include="src\InterpreterRuleContext.cpp" />
411
+ <ClCompile Include="src\IntStream.cpp" />
412
+ <ClCompile Include="src\Lexer.cpp" />
413
+ <ClCompile Include="src\LexerInterpreter.cpp" />
414
+ <ClCompile Include="src\LexerNoViableAltException.cpp" />
415
+ <ClCompile Include="src\ListTokenSource.cpp" />
416
+ <ClCompile Include="src\misc\Interval.cpp" />
417
+ <ClCompile Include="src\misc\IntervalSet.cpp" />
418
+ <ClCompile Include="src\misc\MurmurHash.cpp" />
419
+ <ClCompile Include="src\misc\Predicate.cpp" />
420
+ <ClCompile Include="src\NoViableAltException.cpp" />
421
+ <ClCompile Include="src\Parser.cpp" />
422
+ <ClCompile Include="src\ParserInterpreter.cpp" />
423
+ <ClCompile Include="src\ParserRuleContext.cpp" />
424
+ <ClCompile Include="src\ProxyErrorListener.cpp" />
425
+ <ClCompile Include="src\RecognitionException.cpp" />
426
+ <ClCompile Include="src\Recognizer.cpp" />
427
+ <ClCompile Include="src\RuleContext.cpp" />
428
+ <ClCompile Include="src\RuleContextWithAltNum.cpp" />
429
+ <ClCompile Include="src\RuntimeMetaData.cpp" />
430
+ <ClCompile Include="src\support\Any.cpp" />
431
+ <ClCompile Include="src\support\Arrays.cpp" />
432
+ <ClCompile Include="src\support\CPPUtils.cpp" />
433
+ <ClCompile Include="src\support\guid.cpp" />
434
+ <ClCompile Include="src\support\StringUtils.cpp" />
435
+ <ClCompile Include="src\Token.cpp" />
436
+ <ClCompile Include="src\TokenSource.cpp" />
437
+ <ClCompile Include="src\TokenStream.cpp" />
438
+ <ClCompile Include="src\TokenStreamRewriter.cpp" />
439
+ <ClCompile Include="src\tree\ErrorNode.cpp" />
440
+ <ClCompile Include="src\tree\ErrorNodeImpl.cpp" />
441
+ <ClCompile Include="src\tree\IterativeParseTreeWalker.cpp" />
442
+ <ClCompile Include="src\tree\ParseTree.cpp" />
443
+ <ClCompile Include="src\tree\ParseTreeListener.cpp" />
444
+ <ClCompile Include="src\tree\ParseTreeVisitor.cpp" />
445
+ <ClCompile Include="src\tree\ParseTreeWalker.cpp" />
446
+ <ClCompile Include="src\tree\pattern\Chunk.cpp" />
447
+ <ClCompile Include="src\tree\pattern\ParseTreeMatch.cpp" />
448
+ <ClCompile Include="src\tree\pattern\ParseTreePattern.cpp" />
449
+ <ClCompile Include="src\tree\pattern\ParseTreePatternMatcher.cpp" />
450
+ <ClCompile Include="src\tree\pattern\RuleTagToken.cpp" />
451
+ <ClCompile Include="src\tree\pattern\TagChunk.cpp" />
452
+ <ClCompile Include="src\tree\pattern\TextChunk.cpp" />
453
+ <ClCompile Include="src\tree\pattern\TokenTagToken.cpp" />
454
+ <ClCompile Include="src\tree\TerminalNode.cpp" />
455
+ <ClCompile Include="src\tree\TerminalNodeImpl.cpp" />
456
+ <ClCompile Include="src\tree\Trees.cpp" />
457
+ <ClCompile Include="src\tree\xpath\XPath.cpp" />
458
+ <ClCompile Include="src\tree\xpath\XPathElement.cpp" />
459
+ <ClCompile Include="src\tree\xpath\XPathLexer.cpp" />
460
+ <ClCompile Include="src\tree\xpath\XPathLexerErrorListener.cpp" />
461
+ <ClCompile Include="src\tree\xpath\XPathRuleAnywhereElement.cpp" />
462
+ <ClCompile Include="src\tree\xpath\XPathRuleElement.cpp" />
463
+ <ClCompile Include="src\tree\xpath\XPathTokenAnywhereElement.cpp" />
464
+ <ClCompile Include="src\tree\xpath\XPathTokenElement.cpp" />
465
+ <ClCompile Include="src\tree\xpath\XPathWildcardAnywhereElement.cpp" />
466
+ <ClCompile Include="src\tree\xpath\XPathWildcardElement.cpp" />
467
+ <ClCompile Include="src\UnbufferedCharStream.cpp" />
468
+ <ClCompile Include="src\UnbufferedTokenStream.cpp" />
469
+ <ClCompile Include="src\Vocabulary.cpp" />
470
+ <ClCompile Include="src\WritableToken.cpp" />
471
+ </ItemGroup>
472
+ <ItemGroup>
473
+ <ClInclude Include="src\antlr4-common.h" />
474
+ <ClInclude Include="src\antlr4-runtime.h" />
475
+ <ClInclude Include="src\ANTLRErrorListener.h" />
476
+ <ClInclude Include="src\ANTLRErrorStrategy.h" />
477
+ <ClInclude Include="src\ANTLRFileStream.h" />
478
+ <ClInclude Include="src\ANTLRInputStream.h" />
479
+ <ClInclude Include="src\atn\AbstractPredicateTransition.h" />
480
+ <ClInclude Include="src\atn\ActionTransition.h" />
481
+ <ClInclude Include="src\atn\AmbiguityInfo.h" />
482
+ <ClInclude Include="src\atn\ArrayPredictionContext.h" />
483
+ <ClInclude Include="src\atn\ATN.h" />
484
+ <ClInclude Include="src\atn\ATNConfig.h" />
485
+ <ClInclude Include="src\atn\ATNConfigSet.h" />
486
+ <ClInclude Include="src\atn\ATNDeserializationOptions.h" />
487
+ <ClInclude Include="src\atn\ATNDeserializer.h" />
488
+ <ClInclude Include="src\atn\ATNSerializer.h" />
489
+ <ClInclude Include="src\atn\ATNSimulator.h" />
490
+ <ClInclude Include="src\atn\ATNState.h" />
491
+ <ClInclude Include="src\atn\ATNType.h" />
492
+ <ClInclude Include="src\atn\AtomTransition.h" />
493
+ <ClInclude Include="src\atn\BasicBlockStartState.h" />
494
+ <ClInclude Include="src\atn\BasicState.h" />
495
+ <ClInclude Include="src\atn\BlockEndState.h" />
496
+ <ClInclude Include="src\atn\BlockStartState.h" />
497
+ <ClInclude Include="src\atn\ConfigLookup.h" />
498
+ <ClInclude Include="src\atn\ContextSensitivityInfo.h" />
499
+ <ClInclude Include="src\atn\DecisionEventInfo.h" />
500
+ <ClInclude Include="src\atn\DecisionInfo.h" />
501
+ <ClInclude Include="src\atn\DecisionState.h" />
502
+ <ClInclude Include="src\atn\EmptyPredictionContext.h" />
503
+ <ClInclude Include="src\atn\EpsilonTransition.h" />
504
+ <ClInclude Include="src\atn\ErrorInfo.h" />
505
+ <ClInclude Include="src\atn\LexerAction.h" />
506
+ <ClInclude Include="src\atn\LexerActionExecutor.h" />
507
+ <ClInclude Include="src\atn\LexerActionType.h" />
508
+ <ClInclude Include="src\atn\LexerATNConfig.h" />
509
+ <ClInclude Include="src\atn\LexerATNSimulator.h" />
510
+ <ClInclude Include="src\atn\LexerChannelAction.h" />
511
+ <ClInclude Include="src\atn\LexerCustomAction.h" />
512
+ <ClInclude Include="src\atn\LexerIndexedCustomAction.h" />
513
+ <ClInclude Include="src\atn\LexerModeAction.h" />
514
+ <ClInclude Include="src\atn\LexerMoreAction.h" />
515
+ <ClInclude Include="src\atn\LexerPopModeAction.h" />
516
+ <ClInclude Include="src\atn\LexerPushModeAction.h" />
517
+ <ClInclude Include="src\atn\LexerSkipAction.h" />
518
+ <ClInclude Include="src\atn\LexerTypeAction.h" />
519
+ <ClInclude Include="src\atn\LL1Analyzer.h" />
520
+ <ClInclude Include="src\atn\LookaheadEventInfo.h" />
521
+ <ClInclude Include="src\atn\LoopEndState.h" />
522
+ <ClInclude Include="src\atn\NotSetTransition.h" />
523
+ <ClInclude Include="src\atn\OrderedATNConfigSet.h" />
524
+ <ClInclude Include="src\atn\ParseInfo.h" />
525
+ <ClInclude Include="src\atn\ParserATNSimulator.h" />
526
+ <ClInclude Include="src\atn\PlusBlockStartState.h" />
527
+ <ClInclude Include="src\atn\PlusLoopbackState.h" />
528
+ <ClInclude Include="src\atn\PrecedencePredicateTransition.h" />
529
+ <ClInclude Include="src\atn\PredicateEvalInfo.h" />
530
+ <ClInclude Include="src\atn\PredicateTransition.h" />
531
+ <ClInclude Include="src\atn\PredictionContext.h" />
532
+ <ClInclude Include="src\atn\PredictionMode.h" />
533
+ <ClInclude Include="src\atn\ProfilingATNSimulator.h" />
534
+ <ClInclude Include="src\atn\RangeTransition.h" />
535
+ <ClInclude Include="src\atn\RuleStartState.h" />
536
+ <ClInclude Include="src\atn\RuleStopState.h" />
537
+ <ClInclude Include="src\atn\RuleTransition.h" />
538
+ <ClInclude Include="src\atn\SemanticContext.h" />
539
+ <ClInclude Include="src\atn\SetTransition.h" />
540
+ <ClInclude Include="src\atn\SingletonPredictionContext.h" />
541
+ <ClInclude Include="src\atn\StarBlockStartState.h" />
542
+ <ClInclude Include="src\atn\StarLoopbackState.h" />
543
+ <ClInclude Include="src\atn\StarLoopEntryState.h" />
544
+ <ClInclude Include="src\atn\TokensStartState.h" />
545
+ <ClInclude Include="src\atn\Transition.h" />
546
+ <ClInclude Include="src\atn\WildcardTransition.h" />
547
+ <ClInclude Include="src\BailErrorStrategy.h" />
548
+ <ClInclude Include="src\BaseErrorListener.h" />
549
+ <ClInclude Include="src\BufferedTokenStream.h" />
550
+ <ClInclude Include="src\CharStream.h" />
551
+ <ClInclude Include="src\CommonToken.h" />
552
+ <ClInclude Include="src\CommonTokenFactory.h" />
553
+ <ClInclude Include="src\CommonTokenStream.h" />
554
+ <ClInclude Include="src\ConsoleErrorListener.h" />
555
+ <ClInclude Include="src\DefaultErrorStrategy.h" />
556
+ <ClInclude Include="src\dfa\DFA.h" />
557
+ <ClInclude Include="src\dfa\DFASerializer.h" />
558
+ <ClInclude Include="src\dfa\DFAState.h" />
559
+ <ClInclude Include="src\dfa\LexerDFASerializer.h" />
560
+ <ClInclude Include="src\DiagnosticErrorListener.h" />
561
+ <ClInclude Include="src\Exceptions.h" />
562
+ <ClInclude Include="src\FailedPredicateException.h" />
563
+ <ClInclude Include="src\InputMismatchException.h" />
564
+ <ClInclude Include="src\InterpreterRuleContext.h" />
565
+ <ClInclude Include="src\IntStream.h" />
566
+ <ClInclude Include="src\Lexer.h" />
567
+ <ClInclude Include="src\LexerInterpreter.h" />
568
+ <ClInclude Include="src\LexerNoViableAltException.h" />
569
+ <ClInclude Include="src\ListTokenSource.h" />
570
+ <ClInclude Include="src\misc\Interval.h" />
571
+ <ClInclude Include="src\misc\IntervalSet.h" />
572
+ <ClInclude Include="src\misc\MurmurHash.h" />
573
+ <ClInclude Include="src\misc\Predicate.h" />
574
+ <ClInclude Include="src\misc\TestRig.h" />
575
+ <ClInclude Include="src\NoViableAltException.h" />
576
+ <ClInclude Include="src\Parser.h" />
577
+ <ClInclude Include="src\ParserInterpreter.h" />
578
+ <ClInclude Include="src\ParserRuleContext.h" />
579
+ <ClInclude Include="src\ProxyErrorListener.h" />
580
+ <ClInclude Include="src\RecognitionException.h" />
581
+ <ClInclude Include="src\Recognizer.h" />
582
+ <ClInclude Include="src\RuleContext.h" />
583
+ <ClInclude Include="src\RuleContextWithAltNum.h" />
584
+ <ClInclude Include="src\RuntimeMetaData.h" />
585
+ <ClInclude Include="src\support\Arrays.h" />
586
+ <ClInclude Include="src\support\BitSet.h" />
587
+ <ClInclude Include="src\support\CPPUtils.h" />
588
+ <ClInclude Include="src\support\Declarations.h" />
589
+ <ClInclude Include="src\support\guid.h" />
590
+ <ClInclude Include="src\support\StringUtils.h" />
591
+ <ClInclude Include="src\Token.h" />
592
+ <ClInclude Include="src\TokenFactory.h" />
593
+ <ClInclude Include="src\TokenSource.h" />
594
+ <ClInclude Include="src\TokenStream.h" />
595
+ <ClInclude Include="src\TokenStreamRewriter.h" />
596
+ <ClInclude Include="src\tree\AbstractParseTreeVisitor.h" />
597
+ <ClInclude Include="src\tree\ErrorNode.h" />
598
+ <ClInclude Include="src\tree\ErrorNodeImpl.h" />
599
+ <ClInclude Include="src\tree\IterativeParseTreeWalker.h" />
600
+ <ClInclude Include="src\tree\ParseTree.h" />
601
+ <ClInclude Include="src\tree\ParseTreeListener.h" />
602
+ <ClInclude Include="src\tree\ParseTreeProperty.h" />
603
+ <ClInclude Include="src\tree\ParseTreeVisitor.h" />
604
+ <ClInclude Include="src\tree\ParseTreeWalker.h" />
605
+ <ClInclude Include="src\tree\pattern\Chunk.h" />
606
+ <ClInclude Include="src\tree\pattern\ParseTreeMatch.h" />
607
+ <ClInclude Include="src\tree\pattern\ParseTreePattern.h" />
608
+ <ClInclude Include="src\tree\pattern\ParseTreePatternMatcher.h" />
609
+ <ClInclude Include="src\tree\pattern\RuleTagToken.h" />
610
+ <ClInclude Include="src\tree\pattern\TagChunk.h" />
611
+ <ClInclude Include="src\tree\pattern\TextChunk.h" />
612
+ <ClInclude Include="src\tree\pattern\TokenTagToken.h" />
613
+ <ClInclude Include="src\tree\RuleNode.h" />
614
+ <ClInclude Include="src\tree\SyntaxTree.h" />
615
+ <ClInclude Include="src\tree\TerminalNode.h" />
616
+ <ClInclude Include="src\tree\TerminalNodeImpl.h" />
617
+ <ClInclude Include="src\tree\Tree.h" />
618
+ <ClInclude Include="src\tree\Trees.h" />
619
+ <ClInclude Include="src\tree\xpath\XPath.h" />
620
+ <ClInclude Include="src\tree\xpath\XPathElement.h" />
621
+ <ClInclude Include="src\tree\xpath\XPathLexer.h" />
622
+ <ClInclude Include="src\tree\xpath\XPathLexerErrorListener.h" />
623
+ <ClInclude Include="src\tree\xpath\XPathRuleAnywhereElement.h" />
624
+ <ClInclude Include="src\tree\xpath\XPathRuleElement.h" />
625
+ <ClInclude Include="src\tree\xpath\XPathTokenAnywhereElement.h" />
626
+ <ClInclude Include="src\tree\xpath\XPathTokenElement.h" />
627
+ <ClInclude Include="src\tree\xpath\XPathWildcardAnywhereElement.h" />
628
+ <ClInclude Include="src\tree\xpath\XPathWildcardElement.h" />
629
+ <ClInclude Include="src\UnbufferedCharStream.h" />
630
+ <ClInclude Include="src\UnbufferedTokenStream.h" />
631
+ <ClInclude Include="src\Vocabulary.h" />
632
+ <ClInclude Include="src\WritableToken.h" />
633
+ </ItemGroup>
634
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
635
+ <ImportGroup Label="ExtensionTargets">
636
+ </ImportGroup>
637
+ </Project>