expressir 1.3.0 → 1.3.1

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 (377) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/codeql.yml +47 -0
  3. data/.github/workflows/rake.yml +9 -8
  4. data/.github/workflows/release.yml +13 -10
  5. data/.github/workflows/stress.yml +53 -0
  6. data/.gitignore +1 -1
  7. data/.gitmodules +2 -2
  8. data/exe/generate-parser +1 -1
  9. data/expressir.gemspec +4 -4
  10. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/CMakeLists.txt +191 -0
  11. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2019.vcxproj +11 -26
  12. data/ext/{express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2013.vcxproj.filters → express_parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2019.vcxproj.filters} +52 -85
  13. data/ext/{express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2015.vcxproj → express_parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2022.vcxproj} +38 -45
  14. data/ext/{express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2015.vcxproj.filters → express_parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2022.vcxproj.filters} +42 -81
  15. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.pbxproj +177 -177
  16. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.noarch.nuspec +23 -0
  17. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.noarch.targets +8 -0
  18. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.shared.nuspec +30 -0
  19. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.shared.props +21 -0
  20. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.shared.targets +44 -0
  21. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.static.nuspec +29 -0
  22. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/ANTLR4.Runtime.cpp.static.targets +44 -0
  23. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/antlr4.jpg +0 -0
  24. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/nuget/pack.cmd +93 -0
  25. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/FlatHashMap.h +57 -0
  26. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/FlatHashSet.h +57 -0
  27. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/Parser.cpp +4 -2
  28. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.cpp +3 -2
  29. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/Recognizer.h +2 -1
  30. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/Version.h +1 -1
  31. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-common.h +5 -2
  32. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/antlr4-runtime.h +1 -2
  33. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.cpp +2 -1
  34. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATN.h +4 -3
  35. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.cpp +4 -4
  36. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.cpp +9 -8
  37. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfigSet.h +2 -1
  38. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.cpp +2 -17
  39. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.cpp +0 -1
  40. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.cpp +30 -10
  41. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.cpp +1 -1
  42. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/atn/HashUtils.h +18 -0
  43. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.cpp +18 -12
  44. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.cpp +1 -4
  45. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.cpp +1 -8
  46. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.cpp +68 -38
  47. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.cpp +23 -1
  48. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextCache.h +3 -4
  49. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextMergeCache.h +3 -3
  50. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.cpp +2 -2
  51. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.cpp +11 -11
  52. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContext.h +11 -7
  53. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.cpp +1 -8
  54. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.cpp +1 -1
  55. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFAState.h +2 -1
  56. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/internal/Synchronization.cpp +100 -0
  57. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/internal/Synchronization.h +154 -0
  58. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.cpp +1 -1
  59. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.cpp +18 -18
  60. data/ext/express_parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp +180 -0
  61. data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.h +16 -10
  62. data/ext/{express-parser → express_parser}/express_parser.cpp +17 -15
  63. data/ext/{express-parser → express_parser}/extconf.rb +1 -0
  64. data/lib/expressir/express/parser.rb +0 -1
  65. data/lib/expressir/express/visitor.rb +11 -8
  66. data/lib/expressir/model/declarations/schema.rb +3 -3
  67. data/lib/expressir/model/model_element.rb +4 -4
  68. data/lib/expressir/version.rb +1 -1
  69. data/lib/expressir.rb +20 -0
  70. data/rakelib/antlr4-native.rake +24 -12
  71. data/rakelib/cross-ruby.rake +1 -1
  72. data/spec/acceptance/version_spec.rb +3 -0
  73. data/spec/expressir/express/cache_spec.rb +2 -2
  74. data/spec/expressir/express/formatter_spec.rb +0 -2
  75. metadata +359 -347
  76. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/CMakeLists.txt +0 -153
  77. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2013.vcxproj +0 -643
  78. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2017.vcxproj +0 -659
  79. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2017.vcxproj.filters +0 -987
  80. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/antlr4cpp-vs2019.vcxproj.filters +0 -987
  81. data/ext/express-parser/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.cpp +0 -182
  82. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/antlrcpp-ios/Info.plist +0 -0
  83. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/antlrcpp-ios/antlrcpp_ios.h +0 -0
  84. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -0
  85. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -0
  86. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4.xcscheme +0 -0
  87. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4_ios.xcscheme +0 -0
  88. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/antlrcpp.xcodeproj/xcshareddata/xcschemes/antlr4_static.xcscheme +0 -0
  89. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.cpp +0 -0
  90. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorListener.h +0 -0
  91. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.cpp +0 -0
  92. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRErrorStrategy.h +0 -0
  93. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.cpp +0 -0
  94. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRFileStream.h +0 -0
  95. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.cpp +0 -0
  96. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ANTLRInputStream.h +0 -0
  97. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.cpp +0 -0
  98. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/BailErrorStrategy.h +0 -0
  99. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.cpp +0 -0
  100. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/BaseErrorListener.h +0 -0
  101. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.cpp +0 -0
  102. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/BufferedTokenStream.h +0 -0
  103. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.cpp +0 -0
  104. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/CharStream.h +0 -0
  105. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.cpp +0 -0
  106. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/CommonToken.h +0 -0
  107. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.cpp +0 -0
  108. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenFactory.h +0 -0
  109. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.cpp +0 -0
  110. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/CommonTokenStream.h +0 -0
  111. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.cpp +0 -0
  112. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ConsoleErrorListener.h +0 -0
  113. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.cpp +0 -0
  114. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/DefaultErrorStrategy.h +0 -0
  115. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.cpp +0 -0
  116. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/DiagnosticErrorListener.h +0 -0
  117. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.cpp +0 -0
  118. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/Exceptions.h +0 -0
  119. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.cpp +0 -0
  120. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/FailedPredicateException.h +0 -0
  121. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.cpp +0 -0
  122. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/InputMismatchException.h +0 -0
  123. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.cpp +0 -0
  124. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/IntStream.h +0 -0
  125. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.cpp +0 -0
  126. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/InterpreterRuleContext.h +0 -0
  127. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.cpp +0 -0
  128. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/Lexer.h +0 -0
  129. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.cpp +0 -0
  130. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/LexerInterpreter.h +0 -0
  131. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.cpp +0 -0
  132. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/LexerNoViableAltException.h +0 -0
  133. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.cpp +0 -0
  134. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ListTokenSource.h +0 -0
  135. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.cpp +0 -0
  136. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/NoViableAltException.h +0 -0
  137. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/Parser.h +0 -0
  138. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.cpp +0 -0
  139. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ParserInterpreter.h +0 -0
  140. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.cpp +0 -0
  141. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ParserRuleContext.h +0 -0
  142. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.cpp +0 -0
  143. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/ProxyErrorListener.h +0 -0
  144. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.cpp +0 -0
  145. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/RecognitionException.h +0 -0
  146. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.cpp +0 -0
  147. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/RuleContext.h +0 -0
  148. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.cpp +0 -0
  149. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/RuleContextWithAltNum.h +0 -0
  150. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.cpp +0 -0
  151. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/RuntimeMetaData.h +0 -0
  152. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/Token.cpp +0 -0
  153. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/Token.h +0 -0
  154. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/TokenFactory.h +0 -0
  155. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.cpp +0 -0
  156. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/TokenSource.h +0 -0
  157. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.cpp +0 -0
  158. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/TokenStream.h +0 -0
  159. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.cpp +0 -0
  160. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/TokenStreamRewriter.h +0 -0
  161. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.cpp +0 -0
  162. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedCharStream.h +0 -0
  163. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.cpp +0 -0
  164. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/UnbufferedTokenStream.h +0 -0
  165. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.cpp +0 -0
  166. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/Vocabulary.h +0 -0
  167. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.cpp +0 -0
  168. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/WritableToken.h +0 -0
  169. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNConfig.h +0 -0
  170. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializationOptions.h +0 -0
  171. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNDeserializer.h +0 -0
  172. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.cpp +0 -0
  173. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNSimulator.h +0 -0
  174. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.cpp +0 -0
  175. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNState.h +0 -0
  176. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNStateType.cpp +0 -0
  177. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNStateType.h +0 -0
  178. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ATNType.h +0 -0
  179. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.cpp +0 -0
  180. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ActionTransition.h +0 -0
  181. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.cpp +0 -0
  182. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/AmbiguityInfo.h +0 -0
  183. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ArrayPredictionContext.h +0 -0
  184. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.cpp +0 -0
  185. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/AtomTransition.h +0 -0
  186. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicBlockStartState.h +0 -0
  187. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/BasicState.h +0 -0
  188. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockEndState.h +0 -0
  189. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/BlockStartState.h +0 -0
  190. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.cpp +0 -0
  191. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ContextSensitivityInfo.h +0 -0
  192. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.cpp +0 -0
  193. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionEventInfo.h +0 -0
  194. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.cpp +0 -0
  195. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionInfo.h +0 -0
  196. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/DecisionState.h +0 -0
  197. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.cpp +0 -0
  198. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/EpsilonTransition.h +0 -0
  199. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.cpp +0 -0
  200. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ErrorInfo.h +0 -0
  201. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.cpp +0 -0
  202. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LL1Analyzer.h +0 -0
  203. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.cpp +0 -0
  204. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNConfig.h +0 -0
  205. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerATNSimulator.h +0 -0
  206. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.cpp +0 -0
  207. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerAction.h +0 -0
  208. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionExecutor.h +0 -0
  209. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerActionType.h +0 -0
  210. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.cpp +0 -0
  211. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerChannelAction.h +0 -0
  212. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.cpp +0 -0
  213. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerCustomAction.h +0 -0
  214. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerIndexedCustomAction.h +0 -0
  215. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.cpp +0 -0
  216. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerModeAction.h +0 -0
  217. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.cpp +0 -0
  218. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerMoreAction.h +0 -0
  219. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.cpp +0 -0
  220. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPopModeAction.h +0 -0
  221. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.cpp +0 -0
  222. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerPushModeAction.h +0 -0
  223. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.cpp +0 -0
  224. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerSkipAction.h +0 -0
  225. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.cpp +0 -0
  226. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LexerTypeAction.h +0 -0
  227. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.cpp +0 -0
  228. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LookaheadEventInfo.h +0 -0
  229. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/LoopEndState.h +0 -0
  230. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.cpp +0 -0
  231. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/NotSetTransition.h +0 -0
  232. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.cpp +0 -0
  233. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/OrderedATNConfigSet.h +0 -0
  234. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.cpp +0 -0
  235. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParseInfo.h +0 -0
  236. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulator.h +0 -0
  237. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ParserATNSimulatorOptions.h +0 -0
  238. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusBlockStartState.h +0 -0
  239. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PlusLoopbackState.h +0 -0
  240. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.cpp +0 -0
  241. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PrecedencePredicateTransition.h +0 -0
  242. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.cpp +0 -0
  243. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateEvalInfo.h +0 -0
  244. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.cpp +0 -0
  245. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredicateTransition.h +0 -0
  246. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContext.h +0 -0
  247. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextCache.cpp +0 -0
  248. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextMergeCache.cpp +0 -0
  249. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextMergeCacheOptions.h +0 -0
  250. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionContextType.h +0 -0
  251. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/PredictionMode.h +0 -0
  252. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.cpp +0 -0
  253. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/ProfilingATNSimulator.h +0 -0
  254. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.cpp +0 -0
  255. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/RangeTransition.h +0 -0
  256. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStartState.h +0 -0
  257. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleStopState.h +0 -0
  258. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.cpp +0 -0
  259. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/RuleTransition.h +0 -0
  260. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/SemanticContextType.h +0 -0
  261. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/SerializedATNView.h +0 -0
  262. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.cpp +0 -0
  263. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/SetTransition.h +0 -0
  264. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/SingletonPredictionContext.h +0 -0
  265. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarBlockStartState.h +0 -0
  266. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopEntryState.h +0 -0
  267. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.cpp +0 -0
  268. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/StarLoopbackState.h +0 -0
  269. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/TokensStartState.h +0 -0
  270. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.cpp +0 -0
  271. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/Transition.h +0 -0
  272. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/TransitionType.cpp +0 -0
  273. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/TransitionType.h +0 -0
  274. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.cpp +0 -0
  275. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/atn/WildcardTransition.h +0 -0
  276. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.cpp +0 -0
  277. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFA.h +0 -0
  278. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.cpp +0 -0
  279. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/dfa/DFASerializer.h +0 -0
  280. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.cpp +0 -0
  281. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/dfa/LexerDFASerializer.h +0 -0
  282. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.cpp +0 -0
  283. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/misc/InterpreterDataReader.h +0 -0
  284. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.cpp +0 -0
  285. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/misc/Interval.h +0 -0
  286. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/misc/IntervalSet.h +0 -0
  287. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/misc/MurmurHash.h +0 -0
  288. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.cpp +0 -0
  289. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/misc/Predicate.h +0 -0
  290. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.cpp +0 -0
  291. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/support/Any.h +0 -0
  292. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.cpp +0 -0
  293. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/support/Arrays.h +0 -0
  294. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/support/BitSet.h +0 -0
  295. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.cpp +0 -0
  296. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/support/CPPUtils.h +0 -0
  297. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/support/Casts.h +0 -0
  298. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/support/Declarations.h +0 -0
  299. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.cpp +0 -0
  300. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/support/StringUtils.h +0 -0
  301. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/support/Unicode.h +0 -0
  302. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/support/Utf8.cpp +0 -0
  303. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/support/Utf8.h +0 -0
  304. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/AbstractParseTreeVisitor.h +0 -0
  305. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNode.h +0 -0
  306. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.cpp +0 -0
  307. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/ErrorNodeImpl.h +0 -0
  308. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.cpp +0 -0
  309. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/IterativeParseTreeWalker.h +0 -0
  310. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.cpp +0 -0
  311. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTree.h +0 -0
  312. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.cpp +0 -0
  313. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeListener.h +0 -0
  314. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeProperty.h +0 -0
  315. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeType.h +0 -0
  316. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.cpp +0 -0
  317. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeVisitor.h +0 -0
  318. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.cpp +0 -0
  319. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/ParseTreeWalker.h +0 -0
  320. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNode.h +0 -0
  321. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.cpp +0 -0
  322. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/TerminalNodeImpl.h +0 -0
  323. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.cpp +0 -0
  324. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/Trees.h +0 -0
  325. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.cpp +0 -0
  326. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/Chunk.h +0 -0
  327. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.cpp +0 -0
  328. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreeMatch.h +0 -0
  329. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.cpp +0 -0
  330. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePattern.h +0 -0
  331. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.cpp +0 -0
  332. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/ParseTreePatternMatcher.h +0 -0
  333. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.cpp +0 -0
  334. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/RuleTagToken.h +0 -0
  335. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.cpp +0 -0
  336. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TagChunk.h +0 -0
  337. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.cpp +0 -0
  338. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TextChunk.h +0 -0
  339. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.cpp +0 -0
  340. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/pattern/TokenTagToken.h +0 -0
  341. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.cpp +0 -0
  342. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPath.h +0 -0
  343. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.cpp +0 -0
  344. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathElement.h +0 -0
  345. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.g4 +0 -0
  346. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexer.tokens +0 -0
  347. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.cpp +0 -0
  348. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathLexerErrorListener.h +0 -0
  349. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.cpp +0 -0
  350. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleAnywhereElement.h +0 -0
  351. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.cpp +0 -0
  352. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathRuleElement.h +0 -0
  353. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.cpp +0 -0
  354. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenAnywhereElement.h +0 -0
  355. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.cpp +0 -0
  356. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathTokenElement.h +0 -0
  357. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.cpp +0 -0
  358. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardAnywhereElement.h +0 -0
  359. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.cpp +0 -0
  360. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/src/tree/xpath/XPathWildcardElement.h +0 -0
  361. /data/ext/{express-parser → express_parser}/antlr4-upstream/runtime/Cpp/runtime/tests/Utf8Test.cpp +0 -0
  362. /data/ext/{express-parser → express_parser}/antlrgen/Express.interp +0 -0
  363. /data/ext/{express-parser → express_parser}/antlrgen/Express.tokens +0 -0
  364. /data/ext/{express-parser → express_parser}/antlrgen/ExpressBaseListener.cpp +0 -0
  365. /data/ext/{express-parser → express_parser}/antlrgen/ExpressBaseListener.h +0 -0
  366. /data/ext/{express-parser → express_parser}/antlrgen/ExpressBaseVisitor.cpp +0 -0
  367. /data/ext/{express-parser → express_parser}/antlrgen/ExpressBaseVisitor.h +0 -0
  368. /data/ext/{express-parser → express_parser}/antlrgen/ExpressLexer.cpp +0 -0
  369. /data/ext/{express-parser → express_parser}/antlrgen/ExpressLexer.h +0 -0
  370. /data/ext/{express-parser → express_parser}/antlrgen/ExpressLexer.interp +0 -0
  371. /data/ext/{express-parser → express_parser}/antlrgen/ExpressLexer.tokens +0 -0
  372. /data/ext/{express-parser → express_parser}/antlrgen/ExpressListener.cpp +0 -0
  373. /data/ext/{express-parser → express_parser}/antlrgen/ExpressListener.h +0 -0
  374. /data/ext/{express-parser → express_parser}/antlrgen/ExpressParser.cpp +0 -0
  375. /data/ext/{express-parser → express_parser}/antlrgen/ExpressParser.h +0 -0
  376. /data/ext/{express-parser → express_parser}/antlrgen/ExpressVisitor.cpp +0 -0
  377. /data/ext/{express-parser → express_parser}/antlrgen/ExpressVisitor.h +0 -0
@@ -29,12 +29,6 @@
29
29
  276E5D3D1CDB57AA003FF4B4 /* ANTLRInputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C111CDB57AA003FF4B4 /* ANTLRInputStream.h */; };
30
30
  276E5D3E1CDB57AA003FF4B4 /* ANTLRInputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C111CDB57AA003FF4B4 /* ANTLRInputStream.h */; };
31
31
  276E5D3F1CDB57AA003FF4B4 /* ANTLRInputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C111CDB57AA003FF4B4 /* ANTLRInputStream.h */; settings = {ATTRIBUTES = (Public, ); }; };
32
- 276E5D401CDB57AA003FF4B4 /* AbstractPredicateTransition.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C131CDB57AA003FF4B4 /* AbstractPredicateTransition.cpp */; };
33
- 276E5D411CDB57AA003FF4B4 /* AbstractPredicateTransition.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C131CDB57AA003FF4B4 /* AbstractPredicateTransition.cpp */; };
34
- 276E5D421CDB57AA003FF4B4 /* AbstractPredicateTransition.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C131CDB57AA003FF4B4 /* AbstractPredicateTransition.cpp */; };
35
- 276E5D431CDB57AA003FF4B4 /* AbstractPredicateTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C141CDB57AA003FF4B4 /* AbstractPredicateTransition.h */; };
36
- 276E5D441CDB57AA003FF4B4 /* AbstractPredicateTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C141CDB57AA003FF4B4 /* AbstractPredicateTransition.h */; };
37
- 276E5D451CDB57AA003FF4B4 /* AbstractPredicateTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C141CDB57AA003FF4B4 /* AbstractPredicateTransition.h */; settings = {ATTRIBUTES = (Public, ); }; };
38
32
  276E5D461CDB57AA003FF4B4 /* ActionTransition.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C151CDB57AA003FF4B4 /* ActionTransition.cpp */; };
39
33
  276E5D471CDB57AA003FF4B4 /* ActionTransition.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C151CDB57AA003FF4B4 /* ActionTransition.cpp */; };
40
34
  276E5D481CDB57AA003FF4B4 /* ActionTransition.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C151CDB57AA003FF4B4 /* ActionTransition.cpp */; };
