expressir 0.2.0 → 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 (459) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/rake.yml +46 -0
  3. data/.github/workflows/release.yml +75 -0
  4. data/.gitignore +2 -2
  5. data/.gitmodules +3 -0
  6. data/Gemfile +2 -0
  7. data/Rakefile +11 -0
  8. data/demo.rb +3 -1
  9. data/exe/generate-parser +48 -0
  10. data/expressir.gemspec +8 -4
  11. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/CMakeLists.txt +118 -0
  12. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2013.vcxproj +637 -0
  13. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2013.vcxproj.filters +984 -0
  14. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2015.vcxproj +652 -0
  15. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2015.vcxproj.filters +990 -0
  16. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2017.vcxproj +652 -0
  17. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2017.vcxproj.filters +990 -0
  18. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2019.vcxproj +652 -0
  19. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2019.vcxproj.filters +990 -0
  20. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp-ios/Info.plist +26 -0
  21. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp-ios/antlrcpp_ios.h +17 -0
  22. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.pbxproj +3024 -0
  23. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  24. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  25. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4.xcscheme +76 -0
  26. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4_ios.xcscheme +80 -0
  27. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4_static.xcscheme +80 -0
  28. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.cpp +10 -0
  29. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.h +167 -0
  30. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.cpp +10 -0
  31. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.h +121 -0
  32. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.cpp +34 -0
  33. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.h +27 -0
  34. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.cpp +155 -0
  35. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.h +69 -0
  36. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.cpp +61 -0
  37. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.h +59 -0
  38. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.cpp +25 -0
  39. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.h +36 -0
  40. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.cpp +414 -0
  41. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.h +200 -0
  42. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.cpp +11 -0
  43. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.h +37 -0
  44. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.cpp +195 -0
  45. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.h +158 -0
  46. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.cpp +39 -0
  47. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.h +74 -0
  48. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.cpp +78 -0
  49. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.h +79 -0
  50. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.cpp +15 -0
  51. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.h +35 -0
  52. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.cpp +333 -0
  53. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.h +466 -0
  54. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.cpp +84 -0
  55. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.h +80 -0
  56. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.cpp +64 -0
  57. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.h +99 -0
  58. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.cpp +51 -0
  59. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.h +32 -0
  60. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.cpp +18 -0
  61. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.h +24 -0
  62. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.cpp +12 -0
  63. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.h +218 -0
  64. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.cpp +19 -0
  65. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.h +45 -0
  66. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.cpp +295 -0
  67. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.h +196 -0
  68. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.cpp +75 -0
  69. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.h +52 -0
  70. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.cpp +36 -0
  71. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.h +31 -0
  72. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.cpp +92 -0
  73. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.h +88 -0
  74. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.cpp +46 -0
  75. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.h +42 -0
  76. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Parser.cpp +648 -0
  77. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Parser.h +467 -0
  78. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.cpp +306 -0
  79. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.h +179 -0
  80. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.cpp +141 -0
  81. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.h +147 -0
  82. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.cpp +53 -0
  83. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.h +38 -0
  84. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.cpp +66 -0
  85. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.h +98 -0
  86. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.cpp +167 -0
  87. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.h +164 -0
  88. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.cpp +143 -0
  89. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.h +137 -0
  90. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.cpp +27 -0
  91. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.h +32 -0
  92. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.cpp +53 -0
  93. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.h +155 -0
  94. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Token.cpp +9 -0
  95. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Token.h +92 -0
  96. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenFactory.h +30 -0
  97. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.cpp +9 -0
  98. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.h +85 -0
  99. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.cpp +11 -0
  100. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.h +137 -0
  101. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.cpp +425 -0
  102. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.h +293 -0
  103. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.cpp +211 -0
  104. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.h +123 -0
  105. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.cpp +270 -0
  106. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.h +115 -0
  107. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.cpp +104 -0
  108. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.h +193 -0
  109. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.cpp +9 -0
  110. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.h +23 -0
  111. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-common.h +137 -0
  112. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-runtime.h +167 -0
  113. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.cpp +209 -0
  114. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.h +112 -0
  115. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.cpp +113 -0
  116. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.h +148 -0
  117. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.cpp +228 -0
  118. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.h +110 -0
  119. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.cpp +64 -0
  120. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.h +50 -0
  121. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.cpp +758 -0
  122. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.h +85 -0
  123. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSerializer.cpp +621 -0
  124. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSerializer.h +61 -0
  125. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.cpp +63 -0
  126. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.h +87 -0
  127. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.cpp +72 -0
  128. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.h +133 -0
  129. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNType.h +20 -0
  130. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AbstractPredicateTransition.cpp +14 -0
  131. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AbstractPredicateTransition.h +24 -0
  132. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.cpp +33 -0
  133. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.h +33 -0
  134. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.cpp +16 -0
  135. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.h +68 -0
  136. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.cpp +82 -0
  137. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.h +43 -0
  138. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.cpp +31 -0
  139. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.h +30 -0
  140. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicBlockStartState.cpp +12 -0
  141. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicBlockStartState.h +22 -0
  142. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicState.cpp +12 -0
  143. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicState.h +21 -0
  144. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockEndState.cpp +15 -0
  145. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockEndState.h +24 -0
  146. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockStartState.cpp +9 -0
  147. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockStartState.h +21 -0
  148. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.cpp +14 -0
  149. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.h +47 -0
  150. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.cpp +14 -0
  151. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.h +70 -0
  152. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.cpp +25 -0
  153. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.h +227 -0
  154. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.cpp +17 -0
  155. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.h +30 -0
  156. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EmptyPredictionContext.cpp +35 -0
  157. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EmptyPredictionContext.h +27 -0
  158. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.cpp +35 -0
  159. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.h +39 -0
  160. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.cpp +15 -0
  161. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.h +43 -0
  162. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.cpp +158 -0
  163. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.h +109 -0
  164. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.cpp +84 -0
  165. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.h +44 -0
  166. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.cpp +628 -0
  167. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.h +210 -0
  168. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.cpp +9 -0
  169. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.h +66 -0
  170. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.cpp +107 -0
  171. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.h +115 -0
  172. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionType.h +55 -0
  173. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.cpp +55 -0
  174. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.h +63 -0
  175. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.cpp +62 -0
  176. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.h +87 -0
  177. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.cpp +63 -0
  178. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.h +82 -0
  179. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.cpp +56 -0
  180. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.h +61 -0
  181. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.cpp +47 -0
  182. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.h +57 -0
  183. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.cpp +47 -0
  184. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.h +57 -0
  185. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.cpp +56 -0
  186. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.h +61 -0
  187. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.cpp +47 -0
  188. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.h +55 -0
  189. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.cpp +56 -0
  190. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.h +55 -0
  191. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.cpp +16 -0
  192. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.h +42 -0
  193. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LoopEndState.cpp +12 -0
  194. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/LoopEndState.h +22 -0
  195. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Makefile +67 -0
  196. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.cpp +27 -0
  197. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.h +25 -0
  198. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.cpp +12 -0
  199. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.h +20 -0
  200. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.cpp +102 -0
  201. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.h +102 -0
  202. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.cpp +1366 -0
  203. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.h +904 -0
  204. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusBlockStartState.cpp +12 -0
  205. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusBlockStartState.h +25 -0
  206. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusLoopbackState.cpp +12 -0
  207. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusLoopbackState.h +22 -0
  208. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.cpp +32 -0
  209. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.h +29 -0
  210. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.cpp +17 -0
  211. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.h +62 -0
  212. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.cpp +34 -0
  213. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.h +39 -0
  214. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.cpp +662 -0
  215. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.h +254 -0
  216. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.cpp +201 -0
  217. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.h +436 -0
  218. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.cpp +179 -0
  219. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.h +60 -0
  220. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.cpp +30 -0
  221. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.h +29 -0
  222. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStartState.cpp +16 -0
  223. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStartState.h +25 -0
  224. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStopState.cpp +12 -0
  225. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStopState.h +25 -0
  226. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.cpp +37 -0
  227. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.h +40 -0
  228. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.cpp +377 -0
  229. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.h +222 -0
  230. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.cpp +32 -0
  231. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.h +30 -0
  232. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.cpp +81 -0
  233. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.h +36 -0
  234. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarBlockStartState.cpp +12 -0
  235. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarBlockStartState.h +21 -0
  236. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopEntryState.cpp +15 -0
  237. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopEntryState.h +35 -0
  238. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.cpp +19 -0
  239. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.h +21 -0
  240. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TokensStartState.cpp +12 -0
  241. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/TokensStartState.h +21 -0
  242. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.cpp +44 -0
  243. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.h +76 -0
  244. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.cpp +25 -0
  245. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.h +25 -0
  246. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.cpp +127 -0
  247. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.h +91 -0
  248. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.cpp +67 -0
  249. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.h +32 -0
  250. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.cpp +100 -0
  251. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.h +144 -0
  252. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.cpp +20 -0
  253. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.h +23 -0
  254. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.cpp +124 -0
  255. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.h +31 -0
  256. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.cpp +89 -0
  257. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.h +84 -0
  258. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.cpp +521 -0
  259. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.h +198 -0
  260. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.cpp +134 -0
  261. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.h +76 -0
  262. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.cpp +4 -0
  263. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.h +21 -0
  264. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.cpp +13 -0
  265. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.h +170 -0
  266. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.cpp +43 -0
  267. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.h +110 -0
  268. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/BitSet.h +76 -0
  269. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.cpp +248 -0
  270. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.h +78 -0
  271. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/Declarations.h +163 -0
  272. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.cpp +36 -0
  273. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.h +54 -0
  274. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/guid.cpp +303 -0
  275. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/support/guid.h +112 -0
  276. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/AbstractParseTreeVisitor.h +128 -0
  277. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNode.cpp +9 -0
  278. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNode.h +19 -0
  279. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.cpp +23 -0
  280. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.h +33 -0
  281. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.cpp +71 -0
  282. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.h +53 -0
  283. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.cpp +15 -0
  284. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.h +102 -0
  285. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.cpp +9 -0
  286. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.h +39 -0
  287. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeProperty.h +50 -0
  288. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.cpp +9 -0
  289. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.h +57 -0
  290. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.cpp +49 -0
  291. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.h +31 -0
  292. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNode.cpp +9 -0
  293. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNode.h +32 -0
  294. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.cpp +57 -0
  295. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.h +33 -0
  296. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.cpp +241 -0
  297. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.h +78 -0
  298. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.cpp +9 -0
  299. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.h +44 -0
  300. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.cpp +69 -0
  301. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.h +132 -0
  302. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.cpp +64 -0
  303. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.h +105 -0
  304. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.cpp +371 -0
  305. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.h +185 -0
  306. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.cpp +77 -0
  307. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.h +117 -0
  308. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.cpp +39 -0
  309. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.h +86 -0
  310. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.cpp +28 -0
  311. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.h +51 -0
  312. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.cpp +36 -0
  313. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.h +80 -0
  314. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.cpp +154 -0
  315. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.h +86 -0
  316. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.cpp +31 -0
  317. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.h +40 -0
  318. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp +173 -0
  319. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.g4 +64 -0
  320. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.h +56 -0
  321. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.tokens +12 -0
  322. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.cpp +13 -0
  323. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.h +22 -0
  324. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.cpp +20 -0
  325. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.h +27 -0
  326. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.cpp +30 -0
  327. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.h +26 -0
  328. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.cpp +20 -0
  329. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.h +25 -0
  330. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.cpp +33 -0
  331. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.h +26 -0
  332. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.cpp +23 -0
  333. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.h +23 -0
  334. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.cpp +24 -0
  335. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.h +23 -0
  336. data/ext/express-parser/antlrgen/Express.interp +532 -0
  337. data/ext/express-parser/antlrgen/Express.tokens +190 -0
  338. data/ext/express-parser/antlrgen/ExpressBaseListener.cpp +7 -0
  339. data/ext/express-parser/antlrgen/ExpressBaseListener.h +623 -0
  340. data/ext/express-parser/antlrgen/ExpressBaseVisitor.cpp +7 -0
  341. data/ext/express-parser/antlrgen/ExpressBaseVisitor.h +816 -0
  342. data/ext/express-parser/antlrgen/ExpressLexer.cpp +1169 -0
  343. data/ext/express-parser/antlrgen/ExpressLexer.h +85 -0
  344. data/ext/express-parser/antlrgen/ExpressLexer.interp +534 -0
  345. data/ext/express-parser/antlrgen/ExpressLexer.tokens +190 -0
  346. data/ext/express-parser/antlrgen/ExpressListener.cpp +7 -0
  347. data/ext/express-parser/antlrgen/ExpressListener.h +616 -0
  348. data/ext/express-parser/antlrgen/ExpressParser.cpp +17284 -0
  349. data/ext/express-parser/antlrgen/ExpressParser.h +3696 -0
  350. data/ext/express-parser/antlrgen/ExpressVisitor.cpp +7 -0
  351. data/ext/express-parser/antlrgen/ExpressVisitor.h +422 -0
  352. data/ext/express-parser/express_parser.cpp +17931 -0
  353. data/ext/express-parser/extconf.rb +34 -0
  354. data/lib/expressir/express.rb +0 -1
  355. data/lib/expressir/express_exp/formatter.rb +1450 -0
  356. data/lib/expressir/express_exp/parser.rb +20 -9
  357. data/lib/expressir/express_exp/visitor.rb +1601 -1253
  358. data/lib/expressir/model.rb +65 -0
  359. data/lib/expressir/model/attribute.rb +27 -0
  360. data/lib/expressir/model/constant.rb +3 -1
  361. data/lib/expressir/model/entity.rb +30 -13
  362. data/lib/expressir/model/{ref.rb → enumeration_item.rb} +2 -2
  363. data/lib/expressir/model/expressions/aggregate_initializer.rb +13 -0
  364. data/lib/expressir/model/expressions/aggregate_item.rb +15 -0
  365. data/lib/expressir/model/expressions/{attribute_qualifier.rb → attribute_reference.rb} +3 -1
  366. data/lib/expressir/model/expressions/binary_expression.rb +40 -0
  367. data/lib/expressir/model/expressions/{function_call.rb → call.rb} +3 -3
  368. data/lib/expressir/model/expressions/entity_constructor.rb +11 -11
  369. data/lib/expressir/model/expressions/{group_qualifier.rb → group_reference.rb} +3 -1
  370. data/lib/expressir/model/expressions/{index_qualifier.rb → index_reference.rb} +3 -1
  371. data/lib/expressir/model/expressions/interval.rb +17 -17
  372. data/lib/expressir/model/expressions/query_expression.rb +26 -0
  373. data/lib/expressir/model/expressions/simple_reference.rb +13 -0
  374. data/lib/expressir/model/expressions/{expression.rb → unary_expression.rb} +7 -3
  375. data/lib/expressir/model/function.rb +42 -3
  376. data/lib/expressir/model/identifier.rb +9 -0
  377. data/lib/expressir/model/{reference.rb → interface.rb} +6 -1
  378. data/lib/expressir/model/literals/binary.rb +13 -0
  379. data/lib/expressir/model/literals/integer.rb +13 -0
  380. data/lib/expressir/model/literals/logical.rb +17 -0
  381. data/lib/expressir/model/literals/real.rb +13 -0
  382. data/lib/expressir/model/literals/string.rb +15 -0
  383. data/lib/expressir/model/parameter.rb +5 -3
  384. data/lib/expressir/model/procedure.rb +42 -3
  385. data/lib/expressir/model/repository.rb +8 -0
  386. data/lib/expressir/model/rule.rb +44 -5
  387. data/lib/expressir/model/schema.rb +29 -3
  388. data/lib/expressir/model/scope.rb +17 -0
  389. data/lib/expressir/model/statements/alias.rb +10 -1
  390. data/lib/expressir/model/statements/{procedure_call.rb → call.rb} +3 -3
  391. data/lib/expressir/model/statements/case.rb +2 -2
  392. data/lib/expressir/model/statements/case_action.rb +2 -2
  393. data/lib/expressir/model/statements/if.rb +2 -2
  394. data/lib/expressir/model/statements/repeat.rb +11 -2
  395. data/lib/expressir/model/subtype_constraint.rb +13 -5
  396. data/lib/expressir/model/type.rb +10 -1
  397. data/lib/expressir/model/types/aggregate.rb +4 -2
  398. data/lib/expressir/model/types/enumeration.rb +4 -4
  399. data/lib/expressir/model/types/generic.rb +2 -2
  400. data/lib/expressir/model/types/generic_entity.rb +2 -2
  401. data/lib/expressir/model/types/select.rb +4 -4
  402. data/lib/expressir/model/unique.rb +3 -1
  403. data/lib/expressir/model/{derived.rb → variable.rb} +4 -2
  404. data/lib/expressir/model/where.rb +3 -1
  405. data/lib/expressir/version.rb +1 -1
  406. data/original/examples/syntax/remark.exp +145 -0
  407. data/original/examples/syntax/remark_formatted.exp +174 -0
  408. data/original/examples/syntax/syntax.exp +287 -272
  409. data/original/examples/syntax/syntax_formatted.exp +1187 -0
  410. data/spec/expressir/express_exp/ap233_spec.rb +1 -1
  411. data/spec/expressir/express_exp/format_remark_spec.rb +28 -0
  412. data/spec/expressir/express_exp/format_syntax_spec.rb +28 -0
  413. data/spec/expressir/express_exp/parse_remark_spec.rb +345 -0
  414. data/spec/expressir/express_exp/parse_syntax_spec.rb +2998 -0
  415. data/spec/expressir/model/find_spec.rb +110 -0
  416. metadata +407 -65
  417. data/.github/workflows/macos.yml +0 -38
  418. data/.github/workflows/ubuntu.yml +0 -56
  419. data/.github/workflows/windows.yml +0 -40
  420. data/generate-parser.sh +0 -29
  421. data/lib/expressir/express_exp/generated/ExpressBaseVisitor.rb +0 -779
  422. data/lib/expressir/express_exp/generated/ExpressLexer.rb +0 -841
  423. data/lib/expressir/express_exp/generated/ExpressParser.rb +0 -12136
  424. data/lib/expressir/express_exp/generated/ExpressVisitor.rb +0 -394
  425. data/lib/expressir/model/explicit.rb +0 -15
  426. data/lib/expressir/model/expressions/aggregate_element.rb +0 -15
  427. data/lib/expressir/model/expressions/qualified_ref.rb +0 -15
  428. data/lib/expressir/model/expressions/query.rb +0 -17
  429. data/lib/expressir/model/expressions/unknown.rb +0 -8
  430. data/lib/expressir/model/inverse.rb +0 -15
  431. data/lib/expressir/model/local.rb +0 -15
  432. data/lib/expressir/model/operators/addition.rb +0 -8
  433. data/lib/expressir/model/operators/and.rb +0 -8
  434. data/lib/expressir/model/operators/andor.rb +0 -8
  435. data/lib/expressir/model/operators/combine.rb +0 -8
  436. data/lib/expressir/model/operators/equal.rb +0 -8
  437. data/lib/expressir/model/operators/exponentiation.rb +0 -8
  438. data/lib/expressir/model/operators/greater_than.rb +0 -8
  439. data/lib/expressir/model/operators/greater_than_or_equal.rb +0 -8
  440. data/lib/expressir/model/operators/in.rb +0 -8
  441. data/lib/expressir/model/operators/instance_equal.rb +0 -8
  442. data/lib/expressir/model/operators/instance_not_equal.rb +0 -8
  443. data/lib/expressir/model/operators/integer_division.rb +0 -8
  444. data/lib/expressir/model/operators/less_than.rb +0 -8
  445. data/lib/expressir/model/operators/less_than_or_equal.rb +0 -8
  446. data/lib/expressir/model/operators/like.rb +0 -8
  447. data/lib/expressir/model/operators/modulo.rb +0 -8
  448. data/lib/expressir/model/operators/multiplication.rb +0 -8
  449. data/lib/expressir/model/operators/not.rb +0 -8
  450. data/lib/expressir/model/operators/not_equal.rb +0 -8
  451. data/lib/expressir/model/operators/oneof.rb +0 -8
  452. data/lib/expressir/model/operators/or.rb +0 -8
  453. data/lib/expressir/model/operators/real_division.rb +0 -8
  454. data/lib/expressir/model/operators/subtraction.rb +0 -8
  455. data/lib/expressir/model/operators/unary_minus.rb +0 -8
  456. data/lib/expressir/model/operators/unary_plus.rb +0 -8
  457. data/lib/expressir/model/operators/xor.rb +0 -8
  458. data/lib/expressir/model/use.rb +0 -13
  459. data/spec/expressir/express_exp/syntax_spec.rb +0 -2640
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e3ede6076c606ea8bdfcc162f57e3de574585fb84c0437c5e1245ac21444f17b
4
- data.tar.gz: e28370f6221ae7eab422172a10fed23b9f1c2bfbb527bc35fd6995aac6432a1c
3
+ metadata.gz: 567720b9ed58f631e97fe20795af2c4b99850cadb1e6fef158d8d264cde9a201
4
+ data.tar.gz: a9ecc46df11220f963c69235c1b27aa7d97bad00b5b961f16bc1548feed2e2a7
5
5
  SHA512:
6
- metadata.gz: 419b4847af79472766352727835bf67f1035cf4d906dd5b6cc126f5e2ff4ca5bcd166a8b9879f0c8bb51f830e295b3e2e5683bbc12de883b50f70bcbdaf945a3
7
- data.tar.gz: 7adc8338226c77ceae09d7eaeddc73e3db7740dcea27caee31d0069f49e2182c93be77252ee37330bc7edea9a7eff0158200de739adafda423f3ab4f8e5a1c6c
6
+ metadata.gz: 278e45df08db09c8e84d5c61173315e80a68bdadd1c729940f42e07a684255b15cf1ab82edd6d241304f896e5a06e71a00008d8975f20e7e513b314db69c1afc
7
+ data.tar.gz: 642fdc300642949ab9d6eeb9d3142ac0972383930b56909f3aafada88164527fb74440b94eb61504e584e2b80452c2defbc9d5fab8445bba8bd7f58d58c0fb00
@@ -0,0 +1,46 @@
1
+ name: rake
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ tags:
7
+ - '*'
8
+ pull_request:
9
+
10
+ jobs:
11
+ rake:
12
+ name: test on ruby-${{ matrix.ruby }} ${{ matrix.os }}
13
+ runs-on: ${{ matrix.os }}
14
+ continue-on-error: ${{ matrix.experimental }}
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ ruby: [ '2.7', '2.6', '2.5', '2.4' ]
19
+ os: [ ubuntu-latest, windows-latest, macos-latest ]
20
+ experimental: [ false ]
21
+
22
+ steps:
23
+ - uses: actions/checkout@v2
24
+ with:
25
+ submodules: recursive
26
+
27
+ - uses: ruby/setup-ruby@v1
28
+ with:
29
+ ruby-version: ${{ matrix.ruby }}
30
+
31
+ - uses: actions/cache@v2
32
+ with:
33
+ path: vendor/bundle
34
+ key: bundle-${{ matrix.os }}-${{ matrix.ruby }}-${{ hashFiles('**/*.gemspec') }}
35
+ restore-keys: bundle-${{ matrix.os }}-${{ matrix.ruby }}
36
+
37
+ - if: matrix.os == 'macos-latest'
38
+ run: brew install autoconf automake libtool
39
+
40
+ - run: bundle config set path 'vendor/bundle'
41
+
42
+ - run: bundle install --jobs 4 --retry 3
43
+
44
+ - run: bundle exec rake compile
45
+
46
+ - run: bundle exec rake
@@ -0,0 +1,75 @@
1
+ name: release
2
+
3
+ on:
4
+ push:
5
+ tags: [ v* ]
6
+ workflow_dispatch:
7
+
8
+ jobs:
9
+ pack:
10
+ runs-on: ${{ matrix.os }}
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ os: [ ubuntu-latest, windows-latest, macos-latest ]
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ with:
18
+ submodules: recursive
19
+
20
+ - uses: ruby/setup-ruby@v1
21
+ with:
22
+ ruby-version: '2.4'
23
+
24
+ - if: matrix.os == 'macos-latest'
25
+ run: brew install autoconf automake libtool
26
+
27
+ - run: bundle install --jobs 4 --retry 3
28
+
29
+ - run: bundle exec rake native gem
30
+
31
+ - run: bundle exec rake
32
+
33
+ - uses: actions/upload-artifact@v2
34
+ with:
35
+ name: pkg-${{ matrix.os }}
36
+ path: pkg/*.gem
37
+
38
+ release:
39
+ runs-on: ubuntu-18.04
40
+ needs: pack
41
+ steps:
42
+ - uses: actions/download-artifact@v2
43
+ with:
44
+ name: pkg-ubuntu-latest
45
+ path: pkg
46
+
47
+ - uses: actions/download-artifact@v2
48
+ with:
49
+ name: pkg-windows-latest
50
+ path: pkg
51
+
52
+ - uses: actions/download-artifact@v2
53
+ with:
54
+ name: pkg-macos-latest
55
+ path: pkg
56
+
57
+ - uses: ruby/setup-ruby@v1
58
+ with:
59
+ ruby-version: '2.6'
60
+
61
+ - run: ls -l pkg/
62
+
63
+ - name: Publish to rubygems.org
64
+ env:
65
+ RUBYGEMS_API_KEY: ${{secrets.LUTAML_CI_RUBYGEMS_API_KEY}}
66
+ run: |
67
+ mkdir -p ~/.gem
68
+ cat <<'EOF' > ~/.gem/credentials
69
+ ---
70
+ :rubygems_api_key: ${RUBYGEMS_API_KEY}
71
+ EOF
72
+ chmod 0600 ~/.gem/credentials
73
+ gem -v
74
+ gem signin
75
+ for gem in pkg/*.gem; do gem push $gem -V -k rubygems ; done
data/.gitignore CHANGED
@@ -8,8 +8,8 @@
8
8
  /tmp/
9
9
  /Gemfile.lock
10
10
  /.idea
11
- /lib/expressir/express_exp/generated/*.interp
12
- /lib/expressir/express_exp/generated/*.tokens
11
+ /lib/express_parser.bundle
12
+ /original/examples/syntax/*-pretty.exp
13
13
 
14
14
  # rspec failure tracking
15
15
  .rspec_status
@@ -0,0 +1,3 @@
1
+ [submodule "ext/express-parser/antlr4-upstream"]
2
+ path = ext/express-parser/antlr4-upstream
3
+ url = git://github.com/antlr/antlr4
data/Gemfile CHANGED
@@ -2,3 +2,5 @@ source "https://rubygems.org"
2
2
 
3
3
  # Specify your gem's dependencies in reeper.gemspec
4
4
  gemspec
5
+
6
+ gem "rake-compiler", git: "https://github.com/larskanis/rake-compiler", branch: "fix-native-version"
data/Rakefile CHANGED
@@ -1,6 +1,17 @@
1
1
  require "bundler/gem_tasks"
2
2
  require "rspec/core/rake_task"
3
+ require "rake/extensiontask"
3
4
 
4
5
  RSpec::Core::RakeTask.new(:spec)
5
6
 
6
7
  task :default => :spec
8
+
9
+ spec = Gem::Specification.load("expressir.gemspec")
10
+
11
+ # add your default gem packing task
12
+ Gem::PackageTask.new(spec) do |pkg|
13
+ end
14
+
15
+ ext = Rake::ExtensionTask.new("express_parser", spec) do |ext|
16
+ ext.ext_dir = "ext/express-parser"
17
+ end
data/demo.rb CHANGED
@@ -3,7 +3,9 @@
3
3
  require 'expressir'
4
4
  require 'expressir/express_exp/parser'
5
5
 
6
- file = '/Users/mulgogi/src/mn/annotated-express/data/resources/action_schema/action_schema.exp'
6
+ # This file is from:
7
+ # https://github.com/metanorma/annotated-express/blob/master/data/resources/action_schema/action_schema.exp
8
+ file = 'action_schema.exp'
7
9
 
8
10
  # repo = Expressir::ExpressExp::Parser.from_exp(file)
9
11
  # schema = repo.schemas.find{|schema| schema.id == "support_resource_schema"}
@@ -0,0 +1,48 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'fileutils'
4
+ require 'antlr4-native'
5
+
6
+ grammar_file = ARGV.shift
7
+
8
+ # ANTLR does weird things if the grammar file isn't in the current working directory
9
+ temp_grammar_file = File.join(FileUtils.pwd(), File.basename(grammar_file))
10
+ FileUtils.cp(grammar_file, temp_grammar_file)
11
+
12
+ # generate parser
13
+ generator = Antlr4Native::Generator.new(
14
+ grammar_files: [File.basename(temp_grammar_file)],
15
+ output_dir: 'ext',
16
+ parser_root_method: 'syntax'
17
+ )
18
+ generator.generate
19
+
20
+ # fix issues with generated parser
21
+ parser_source_file = File.join(*%w(ext express-parser express_parser.cpp))
22
+ parser_source_lines = File.read(parser_source_file).split(/\n/)
23
+
24
+ # - add ParserProxy tokens method, simple compensation for missing exposed BufferedTokenStream
25
+ i = parser_source_lines.index{|x| x == ' Object syntax() {'}
26
+ parser_source_lines[i + 6] += "\n" + <<~CPP.split(/\n/).map{|x| x != "" ? " " + x : x}.join("\n") + "\n"
27
+ Array getTokens() {
28
+ Array a;
29
+
30
+ std::vector<Token*> tokens = this -> tokens -> getTokens();
31
+
32
+ for (auto &token : tokens) {
33
+ a.push(token);
34
+ }
35
+
36
+ return a;
37
+ }
38
+ CPP
39
+ i = parser_source_lines.index{|x| x == ' .define_method("syntax", &ParserProxy::syntax)'}
40
+ parser_source_lines[i] += "\n" + <<~CPP.split(/\n/).map{|x| x != "" ? " " + x : x}.join("\n")
41
+ .define_method("tokens", &ParserProxy::getTokens)
42
+ CPP
43
+
44
+ # write fixed parser file
45
+ File.write(parser_source_file, parser_source_lines.join("\n") + "\n")
46
+
47
+ # cleanup
48
+ FileUtils.rm(temp_grammar_file)
@@ -17,20 +17,24 @@ 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"
24
26
  spec.require_paths = ["lib"]
25
27
  spec.executables = %w[expressir]
26
28
 
29
+ spec.extensions = File.join(*%w(ext express-parser extconf.rb))
30
+
27
31
  spec.add_runtime_dependency "thor", "~> 1.0"
28
- spec.add_runtime_dependency "activesupport", "~> 5.0"
29
- spec.add_runtime_dependency "antlr4-runtime", "~> 0.2.11"
32
+ spec.add_runtime_dependency "rice", "~> 2.2.0"
33
+ spec.add_development_dependency "antlr4-native", "~> 1.1.0"
30
34
  spec.add_development_dependency "nokogiri", "~> 1.10"
31
-
32
35
  spec.add_development_dependency "bundler", "~> 2.0"
33
36
  spec.add_development_dependency "pry", "~> 0.12.2"
34
37
  spec.add_development_dependency "rake", "~> 10.0"
38
+ spec.add_development_dependency "rake-compiler", "~> 1.1.1"
35
39
  spec.add_development_dependency "rspec", "~> 3.0"
36
40
  end
@@ -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>