@@ -83,12 +77,6 @@
83
77
  276E5D731CDB57AA003FF4B4 /* ATNDeserializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C241CDB57AA003FF4B4 /* ATNDeserializer.h */; };
84
78
  276E5D741CDB57AA003FF4B4 /* ATNDeserializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C241CDB57AA003FF4B4 /* ATNDeserializer.h */; };
85
79
  276E5D751CDB57AA003FF4B4 /* ATNDeserializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C241CDB57AA003FF4B4 /* ATNDeserializer.h */; settings = {ATTRIBUTES = (Public, ); }; };
86
- 276E5D761CDB57AA003FF4B4 /* ATNSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C251CDB57AA003FF4B4 /* ATNSerializer.cpp */; };
87
- 276E5D771CDB57AA003FF4B4 /* ATNSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C251CDB57AA003FF4B4 /* ATNSerializer.cpp */; };
88
- 276E5D781CDB57AA003FF4B4 /* ATNSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C251CDB57AA003FF4B4 /* ATNSerializer.cpp */; };
89
- 276E5D791CDB57AA003FF4B4 /* ATNSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C261CDB57AA003FF4B4 /* ATNSerializer.h */; };
90
- 276E5D7A1CDB57AA003FF4B4 /* ATNSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C261CDB57AA003FF4B4 /* ATNSerializer.h */; };
91
- 276E5D7B1CDB57AA003FF4B4 /* ATNSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C261CDB57AA003FF4B4 /* ATNSerializer.h */; settings = {ATTRIBUTES = (Public, ); }; };
92
80
  276E5D7C1CDB57AA003FF4B4 /* ATNSimulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C271CDB57AA003FF4B4 /* ATNSimulator.cpp */; };
93
81
  276E5D7D1CDB57AA003FF4B4 /* ATNSimulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C271CDB57AA003FF4B4 /* ATNSimulator.cpp */; };
94
82
  276E5D7E1CDB57AA003FF4B4 /* ATNSimulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C271CDB57AA003FF4B4 /* ATNSimulator.cpp */; };
@@ -110,21 +98,12 @@
110
98
  276E5D911CDB57AA003FF4B4 /* AtomTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C2E1CDB57AA003FF4B4 /* AtomTransition.h */; };
111
99
  276E5D921CDB57AA003FF4B4 /* AtomTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C2E1CDB57AA003FF4B4 /* AtomTransition.h */; };
112
100
  276E5D931CDB57AA003FF4B4 /* AtomTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C2E1CDB57AA003FF4B4 /* AtomTransition.h */; settings = {ATTRIBUTES = (Public, ); }; };
113
- 276E5D941CDB57AA003FF4B4 /* BasicBlockStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C2F1CDB57AA003FF4B4 /* BasicBlockStartState.cpp */; };
114
- 276E5D951CDB57AA003FF4B4 /* BasicBlockStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C2F1CDB57AA003FF4B4 /* BasicBlockStartState.cpp */; };
115
- 276E5D961CDB57AA003FF4B4 /* BasicBlockStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C2F1CDB57AA003FF4B4 /* BasicBlockStartState.cpp */; };
116
101
  276E5D971CDB57AA003FF4B4 /* BasicBlockStartState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C301CDB57AA003FF4B4 /* BasicBlockStartState.h */; };
117
102
  276E5D981CDB57AA003FF4B4 /* BasicBlockStartState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C301CDB57AA003FF4B4 /* BasicBlockStartState.h */; };
118
103
  276E5D991CDB57AA003FF4B4 /* BasicBlockStartState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C301CDB57AA003FF4B4 /* BasicBlockStartState.h */; settings = {ATTRIBUTES = (Public, ); }; };
119
- 276E5D9A1CDB57AA003FF4B4 /* BasicState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C311CDB57AA003FF4B4 /* BasicState.cpp */; };
120
- 276E5D9B1CDB57AA003FF4B4 /* BasicState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C311CDB57AA003FF4B4 /* BasicState.cpp */; };
121
- 276E5D9C1CDB57AA003FF4B4 /* BasicState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C311CDB57AA003FF4B4 /* BasicState.cpp */; };
122
104
  276E5D9D1CDB57AA003FF4B4 /* BasicState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C321CDB57AA003FF4B4 /* BasicState.h */; };
123
105
  276E5D9E1CDB57AA003FF4B4 /* BasicState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C321CDB57AA003FF4B4 /* BasicState.h */; };
124
106
  276E5D9F1CDB57AA003FF4B4 /* BasicState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C321CDB57AA003FF4B4 /* BasicState.h */; settings = {ATTRIBUTES = (Public, ); }; };
125
- 276E5DA01CDB57AA003FF4B4 /* BlockEndState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C331CDB57AA003FF4B4 /* BlockEndState.cpp */; };
126
- 276E5DA11CDB57AA003FF4B4 /* BlockEndState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C331CDB57AA003FF4B4 /* BlockEndState.cpp */; };
127
- 276E5DA21CDB57AA003FF4B4 /* BlockEndState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C331CDB57AA003FF4B4 /* BlockEndState.cpp */; };
128
107
  276E5DA31CDB57AA003FF4B4 /* BlockEndState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C341CDB57AA003FF4B4 /* BlockEndState.h */; };
129
108
  276E5DA41CDB57AA003FF4B4 /* BlockEndState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C341CDB57AA003FF4B4 /* BlockEndState.h */; };
130
109
  276E5DA51CDB57AA003FF4B4 /* BlockEndState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C341CDB57AA003FF4B4 /* BlockEndState.h */; settings = {ATTRIBUTES = (Public, ); }; };
@@ -155,12 +134,6 @@
155
134
  276E5DC11CDB57AA003FF4B4 /* DecisionState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C3E1CDB57AA003FF4B4 /* DecisionState.h */; };
156
135
  276E5DC21CDB57AA003FF4B4 /* DecisionState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C3E1CDB57AA003FF4B4 /* DecisionState.h */; };
157
136
  276E5DC31CDB57AA003FF4B4 /* DecisionState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C3E1CDB57AA003FF4B4 /* DecisionState.h */; settings = {ATTRIBUTES = (Public, ); }; };
158
- 276E5DC41CDB57AA003FF4B4 /* EmptyPredictionContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C3F1CDB57AA003FF4B4 /* EmptyPredictionContext.cpp */; };
159
- 276E5DC51CDB57AA003FF4B4 /* EmptyPredictionContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C3F1CDB57AA003FF4B4 /* EmptyPredictionContext.cpp */; };
160
- 276E5DC61CDB57AA003FF4B4 /* EmptyPredictionContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C3F1CDB57AA003FF4B4 /* EmptyPredictionContext.cpp */; };
161
- 276E5DC71CDB57AA003FF4B4 /* EmptyPredictionContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C401CDB57AA003FF4B4 /* EmptyPredictionContext.h */; };
162
- 276E5DC81CDB57AA003FF4B4 /* EmptyPredictionContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C401CDB57AA003FF4B4 /* EmptyPredictionContext.h */; };
163
- 276E5DC91CDB57AA003FF4B4 /* EmptyPredictionContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C401CDB57AA003FF4B4 /* EmptyPredictionContext.h */; settings = {ATTRIBUTES = (Public, ); }; };
164
137
  276E5DCA1CDB57AA003FF4B4 /* EpsilonTransition.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C411CDB57AA003FF4B4 /* EpsilonTransition.cpp */; };
165
138
  276E5DCB1CDB57AA003FF4B4 /* EpsilonTransition.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C411CDB57AA003FF4B4 /* EpsilonTransition.cpp */; };
166
139
  276E5DCC1CDB57AA003FF4B4 /* EpsilonTransition.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C411CDB57AA003FF4B4 /* EpsilonTransition.cpp */; };
@@ -263,9 +236,6 @@
263
236
  276E5E301CDB57AA003FF4B4 /* LookaheadEventInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C631CDB57AA003FF4B4 /* LookaheadEventInfo.h */; };
264
237
  276E5E311CDB57AA003FF4B4 /* LookaheadEventInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C631CDB57AA003FF4B4 /* LookaheadEventInfo.h */; };
265
238
  276E5E321CDB57AA003FF4B4 /* LookaheadEventInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C631CDB57AA003FF4B4 /* LookaheadEventInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
266
- 276E5E331CDB57AA003FF4B4 /* LoopEndState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C641CDB57AA003FF4B4 /* LoopEndState.cpp */; };
267
- 276E5E341CDB57AA003FF4B4 /* LoopEndState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C641CDB57AA003FF4B4 /* LoopEndState.cpp */; };
268
- 276E5E351CDB57AA003FF4B4 /* LoopEndState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C641CDB57AA003FF4B4 /* LoopEndState.cpp */; };
269
239
  276E5E361CDB57AA003FF4B4 /* LoopEndState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C651CDB57AA003FF4B4 /* LoopEndState.h */; };
270
240
  276E5E371CDB57AA003FF4B4 /* LoopEndState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C651CDB57AA003FF4B4 /* LoopEndState.h */; };
271
241
  276E5E381CDB57AA003FF4B4 /* LoopEndState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C651CDB57AA003FF4B4 /* LoopEndState.h */; settings = {ATTRIBUTES = (Public, ); }; };
@@ -293,15 +263,9 @@
293
263
  276E5E511CDB57AA003FF4B4 /* ParserATNSimulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C6E1CDB57AA003FF4B4 /* ParserATNSimulator.h */; };
294
264
  276E5E521CDB57AA003FF4B4 /* ParserATNSimulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C6E1CDB57AA003FF4B4 /* ParserATNSimulator.h */; };
295
265
  276E5E531CDB57AA003FF4B4 /* ParserATNSimulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C6E1CDB57AA003FF4B4 /* ParserATNSimulator.h */; settings = {ATTRIBUTES = (Public, ); }; };
296
- 276E5E541CDB57AA003FF4B4 /* PlusBlockStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C6F1CDB57AA003FF4B4 /* PlusBlockStartState.cpp */; };
297
- 276E5E551CDB57AA003FF4B4 /* PlusBlockStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C6F1CDB57AA003FF4B4 /* PlusBlockStartState.cpp */; };
298
- 276E5E561CDB57AA003FF4B4 /* PlusBlockStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C6F1CDB57AA003FF4B4 /* PlusBlockStartState.cpp */; };
299
266
  276E5E571CDB57AA003FF4B4 /* PlusBlockStartState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C701CDB57AA003FF4B4 /* PlusBlockStartState.h */; };
300
267
  276E5E581CDB57AA003FF4B4 /* PlusBlockStartState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C701CDB57AA003FF4B4 /* PlusBlockStartState.h */; };
301
268
  276E5E591CDB57AA003FF4B4 /* PlusBlockStartState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C701CDB57AA003FF4B4 /* PlusBlockStartState.h */; settings = {ATTRIBUTES = (Public, ); }; };
302
- 276E5E5A1CDB57AA003FF4B4 /* PlusLoopbackState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C711CDB57AA003FF4B4 /* PlusLoopbackState.cpp */; };
303
- 276E5E5B1CDB57AA003FF4B4 /* PlusLoopbackState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C711CDB57AA003FF4B4 /* PlusLoopbackState.cpp */; };
304
- 276E5E5C1CDB57AA003FF4B4 /* PlusLoopbackState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C711CDB57AA003FF4B4 /* PlusLoopbackState.cpp */; };
305
269
  276E5E5D1CDB57AA003FF4B4 /* PlusLoopbackState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C721CDB57AA003FF4B4 /* PlusLoopbackState.h */; };
306
270
  276E5E5E1CDB57AA003FF4B4 /* PlusLoopbackState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C721CDB57AA003FF4B4 /* PlusLoopbackState.h */; };
307
271
  276E5E5F1CDB57AA003FF4B4 /* PlusLoopbackState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C721CDB57AA003FF4B4 /* PlusLoopbackState.h */; settings = {ATTRIBUTES = (Public, ); }; };
@@ -347,15 +311,9 @@
347
311
  276E5E871CDB57AA003FF4B4 /* RangeTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C801CDB57AA003FF4B4 /* RangeTransition.h */; };
348
312
  276E5E881CDB57AA003FF4B4 /* RangeTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C801CDB57AA003FF4B4 /* RangeTransition.h */; };
349
313
  276E5E891CDB57AA003FF4B4 /* RangeTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C801CDB57AA003FF4B4 /* RangeTransition.h */; settings = {ATTRIBUTES = (Public, ); }; };
350
- 276E5E8A1CDB57AA003FF4B4 /* RuleStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C811CDB57AA003FF4B4 /* RuleStartState.cpp */; };
351
- 276E5E8B1CDB57AA003FF4B4 /* RuleStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C811CDB57AA003FF4B4 /* RuleStartState.cpp */; };
352
- 276E5E8C1CDB57AA003FF4B4 /* RuleStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C811CDB57AA003FF4B4 /* RuleStartState.cpp */; };
353
314
  276E5E8D1CDB57AA003FF4B4 /* RuleStartState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C821CDB57AA003FF4B4 /* RuleStartState.h */; };
354
315
  276E5E8E1CDB57AA003FF4B4 /* RuleStartState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C821CDB57AA003FF4B4 /* RuleStartState.h */; };
355
316
  276E5E8F1CDB57AA003FF4B4 /* RuleStartState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C821CDB57AA003FF4B4 /* RuleStartState.h */; settings = {ATTRIBUTES = (Public, ); }; };
356
- 276E5E901CDB57AA003FF4B4 /* RuleStopState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C831CDB57AA003FF4B4 /* RuleStopState.cpp */; };
357
- 276E5E911CDB57AA003FF4B4 /* RuleStopState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C831CDB57AA003FF4B4 /* RuleStopState.cpp */; };
358
- 276E5E921CDB57AA003FF4B4 /* RuleStopState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C831CDB57AA003FF4B4 /* RuleStopState.cpp */; };
359
317
  276E5E931CDB57AA003FF4B4 /* RuleStopState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C841CDB57AA003FF4B4 /* RuleStopState.h */; };
360
318
  276E5E941CDB57AA003FF4B4 /* RuleStopState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C841CDB57AA003FF4B4 /* RuleStopState.h */; };
361
319
  276E5E951CDB57AA003FF4B4 /* RuleStopState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C841CDB57AA003FF4B4 /* RuleStopState.h */; settings = {ATTRIBUTES = (Public, ); }; };
@@ -383,9 +341,6 @@
383
341
  276E5EAB1CDB57AA003FF4B4 /* SingletonPredictionContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C8C1CDB57AA003FF4B4 /* SingletonPredictionContext.h */; };
384
342
  276E5EAC1CDB57AA003FF4B4 /* SingletonPredictionContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C8C1CDB57AA003FF4B4 /* SingletonPredictionContext.h */; };
385
343
  276E5EAD1CDB57AA003FF4B4 /* SingletonPredictionContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C8C1CDB57AA003FF4B4 /* SingletonPredictionContext.h */; settings = {ATTRIBUTES = (Public, ); }; };
386
- 276E5EAE1CDB57AA003FF4B4 /* StarBlockStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C8D1CDB57AA003FF4B4 /* StarBlockStartState.cpp */; };
387
- 276E5EAF1CDB57AA003FF4B4 /* StarBlockStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C8D1CDB57AA003FF4B4 /* StarBlockStartState.cpp */; };
388
- 276E5EB01CDB57AA003FF4B4 /* StarBlockStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C8D1CDB57AA003FF4B4 /* StarBlockStartState.cpp */; };
389
344
  276E5EB11CDB57AA003FF4B4 /* StarBlockStartState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C8E1CDB57AA003FF4B4 /* StarBlockStartState.h */; };
390
345
  276E5EB21CDB57AA003FF4B4 /* StarBlockStartState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C8E1CDB57AA003FF4B4 /* StarBlockStartState.h */; };
391
346
  276E5EB31CDB57AA003FF4B4 /* StarBlockStartState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C8E1CDB57AA003FF4B4 /* StarBlockStartState.h */; settings = {ATTRIBUTES = (Public, ); }; };
@@ -395,15 +350,9 @@
395
350
  276E5EB71CDB57AA003FF4B4 /* StarLoopbackState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C901CDB57AA003FF4B4 /* StarLoopbackState.h */; };
396
351
  276E5EB81CDB57AA003FF4B4 /* StarLoopbackState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C901CDB57AA003FF4B4 /* StarLoopbackState.h */; };
397
352
  276E5EB91CDB57AA003FF4B4 /* StarLoopbackState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C901CDB57AA003FF4B4 /* StarLoopbackState.h */; settings = {ATTRIBUTES = (Public, ); }; };
398
- 276E5EBA1CDB57AA003FF4B4 /* StarLoopEntryState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C911CDB57AA003FF4B4 /* StarLoopEntryState.cpp */; };
399
- 276E5EBB1CDB57AA003FF4B4 /* StarLoopEntryState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C911CDB57AA003FF4B4 /* StarLoopEntryState.cpp */; };
400
- 276E5EBC1CDB57AA003FF4B4 /* StarLoopEntryState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C911CDB57AA003FF4B4 /* StarLoopEntryState.cpp */; };
401
353
  276E5EBD1CDB57AA003FF4B4 /* StarLoopEntryState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C921CDB57AA003FF4B4 /* StarLoopEntryState.h */; };
402
354
  276E5EBE1CDB57AA003FF4B4 /* StarLoopEntryState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C921CDB57AA003FF4B4 /* StarLoopEntryState.h */; };
403
355
  276E5EBF1CDB57AA003FF4B4 /* StarLoopEntryState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C921CDB57AA003FF4B4 /* StarLoopEntryState.h */; settings = {ATTRIBUTES = (Public, ); }; };
404
- 276E5EC01CDB57AA003FF4B4 /* TokensStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C931CDB57AA003FF4B4 /* TokensStartState.cpp */; };
405
- 276E5EC11CDB57AA003FF4B4 /* TokensStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C931CDB57AA003FF4B4 /* TokensStartState.cpp */; };
406
- 276E5EC21CDB57AA003FF4B4 /* TokensStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5C931CDB57AA003FF4B4 /* TokensStartState.cpp */; };
407
356
  276E5EC31CDB57AA003FF4B4 /* TokensStartState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C941CDB57AA003FF4B4 /* TokensStartState.h */; };
408
357
  276E5EC41CDB57AA003FF4B4 /* TokensStartState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C941CDB57AA003FF4B4 /* TokensStartState.h */; };
409
358
  276E5EC51CDB57AA003FF4B4 /* TokensStartState.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5C941CDB57AA003FF4B4 /* TokensStartState.h */; settings = {ATTRIBUTES = (Public, ); }; };
@@ -644,12 +593,6 @@
644
593
  276E5FBC1CDB57AA003FF4B4 /* Declarations.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5CEA1CDB57AA003FF4B4 /* Declarations.h */; };
645
594
  276E5FBD1CDB57AA003FF4B4 /* Declarations.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5CEA1CDB57AA003FF4B4 /* Declarations.h */; };
646
595
  276E5FBE1CDB57AA003FF4B4 /* Declarations.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5CEA1CDB57AA003FF4B4 /* Declarations.h */; settings = {ATTRIBUTES = (Public, ); }; };
647
- 276E5FBF1CDB57AA003FF4B4 /* Guid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5CEB1CDB57AA003FF4B4 /* Guid.cpp */; };
648
- 276E5FC01CDB57AA003FF4B4 /* Guid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5CEB1CDB57AA003FF4B4 /* Guid.cpp */; };
649
- 276E5FC11CDB57AA003FF4B4 /* Guid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5CEB1CDB57AA003FF4B4 /* Guid.cpp */; };
650
- 276E5FC21CDB57AA003FF4B4 /* Guid.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5CEC1CDB57AA003FF4B4 /* Guid.h */; };
651
- 276E5FC31CDB57AA003FF4B4 /* Guid.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5CEC1CDB57AA003FF4B4 /* Guid.h */; };
652
- 276E5FC41CDB57AA003FF4B4 /* Guid.h in Headers */ = {isa = PBXBuildFile; fileRef = 276E5CEC1CDB57AA003FF4B4 /* Guid.h */; settings = {ATTRIBUTES = (Public, ); }; };
653
596
  276E5FC51CDB57AA003FF4B4 /* StringUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5CED1CDB57AA003FF4B4 /* StringUtils.cpp */; };
654
597
  276E5FC61CDB57AA003FF4B4 /* StringUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5CED1CDB57AA003FF4B4 /* StringUtils.cpp */; };
655
598
  276E5FC71CDB57AA003FF4B4 /* StringUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276E5CED1CDB57AA003FF4B4 /* StringUtils.cpp */; };
@@ -805,12 +748,6 @@
805
748
  2793DC8D1F08088F00A84290 /* ParseTreeListener.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DC8C1F08088F00A84290 /* ParseTreeListener.cpp */; };
806
749
  2793DC8E1F08088F00A84290 /* ParseTreeListener.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DC8C1F08088F00A84290 /* ParseTreeListener.cpp */; };
807
750
  2793DC8F1F08088F00A84290 /* ParseTreeListener.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DC8C1F08088F00A84290 /* ParseTreeListener.cpp */; };
808
- 2793DC911F0808A200A84290 /* TerminalNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DC901F0808A200A84290 /* TerminalNode.cpp */; };
809
- 2793DC921F0808A200A84290 /* TerminalNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DC901F0808A200A84290 /* TerminalNode.cpp */; };
810
- 2793DC931F0808A200A84290 /* TerminalNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DC901F0808A200A84290 /* TerminalNode.cpp */; };
811
- 2793DC961F0808E100A84290 /* ErrorNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DC941F0808E100A84290 /* ErrorNode.cpp */; };
812
- 2793DC971F0808E100A84290 /* ErrorNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DC941F0808E100A84290 /* ErrorNode.cpp */; };
813
- 2793DC981F0808E100A84290 /* ErrorNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DC941F0808E100A84290 /* ErrorNode.cpp */; };
814
751
  2793DC991F0808E100A84290 /* ParseTreeVisitor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DC951F0808E100A84290 /* ParseTreeVisitor.cpp */; };
815
752
  2793DC9A1F0808E100A84290 /* ParseTreeVisitor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DC951F0808E100A84290 /* ParseTreeVisitor.cpp */; };
816
753
  2793DC9B1F0808E100A84290 /* ParseTreeVisitor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DC951F0808E100A84290 /* ParseTreeVisitor.cpp */; };
@@ -829,9 +766,6 @@
829
766
  2793DCAD1F08095F00A84290 /* WritableToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DCA31F08095F00A84290 /* WritableToken.cpp */; };
830
767
  2793DCAE1F08095F00A84290 /* WritableToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DCA31F08095F00A84290 /* WritableToken.cpp */; };
831
768
  2793DCAF1F08095F00A84290 /* WritableToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DCA31F08095F00A84290 /* WritableToken.cpp */; };
832
- 2793DCB31F08099C00A84290 /* BlockStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DCB01F08099C00A84290 /* BlockStartState.cpp */; };
833
- 2793DCB41F08099C00A84290 /* BlockStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DCB01F08099C00A84290 /* BlockStartState.cpp */; };
834
- 2793DCB51F08099C00A84290 /* BlockStartState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DCB01F08099C00A84290 /* BlockStartState.cpp */; };
835
769
  2793DCB61F08099C00A84290 /* LexerAction.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DCB11F08099C00A84290 /* LexerAction.cpp */; };
836
770
  2793DCB71F08099C00A84290 /* LexerAction.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DCB11F08099C00A84290 /* LexerAction.cpp */; };
837
771
  2793DCB81F08099C00A84290 /* LexerAction.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2793DCB11F08099C00A84290 /* LexerAction.cpp */; };
@@ -920,6 +854,69 @@
920
854
  27DB44D91D0463DB007E790B /* XPathWildcardElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27DB449B1D045537007E790B /* XPathWildcardElement.cpp */; };
921
855
  27DB44DA1D0463DB007E790B /* XPathWildcardElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 27DB449C1D045537007E790B /* XPathWildcardElement.h */; };
922
856
  27F4A8561D4CEB2A00E067EE /* Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F4A8551D4CEB2A00E067EE /* Any.h */; };
857
+ 9B25DCA12910249100DF9703 /* FlatHashSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DC9F2910249100DF9703 /* FlatHashSet.h */; };
858
+ 9B25DCA22910249100DF9703 /* FlatHashSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DC9F2910249100DF9703 /* FlatHashSet.h */; };
859
+ 9B25DCA32910249100DF9703 /* FlatHashSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DC9F2910249100DF9703 /* FlatHashSet.h */; };
860
+ 9B25DCA42910249100DF9703 /* FlatHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCA02910249100DF9703 /* FlatHashMap.h */; };
861
+ 9B25DCA52910249100DF9703 /* FlatHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCA02910249100DF9703 /* FlatHashMap.h */; };
862
+ 9B25DCA62910249100DF9703 /* FlatHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCA02910249100DF9703 /* FlatHashMap.h */; };
863
+ 9B25DCA82910252800DF9703 /* Version.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCA72910252800DF9703 /* Version.h */; };
864
+ 9B25DCA92910252800DF9703 /* Version.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCA72910252800DF9703 /* Version.h */; };
865
+ 9B25DCAA2910252800DF9703 /* Version.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCA72910252800DF9703 /* Version.h */; };
866
+ 9B25DCAC291025B700DF9703 /* ATNStateType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCAB291025B700DF9703 /* ATNStateType.h */; };
867
+ 9B25DCAD291025B700DF9703 /* ATNStateType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCAB291025B700DF9703 /* ATNStateType.h */; };
868
+ 9B25DCAE291025B700DF9703 /* ATNStateType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCAB291025B700DF9703 /* ATNStateType.h */; };
869
+ 9B25DCB0291026DE00DF9703 /* ParserATNSimulatorOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCAF291026DE00DF9703 /* ParserATNSimulatorOptions.h */; };
870
+ 9B25DCB1291026DE00DF9703 /* ParserATNSimulatorOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCAF291026DE00DF9703 /* ParserATNSimulatorOptions.h */; };
871
+ 9B25DCB2291026DE00DF9703 /* ParserATNSimulatorOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCAF291026DE00DF9703 /* ParserATNSimulatorOptions.h */; };
872
+ 9B25DCB92910278000DF9703 /* PredictionContextCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCB32910278000DF9703 /* PredictionContextCache.h */; };
873
+ 9B25DCBA2910278000DF9703 /* PredictionContextCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCB32910278000DF9703 /* PredictionContextCache.h */; };
874
+ 9B25DCBB2910278000DF9703 /* PredictionContextCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCB32910278000DF9703 /* PredictionContextCache.h */; };
875
+ 9B25DCBC2910278000DF9703 /* PredictionContextMergeCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCB42910278000DF9703 /* PredictionContextMergeCache.h */; };
876
+ 9B25DCBD2910278000DF9703 /* PredictionContextMergeCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCB42910278000DF9703 /* PredictionContextMergeCache.h */; };
877
+ 9B25DCBE2910278000DF9703 /* PredictionContextMergeCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCB42910278000DF9703 /* PredictionContextMergeCache.h */; };
878
+ 9B25DCBF2910278000DF9703 /* PredictionContextType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCB52910278000DF9703 /* PredictionContextType.h */; };
879
+ 9B25DCC02910278000DF9703 /* PredictionContextType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCB52910278000DF9703 /* PredictionContextType.h */; };
880
+ 9B25DCC12910278000DF9703 /* PredictionContextType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCB52910278000DF9703 /* PredictionContextType.h */; };
881
+ 9B25DCC22910278000DF9703 /* PredictionContextCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B25DCB62910278000DF9703 /* PredictionContextCache.cpp */; };
882
+ 9B25DCC32910278000DF9703 /* PredictionContextCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B25DCB62910278000DF9703 /* PredictionContextCache.cpp */; };
883
+ 9B25DCC42910278000DF9703 /* PredictionContextCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B25DCB62910278000DF9703 /* PredictionContextCache.cpp */; };
884
+ 9B25DCC52910278000DF9703 /* PredictionContextMergeCacheOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCB72910278000DF9703 /* PredictionContextMergeCacheOptions.h */; };
885
+ 9B25DCC62910278000DF9703 /* PredictionContextMergeCacheOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCB72910278000DF9703 /* PredictionContextMergeCacheOptions.h */; };
886
+ 9B25DCC72910278000DF9703 /* PredictionContextMergeCacheOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCB72910278000DF9703 /* PredictionContextMergeCacheOptions.h */; };
887
+ 9B25DCC82910278000DF9703 /* PredictionContextMergeCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B25DCB82910278000DF9703 /* PredictionContextMergeCache.cpp */; };
888
+ 9B25DCC92910278000DF9703 /* PredictionContextMergeCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B25DCB82910278000DF9703 /* PredictionContextMergeCache.cpp */; };
889
+ 9B25DCCA2910278000DF9703 /* PredictionContextMergeCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B25DCB82910278000DF9703 /* PredictionContextMergeCache.cpp */; };
890
+ 9B25DCCD291027EE00DF9703 /* SemanticContextType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCCB291027ED00DF9703 /* SemanticContextType.h */; };
891
+ 9B25DCCE291027EE00DF9703 /* SemanticContextType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCCB291027ED00DF9703 /* SemanticContextType.h */; };
892
+ 9B25DCCF291027EE00DF9703 /* SemanticContextType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCCB291027ED00DF9703 /* SemanticContextType.h */; };
893
+ 9B25DCD0291027EE00DF9703 /* SerializedATNView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCCC291027EE00DF9703 /* SerializedATNView.h */; };
894
+ 9B25DCD1291027EE00DF9703 /* SerializedATNView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCCC291027EE00DF9703 /* SerializedATNView.h */; };
895
+ 9B25DCD2291027EE00DF9703 /* SerializedATNView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCCC291027EE00DF9703 /* SerializedATNView.h */; };
896
+ 9B25DCD52910282B00DF9703 /* TransitionType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B25DCD32910282B00DF9703 /* TransitionType.cpp */; };
897
+ 9B25DCD62910282B00DF9703 /* TransitionType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B25DCD32910282B00DF9703 /* TransitionType.cpp */; };
898
+ 9B25DCD72910282B00DF9703 /* TransitionType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B25DCD32910282B00DF9703 /* TransitionType.cpp */; };
899
+ 9B25DCD82910282B00DF9703 /* TransitionType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCD42910282B00DF9703 /* TransitionType.h */; };
900
+ 9B25DCD92910282B00DF9703 /* TransitionType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCD42910282B00DF9703 /* TransitionType.h */; };
901
+ 9B25DCDA2910282B00DF9703 /* TransitionType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCD42910282B00DF9703 /* TransitionType.h */; };
902
+ 9B25DCDE2910287000DF9703 /* Synchronization.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B25DCDC2910287000DF9703 /* Synchronization.cpp */; };
903
+ 9B25DCDF2910287000DF9703 /* Synchronization.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B25DCDC2910287000DF9703 /* Synchronization.cpp */; };
904
+ 9B25DCE02910287000DF9703 /* Synchronization.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B25DCDC2910287000DF9703 /* Synchronization.cpp */; };
905
+ 9B25DCE12910287000DF9703 /* Synchronization.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCDD2910287000DF9703 /* Synchronization.h */; };
906
+ 9B25DCE22910287000DF9703 /* Synchronization.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCDD2910287000DF9703 /* Synchronization.h */; };
907
+ 9B25DCE32910287000DF9703 /* Synchronization.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCDD2910287000DF9703 /* Synchronization.h */; };
908
+ 9B25DCE5291028BC00DF9703 /* Casts.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCE4291028BC00DF9703 /* Casts.h */; };
909
+ 9B25DCE6291028BC00DF9703 /* Casts.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCE4291028BC00DF9703 /* Casts.h */; };
910
+ 9B25DCE7291028BC00DF9703 /* Casts.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCE4291028BC00DF9703 /* Casts.h */; };
911
+ 9B25DCEB291028D000DF9703 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCE8291028D000DF9703 /* Unicode.h */; };
912
+ 9B25DCEC291028D000DF9703 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCE8291028D000DF9703 /* Unicode.h */; };
913
+ 9B25DCED291028D000DF9703 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCE8291028D000DF9703 /* Unicode.h */; };
914
+ 9B25DCEE291028D000DF9703 /* Utf8.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCE9291028D000DF9703 /* Utf8.h */; };
915
+ 9B25DCEF291028D000DF9703 /* Utf8.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCE9291028D000DF9703 /* Utf8.h */; };
916
+ 9B25DCF0291028D000DF9703 /* Utf8.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B25DCE9291028D000DF9703 /* Utf8.h */; };
917
+ 9B25DCF1291028D000DF9703 /* Utf8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B25DCEA291028D000DF9703 /* Utf8.cpp */; };
918
+ 9B25DCF2291028D000DF9703 /* Utf8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B25DCEA291028D000DF9703 /* Utf8.cpp */; };
919
+ 9B25DCF3291028D000DF9703 /* Utf8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B25DCEA291028D000DF9703 /* Utf8.cpp */; };
923
920
  /* End PBXBuildFile section */
924
921
 
925
922
  /* Begin PBXFileReference section */
@@ -933,8 +930,6 @@
933
930
  276E5C0F1CDB57AA003FF4B4 /* ANTLRFileStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ANTLRFileStream.h; sourceTree = "<group>"; wrapsLines = 0; };
934
931
  276E5C101CDB57AA003FF4B4 /* ANTLRInputStream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ANTLRInputStream.cpp; sourceTree = "<group>"; };
935
932
  276E5C111CDB57AA003FF4B4 /* ANTLRInputStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ANTLRInputStream.h; sourceTree = "<group>"; };
936
- 276E5C131CDB57AA003FF4B4 /* AbstractPredicateTransition.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AbstractPredicateTransition.cpp; sourceTree = "<group>"; wrapsLines = 0; };
937
- 276E5C141CDB57AA003FF4B4 /* AbstractPredicateTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AbstractPredicateTransition.h; sourceTree = "<group>"; };
938
933
  276E5C151CDB57AA003FF4B4 /* ActionTransition.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ActionTransition.cpp; sourceTree = "<group>"; };
939
934
  276E5C161CDB57AA003FF4B4 /* ActionTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ActionTransition.h; sourceTree = "<group>"; };
940
935
  276E5C171CDB57AA003FF4B4 /* AmbiguityInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AmbiguityInfo.cpp; sourceTree = "<group>"; };
@@ -951,8 +946,6 @@
951
946
  276E5C221CDB57AA003FF4B4 /* ATNDeserializationOptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ATNDeserializationOptions.h; sourceTree = "<group>"; };
952
947
  276E5C231CDB57AA003FF4B4 /* ATNDeserializer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ATNDeserializer.cpp; sourceTree = "<group>"; wrapsLines = 0; };
953
948
  276E5C241CDB57AA003FF4B4 /* ATNDeserializer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ATNDeserializer.h; sourceTree = "<group>"; wrapsLines = 0; };
954
- 276E5C251CDB57AA003FF4B4 /* ATNSerializer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = ATNSerializer.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
955
- 276E5C261CDB57AA003FF4B4 /* ATNSerializer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ATNSerializer.h; sourceTree = "<group>"; };
956
949
  276E5C271CDB57AA003FF4B4 /* ATNSimulator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = ATNSimulator.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
957
950
  276E5C281CDB57AA003FF4B4 /* ATNSimulator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = ATNSimulator.h; sourceTree = "<group>"; wrapsLines = 0; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
958
951
  276E5C291CDB57AA003FF4B4 /* ATNState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ATNState.cpp; sourceTree = "<group>"; };
@@ -960,11 +953,8 @@
960
953
  276E5C2C1CDB57AA003FF4B4 /* ATNType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ATNType.h; sourceTree = "<group>"; };
961
954
  276E5C2D1CDB57AA003FF4B4 /* AtomTransition.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AtomTransition.cpp; sourceTree = "<group>"; };
962
955
  276E5C2E1CDB57AA003FF4B4 /* AtomTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AtomTransition.h; sourceTree = "<group>"; };
963
- 276E5C2F1CDB57AA003FF4B4 /* BasicBlockStartState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BasicBlockStartState.cpp; sourceTree = "<group>"; };
964
956
  276E5C301CDB57AA003FF4B4 /* BasicBlockStartState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicBlockStartState.h; sourceTree = "<group>"; };
965
- 276E5C311CDB57AA003FF4B4 /* BasicState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BasicState.cpp; sourceTree = "<group>"; };
966
957
  276E5C321CDB57AA003FF4B4 /* BasicState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicState.h; sourceTree = "<group>"; };
967
- 276E5C331CDB57AA003FF4B4 /* BlockEndState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BlockEndState.cpp; sourceTree = "<group>"; };
968
958
  276E5C341CDB57AA003FF4B4 /* BlockEndState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlockEndState.h; sourceTree = "<group>"; };
969
959
  276E5C351CDB57AA003FF4B4 /* BlockStartState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlockStartState.h; sourceTree = "<group>"; };
970
960
  276E5C371CDB57AA003FF4B4 /* ContextSensitivityInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ContextSensitivityInfo.cpp; sourceTree = "<group>"; };
@@ -975,8 +965,6 @@
975
965
  276E5C3C1CDB57AA003FF4B4 /* DecisionInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DecisionInfo.h; sourceTree = "<group>"; };
976
966
  276E5C3D1CDB57AA003FF4B4 /* DecisionState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DecisionState.cpp; sourceTree = "<group>"; };
977
967
  276E5C3E1CDB57AA003FF4B4 /* DecisionState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DecisionState.h; sourceTree = "<group>"; };
978
- 276E5C3F1CDB57AA003FF4B4 /* EmptyPredictionContext.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = EmptyPredictionContext.cpp; sourceTree = "<group>"; wrapsLines = 0; };
979
- 276E5C401CDB57AA003FF4B4 /* EmptyPredictionContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmptyPredictionContext.h; sourceTree = "<group>"; };
980
968
  276E5C411CDB57AA003FF4B4 /* EpsilonTransition.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = EpsilonTransition.cpp; sourceTree = "<group>"; };
981
969
  276E5C421CDB57AA003FF4B4 /* EpsilonTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EpsilonTransition.h; sourceTree = "<group>"; };
982
970
  276E5C431CDB57AA003FF4B4 /* ErrorInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ErrorInfo.cpp; sourceTree = "<group>"; wrapsLines = 0; };
@@ -1011,7 +999,6 @@
1011
999
  276E5C611CDB57AA003FF4B4 /* LL1Analyzer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LL1Analyzer.h; sourceTree = "<group>"; wrapsLines = 0; };
1012
1000
  276E5C621CDB57AA003FF4B4 /* LookaheadEventInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LookaheadEventInfo.cpp; sourceTree = "<group>"; wrapsLines = 0; };
1013
1001
  276E5C631CDB57AA003FF4B4 /* LookaheadEventInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LookaheadEventInfo.h; sourceTree = "<group>"; wrapsLines = 0; };
1014
- 276E5C641CDB57AA003FF4B4 /* LoopEndState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LoopEndState.cpp; sourceTree = "<group>"; };
1015
1002
  276E5C651CDB57AA003FF4B4 /* LoopEndState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoopEndState.h; sourceTree = "<group>"; };
1016
1003
  276E5C671CDB57AA003FF4B4 /* NotSetTransition.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NotSetTransition.cpp; sourceTree = "<group>"; wrapsLines = 0; };
1017
1004
  276E5C681CDB57AA003FF4B4 /* NotSetTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NotSetTransition.h; sourceTree = "<group>"; };
@@ -1021,9 +1008,7 @@
1021
1008
  276E5C6C1CDB57AA003FF4B4 /* ParseInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ParseInfo.h; sourceTree = "<group>"; };
1022
1009
  276E5C6D1CDB57AA003FF4B4 /* ParserATNSimulator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ParserATNSimulator.cpp; sourceTree = "<group>"; wrapsLines = 0; };
1023
1010
  276E5C6E1CDB57AA003FF4B4 /* ParserATNSimulator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ParserATNSimulator.h; sourceTree = "<group>"; wrapsLines = 0; };
1024
- 276E5C6F1CDB57AA003FF4B4 /* PlusBlockStartState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PlusBlockStartState.cpp; sourceTree = "<group>"; };
1025
1011
  276E5C701CDB57AA003FF4B4 /* PlusBlockStartState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlusBlockStartState.h; sourceTree = "<group>"; };
1026
- 276E5C711CDB57AA003FF4B4 /* PlusLoopbackState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PlusLoopbackState.cpp; sourceTree = "<group>"; };
1027
1012
  276E5C721CDB57AA003FF4B4 /* PlusLoopbackState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlusLoopbackState.h; sourceTree = "<group>"; };
1028
1013
  276E5C731CDB57AA003FF4B4 /* PrecedencePredicateTransition.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PrecedencePredicateTransition.cpp; sourceTree = "<group>"; wrapsLines = 0; };
1029
1014
  276E5C741CDB57AA003FF4B4 /* PrecedencePredicateTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrecedencePredicateTransition.h; sourceTree = "<group>"; };
@@ -1039,9 +1024,7 @@
1039
1024
  276E5C7E1CDB57AA003FF4B4 /* ProfilingATNSimulator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProfilingATNSimulator.h; sourceTree = "<group>"; wrapsLines = 0; };
1040
1025
  276E5C7F1CDB57AA003FF4B4 /* RangeTransition.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RangeTransition.cpp; sourceTree = "<group>"; wrapsLines = 0; };
1041
1026
  276E5C801CDB57AA003FF4B4 /* RangeTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RangeTransition.h; sourceTree = "<group>"; };
1042
- 276E5C811CDB57AA003FF4B4 /* RuleStartState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RuleStartState.cpp; sourceTree = "<group>"; };
1043
1027
  276E5C821CDB57AA003FF4B4 /* RuleStartState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RuleStartState.h; sourceTree = "<group>"; };
1044
- 276E5C831CDB57AA003FF4B4 /* RuleStopState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RuleStopState.cpp; sourceTree = "<group>"; };
1045
1028
  276E5C841CDB57AA003FF4B4 /* RuleStopState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RuleStopState.h; sourceTree = "<group>"; };
1046
1029
  276E5C851CDB57AA003FF4B4 /* RuleTransition.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RuleTransition.cpp; sourceTree = "<group>"; };
1047
1030
  276E5C861CDB57AA003FF4B4 /* RuleTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RuleTransition.h; sourceTree = "<group>"; };
@@ -1051,13 +1034,10 @@
1051
1034
  276E5C8A1CDB57AA003FF4B4 /* SetTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SetTransition.h; sourceTree = "<group>"; };
1052
1035
  276E5C8B1CDB57AA003FF4B4 /* SingletonPredictionContext.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SingletonPredictionContext.cpp; sourceTree = "<group>"; wrapsLines = 0; };
1053
1036
  276E5C8C1CDB57AA003FF4B4 /* SingletonPredictionContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SingletonPredictionContext.h; sourceTree = "<group>"; wrapsLines = 0; };
1054
- 276E5C8D1CDB57AA003FF4B4 /* StarBlockStartState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = StarBlockStartState.cpp; sourceTree = "<group>"; };
1055
1037
  276E5C8E1CDB57AA003FF4B4 /* StarBlockStartState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StarBlockStartState.h; sourceTree = "<group>"; };
1056
1038
  276E5C8F1CDB57AA003FF4B4 /* StarLoopbackState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = StarLoopbackState.cpp; sourceTree = "<group>"; };
1057
1039
  276E5C901CDB57AA003FF4B4 /* StarLoopbackState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StarLoopbackState.h; sourceTree = "<group>"; };
1058
- 276E5C911CDB57AA003FF4B4 /* StarLoopEntryState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = StarLoopEntryState.cpp; sourceTree = "<group>"; };
1059
1040
  276E5C921CDB57AA003FF4B4 /* StarLoopEntryState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StarLoopEntryState.h; sourceTree = "<group>"; };
1060
- 276E5C931CDB57AA003FF4B4 /* TokensStartState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TokensStartState.cpp; sourceTree = "<group>"; };
1061
1041
  276E5C941CDB57AA003FF4B4 /* TokensStartState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TokensStartState.h; sourceTree = "<group>"; };
1062
1042
  276E5C951CDB57AA003FF4B4 /* Transition.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Transition.cpp; sourceTree = "<group>"; };
1063
1043
  276E5C961CDB57AA003FF4B4 /* Transition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Transition.h; sourceTree = "<group>"; };
@@ -1138,8 +1118,6 @@
1138
1118
  276E5CE81CDB57AA003FF4B4 /* CPPUtils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CPPUtils.cpp; sourceTree = "<group>"; wrapsLines = 0; };
1139
1119
  276E5CE91CDB57AA003FF4B4 /* CPPUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = CPPUtils.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
1140
1120
  276E5CEA1CDB57AA003FF4B4 /* Declarations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Declarations.h; sourceTree = "<group>"; };
1141
- 276E5CEB1CDB57AA003FF4B4 /* Guid.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Guid.cpp; sourceTree = "<group>"; };
1142
- 276E5CEC1CDB57AA003FF4B4 /* Guid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Guid.h; sourceTree = "<group>"; };
1143
1121
  276E5CED1CDB57AA003FF4B4 /* StringUtils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = StringUtils.cpp; sourceTree = "<group>"; };
1144
1122
  276E5CEE1CDB57AA003FF4B4 /* StringUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StringUtils.h; sourceTree = "<group>"; };
1145
1123
  276E5CF01CDB57AA003FF4B4 /* Token.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Token.h; sourceTree = "<group>"; };
@@ -1192,15 +1170,12 @@
1192
1170
  2793DC841F08083F00A84290 /* TokenSource.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TokenSource.cpp; sourceTree = "<group>"; };
1193
1171
  2793DC881F08087500A84290 /* Chunk.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Chunk.cpp; sourceTree = "<group>"; };
1194
1172
  2793DC8C1F08088F00A84290 /* ParseTreeListener.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ParseTreeListener.cpp; sourceTree = "<group>"; };
1195
- 2793DC901F0808A200A84290 /* TerminalNode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TerminalNode.cpp; sourceTree = "<group>"; };
1196
- 2793DC941F0808E100A84290 /* ErrorNode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ErrorNode.cpp; sourceTree = "<group>"; };
1197
1173
  2793DC951F0808E100A84290 /* ParseTreeVisitor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ParseTreeVisitor.cpp; sourceTree = "<group>"; };
1198
1174
  2793DC9C1F08090D00A84290 /* Any.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Any.cpp; sourceTree = "<group>"; };
1199
1175
  2793DCA01F08095F00A84290 /* ANTLRErrorListener.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ANTLRErrorListener.cpp; sourceTree = "<group>"; };
1200
1176
  2793DCA11F08095F00A84290 /* ANTLRErrorStrategy.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ANTLRErrorStrategy.cpp; sourceTree = "<group>"; };
1201
1177
  2793DCA21F08095F00A84290 /* Token.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Token.cpp; sourceTree = "<group>"; };
1202
1178
  2793DCA31F08095F00A84290 /* WritableToken.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WritableToken.cpp; sourceTree = "<group>"; };
1203
- 2793DCB01F08099C00A84290 /* BlockStartState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BlockStartState.cpp; sourceTree = "<group>"; };
1204
1179
  2793DCB11F08099C00A84290 /* LexerAction.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LexerAction.cpp; sourceTree = "<group>"; };
1205
1180
  2794D8551CE7821B00FADD0F /* antlr4-common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "antlr4-common.h"; sourceTree = "<group>"; };
1206
1181
  27AC52CF1CE773A80093AAAB /* antlr4-runtime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "antlr4-runtime.h"; sourceTree = "<group>"; };
@@ -1233,6 +1208,27 @@
1233
1208
  27F4A8551D4CEB2A00E067EE /* Any.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Any.h; sourceTree = "<group>"; };
1234
1209
  37C147171B4D5A04008EDDDB /* libantlr4-runtime.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libantlr4-runtime.a"; sourceTree = BUILT_PRODUCTS_DIR; };
1235
1210
  37D727AA1867AF1E007B6D10 /* libantlr4-runtime.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = "libantlr4-runtime.dylib"; sourceTree = BUILT_PRODUCTS_DIR; };
1211
+ 9B25DC9F2910249100DF9703 /* FlatHashSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FlatHashSet.h; sourceTree = "<group>"; };
1212
+ 9B25DCA02910249100DF9703 /* FlatHashMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FlatHashMap.h; sourceTree = "<group>"; };
1213
+ 9B25DCA72910252800DF9703 /* Version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Version.h; sourceTree = "<group>"; };
1214
+ 9B25DCAB291025B700DF9703 /* ATNStateType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ATNStateType.h; sourceTree = "<group>"; };
1215
+ 9B25DCAF291026DE00DF9703 /* ParserATNSimulatorOptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ParserATNSimulatorOptions.h; sourceTree = "<group>"; };
1216
+ 9B25DCB32910278000DF9703 /* PredictionContextCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PredictionContextCache.h; sourceTree = "<group>"; };
1217
+ 9B25DCB42910278000DF9703 /* PredictionContextMergeCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PredictionContextMergeCache.h; sourceTree = "<group>"; };
1218
+ 9B25DCB52910278000DF9703 /* PredictionContextType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PredictionContextType.h; sourceTree = "<group>"; };
1219
+ 9B25DCB62910278000DF9703 /* PredictionContextCache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PredictionContextCache.cpp; sourceTree = "<group>"; };
1220
+ 9B25DCB72910278000DF9703 /* PredictionContextMergeCacheOptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PredictionContextMergeCacheOptions.h; sourceTree = "<group>"; };
1221
+ 9B25DCB82910278000DF9703 /* PredictionContextMergeCache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PredictionContextMergeCache.cpp; sourceTree = "<group>"; };
1222
+ 9B25DCCB291027ED00DF9703 /* SemanticContextType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SemanticContextType.h; sourceTree = "<group>"; };
1223
+ 9B25DCCC291027EE00DF9703 /* SerializedATNView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SerializedATNView.h; sourceTree = "<group>"; };
1224
+ 9B25DCD32910282B00DF9703 /* TransitionType.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TransitionType.cpp; sourceTree = "<group>"; };
1225
+ 9B25DCD42910282B00DF9703 /* TransitionType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TransitionType.h; sourceTree = "<group>"; };
1226
+ 9B25DCDC2910287000DF9703 /* Synchronization.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Synchronization.cpp; sourceTree = "<group>"; };
1227
+ 9B25DCDD2910287000DF9703 /* Synchronization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Synchronization.h; sourceTree = "<group>"; };
1228
+ 9B25DCE4291028BC00DF9703 /* Casts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Casts.h; sourceTree = "<group>"; };
1229
+ 9B25DCE8291028D000DF9703 /* Unicode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Unicode.h; sourceTree = "<group>"; };
1230
+ 9B25DCE9291028D000DF9703 /* Utf8.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Utf8.h; sourceTree = "<group>"; };
1231
+ 9B25DCEA291028D000DF9703 /* Utf8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Utf8.cpp; sourceTree = "<group>"; };
1236
1232
  /* End PBXFileReference section */
1237
1233
 
1238
1234
  /* Begin PBXFrameworksBuildPhase section */
@@ -1276,6 +1272,7 @@
1276
1272
  children = (
1277
1273
  276E5C121CDB57AA003FF4B4 /* atn */,
1278
1274
  276E5CAB1CDB57AA003FF4B4 /* dfa */,
1275
+ 9B25DCDB2910287000DF9703 /* internal */,
1279
1276
  276E5CC91CDB57AA003FF4B4 /* misc */,
1280
1277
  276E5CE41CDB57AA003FF4B4 /* support */,
1281
1278
  276E5CF91CDB57AA003FF4B4 /* tree */,
@@ -1313,6 +1310,8 @@
1313
1310
  276E5CB71CDB57AA003FF4B4 /* Exceptions.h */,
1314
1311
  276E5CB81CDB57AA003FF4B4 /* FailedPredicateException.cpp */,
1315
1312
  276E5CB91CDB57AA003FF4B4 /* FailedPredicateException.h */,
1313
+ 9B25DCA02910249100DF9703 /* FlatHashMap.h */,
1314
+ 9B25DC9F2910249100DF9703 /* FlatHashSet.h */,
1316
1315
  276E5CBA1CDB57AA003FF4B4 /* InputMismatchException.cpp */,
1317
1316
  276E5CBB1CDB57AA003FF4B4 /* InputMismatchException.h */,
1318
1317
  276E5CBC1CDB57AA003FF4B4 /* InterpreterRuleContext.cpp */,
@@ -1360,6 +1359,7 @@
1360
1359
  276E5D231CDB57AA003FF4B4 /* UnbufferedCharStream.h */,
1361
1360
  276E5D241CDB57AA003FF4B4 /* UnbufferedTokenStream.cpp */,
1362
1361
  276E5D251CDB57AA003FF4B4 /* UnbufferedTokenStream.h */,
1362
+ 9B25DCA72910252800DF9703 /* Version.h */,
1363
1363
  276E5D271CDB57AA003FF4B4 /* Vocabulary.cpp */,
1364
1364
  276E5D281CDB57AA003FF4B4 /* Vocabulary.h */,
1365
1365
  2793DCA31F08095F00A84290 /* WritableToken.cpp */,
@@ -1372,8 +1372,6 @@
1372
1372
  276E5C121CDB57AA003FF4B4 /* atn */ = {
1373
1373
  isa = PBXGroup;
1374
1374
  children = (
1375
- 276E5C131CDB57AA003FF4B4 /* AbstractPredicateTransition.cpp */,
1376
- 276E5C141CDB57AA003FF4B4 /* AbstractPredicateTransition.h */,
1377
1375
  276E5C151CDB57AA003FF4B4 /* ActionTransition.cpp */,
1378
1376
  276E5C161CDB57AA003FF4B4 /* ActionTransition.h */,
1379
1377
  276E5C171CDB57AA003FF4B4 /* AmbiguityInfo.cpp */,
@@ -1390,22 +1388,17 @@
1390
1388
  276E5C221CDB57AA003FF4B4 /* ATNDeserializationOptions.h */,
1391
1389
  276E5C231CDB57AA003FF4B4 /* ATNDeserializer.cpp */,
1392
1390
  276E5C241CDB57AA003FF4B4 /* ATNDeserializer.h */,
1393
- 276E5C251CDB57AA003FF4B4 /* ATNSerializer.cpp */,
1394
- 276E5C261CDB57AA003FF4B4 /* ATNSerializer.h */,
1395
1391
  276E5C271CDB57AA003FF4B4 /* ATNSimulator.cpp */,
1396
1392
  276E5C281CDB57AA003FF4B4 /* ATNSimulator.h */,
1397
1393
  276E5C291CDB57AA003FF4B4 /* ATNState.cpp */,
1398
1394
  276E5C2A1CDB57AA003FF4B4 /* ATNState.h */,
1395
+ 9B25DCAB291025B700DF9703 /* ATNStateType.h */,
1399
1396
  276E5C2C1CDB57AA003FF4B4 /* ATNType.h */,
1400
1397
  276E5C2D1CDB57AA003FF4B4 /* AtomTransition.cpp */,
1401
1398
  276E5C2E1CDB57AA003FF4B4 /* AtomTransition.h */,
1402
- 276E5C2F1CDB57AA003FF4B4 /* BasicBlockStartState.cpp */,
1403
1399
  276E5C301CDB57AA003FF4B4 /* BasicBlockStartState.h */,
1404
- 276E5C311CDB57AA003FF4B4 /* BasicState.cpp */,
1405
1400
  276E5C321CDB57AA003FF4B4 /* BasicState.h */,
1406
- 276E5C331CDB57AA003FF4B4 /* BlockEndState.cpp */,
1407
1401
  276E5C341CDB57AA003FF4B4 /* BlockEndState.h */,
1408
- 2793DCB01F08099C00A84290 /* BlockStartState.cpp */,
1409
1402
  276E5C351CDB57AA003FF4B4 /* BlockStartState.h */,
1410
1403
  276E5C371CDB57AA003FF4B4 /* ContextSensitivityInfo.cpp */,
1411
1404
  276E5C381CDB57AA003FF4B4 /* ContextSensitivityInfo.h */,
@@ -1415,8 +1408,6 @@
1415
1408
  276E5C3C1CDB57AA003FF4B4 /* DecisionInfo.h */,
1416
1409
  276E5C3D1CDB57AA003FF4B4 /* DecisionState.cpp */,
1417
1410
  276E5C3E1CDB57AA003FF4B4 /* DecisionState.h */,
1418
- 276E5C3F1CDB57AA003FF4B4 /* EmptyPredictionContext.cpp */,
1419
- 276E5C401CDB57AA003FF4B4 /* EmptyPredictionContext.h */,
1420
1411
  276E5C411CDB57AA003FF4B4 /* EpsilonTransition.cpp */,
1421
1412
  276E5C421CDB57AA003FF4B4 /* EpsilonTransition.h */,
1422
1413
  276E5C431CDB57AA003FF4B4 /* ErrorInfo.cpp */,
@@ -1452,7 +1443,6 @@
1452
1443
  276E5C611CDB57AA003FF4B4 /* LL1Analyzer.h */,
1453
1444
  276E5C621CDB57AA003FF4B4 /* LookaheadEventInfo.cpp */,
1454
1445
  276E5C631CDB57AA003FF4B4 /* LookaheadEventInfo.h */,
1455
- 276E5C641CDB57AA003FF4B4 /* LoopEndState.cpp */,
1456
1446
  276E5C651CDB57AA003FF4B4 /* LoopEndState.h */,
1457
1447
  276E5C671CDB57AA003FF4B4 /* NotSetTransition.cpp */,
1458
1448
  276E5C681CDB57AA003FF4B4 /* NotSetTransition.h */,
@@ -1462,9 +1452,8 @@
1462
1452
  276E5C6C1CDB57AA003FF4B4 /* ParseInfo.h */,
1463
1453
  276E5C6D1CDB57AA003FF4B4 /* ParserATNSimulator.cpp */,
1464
1454
  276E5C6E1CDB57AA003FF4B4 /* ParserATNSimulator.h */,
1465
- 276E5C6F1CDB57AA003FF4B4 /* PlusBlockStartState.cpp */,
1455
+ 9B25DCAF291026DE00DF9703 /* ParserATNSimulatorOptions.h */,
1466
1456
  276E5C701CDB57AA003FF4B4 /* PlusBlockStartState.h */,
1467
- 276E5C711CDB57AA003FF4B4 /* PlusLoopbackState.cpp */,
1468
1457
  276E5C721CDB57AA003FF4B4 /* PlusLoopbackState.h */,
1469
1458
  276E5C731CDB57AA003FF4B4 /* PrecedencePredicateTransition.cpp */,
1470
1459
  276E5C741CDB57AA003FF4B4 /* PrecedencePredicateTransition.h */,
@@ -1474,34 +1463,39 @@
1474
1463
  276E5C781CDB57AA003FF4B4 /* PredicateTransition.h */,
1475
1464
  276E5C791CDB57AA003FF4B4 /* PredictionContext.cpp */,
1476
1465
  276E5C7A1CDB57AA003FF4B4 /* PredictionContext.h */,
1466
+ 9B25DCB62910278000DF9703 /* PredictionContextCache.cpp */,
1467
+ 9B25DCB32910278000DF9703 /* PredictionContextCache.h */,
1468
+ 9B25DCB82910278000DF9703 /* PredictionContextMergeCache.cpp */,
1469
+ 9B25DCB42910278000DF9703 /* PredictionContextMergeCache.h */,
1470
+ 9B25DCB72910278000DF9703 /* PredictionContextMergeCacheOptions.h */,
1471
+ 9B25DCB52910278000DF9703 /* PredictionContextType.h */,
1477
1472
  276E5C7B1CDB57AA003FF4B4 /* PredictionMode.cpp */,
1478
1473
  276E5C7C1CDB57AA003FF4B4 /* PredictionMode.h */,
1479
1474
  276E5C7D1CDB57AA003FF4B4 /* ProfilingATNSimulator.cpp */,
1480
1475
  276E5C7E1CDB57AA003FF4B4 /* ProfilingATNSimulator.h */,
1481
1476
  276E5C7F1CDB57AA003FF4B4 /* RangeTransition.cpp */,
1482
1477
  276E5C801CDB57AA003FF4B4 /* RangeTransition.h */,
1483
- 276E5C811CDB57AA003FF4B4 /* RuleStartState.cpp */,
1484
1478
  276E5C821CDB57AA003FF4B4 /* RuleStartState.h */,
1485
- 276E5C831CDB57AA003FF4B4 /* RuleStopState.cpp */,
1486
1479
  276E5C841CDB57AA003FF4B4 /* RuleStopState.h */,
1487
1480
  276E5C851CDB57AA003FF4B4 /* RuleTransition.cpp */,
1488
1481
  276E5C861CDB57AA003FF4B4 /* RuleTransition.h */,
1489
1482
  276E5C871CDB57AA003FF4B4 /* SemanticContext.cpp */,
1490
1483
  276E5C881CDB57AA003FF4B4 /* SemanticContext.h */,
1484
+ 9B25DCCB291027ED00DF9703 /* SemanticContextType.h */,
1485
+ 9B25DCCC291027EE00DF9703 /* SerializedATNView.h */,
1491
1486
  276E5C891CDB57AA003FF4B4 /* SetTransition.cpp */,
1492
1487
  276E5C8A1CDB57AA003FF4B4 /* SetTransition.h */,
1493
1488
  276E5C8B1CDB57AA003FF4B4 /* SingletonPredictionContext.cpp */,
1494
1489
  276E5C8C1CDB57AA003FF4B4 /* SingletonPredictionContext.h */,
1495
- 276E5C8D1CDB57AA003FF4B4 /* StarBlockStartState.cpp */,
1496
1490
  276E5C8E1CDB57AA003FF4B4 /* StarBlockStartState.h */,
1497
1491
  276E5C8F1CDB57AA003FF4B4 /* StarLoopbackState.cpp */,
1498
1492
  276E5C901CDB57AA003FF4B4 /* StarLoopbackState.h */,
1499
- 276E5C911CDB57AA003FF4B4 /* StarLoopEntryState.cpp */,
1500
1493
  276E5C921CDB57AA003FF4B4 /* StarLoopEntryState.h */,
1501
- 276E5C931CDB57AA003FF4B4 /* TokensStartState.cpp */,
1502
1494
  276E5C941CDB57AA003FF4B4 /* TokensStartState.h */,
1503
1495
  276E5C951CDB57AA003FF4B4 /* Transition.cpp */,
1504
1496
  276E5C961CDB57AA003FF4B4 /* Transition.h */,
1497
+ 9B25DCD32910282B00DF9703 /* TransitionType.cpp */,
1498
+ 9B25DCD42910282B00DF9703 /* TransitionType.h */,
1505
1499
  276E5C971CDB57AA003FF4B4 /* WildcardTransition.cpp */,
1506
1500
  276E5C981CDB57AA003FF4B4 /* WildcardTransition.h */,
1507
1501
  );
@@ -1547,13 +1541,15 @@
1547
1541
  276E5CE51CDB57AA003FF4B4 /* Arrays.cpp */,
1548
1542
  276E5CE61CDB57AA003FF4B4 /* Arrays.h */,
1549
1543
  276E5CE71CDB57AA003FF4B4 /* BitSet.h */,
1544
+ 9B25DCE4291028BC00DF9703 /* Casts.h */,
1550
1545
  276E5CE81CDB57AA003FF4B4 /* CPPUtils.cpp */,
1551
1546
  276E5CE91CDB57AA003FF4B4 /* CPPUtils.h */,
1552
1547
  276E5CEA1CDB57AA003FF4B4 /* Declarations.h */,
1553
- 276E5CEB1CDB57AA003FF4B4 /* Guid.cpp */,
1554
- 276E5CEC1CDB57AA003FF4B4 /* Guid.h */,
1555
1548
  276E5CED1CDB57AA003FF4B4 /* StringUtils.cpp */,
1556
1549
  276E5CEE1CDB57AA003FF4B4 /* StringUtils.h */,
1550
+ 9B25DCE8291028D000DF9703 /* Unicode.h */,
1551
+ 9B25DCEA291028D000DF9703 /* Utf8.cpp */,
1552
+ 9B25DCE9291028D000DF9703 /* Utf8.h */,
1557
1553
  );
1558
1554
  path = support;
1559
1555
  sourceTree = "<group>";
@@ -1564,7 +1560,6 @@
1564
1560
  276E5D061CDB57AA003FF4B4 /* pattern */,
1565
1561
  27DB448A1D045537007E790B /* xpath */,
1566
1562
  276E5CFA1CDB57AA003FF4B4 /* AbstractParseTreeVisitor.h */,
1567
- 2793DC941F0808E100A84290 /* ErrorNode.cpp */,
1568
1563
  276E5CFB1CDB57AA003FF4B4 /* ErrorNode.h */,
1569
1564
  276E5CFC1CDB57AA003FF4B4 /* ErrorNodeImpl.cpp */,
1570
1565
  276E5CFD1CDB57AA003FF4B4 /* ErrorNodeImpl.h */,
@@ -1579,7 +1574,6 @@
1579
1574
  276E5D031CDB57AA003FF4B4 /* ParseTreeVisitor.h */,
1580
1575
  276E5D041CDB57AA003FF4B4 /* ParseTreeWalker.cpp */,
1581
1576
  276E5D051CDB57AA003FF4B4 /* ParseTreeWalker.h */,
1582
- 2793DC901F0808A200A84290 /* TerminalNode.cpp */,
1583
1577
  276E5D181CDB57AA003FF4B4 /* TerminalNode.h */,
1584
1578
  276E5D191CDB57AA003FF4B4 /* TerminalNodeImpl.cpp */,
1585
1579
  276E5D1A1CDB57AA003FF4B4 /* TerminalNodeImpl.h */,
@@ -1592,8 +1586,8 @@
1592
1586
  276E5D061CDB57AA003FF4B4 /* pattern */ = {
1593
1587
  isa = PBXGroup;
1594
1588
  children = (
1595
- 276E5D071CDB57AA003FF4B4 /* Chunk.h */,
1596
1589
  2793DC881F08087500A84290 /* Chunk.cpp */,
1590
+ 276E5D071CDB57AA003FF4B4 /* Chunk.h */,
1597
1591
  276E5D081CDB57AA003FF4B4 /* ParseTreeMatch.cpp */,
1598
1592
  276E5D091CDB57AA003FF4B4 /* ParseTreeMatch.h */,
1599
1593
  276E5D0A1CDB57AA003FF4B4 /* ParseTreePattern.cpp */,
@@ -1667,6 +1661,15 @@
1667
1661
  name = Products;
1668
1662
  sourceTree = "<group>";
1669
1663
  };
1664
+ 9B25DCDB2910287000DF9703 /* internal */ = {
1665
+ isa = PBXGroup;
1666
+ children = (
1667
+ 9B25DCDC2910287000DF9703 /* Synchronization.cpp */,
1668
+ 9B25DCDD2910287000DF9703 /* Synchronization.h */,
1669
+ );
1670
+ path = internal;
1671
+ sourceTree = "<group>";
1672
+ };
1670
1673
  /* End PBXGroup section */
1671
1674
 
1672
1675
  /* Begin PBXHeadersBuildPhase section */
@@ -1679,6 +1682,7 @@
1679
1682
  276E5F431CDB57AA003FF4B4 /* IntStream.h in Headers */,
1680
1683
  276E5D5D1CDB57AA003FF4B4 /* ATN.h in Headers */,
1681
1684
  276E60601CDB57AA003FF4B4 /* UnbufferedCharStream.h in Headers */,
1685
+ 9B25DCAA2910252800DF9703 /* Version.h in Headers */,
1682
1686
  276E5DD81CDB57AA003FF4B4 /* LexerAction.h in Headers */,
1683
1687
  276E5FF71CDB57AA003FF4B4 /* ParseTree.h in Headers */,
1684
1688
  276E5DA81CDB57AA003FF4B4 /* BlockStartState.h in Headers */,
@@ -1686,11 +1690,11 @@
1686
1690
  276E5D6F1CDB57AA003FF4B4 /* ATNDeserializationOptions.h in Headers */,
1687
1691
  27DB44CA1D0463DB007E790B /* XPath.h in Headers */,
1688
1692
  276E5EDD1CDB57AA003FF4B4 /* BaseErrorListener.h in Headers */,
1693
+ 9B25DCBE2910278000DF9703 /* PredictionContextMergeCache.h in Headers */,
1689
1694
  276E5DB71CDB57AA003FF4B4 /* DecisionEventInfo.h in Headers */,
1690
1695
  27DB44D01D0463DB007E790B /* XPathRuleAnywhereElement.h in Headers */,
1691
1696
  27AC52D21CE773A80093AAAB /* antlr4-runtime.h in Headers */,
1692
1697
  276E5E2C1CDB57AA003FF4B4 /* LL1Analyzer.h in Headers */,
1693
- 276E5D7B1CDB57AA003FF4B4 /* ATNSerializer.h in Headers */,
1694
1698
  276E5EAD1CDB57AA003FF4B4 /* SingletonPredictionContext.h in Headers */,
1695
1699
  276E5E1A1CDB57AA003FF4B4 /* LexerPushModeAction.h in Headers */,
1696
1700
  276E5ECB1CDB57AA003FF4B4 /* Transition.h in Headers */,
@@ -1719,6 +1723,7 @@
1719
1723
  276E5E8F1CDB57AA003FF4B4 /* RuleStartState.h in Headers */,
1720
1724
  276E5E201CDB57AA003FF4B4 /* LexerSkipAction.h in Headers */,
1721
1725
  276E5E381CDB57AA003FF4B4 /* LoopEndState.h in Headers */,
1726
+ 9B25DCED291028D000DF9703 /* Unicode.h in Headers */,
1722
1727
  276E5D691CDB57AA003FF4B4 /* ATNConfigSet.h in Headers */,
1723
1728
  276E5D391CDB57AA003FF4B4 /* ANTLRFileStream.h in Headers */,
1724
1729
  276E5D301CDB57AA003FF4B4 /* ANTLRErrorListener.h in Headers */,
@@ -1728,9 +1733,12 @@
1728
1733
  276E5F191CDB57AA003FF4B4 /* DFAState.h in Headers */,
1729
1734
  276E5FA61CDB57AA003FF4B4 /* Recognizer.h in Headers */,
1730
1735
  276E60751CDB57AA003FF4B4 /* WritableToken.h in Headers */,
1736
+ 9B25DCD2291027EE00DF9703 /* SerializedATNView.h in Headers */,
1731
1737
  276E5D3F1CDB57AA003FF4B4 /* ANTLRInputStream.h in Headers */,
1732
1738
  276E5FD01CDB57AA003FF4B4 /* Token.h in Headers */,
1739
+ 9B25DCC12910278000DF9703 /* PredictionContextType.h in Headers */,
1733
1740
  276E60421CDB57AA003FF4B4 /* TerminalNode.h in Headers */,
1741
+ 9B25DCCF291027EE00DF9703 /* SemanticContextType.h in Headers */,
1734
1742
  276E5D751CDB57AA003FF4B4 /* ATNDeserializer.h in Headers */,
1735
1743
  276E5D871CDB57AA003FF4B4 /* ATNState.h in Headers */,
1736
1744
  276E5E7D1CDB57AA003FF4B4 /* PredictionMode.h in Headers */,
@@ -1743,12 +1751,12 @@
1743
1751
  276E5FB21CDB57AA003FF4B4 /* Arrays.h in Headers */,
1744
1752
  276E5F821CDB57AA003FF4B4 /* NoViableAltException.h in Headers */,
1745
1753
  276E5DEA1CDB57AA003FF4B4 /* LexerATNConfig.h in Headers */,
1754
+ 9B25DCA32910249100DF9703 /* FlatHashSet.h in Headers */,
1746
1755
  276E60481CDB57AA003FF4B4 /* TerminalNodeImpl.h in Headers */,
1747
1756
  27745F081CE49C000067C6A3 /* RuntimeMetaData.h in Headers */,
1757
+ 9B25DCBB2910278000DF9703 /* PredictionContextCache.h in Headers */,
1748
1758
  276E5FF41CDB57AA003FF4B4 /* ErrorNodeImpl.h in Headers */,
1749
1759
  276E5EC51CDB57AA003FF4B4 /* TokensStartState.h in Headers */,
1750
- 276E5DC91CDB57AA003FF4B4 /* EmptyPredictionContext.h in Headers */,
1751
- 276E5D451CDB57AA003FF4B4 /* AbstractPredicateTransition.h in Headers */,
1752
1760
  276E5F2B1CDB57AA003FF4B4 /* Exceptions.h in Headers */,
1753
1761
  276E5F251CDB57AA003FF4B4 /* DiagnosticErrorListener.h in Headers */,
1754
1762
  276E5E141CDB57AA003FF4B4 /* LexerPopModeAction.h in Headers */,
@@ -1760,13 +1768,15 @@
1760
1768
  276E5E771CDB57AA003FF4B4 /* PredictionContext.h in Headers */,
1761
1769
  276E60151CDB57AA003FF4B4 /* ParseTreeMatch.h in Headers */,
1762
1770
  27DB44CC1D0463DB007E790B /* XPathElement.h in Headers */,
1771
+ 9B25DCF0291028D000DF9703 /* Utf8.h in Headers */,
1763
1772
  276E5F581CDB57AA003FF4B4 /* LexerNoViableAltException.h in Headers */,
1764
1773
  276E5D811CDB57AA003FF4B4 /* ATNSimulator.h in Headers */,
1765
1774
  27DB44B61D0463CC007E790B /* XPathLexer.h in Headers */,
1766
- 276E5FC41CDB57AA003FF4B4 /* Guid.h in Headers */,
1767
1775
  276E602D1CDB57AA003FF4B4 /* TagChunk.h in Headers */,
1768
1776
  276E5E951CDB57AA003FF4B4 /* RuleStopState.h in Headers */,
1777
+ 9B25DCE32910287000DF9703 /* Synchronization.h in Headers */,
1769
1778
  276E5F761CDB57AA003FF4B4 /* Predicate.h in Headers */,
1779
+ 9B25DCB2291026DE00DF9703 /* ParserATNSimulatorOptions.h in Headers */,
1770
1780
  276E5F941CDB57AA003FF4B4 /* ParserRuleContext.h in Headers */,
1771
1781
  276E5FEE1CDB57AA003FF4B4 /* ErrorNode.h in Headers */,
1772
1782
  276E5EB91CDB57AA003FF4B4 /* StarLoopbackState.h in Headers */,
@@ -1775,10 +1785,12 @@
1775
1785
  276E5E591CDB57AA003FF4B4 /* PlusBlockStartState.h in Headers */,
1776
1786
  276E5D931CDB57AA003FF4B4 /* AtomTransition.h in Headers */,
1777
1787
  276E5F521CDB57AA003FF4B4 /* LexerInterpreter.h in Headers */,
1788
+ 9B25DCA62910249100DF9703 /* FlatHashMap.h in Headers */,
1778
1789
  276E5F311CDB57AA003FF4B4 /* FailedPredicateException.h in Headers */,
1779
1790
  276E5E321CDB57AA003FF4B4 /* LookaheadEventInfo.h in Headers */,
1780
1791
  276E5F0D1CDB57AA003FF4B4 /* DFA.h in Headers */,
1781
1792
  276E606F1CDB57AA003FF4B4 /* Vocabulary.h in Headers */,
1793
+ 9B25DCAE291025B700DF9703 /* ATNStateType.h in Headers */,
1782
1794
  276E60541CDB57AA003FF4B4 /* Trees.h in Headers */,
1783
1795
  276E5FB51CDB57AA003FF4B4 /* BitSet.h in Headers */,
1784
1796
  276E5F9A1CDB57AA003FF4B4 /* ProxyErrorListener.h in Headers */,
@@ -1812,6 +1824,7 @@
1812
1824
  276E5ED11CDB57AA003FF4B4 /* WildcardTransition.h in Headers */,
1813
1825
  276E600F1CDB57AA003FF4B4 /* Chunk.h in Headers */,
1814
1826
  276E5FBB1CDB57AA003FF4B4 /* CPPUtils.h in Headers */,
1827
+ 9B25DCC72910278000DF9703 /* PredictionContextMergeCacheOptions.h in Headers */,
1815
1828
  276E5EE31CDB57AA003FF4B4 /* BufferedTokenStream.h in Headers */,
1816
1829
  276E5DB11CDB57AA003FF4B4 /* ContextSensitivityInfo.h in Headers */,
1817
1830
  276E5E021CDB57AA003FF4B4 /* LexerIndexedCustomAction.h in Headers */,
@@ -1822,6 +1835,7 @@
1822
1835
  276E60211CDB57AA003FF4B4 /* ParseTreePatternMatcher.h in Headers */,
1823
1836
  276E5D631CDB57AA003FF4B4 /* ATNConfig.h in Headers */,
1824
1837
  27DB44D41D0463DB007E790B /* XPathTokenAnywhereElement.h in Headers */,
1838
+ 9B25DCE7291028BC00DF9703 /* Casts.h in Headers */,
1825
1839
  27DB44D81D0463DB007E790B /* XPathWildcardAnywhereElement.h in Headers */,
1826
1840
  276E5E4D1CDB57AA003FF4B4 /* ParseInfo.h in Headers */,
1827
1841
  276E5F881CDB57AA003FF4B4 /* Parser.h in Headers */,
@@ -1830,6 +1844,7 @@
1830
1844
  276E5E6B1CDB57AA003FF4B4 /* PredicateEvalInfo.h in Headers */,
1831
1845
  276E5EEF1CDB57AA003FF4B4 /* CommonToken.h in Headers */,
1832
1846
  270C67F31CDB4F1E00116E17 /* antlrcpp_ios.h in Headers */,
1847
+ 9B25DCDA2910282B00DF9703 /* TransitionType.h in Headers */,
1833
1848
  276E60391CDB57AA003FF4B4 /* TokenTagToken.h in Headers */,
1834
1849
  );
1835
1850
  runOnlyForDeploymentPostprocessing = 0;
@@ -1850,22 +1865,25 @@
1850
1865
  276E5FE11CDB57AA003FF4B4 /* TokenStream.h in Headers */,
1851
1866
  276E5D6E1CDB57AA003FF4B4 /* ATNDeserializationOptions.h in Headers */,
1852
1867
  276E5EDC1CDB57AA003FF4B4 /* BaseErrorListener.h in Headers */,
1868
+ 9B25DCBA2910278000DF9703 /* PredictionContextCache.h in Headers */,
1853
1869
  276E5DB61CDB57AA003FF4B4 /* DecisionEventInfo.h in Headers */,
1854
1870
  276E5E2B1CDB57AA003FF4B4 /* LL1Analyzer.h in Headers */,
1855
1871
  27DB44BA1D0463DA007E790B /* XPathElement.h in Headers */,
1856
- 276E5D7A1CDB57AA003FF4B4 /* ATNSerializer.h in Headers */,
1857
1872
  27C375881EA1059C00B5883C /* InterpreterDataReader.h in Headers */,
1858
1873
  276E5EAC1CDB57AA003FF4B4 /* SingletonPredictionContext.h in Headers */,
1859
1874
  276E5E191CDB57AA003FF4B4 /* LexerPushModeAction.h in Headers */,
1860
1875
  276E5ECA1CDB57AA003FF4B4 /* Transition.h in Headers */,
1876
+ 9B25DCBD2910278000DF9703 /* PredictionContextMergeCache.h in Headers */,
1861
1877
  276E5EA01CDB57AA003FF4B4 /* SemanticContext.h in Headers */,
1862
1878
  276E5F5D1CDB57AA003FF4B4 /* ListTokenSource.h in Headers */,
1879
+ 9B25DCE22910287000DF9703 /* Synchronization.h in Headers */,
1863
1880
  276E5F8D1CDB57AA003FF4B4 /* ParserInterpreter.h in Headers */,
1864
1881
  27D414561DEB0D3D00D0F3F9 /* IterativeParseTreeWalker.h in Headers */,
1865
1882
  276E5DDD1CDB57AA003FF4B4 /* LexerActionExecutor.h in Headers */,
1866
1883
  276E5F4B1CDB57AA003FF4B4 /* Lexer.h in Headers */,
1867
1884
  276E5F631CDB57AA003FF4B4 /* Interval.h in Headers */,
1868
1885
  276E5DA41CDB57AA003FF4B4 /* BlockEndState.h in Headers */,
1886
+ 9B25DCA92910252800DF9703 /* Version.h in Headers */,
1869
1887
  27DB44C21D0463DA007E790B /* XPathTokenAnywhereElement.h in Headers */,
1870
1888
  276E5E821CDB57AA003FF4B4 /* ProfilingATNSimulator.h in Headers */,
1871
1889
  27DB44C41D0463DA007E790B /* XPathTokenElement.h in Headers */,
@@ -1873,6 +1891,8 @@
1873
1891
  276E5E9A1CDB57AA003FF4B4 /* RuleTransition.h in Headers */,
1874
1892
  27DB44B81D0463DA007E790B /* XPath.h in Headers */,
1875
1893
  276E60021CDB57AA003FF4B4 /* ParseTreeProperty.h in Headers */,
1894
+ 9B25DCC02910278000DF9703 /* PredictionContextType.h in Headers */,
1895
+ 9B25DCEC291028D000DF9703 /* Unicode.h in Headers */,
1876
1896
  276E5D8C1CDB57AA003FF4B4 /* ATNType.h in Headers */,
1877
1897
  276E5FFC1CDB57AA003FF4B4 /* ParseTreeListener.h in Headers */,
1878
1898
  276E5D9E1CDB57AA003FF4B4 /* BasicState.h in Headers */,
@@ -1911,26 +1931,26 @@
1911
1931
  276E5E461CDB57AA003FF4B4 /* OrderedATNConfigSet.h in Headers */,
1912
1932
  276E5DF51CDB57AA003FF4B4 /* LexerChannelAction.h in Headers */,
1913
1933
  276E5FB11CDB57AA003FF4B4 /* Arrays.h in Headers */,
1934
+ 9B25DCA22910249100DF9703 /* FlatHashSet.h in Headers */,
1914
1935
  276E5F811CDB57AA003FF4B4 /* NoViableAltException.h in Headers */,
1915
1936
  276E5DE91CDB57AA003FF4B4 /* LexerATNConfig.h in Headers */,
1916
1937
  276E60471CDB57AA003FF4B4 /* TerminalNodeImpl.h in Headers */,
1917
1938
  276E5FF31CDB57AA003FF4B4 /* ErrorNodeImpl.h in Headers */,
1918
1939
  276E5EC41CDB57AA003FF4B4 /* TokensStartState.h in Headers */,
1919
- 276E5DC81CDB57AA003FF4B4 /* EmptyPredictionContext.h in Headers */,
1920
- 276E5D441CDB57AA003FF4B4 /* AbstractPredicateTransition.h in Headers */,
1921
1940
  276E5F2A1CDB57AA003FF4B4 /* Exceptions.h in Headers */,
1922
1941
  27DB44C61D0463DA007E790B /* XPathWildcardAnywhereElement.h in Headers */,
1942
+ 9B25DCE6291028BC00DF9703 /* Casts.h in Headers */,
1923
1943
  276E5F241CDB57AA003FF4B4 /* DiagnosticErrorListener.h in Headers */,
1924
1944
  276E5E131CDB57AA003FF4B4 /* LexerPopModeAction.h in Headers */,
1925
1945
  276E5ED61CDB57AA003FF4B4 /* BailErrorStrategy.h in Headers */,
1926
1946
  276E5DCE1CDB57AA003FF4B4 /* EpsilonTransition.h in Headers */,
1927
1947
  276E5FBD1CDB57AA003FF4B4 /* Declarations.h in Headers */,
1928
1948
  276E600B1CDB57AA003FF4B4 /* ParseTreeWalker.h in Headers */,
1949
+ 9B25DCCE291027EE00DF9703 /* SemanticContextType.h in Headers */,
1929
1950
  276E5E761CDB57AA003FF4B4 /* PredictionContext.h in Headers */,
1930
1951
  276E60141CDB57AA003FF4B4 /* ParseTreeMatch.h in Headers */,
1931
1952
  276E5F571CDB57AA003FF4B4 /* LexerNoViableAltException.h in Headers */,
1932
1953
  276E5D801CDB57AA003FF4B4 /* ATNSimulator.h in Headers */,
1933
- 276E5FC31CDB57AA003FF4B4 /* Guid.h in Headers */,
1934
1954
  276E602C1CDB57AA003FF4B4 /* TagChunk.h in Headers */,
1935
1955
  276E5E941CDB57AA003FF4B4 /* RuleStopState.h in Headers */,
1936
1956
  276E5F751CDB57AA003FF4B4 /* Predicate.h in Headers */,
@@ -1942,6 +1962,7 @@
1942
1962
  276E5E581CDB57AA003FF4B4 /* PlusBlockStartState.h in Headers */,
1943
1963
  276E5D921CDB57AA003FF4B4 /* AtomTransition.h in Headers */,
1944
1964
  276E5F511CDB57AA003FF4B4 /* LexerInterpreter.h in Headers */,
1965
+ 9B25DCB1291026DE00DF9703 /* ParserATNSimulatorOptions.h in Headers */,
1945
1966
  276E5F301CDB57AA003FF4B4 /* FailedPredicateException.h in Headers */,
1946
1967
  276E5E311CDB57AA003FF4B4 /* LookaheadEventInfo.h in Headers */,
1947
1968
  276E5F0C1CDB57AA003FF4B4 /* DFA.h in Headers */,
@@ -1950,18 +1971,23 @@
1950
1971
  276E5FB41CDB57AA003FF4B4 /* BitSet.h in Headers */,
1951
1972
  276E5F991CDB57AA003FF4B4 /* ProxyErrorListener.h in Headers */,
1952
1973
  276E5E401CDB57AA003FF4B4 /* NotSetTransition.h in Headers */,
1974
+ 9B25DCD92910282B00DF9703 /* TransitionType.h in Headers */,
1975
+ 9B25DCD1291027EE00DF9703 /* SerializedATNView.h in Headers */,
1953
1976
  276E5E881CDB57AA003FF4B4 /* RangeTransition.h in Headers */,
1954
1977
  276E601A1CDB57AA003FF4B4 /* ParseTreePattern.h in Headers */,
1955
1978
  276E5DFB1CDB57AA003FF4B4 /* LexerCustomAction.h in Headers */,
1956
1979
  276E5FE71CDB57AA003FF4B4 /* TokenStreamRewriter.h in Headers */,
1980
+ 9B25DCC62910278000DF9703 /* PredictionContextMergeCacheOptions.h in Headers */,
1957
1981
  276E5DEF1CDB57AA003FF4B4 /* LexerATNSimulator.h in Headers */,
1958
1982
  276E5DD41CDB57AA003FF4B4 /* ErrorInfo.h in Headers */,
1959
1983
  276E5E251CDB57AA003FF4B4 /* LexerTypeAction.h in Headers */,
1960
1984
  276E5DE31CDB57AA003FF4B4 /* LexerActionType.h in Headers */,
1961
1985
  276E5D501CDB57AA003FF4B4 /* AmbiguityInfo.h in Headers */,
1962
1986
  276E5E701CDB57AA003FF4B4 /* PredicateTransition.h in Headers */,
1987
+ 9B25DCEF291028D000DF9703 /* Utf8.h in Headers */,
1963
1988
  276E5EE81CDB57AA003FF4B4 /* CharStream.h in Headers */,
1964
1989
  276E60051CDB57AA003FF4B4 /* ParseTreeVisitor.h in Headers */,
1990
+ 9B25DCAD291025B700DF9703 /* ATNStateType.h in Headers */,
1965
1991
  276E5D561CDB57AA003FF4B4 /* ArrayPredictionContext.h in Headers */,
1966
1992
  276E5E521CDB57AA003FF4B4 /* ParserATNSimulator.h in Headers */,
1967
1993
  2794D8571CE7821B00FADD0F /* antlr4-common.h in Headers */,
@@ -1991,6 +2017,7 @@
1991
2017
  276E5F871CDB57AA003FF4B4 /* Parser.h in Headers */,
1992
2018
  276E5DBC1CDB57AA003FF4B4 /* DecisionInfo.h in Headers */,
1993
2019
  276E5DC21CDB57AA003FF4B4 /* DecisionState.h in Headers */,
2020
+ 9B25DCA52910249100DF9703 /* FlatHashMap.h in Headers */,
1994
2021
  276E5E6A1CDB57AA003FF4B4 /* PredicateEvalInfo.h in Headers */,
1995
2022
  276E5EEE1CDB57AA003FF4B4 /* CommonToken.h in Headers */,
1996
2023
  276E60381CDB57AA003FF4B4 /* TokenTagToken.h in Headers */,
@@ -2006,6 +2033,7 @@
2006
2033
  276E60311CDB57AA003FF4B4 /* TextChunk.h in Headers */,
2007
2034
  276E5F411CDB57AA003FF4B4 /* IntStream.h in Headers */,
2008
2035
  276E5D5B1CDB57AA003FF4B4 /* ATN.h in Headers */,
2036
+ 9B25DCA82910252800DF9703 /* Version.h in Headers */,
2009
2037
  276E605E1CDB57AA003FF4B4 /* UnbufferedCharStream.h in Headers */,
2010
2038
  276E5DD61CDB57AA003FF4B4 /* LexerAction.h in Headers */,
2011
2039
  27DB44A41D045537007E790B /* XPathRuleAnywhereElement.h in Headers */,
@@ -2013,11 +2041,11 @@
2013
2041
  27AC52D01CE773A80093AAAB /* antlr4-runtime.h in Headers */,
2014
2042
  276E5DA61CDB57AA003FF4B4 /* BlockStartState.h in Headers */,
2015
2043
  276E5FE01CDB57AA003FF4B4 /* TokenStream.h in Headers */,
2044
+ 9B25DCBC2910278000DF9703 /* PredictionContextMergeCache.h in Headers */,
2016
2045
  276E5D6D1CDB57AA003FF4B4 /* ATNDeserializationOptions.h in Headers */,
2017
2046
  276E5EDB1CDB57AA003FF4B4 /* BaseErrorListener.h in Headers */,
2018
2047
  276E5DB51CDB57AA003FF4B4 /* DecisionEventInfo.h in Headers */,
2019
2048
  276E5E2A1CDB57AA003FF4B4 /* LL1Analyzer.h in Headers */,
2020
- 276E5D791CDB57AA003FF4B4 /* ATNSerializer.h in Headers */,
2021
2049
  276E5EAB1CDB57AA003FF4B4 /* SingletonPredictionContext.h in Headers */,
2022
2050
  276E5E181CDB57AA003FF4B4 /* LexerPushModeAction.h in Headers */,
2023
2051
  276E5EC91CDB57AA003FF4B4 /* Transition.h in Headers */,
@@ -2046,6 +2074,7 @@
2046
2074
  276E5E1E1CDB57AA003FF4B4 /* LexerSkipAction.h in Headers */,
2047
2075
  276E5E361CDB57AA003FF4B4 /* LoopEndState.h in Headers */,
2048
2076
  276E5D671CDB57AA003FF4B4 /* ATNConfigSet.h in Headers */,
2077
+ 9B25DCEB291028D000DF9703 /* Unicode.h in Headers */,
2049
2078
  276E5D371CDB57AA003FF4B4 /* ANTLRFileStream.h in Headers */,
2050
2079
  27DB44B41D0463CC007E790B /* XPathLexer.h in Headers */,
2051
2080
  276E5D2E1CDB57AA003FF4B4 /* ANTLRErrorListener.h in Headers */,
@@ -2055,9 +2084,12 @@
2055
2084
  276E5F171CDB57AA003FF4B4 /* DFAState.h in Headers */,
2056
2085
  276E5FA41CDB57AA003FF4B4 /* Recognizer.h in Headers */,
2057
2086
  276E60731CDB57AA003FF4B4 /* WritableToken.h in Headers */,
2087
+ 9B25DCD0291027EE00DF9703 /* SerializedATNView.h in Headers */,
2058
2088
  276E5D3D1CDB57AA003FF4B4 /* ANTLRInputStream.h in Headers */,
2059
2089
  276E5FCE1CDB57AA003FF4B4 /* Token.h in Headers */,
2090
+ 9B25DCBF2910278000DF9703 /* PredictionContextType.h in Headers */,
2060
2091
  276E60401CDB57AA003FF4B4 /* TerminalNode.h in Headers */,
2092
+ 9B25DCCD291027EE00DF9703 /* SemanticContextType.h in Headers */,
2061
2093
  276E5D731CDB57AA003FF4B4 /* ATNDeserializer.h in Headers */,
2062
2094
  276E5D851CDB57AA003FF4B4 /* ATNState.h in Headers */,
2063
2095
  276E5E7B1CDB57AA003FF4B4 /* PredictionMode.h in Headers */,
@@ -2070,12 +2102,12 @@
2070
2102
  276E5DF41CDB57AA003FF4B4 /* LexerChannelAction.h in Headers */,
2071
2103
  276E5FB01CDB57AA003FF4B4 /* Arrays.h in Headers */,
2072
2104
  276E5F801CDB57AA003FF4B4 /* NoViableAltException.h in Headers */,
2105
+ 9B25DCA12910249100DF9703 /* FlatHashSet.h in Headers */,
2073
2106
  276E5DE81CDB57AA003FF4B4 /* LexerATNConfig.h in Headers */,
2074
2107
  276E60461CDB57AA003FF4B4 /* TerminalNodeImpl.h in Headers */,
2108
+ 9B25DCB92910278000DF9703 /* PredictionContextCache.h in Headers */,
2075
2109
  276E5FF21CDB57AA003FF4B4 /* ErrorNodeImpl.h in Headers */,
2076
2110
  276E5EC31CDB57AA003FF4B4 /* TokensStartState.h in Headers */,
2077
- 276E5DC71CDB57AA003FF4B4 /* EmptyPredictionContext.h in Headers */,
2078
- 276E5D431CDB57AA003FF4B4 /* AbstractPredicateTransition.h in Headers */,
2079
2111
  276E5F291CDB57AA003FF4B4 /* Exceptions.h in Headers */,
2080
2112
  276E5F231CDB57AA003FF4B4 /* DiagnosticErrorListener.h in Headers */,
2081
2113
  27DB449E1D045537007E790B /* XPath.h in Headers */,
@@ -2087,13 +2119,15 @@
2087
2119
  276E5E751CDB57AA003FF4B4 /* PredictionContext.h in Headers */,
2088
2120
  276E60131CDB57AA003FF4B4 /* ParseTreeMatch.h in Headers */,
2089
2121
  276E5F561CDB57AA003FF4B4 /* LexerNoViableAltException.h in Headers */,
2122
+ 9B25DCEE291028D000DF9703 /* Utf8.h in Headers */,
2090
2123
  276E5D7F1CDB57AA003FF4B4 /* ATNSimulator.h in Headers */,
2091
- 276E5FC21CDB57AA003FF4B4 /* Guid.h in Headers */,
2092
2124
  276E602B1CDB57AA003FF4B4 /* TagChunk.h in Headers */,
2093
2125
  276E5E931CDB57AA003FF4B4 /* RuleStopState.h in Headers */,
2094
2126
  276E5F741CDB57AA003FF4B4 /* Predicate.h in Headers */,
2095
2127
  276E5F921CDB57AA003FF4B4 /* ParserRuleContext.h in Headers */,
2128
+ 9B25DCE12910287000DF9703 /* Synchronization.h in Headers */,
2096
2129
  276E5FEC1CDB57AA003FF4B4 /* ErrorNode.h in Headers */,
2130
+ 9B25DCB0291026DE00DF9703 /* ParserATNSimulatorOptions.h in Headers */,
2097
2131
  276E5EB71CDB57AA003FF4B4 /* StarLoopbackState.h in Headers */,
2098
2132
  276E5E5D1CDB57AA003FF4B4 /* PlusLoopbackState.h in Headers */,
2099
2133
  276E5E061CDB57AA003FF4B4 /* LexerModeAction.h in Headers */,
@@ -2102,10 +2136,12 @@
2102
2136
  276E5F501CDB57AA003FF4B4 /* LexerInterpreter.h in Headers */,
2103
2137
  27DB44AE1D045537007E790B /* XPathWildcardElement.h in Headers */,
2104
2138
  276E5F2F1CDB57AA003FF4B4 /* FailedPredicateException.h in Headers */,
2139
+ 9B25DCA42910249100DF9703 /* FlatHashMap.h in Headers */,
2105
2140
  276E5E301CDB57AA003FF4B4 /* LookaheadEventInfo.h in Headers */,
2106
2141
  276E5F0B1CDB57AA003FF4B4 /* DFA.h in Headers */,
2107
2142
  276E606D1CDB57AA003FF4B4 /* Vocabulary.h in Headers */,
2108
2143
  276E60521CDB57AA003FF4B4 /* Trees.h in Headers */,
2144
+ 9B25DCAC291025B700DF9703 /* ATNStateType.h in Headers */,
2109
2145
  276E5FB31CDB57AA003FF4B4 /* BitSet.h in Headers */,
2110
2146
  27DB44AA1D045537007E790B /* XPathTokenElement.h in Headers */,
2111
2147
  276E5F981CDB57AA003FF4B4 /* ProxyErrorListener.h in Headers */,
@@ -2139,6 +2175,7 @@
2139
2175
  276E600D1CDB57AA003FF4B4 /* Chunk.h in Headers */,
2140
2176
  276E5FB91CDB57AA003FF4B4 /* CPPUtils.h in Headers */,
2141
2177
  276E5EE11CDB57AA003FF4B4 /* BufferedTokenStream.h in Headers */,
2178
+ 9B25DCC52910278000DF9703 /* PredictionContextMergeCacheOptions.h in Headers */,
2142
2179
  276E5DAF1CDB57AA003FF4B4 /* ContextSensitivityInfo.h in Headers */,
2143
2180
  276E5E001CDB57AA003FF4B4 /* LexerIndexedCustomAction.h in Headers */,
2144
2181
  27DB44A81D045537007E790B /* XPathTokenAnywhereElement.h in Headers */,
@@ -2149,6 +2186,7 @@
2149
2186
  276E5F6E1CDB57AA003FF4B4 /* MurmurHash.h in Headers */,
2150
2187
  276E601F1CDB57AA003FF4B4 /* ParseTreePatternMatcher.h in Headers */,
2151
2188
  276E5D611CDB57AA003FF4B4 /* ATNConfig.h in Headers */,
2189
+ 9B25DCE5291028BC00DF9703 /* Casts.h in Headers */,
2152
2190
  27DB44A21D045537007E790B /* XPathLexerErrorListener.h in Headers */,
2153
2191
  276E5E4B1CDB57AA003FF4B4 /* ParseInfo.h in Headers */,
2154
2192
  276E5F861CDB57AA003FF4B4 /* Parser.h in Headers */,
@@ -2157,6 +2195,7 @@
2157
2195
  276E5DC11CDB57AA003FF4B4 /* DecisionState.h in Headers */,
2158
2196
  276E5E691CDB57AA003FF4B4 /* PredicateEvalInfo.h in Headers */,
2159
2197
  276E5EED1CDB57AA003FF4B4 /* CommonToken.h in Headers */,
2198
+ 9B25DCD82910282B00DF9703 /* TransitionType.h in Headers */,
2160
2199
  276E60371CDB57AA003FF4B4 /* TokenTagToken.h in Headers */,
2161
2200
  );
2162
2201
  runOnlyForDeploymentPostprocessing = 0;
@@ -2275,18 +2314,16 @@
2275
2314
  276E5D541CDB57AA003FF4B4 /* ArrayPredictionContext.cpp in Sources */,
2276
2315
  276E5F0A1CDB57AA003FF4B4 /* DFA.cpp in Sources */,
2277
2316
  276E5E231CDB57AA003FF4B4 /* LexerTypeAction.cpp in Sources */,
2278
- 276E5EC21CDB57AA003FF4B4 /* TokensStartState.cpp in Sources */,
2279
2317
  276E5DB41CDB57AA003FF4B4 /* DecisionEventInfo.cpp in Sources */,
2280
2318
  276E60451CDB57AA003FF4B4 /* TerminalNodeImpl.cpp in Sources */,
2281
2319
  276E5DD21CDB57AA003FF4B4 /* ErrorInfo.cpp in Sources */,
2282
2320
  276E5F551CDB57AA003FF4B4 /* LexerNoViableAltException.cpp in Sources */,
2283
2321
  2793DCB81F08099C00A84290 /* LexerAction.cpp in Sources */,
2284
- 276E5E561CDB57AA003FF4B4 /* PlusBlockStartState.cpp in Sources */,
2285
2322
  27C375861EA1059C00B5883C /* InterpreterDataReader.cpp in Sources */,
2286
2323
  276E5E1D1CDB57AA003FF4B4 /* LexerSkipAction.cpp in Sources */,
2287
- 276E5EBC1CDB57AA003FF4B4 /* StarLoopEntryState.cpp in Sources */,
2288
2324
  276E5D721CDB57AA003FF4B4 /* ATNDeserializer.cpp in Sources */,
2289
2325
  2793DC8B1F08087500A84290 /* Chunk.cpp in Sources */,
2326
+ 9B25DCE02910287000DF9703 /* Synchronization.cpp in Sources */,
2290
2327
  276E5E2F1CDB57AA003FF4B4 /* LookaheadEventInfo.cpp in Sources */,
2291
2328
  276E5DFF1CDB57AA003FF4B4 /* LexerIndexedCustomAction.cpp in Sources */,
2292
2329
  276E60511CDB57AA003FF4B4 /* Trees.cpp in Sources */,
@@ -2308,20 +2345,16 @@
2308
2345
  276E5E741CDB57AA003FF4B4 /* PredictionContext.cpp in Sources */,
2309
2346
  27DB44CB1D0463DB007E790B /* XPathElement.cpp in Sources */,
2310
2347
  276E5E171CDB57AA003FF4B4 /* LexerPushModeAction.cpp in Sources */,
2311
- 276E5DA21CDB57AA003FF4B4 /* BlockEndState.cpp in Sources */,
2312
2348
  276E5EF21CDB57AA003FF4B4 /* CommonTokenFactory.cpp in Sources */,
2313
2349
  276E5DF31CDB57AA003FF4B4 /* LexerChannelAction.cpp in Sources */,
2314
- 276E5E921CDB57AA003FF4B4 /* RuleStopState.cpp in Sources */,
2315
2350
  276E60631CDB57AA003FF4B4 /* UnbufferedTokenStream.cpp in Sources */,
2316
2351
  276E5DDB1CDB57AA003FF4B4 /* LexerActionExecutor.cpp in Sources */,
2317
- 2793DC981F0808E100A84290 /* ErrorNode.cpp in Sources */,
2318
2352
  2793DCAF1F08095F00A84290 /* WritableToken.cpp in Sources */,
2319
2353
  276E5E9E1CDB57AA003FF4B4 /* SemanticContext.cpp in Sources */,
2320
2354
  276E5EC81CDB57AA003FF4B4 /* Transition.cpp in Sources */,
2321
2355
  276E601E1CDB57AA003FF4B4 /* ParseTreePatternMatcher.cpp in Sources */,
2322
2356
  276E5F221CDB57AA003FF4B4 /* DiagnosticErrorListener.cpp in Sources */,
2323
2357
  276E5D481CDB57AA003FF4B4 /* ActionTransition.cpp in Sources */,
2324
- 276E5DC61CDB57AA003FF4B4 /* EmptyPredictionContext.cpp in Sources */,
2325
2358
  276E5ED41CDB57AA003FF4B4 /* BailErrorStrategy.cpp in Sources */,
2326
2359
  2793DC9B1F0808E100A84290 /* ParseTreeVisitor.cpp in Sources */,
2327
2360
  2793DCAC1F08095F00A84290 /* Token.cpp in Sources */,
@@ -2331,12 +2364,12 @@
2331
2364
  27DB44D51D0463DB007E790B /* XPathTokenElement.cpp in Sources */,
2332
2365
  27DB44D11D0463DB007E790B /* XPathRuleElement.cpp in Sources */,
2333
2366
  276E5DED1CDB57AA003FF4B4 /* LexerATNSimulator.cpp in Sources */,
2334
- 2793DCB51F08099C00A84290 /* BlockStartState.cpp in Sources */,
2335
2367
  276E606C1CDB57AA003FF4B4 /* Vocabulary.cpp in Sources */,
2336
2368
  276E5F1C1CDB57AA003FF4B4 /* LexerDFASerializer.cpp in Sources */,
2337
2369
  276E60181CDB57AA003FF4B4 /* ParseTreePattern.cpp in Sources */,
2338
2370
  276E5DE71CDB57AA003FF4B4 /* LexerATNConfig.cpp in Sources */,
2339
2371
  27B36AC81DACE7AF0069C868 /* RuleContextWithAltNum.cpp in Sources */,
2372
+ 9B25DCC42910278000DF9703 /* PredictionContextCache.cpp in Sources */,
2340
2373
  276E5F101CDB57AA003FF4B4 /* DFASerializer.cpp in Sources */,
2341
2374
  276E5F2E1CDB57AA003FF4B4 /* FailedPredicateException.cpp in Sources */,
2342
2375
  27D414541DEB0D3D00D0F3F9 /* IterativeParseTreeWalker.cpp in Sources */,
@@ -2346,14 +2379,12 @@
2346
2379
  276E60091CDB57AA003FF4B4 /* ParseTreeWalker.cpp in Sources */,
2347
2380
  27DB44CD1D0463DB007E790B /* XPathLexerErrorListener.cpp in Sources */,
2348
2381
  276E5F9D1CDB57AA003FF4B4 /* RecognitionException.cpp in Sources */,
2349
- 276E5E8C1CDB57AA003FF4B4 /* RuleStartState.cpp in Sources */,
2350
2382
  276E5EA41CDB57AA003FF4B4 /* SetTransition.cpp in Sources */,
2351
2383
  276E5D841CDB57AA003FF4B4 /* ATNState.cpp in Sources */,
2352
2384
  276E60241CDB57AA003FF4B4 /* RuleTagToken.cpp in Sources */,
2353
2385
  276E5E501CDB57AA003FF4B4 /* ParserATNSimulator.cpp in Sources */,
2354
2386
  276E602A1CDB57AA003FF4B4 /* TagChunk.cpp in Sources */,
2355
2387
  276E5F7F1CDB57AA003FF4B4 /* NoViableAltException.cpp in Sources */,
2356
- 276E5D781CDB57AA003FF4B4 /* ATNSerializer.cpp in Sources */,
2357
2388
  27745F051CE49C000067C6A3 /* RuntimeMetaData.cpp in Sources */,
2358
2389
  276E5DAE1CDB57AA003FF4B4 /* ContextSensitivityInfo.cpp in Sources */,
2359
2390
  2793DCA61F08095F00A84290 /* ANTLRErrorListener.cpp in Sources */,
@@ -2363,8 +2394,6 @@
2363
2394
  276E5ECE1CDB57AA003FF4B4 /* WildcardTransition.cpp in Sources */,
2364
2395
  276E5E861CDB57AA003FF4B4 /* RangeTransition.cpp in Sources */,
2365
2396
  276E5D7E1CDB57AA003FF4B4 /* ATNSimulator.cpp in Sources */,
2366
- 276E5D9C1CDB57AA003FF4B4 /* BasicState.cpp in Sources */,
2367
- 276E5FC11CDB57AA003FF4B4 /* Guid.cpp in Sources */,
2368
2397
  276E5E801CDB57AA003FF4B4 /* ProfilingATNSimulator.cpp in Sources */,
2369
2398
  2793DCA91F08095F00A84290 /* ANTLRErrorStrategy.cpp in Sources */,
2370
2399
  276E5F401CDB57AA003FF4B4 /* IntStream.cpp in Sources */,
@@ -2373,7 +2402,6 @@
2373
2402
  276E5FDF1CDB57AA003FF4B4 /* TokenStream.cpp in Sources */,
2374
2403
  276E5FF11CDB57AA003FF4B4 /* ErrorNodeImpl.cpp in Sources */,
2375
2404
  27DB44D71D0463DB007E790B /* XPathWildcardAnywhereElement.cpp in Sources */,
2376
- 276E5D961CDB57AA003FF4B4 /* BasicBlockStartState.cpp in Sources */,
2377
2405
  276E5E4A1CDB57AA003FF4B4 /* ParseInfo.cpp in Sources */,
2378
2406
  276E5E3E1CDB57AA003FF4B4 /* NotSetTransition.cpp in Sources */,
2379
2407
  27DB44B31D0463CC007E790B /* XPathLexer.cpp in Sources */,
@@ -2385,15 +2413,15 @@
2385
2413
  276E5D5A1CDB57AA003FF4B4 /* ATN.cpp in Sources */,
2386
2414
  276E5EE61CDB57AA003FF4B4 /* CharStream.cpp in Sources */,
2387
2415
  276E5EE01CDB57AA003FF4B4 /* BufferedTokenStream.cpp in Sources */,
2416
+ 9B25DCCA2910278000DF9703 /* PredictionContextMergeCache.cpp in Sources */,
2388
2417
  276E5F041CDB57AA003FF4B4 /* DefaultErrorStrategy.cpp in Sources */,
2389
- 276E5D421CDB57AA003FF4B4 /* AbstractPredicateTransition.cpp in Sources */,
2390
- 276E5E5C1CDB57AA003FF4B4 /* PlusLoopbackState.cpp in Sources */,
2391
- 276E5E351CDB57AA003FF4B4 /* LoopEndState.cpp in Sources */,
2392
2418
  276E5FE51CDB57AA003FF4B4 /* TokenStreamRewriter.cpp in Sources */,
2419
+ 9B25DCD72910282B00DF9703 /* TransitionType.cpp in Sources */,
2393
2420
  276E5FA91CDB57AA003FF4B4 /* RuleContext.cpp in Sources */,
2394
2421
  276E5D601CDB57AA003FF4B4 /* ATNConfig.cpp in Sources */,
2395
2422
  276E5EFE1CDB57AA003FF4B4 /* ConsoleErrorListener.cpp in Sources */,
2396
2423
  276E5EAA1CDB57AA003FF4B4 /* SingletonPredictionContext.cpp in Sources */,
2424
+ 9B25DCF3291028D000DF9703 /* Utf8.cpp in Sources */,
2397
2425
  276E5E681CDB57AA003FF4B4 /* PredicateEvalInfo.cpp in Sources */,
2398
2426
  276E5F281CDB57AA003FF4B4 /* Exceptions.cpp in Sources */,
2399
2427
  276E5F851CDB57AA003FF4B4 /* Parser.cpp in Sources */,
@@ -2401,7 +2429,6 @@
2401
2429
  276E5E981CDB57AA003FF4B4 /* RuleTransition.cpp in Sources */,
2402
2430
  276E5EF81CDB57AA003FF4B4 /* CommonTokenStream.cpp in Sources */,
2403
2431
  2793DC871F08083F00A84290 /* TokenSource.cpp in Sources */,
2404
- 2793DC931F0808A200A84290 /* TerminalNode.cpp in Sources */,
2405
2432
  276E60121CDB57AA003FF4B4 /* ParseTreeMatch.cpp in Sources */,
2406
2433
  276566E21DA93BFB000869BE /* ParseTree.cpp in Sources */,
2407
2434
  276E5EEC1CDB57AA003FF4B4 /* CommonToken.cpp in Sources */,
@@ -2412,7 +2439,6 @@
2412
2439
  276E5DF91CDB57AA003FF4B4 /* LexerCustomAction.cpp in Sources */,
2413
2440
  276E5F4F1CDB57AA003FF4B4 /* LexerInterpreter.cpp in Sources */,
2414
2441
  276E5E291CDB57AA003FF4B4 /* LL1Analyzer.cpp in Sources */,
2415
- 276E5EB01CDB57AA003FF4B4 /* StarBlockStartState.cpp in Sources */,
2416
2442
  27DB44D31D0463DB007E790B /* XPathTokenAnywhereElement.cpp in Sources */,
2417
2443
  276E5FB81CDB57AA003FF4B4 /* CPPUtils.cpp in Sources */,
2418
2444
  );
@@ -2429,18 +2455,16 @@
2429
2455
  276E5D531CDB57AA003FF4B4 /* ArrayPredictionContext.cpp in Sources */,
2430
2456
  276E5F091CDB57AA003FF4B4 /* DFA.cpp in Sources */,
2431
2457
  276E5E221CDB57AA003FF4B4 /* LexerTypeAction.cpp in Sources */,
2432
- 276E5EC11CDB57AA003FF4B4 /* TokensStartState.cpp in Sources */,
2433
2458
  276E5DB31CDB57AA003FF4B4 /* DecisionEventInfo.cpp in Sources */,
2434
2459
  276E60441CDB57AA003FF4B4 /* TerminalNodeImpl.cpp in Sources */,
2435
2460
  276E5DD11CDB57AA003FF4B4 /* ErrorInfo.cpp in Sources */,
2436
2461
  276E5F541CDB57AA003FF4B4 /* LexerNoViableAltException.cpp in Sources */,
2437
2462
  2793DCB71F08099C00A84290 /* LexerAction.cpp in Sources */,
2438
- 276E5E551CDB57AA003FF4B4 /* PlusBlockStartState.cpp in Sources */,
2439
2463
  27C375851EA1059C00B5883C /* InterpreterDataReader.cpp in Sources */,
2440
2464
  276E5E1C1CDB57AA003FF4B4 /* LexerSkipAction.cpp in Sources */,
2441
- 276E5EBB1CDB57AA003FF4B4 /* StarLoopEntryState.cpp in Sources */,
2442
2465
  276E5D711CDB57AA003FF4B4 /* ATNDeserializer.cpp in Sources */,
2443
2466
  2793DC8A1F08087500A84290 /* Chunk.cpp in Sources */,
2467
+ 9B25DCDF2910287000DF9703 /* Synchronization.cpp in Sources */,
2444
2468
  276E5E2E1CDB57AA003FF4B4 /* LookaheadEventInfo.cpp in Sources */,
2445
2469
  276E5DFE1CDB57AA003FF4B4 /* LexerIndexedCustomAction.cpp in Sources */,
2446
2470
  276E60501CDB57AA003FF4B4 /* Trees.cpp in Sources */,
@@ -2462,20 +2486,16 @@
2462
2486
  276E5E731CDB57AA003FF4B4 /* PredictionContext.cpp in Sources */,
2463
2487
  27DB44B91D0463DA007E790B /* XPathElement.cpp in Sources */,
2464
2488
  276E5E161CDB57AA003FF4B4 /* LexerPushModeAction.cpp in Sources */,
2465
- 276E5DA11CDB57AA003FF4B4 /* BlockEndState.cpp in Sources */,
2466
2489
  276E5EF11CDB57AA003FF4B4 /* CommonTokenFactory.cpp in Sources */,
2467
2490
  276E5DF21CDB57AA003FF4B4 /* LexerChannelAction.cpp in Sources */,
2468
- 276E5E911CDB57AA003FF4B4 /* RuleStopState.cpp in Sources */,
2469
2491
  276E60621CDB57AA003FF4B4 /* UnbufferedTokenStream.cpp in Sources */,
2470
2492
  276E5DDA1CDB57AA003FF4B4 /* LexerActionExecutor.cpp in Sources */,
2471
- 2793DC971F0808E100A84290 /* ErrorNode.cpp in Sources */,
2472
2493
  2793DCAE1F08095F00A84290 /* WritableToken.cpp in Sources */,
2473
2494
  276E5E9D1CDB57AA003FF4B4 /* SemanticContext.cpp in Sources */,
2474
2495
  276E5EC71CDB57AA003FF4B4 /* Transition.cpp in Sources */,
2475
2496
  276E601D1CDB57AA003FF4B4 /* ParseTreePatternMatcher.cpp in Sources */,
2476
2497
  276E5F211CDB57AA003FF4B4 /* DiagnosticErrorListener.cpp in Sources */,
2477
2498
  276E5D471CDB57AA003FF4B4 /* ActionTransition.cpp in Sources */,
2478
- 276E5DC51CDB57AA003FF4B4 /* EmptyPredictionContext.cpp in Sources */,
2479
2499
  276E5ED31CDB57AA003FF4B4 /* BailErrorStrategy.cpp in Sources */,
2480
2500
  2793DC9A1F0808E100A84290 /* ParseTreeVisitor.cpp in Sources */,
2481
2501
  2793DCAB1F08095F00A84290 /* Token.cpp in Sources */,
@@ -2485,12 +2505,12 @@
2485
2505
  27DB44C31D0463DA007E790B /* XPathTokenElement.cpp in Sources */,
2486
2506
  27DB44BF1D0463DA007E790B /* XPathRuleElement.cpp in Sources */,
2487
2507
  276E5DEC1CDB57AA003FF4B4 /* LexerATNSimulator.cpp in Sources */,
2488
- 2793DCB41F08099C00A84290 /* BlockStartState.cpp in Sources */,
2489
2508
  276E606B1CDB57AA003FF4B4 /* Vocabulary.cpp in Sources */,
2490
2509
  276E5F1B1CDB57AA003FF4B4 /* LexerDFASerializer.cpp in Sources */,
2491
2510
  276E60171CDB57AA003FF4B4 /* ParseTreePattern.cpp in Sources */,
2492
2511
  276E5DE61CDB57AA003FF4B4 /* LexerATNConfig.cpp in Sources */,
2493
2512
  27B36AC71DACE7AF0069C868 /* RuleContextWithAltNum.cpp in Sources */,
2513
+ 9B25DCC32910278000DF9703 /* PredictionContextCache.cpp in Sources */,
2494
2514
  276E5F0F1CDB57AA003FF4B4 /* DFASerializer.cpp in Sources */,
2495
2515
  276E5F2D1CDB57AA003FF4B4 /* FailedPredicateException.cpp in Sources */,
2496
2516
  27D414531DEB0D3D00D0F3F9 /* IterativeParseTreeWalker.cpp in Sources */,
@@ -2500,14 +2520,12 @@
2500
2520
  276E60081CDB57AA003FF4B4 /* ParseTreeWalker.cpp in Sources */,
2501
2521
  27DB44BB1D0463DA007E790B /* XPathLexerErrorListener.cpp in Sources */,
2502
2522
  276E5F9C1CDB57AA003FF4B4 /* RecognitionException.cpp in Sources */,
2503
- 276E5E8B1CDB57AA003FF4B4 /* RuleStartState.cpp in Sources */,
2504
2523
  276E5EA31CDB57AA003FF4B4 /* SetTransition.cpp in Sources */,
2505
2524
  276E5D831CDB57AA003FF4B4 /* ATNState.cpp in Sources */,
2506
2525
  276E60231CDB57AA003FF4B4 /* RuleTagToken.cpp in Sources */,
2507
2526
  276E5E4F1CDB57AA003FF4B4 /* ParserATNSimulator.cpp in Sources */,
2508
2527
  276E60291CDB57AA003FF4B4 /* TagChunk.cpp in Sources */,
2509
2528
  276E5F7E1CDB57AA003FF4B4 /* NoViableAltException.cpp in Sources */,
2510
- 276E5D771CDB57AA003FF4B4 /* ATNSerializer.cpp in Sources */,
2511
2529
  27745F041CE49C000067C6A3 /* RuntimeMetaData.cpp in Sources */,
2512
2530
  276E5DAD1CDB57AA003FF4B4 /* ContextSensitivityInfo.cpp in Sources */,
2513
2531
  2793DCA51F08095F00A84290 /* ANTLRErrorListener.cpp in Sources */,
@@ -2517,8 +2535,6 @@
2517
2535
  276E5ECD1CDB57AA003FF4B4 /* WildcardTransition.cpp in Sources */,
2518
2536
  276E5E851CDB57AA003FF4B4 /* RangeTransition.cpp in Sources */,
2519
2537
  276E5D7D1CDB57AA003FF4B4 /* ATNSimulator.cpp in Sources */,
2520
- 276E5D9B1CDB57AA003FF4B4 /* BasicState.cpp in Sources */,
2521
- 276E5FC01CDB57AA003FF4B4 /* Guid.cpp in Sources */,
2522
2538
  276E5E7F1CDB57AA003FF4B4 /* ProfilingATNSimulator.cpp in Sources */,
2523
2539
  2793DCA81F08095F00A84290 /* ANTLRErrorStrategy.cpp in Sources */,
2524
2540
  276E5F3F1CDB57AA003FF4B4 /* IntStream.cpp in Sources */,
@@ -2527,7 +2543,6 @@
2527
2543
  276E5FDE1CDB57AA003FF4B4 /* TokenStream.cpp in Sources */,
2528
2544
  276E5FF01CDB57AA003FF4B4 /* ErrorNodeImpl.cpp in Sources */,
2529
2545
  27DB44C51D0463DA007E790B /* XPathWildcardAnywhereElement.cpp in Sources */,
2530
- 276E5D951CDB57AA003FF4B4 /* BasicBlockStartState.cpp in Sources */,
2531
2546
  276E5E491CDB57AA003FF4B4 /* ParseInfo.cpp in Sources */,
2532
2547
  276E5E3D1CDB57AA003FF4B4 /* NotSetTransition.cpp in Sources */,
2533
2548
  27DB44B21D0463CC007E790B /* XPathLexer.cpp in Sources */,
@@ -2539,15 +2554,15 @@
2539
2554
  276E5D591CDB57AA003FF4B4 /* ATN.cpp in Sources */,
2540
2555
  276E5EE51CDB57AA003FF4B4 /* CharStream.cpp in Sources */,
2541
2556
  276E5EDF1CDB57AA003FF4B4 /* BufferedTokenStream.cpp in Sources */,
2557
+ 9B25DCC92910278000DF9703 /* PredictionContextMergeCache.cpp in Sources */,
2542
2558
  276E5F031CDB57AA003FF4B4 /* DefaultErrorStrategy.cpp in Sources */,
2543
- 276E5D411CDB57AA003FF4B4 /* AbstractPredicateTransition.cpp in Sources */,
2544
- 276E5E5B1CDB57AA003FF4B4 /* PlusLoopbackState.cpp in Sources */,
2545
- 276E5E341CDB57AA003FF4B4 /* LoopEndState.cpp in Sources */,
2546
2559
  276E5FE41CDB57AA003FF4B4 /* TokenStreamRewriter.cpp in Sources */,
2560
+ 9B25DCD62910282B00DF9703 /* TransitionType.cpp in Sources */,
2547
2561
  276E5FA81CDB57AA003FF4B4 /* RuleContext.cpp in Sources */,
2548
2562
  276E5D5F1CDB57AA003FF4B4 /* ATNConfig.cpp in Sources */,
2549
2563
  276E5EFD1CDB57AA003FF4B4 /* ConsoleErrorListener.cpp in Sources */,
2550
2564
  276E5EA91CDB57AA003FF4B4 /* SingletonPredictionContext.cpp in Sources */,
2565
+ 9B25DCF2291028D000DF9703 /* Utf8.cpp in Sources */,
2551
2566
  276E5E671CDB57AA003FF4B4 /* PredicateEvalInfo.cpp in Sources */,
2552
2567
  276E5F271CDB57AA003FF4B4 /* Exceptions.cpp in Sources */,
2553
2568
  276E5F841CDB57AA003FF4B4 /* Parser.cpp in Sources */,
@@ -2555,7 +2570,6 @@
2555
2570
  276E5E971CDB57AA003FF4B4 /* RuleTransition.cpp in Sources */,
2556
2571
  276E5EF71CDB57AA003FF4B4 /* CommonTokenStream.cpp in Sources */,
2557
2572
  2793DC861F08083F00A84290 /* TokenSource.cpp in Sources */,
2558
- 2793DC921F0808A200A84290 /* TerminalNode.cpp in Sources */,
2559
2573
  276E60111CDB57AA003FF4B4 /* ParseTreeMatch.cpp in Sources */,
2560
2574
  276566E11DA93BFB000869BE /* ParseTree.cpp in Sources */,
2561
2575
  276E5EEB1CDB57AA003FF4B4 /* CommonToken.cpp in Sources */,
@@ -2566,7 +2580,6 @@
2566
2580
  276E5DF81CDB57AA003FF4B4 /* LexerCustomAction.cpp in Sources */,
2567
2581
  276E5F4E1CDB57AA003FF4B4 /* LexerInterpreter.cpp in Sources */,
2568
2582
  276E5E281CDB57AA003FF4B4 /* LL1Analyzer.cpp in Sources */,
2569
- 276E5EAF1CDB57AA003FF4B4 /* StarBlockStartState.cpp in Sources */,
2570
2583
  27DB44C11D0463DA007E790B /* XPathTokenAnywhereElement.cpp in Sources */,
2571
2584
  276E5FB71CDB57AA003FF4B4 /* CPPUtils.cpp in Sources */,
2572
2585
  );
@@ -2584,17 +2597,15 @@
2584
2597
  276E5F081CDB57AA003FF4B4 /* DFA.cpp in Sources */,
2585
2598
  276E5E211CDB57AA003FF4B4 /* LexerTypeAction.cpp in Sources */,
2586
2599
  27DB449F1D045537007E790B /* XPathElement.cpp in Sources */,
2587
- 276E5EC01CDB57AA003FF4B4 /* TokensStartState.cpp in Sources */,
2588
2600
  276E5DB21CDB57AA003FF4B4 /* DecisionEventInfo.cpp in Sources */,
2589
2601
  276E60431CDB57AA003FF4B4 /* TerminalNodeImpl.cpp in Sources */,
2590
2602
  276E5DD01CDB57AA003FF4B4 /* ErrorInfo.cpp in Sources */,
2591
2603
  2793DCB61F08099C00A84290 /* LexerAction.cpp in Sources */,
2592
2604
  276E5F531CDB57AA003FF4B4 /* LexerNoViableAltException.cpp in Sources */,
2593
2605
  27C375841EA1059C00B5883C /* InterpreterDataReader.cpp in Sources */,
2594
- 276E5E541CDB57AA003FF4B4 /* PlusBlockStartState.cpp in Sources */,
2595
2606
  276E5E1B1CDB57AA003FF4B4 /* LexerSkipAction.cpp in Sources */,
2596
- 276E5EBA1CDB57AA003FF4B4 /* StarLoopEntryState.cpp in Sources */,
2597
2607
  2793DC891F08087500A84290 /* Chunk.cpp in Sources */,
2608
+ 9B25DCDE2910287000DF9703 /* Synchronization.cpp in Sources */,
2598
2609
  276E5D701CDB57AA003FF4B4 /* ATNDeserializer.cpp in Sources */,
2599
2610
  276E5E2D1CDB57AA003FF4B4 /* LookaheadEventInfo.cpp in Sources */,
2600
2611
  276E5DFD1CDB57AA003FF4B4 /* LexerIndexedCustomAction.cpp in Sources */,
@@ -2615,14 +2626,11 @@
2615
2626
  276E5F321CDB57AA003FF4B4 /* InputMismatchException.cpp in Sources */,
2616
2627
  276E5E721CDB57AA003FF4B4 /* PredictionContext.cpp in Sources */,
2617
2628
  276E5E151CDB57AA003FF4B4 /* LexerPushModeAction.cpp in Sources */,
2618
- 276E5DA01CDB57AA003FF4B4 /* BlockEndState.cpp in Sources */,
2619
2629
  276E5EF01CDB57AA003FF4B4 /* CommonTokenFactory.cpp in Sources */,
2620
2630
  276E5DF11CDB57AA003FF4B4 /* LexerChannelAction.cpp in Sources */,
2621
- 276E5E901CDB57AA003FF4B4 /* RuleStopState.cpp in Sources */,
2622
2631
  276E60611CDB57AA003FF4B4 /* UnbufferedTokenStream.cpp in Sources */,
2623
2632
  276E5DD91CDB57AA003FF4B4 /* LexerActionExecutor.cpp in Sources */,
2624
2633
  27DB449D1D045537007E790B /* XPath.cpp in Sources */,
2625
- 2793DC961F0808E100A84290 /* ErrorNode.cpp in Sources */,
2626
2634
  2793DCAD1F08095F00A84290 /* WritableToken.cpp in Sources */,
2627
2635
  276E5E9C1CDB57AA003FF4B4 /* SemanticContext.cpp in Sources */,
2628
2636
  27DB44AD1D045537007E790B /* XPathWildcardElement.cpp in Sources */,
@@ -2633,18 +2641,17 @@
2633
2641
  276E5D461CDB57AA003FF4B4 /* ActionTransition.cpp in Sources */,
2634
2642
  2793DC991F0808E100A84290 /* ParseTreeVisitor.cpp in Sources */,
2635
2643
  2793DCAA1F08095F00A84290 /* Token.cpp in Sources */,
2636
- 276E5DC41CDB57AA003FF4B4 /* EmptyPredictionContext.cpp in Sources */,
2637
2644
  276E5ED21CDB57AA003FF4B4 /* BailErrorStrategy.cpp in Sources */,
2638
2645
  276E5FA11CDB57AA003FF4B4 /* Recognizer.cpp in Sources */,
2639
2646
  276E5D6A1CDB57AA003FF4B4 /* ATNDeserializationOptions.cpp in Sources */,
2640
2647
  276E60341CDB57AA003FF4B4 /* TokenTagToken.cpp in Sources */,
2641
2648
  276E5DEB1CDB57AA003FF4B4 /* LexerATNSimulator.cpp in Sources */,
2642
- 2793DCB31F08099C00A84290 /* BlockStartState.cpp in Sources */,
2643
2649
  276E606A1CDB57AA003FF4B4 /* Vocabulary.cpp in Sources */,
2644
2650
  276E5F1A1CDB57AA003FF4B4 /* LexerDFASerializer.cpp in Sources */,
2645
2651
  276E60161CDB57AA003FF4B4 /* ParseTreePattern.cpp in Sources */,
2646
2652
  276E5DE51CDB57AA003FF4B4 /* LexerATNConfig.cpp in Sources */,
2647
2653
  27B36AC61DACE7AF0069C868 /* RuleContextWithAltNum.cpp in Sources */,
2654
+ 9B25DCC22910278000DF9703 /* PredictionContextCache.cpp in Sources */,
2648
2655
  276E5F0E1CDB57AA003FF4B4 /* DFASerializer.cpp in Sources */,
2649
2656
  276E5F2C1CDB57AA003FF4B4 /* FailedPredicateException.cpp in Sources */,
2650
2657
  27D414521DEB0D3D00D0F3F9 /* IterativeParseTreeWalker.cpp in Sources */,
@@ -2654,14 +2661,12 @@
2654
2661
  276E5F141CDB57AA003FF4B4 /* DFAState.cpp in Sources */,
2655
2662
  276E60071CDB57AA003FF4B4 /* ParseTreeWalker.cpp in Sources */,
2656
2663
  276E5F9B1CDB57AA003FF4B4 /* RecognitionException.cpp in Sources */,
2657
- 276E5E8A1CDB57AA003FF4B4 /* RuleStartState.cpp in Sources */,
2658
2664
  276E5EA21CDB57AA003FF4B4 /* SetTransition.cpp in Sources */,
2659
2665
  276E5D821CDB57AA003FF4B4 /* ATNState.cpp in Sources */,
2660
2666
  276E60221CDB57AA003FF4B4 /* RuleTagToken.cpp in Sources */,
2661
2667
  276E5E4E1CDB57AA003FF4B4 /* ParserATNSimulator.cpp in Sources */,
2662
2668
  276E60281CDB57AA003FF4B4 /* TagChunk.cpp in Sources */,
2663
2669
  276E5F7D1CDB57AA003FF4B4 /* NoViableAltException.cpp in Sources */,
2664
- 276E5D761CDB57AA003FF4B4 /* ATNSerializer.cpp in Sources */,
2665
2670
  27745F031CE49C000067C6A3 /* RuntimeMetaData.cpp in Sources */,
2666
2671
  276E5DAC1CDB57AA003FF4B4 /* ContextSensitivityInfo.cpp in Sources */,
2667
2672
  2793DCA41F08095F00A84290 /* ANTLRErrorListener.cpp in Sources */,
@@ -2671,8 +2676,6 @@
2671
2676
  276E5ECC1CDB57AA003FF4B4 /* WildcardTransition.cpp in Sources */,
2672
2677
  276E5E841CDB57AA003FF4B4 /* RangeTransition.cpp in Sources */,
2673
2678
  276E5D7C1CDB57AA003FF4B4 /* ATNSimulator.cpp in Sources */,
2674
- 276E5D9A1CDB57AA003FF4B4 /* BasicState.cpp in Sources */,
2675
- 276E5FBF1CDB57AA003FF4B4 /* Guid.cpp in Sources */,
2676
2679
  276E5E7E1CDB57AA003FF4B4 /* ProfilingATNSimulator.cpp in Sources */,
2677
2680
  2793DCA71F08095F00A84290 /* ANTLRErrorStrategy.cpp in Sources */,
2678
2681
  276E5F3E1CDB57AA003FF4B4 /* IntStream.cpp in Sources */,
@@ -2680,7 +2683,6 @@
2680
2683
  276E5F6B1CDB57AA003FF4B4 /* MurmurHash.cpp in Sources */,
2681
2684
  276E5FDD1CDB57AA003FF4B4 /* TokenStream.cpp in Sources */,
2682
2685
  276E5FEF1CDB57AA003FF4B4 /* ErrorNodeImpl.cpp in Sources */,
2683
- 276E5D941CDB57AA003FF4B4 /* BasicBlockStartState.cpp in Sources */,
2684
2686
  276E5E481CDB57AA003FF4B4 /* ParseInfo.cpp in Sources */,
2685
2687
  276E5E3C1CDB57AA003FF4B4 /* NotSetTransition.cpp in Sources */,
2686
2688
  276E602E1CDB57AA003FF4B4 /* TextChunk.cpp in Sources */,
@@ -2692,16 +2694,16 @@
2692
2694
  2793DC8D1F08088F00A84290 /* ParseTreeListener.cpp in Sources */,
2693
2695
  276E5EDE1CDB57AA003FF4B4 /* BufferedTokenStream.cpp in Sources */,
2694
2696
  276E5F021CDB57AA003FF4B4 /* DefaultErrorStrategy.cpp in Sources */,
2695
- 276E5D401CDB57AA003FF4B4 /* AbstractPredicateTransition.cpp in Sources */,
2696
- 276E5E5A1CDB57AA003FF4B4 /* PlusLoopbackState.cpp in Sources */,
2697
- 276E5E331CDB57AA003FF4B4 /* LoopEndState.cpp in Sources */,
2698
2697
  276E5FE31CDB57AA003FF4B4 /* TokenStreamRewriter.cpp in Sources */,
2698
+ 9B25DCC82910278000DF9703 /* PredictionContextMergeCache.cpp in Sources */,
2699
2699
  27DB44A11D045537007E790B /* XPathLexerErrorListener.cpp in Sources */,
2700
2700
  276E5FA71CDB57AA003FF4B4 /* RuleContext.cpp in Sources */,
2701
+ 9B25DCD52910282B00DF9703 /* TransitionType.cpp in Sources */,
2701
2702
  27DB44B11D0463CC007E790B /* XPathLexer.cpp in Sources */,
2702
2703
  276E5D5E1CDB57AA003FF4B4 /* ATNConfig.cpp in Sources */,
2703
2704
  276E5EFC1CDB57AA003FF4B4 /* ConsoleErrorListener.cpp in Sources */,
2704
2705
  276E5EA81CDB57AA003FF4B4 /* SingletonPredictionContext.cpp in Sources */,
2706
+ 9B25DCF1291028D000DF9703 /* Utf8.cpp in Sources */,
2705
2707
  276E5E661CDB57AA003FF4B4 /* PredicateEvalInfo.cpp in Sources */,
2706
2708
  276E5F261CDB57AA003FF4B4 /* Exceptions.cpp in Sources */,
2707
2709
  276E5F831CDB57AA003FF4B4 /* Parser.cpp in Sources */,
@@ -2709,7 +2711,6 @@
2709
2711
  276E5E961CDB57AA003FF4B4 /* RuleTransition.cpp in Sources */,
2710
2712
  276E5EF61CDB57AA003FF4B4 /* CommonTokenStream.cpp in Sources */,
2711
2713
  2793DC851F08083F00A84290 /* TokenSource.cpp in Sources */,
2712
- 2793DC911F0808A200A84290 /* TerminalNode.cpp in Sources */,
2713
2714
  276E60101CDB57AA003FF4B4 /* ParseTreeMatch.cpp in Sources */,
2714
2715
  276566E01DA93BFB000869BE /* ParseTree.cpp in Sources */,
2715
2716
  276E5EEA1CDB57AA003FF4B4 /* CommonToken.cpp in Sources */,
@@ -2720,7 +2721,6 @@
2720
2721
  276E5DF71CDB57AA003FF4B4 /* LexerCustomAction.cpp in Sources */,
2721
2722
  276E5F4D1CDB57AA003FF4B4 /* LexerInterpreter.cpp in Sources */,
2722
2723
  276E5E271CDB57AA003FF4B4 /* LL1Analyzer.cpp in Sources */,
2723
- 276E5EAE1CDB57AA003FF4B4 /* StarBlockStartState.cpp in Sources */,
2724
2724
  27DB44A91D045537007E790B /* XPathTokenElement.cpp in Sources */,
2725
2725
  276E5FB61CDB57AA003FF4B4 /* CPPUtils.cpp in Sources */,
2726
2726
  );