@appthreat/atom-parsetools 1.0.4 → 1.0.6

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 (838) hide show
  1. package/package.json +3 -3
  2. package/plugins/autoload.php +1 -1
  3. package/plugins/bin/bundler +1 -1
  4. package/plugins/bin/ruby_ast_gen +1 -1
  5. package/plugins/composer/autoload_classmap.php +22 -8
  6. package/plugins/composer/autoload_real.php +4 -4
  7. package/plugins/composer/autoload_static.php +26 -12
  8. package/plugins/composer/installed.json +12 -10
  9. package/plugins/composer/installed.php +9 -9
  10. package/plugins/nikic/php-parser/README.md +20 -12
  11. package/plugins/nikic/php-parser/bin/php-parse +11 -10
  12. package/plugins/nikic/php-parser/composer.json +6 -4
  13. package/plugins/nikic/php-parser/lib/PhpParser/Builder/ClassConst.php +19 -17
  14. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Class_.php +35 -30
  15. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Declaration.php +11 -4
  16. package/plugins/nikic/php-parser/lib/PhpParser/Builder/EnumCase.php +8 -7
  17. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Enum_.php +26 -27
  18. package/plugins/nikic/php-parser/lib/PhpParser/Builder/FunctionLike.php +7 -7
  19. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Function_.php +7 -7
  20. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Interface_.php +11 -10
  21. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Method.php +16 -15
  22. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Namespace_.php +5 -5
  23. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Param.php +38 -35
  24. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Property.php +82 -20
  25. package/plugins/nikic/php-parser/lib/PhpParser/Builder/TraitUse.php +6 -5
  26. package/plugins/nikic/php-parser/lib/PhpParser/Builder/TraitUseAdaptation.php +25 -28
  27. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Trait_.php +16 -11
  28. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Use_.php +8 -8
  29. package/plugins/nikic/php-parser/lib/PhpParser/Builder.php +2 -3
  30. package/plugins/nikic/php-parser/lib/PhpParser/BuilderFactory.php +46 -70
  31. package/plugins/nikic/php-parser/lib/PhpParser/BuilderHelpers.php +23 -20
  32. package/plugins/nikic/php-parser/lib/PhpParser/Comment/Doc.php +1 -2
  33. package/plugins/nikic/php-parser/lib/PhpParser/Comment.php +37 -67
  34. package/plugins/nikic/php-parser/lib/PhpParser/ConstExprEvaluationException.php +3 -3
  35. package/plugins/nikic/php-parser/lib/PhpParser/ConstExprEvaluator.php +15 -10
  36. package/plugins/nikic/php-parser/lib/PhpParser/Error.php +26 -33
  37. package/plugins/nikic/php-parser/lib/PhpParser/ErrorHandler/Collecting.php +6 -9
  38. package/plugins/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php +2 -3
  39. package/plugins/nikic/php-parser/lib/PhpParser/ErrorHandler.php +2 -3
  40. package/plugins/nikic/php-parser/lib/PhpParser/Internal/DiffElem.php +11 -7
  41. package/plugins/nikic/php-parser/lib/PhpParser/Internal/Differ.php +36 -22
  42. package/plugins/nikic/php-parser/lib/PhpParser/Internal/PrintableNewAnonClassNode.php +20 -13
  43. package/plugins/nikic/php-parser/lib/PhpParser/Internal/TokenPolyfill.php +237 -0
  44. package/plugins/nikic/php-parser/lib/PhpParser/Internal/TokenStream.php +70 -74
  45. package/plugins/nikic/php-parser/lib/PhpParser/JsonDecoder.php +15 -10
  46. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php +72 -97
  47. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/AsymmetricVisibilityTokenEmulator.php +93 -0
  48. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/AttributeEmulator.php +11 -18
  49. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/EnumTokenEmulator.php +10 -15
  50. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ExplicitOctalEmulator.php +12 -11
  51. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/KeywordEmulator.php +24 -26
  52. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/MatchTokenEmulator.php +6 -10
  53. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/NullsafeTokenEmulator.php +22 -29
  54. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/PropertyTokenEmulator.php +19 -0
  55. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ReadonlyFunctionTokenEmulator.php +3 -3
  56. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ReadonlyTokenEmulator.php +10 -15
  57. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ReverseEmulator.php +6 -5
  58. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/TokenEmulator.php +10 -5
  59. package/plugins/nikic/php-parser/lib/PhpParser/Lexer.php +69 -513
  60. package/plugins/nikic/php-parser/lib/PhpParser/Modifiers.php +85 -0
  61. package/plugins/nikic/php-parser/lib/PhpParser/NameContext.php +24 -25
  62. package/plugins/nikic/php-parser/lib/PhpParser/Node/Arg.php +13 -15
  63. package/plugins/nikic/php-parser/lib/PhpParser/Node/ArrayItem.php +43 -0
  64. package/plugins/nikic/php-parser/lib/PhpParser/Node/Attribute.php +9 -10
  65. package/plugins/nikic/php-parser/lib/PhpParser/Node/AttributeGroup.php +5 -7
  66. package/plugins/nikic/php-parser/lib/PhpParser/Node/ClosureUse.php +36 -0
  67. package/plugins/nikic/php-parser/lib/PhpParser/Node/ComplexType.php +1 -2
  68. package/plugins/nikic/php-parser/lib/PhpParser/Node/Const_.php +9 -10
  69. package/plugins/nikic/php-parser/lib/PhpParser/Node/DeclareItem.php +37 -0
  70. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php +10 -11
  71. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayItem.php +4 -34
  72. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Array_.php +11 -11
  73. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ArrowFunction.php +33 -28
  74. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Assign.php +9 -10
  75. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php +2 -3
  76. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php +2 -3
  77. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseXor.php +2 -3
  78. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Coalesce.php +2 -3
  79. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Concat.php +2 -3
  80. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Div.php +2 -3
  81. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Minus.php +2 -3
  82. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mod.php +2 -3
  83. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mul.php +2 -3
  84. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Plus.php +2 -3
  85. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php +2 -3
  86. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftLeft.php +2 -3
  87. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftRight.php +2 -3
  88. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp.php +7 -8
  89. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignRef.php +9 -10
  90. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php +4 -5
  91. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php +4 -5
  92. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php +4 -5
  93. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php +4 -5
  94. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php +4 -5
  95. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Coalesce.php +4 -5
  96. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Concat.php +4 -5
  97. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Div.php +4 -5
  98. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Equal.php +4 -5
  99. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Greater.php +4 -5
  100. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php +4 -5
  101. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php +4 -5
  102. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php +4 -5
  103. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalOr.php +4 -5
  104. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalXor.php +4 -5
  105. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Minus.php +4 -5
  106. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mod.php +4 -5
  107. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php +4 -5
  108. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php +4 -5
  109. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php +4 -5
  110. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Plus.php +4 -5
  111. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Pow.php +4 -5
  112. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php +4 -5
  113. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php +4 -5
  114. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php +4 -5
  115. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php +4 -5
  116. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Spaceship.php +4 -5
  117. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp.php +8 -11
  118. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BitwiseNot.php +7 -8
  119. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BooleanNot.php +7 -8
  120. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/CallLike.php +3 -7
  121. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Array_.php +2 -3
  122. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Bool_.php +2 -3
  123. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Double.php +5 -6
  124. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Int_.php +2 -3
  125. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Object_.php +2 -3
  126. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/String_.php +2 -3
  127. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Unset_.php +2 -3
  128. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast.php +5 -6
  129. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ClassConstFetch.php +10 -10
  130. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Clone_.php +7 -8
  131. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Closure.php +33 -26
  132. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ClosureUse.php +4 -27
  133. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ConstFetch.php +7 -8
  134. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Empty_.php +7 -8
  135. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Error.php +5 -6
  136. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ErrorSuppress.php +7 -8
  137. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Eval_.php +7 -8
  138. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Exit_.php +10 -11
  139. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/FuncCall.php +10 -11
  140. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Include_.php +13 -14
  141. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Instanceof_.php +11 -11
  142. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Isset_.php +7 -8
  143. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/List_.php +12 -8
  144. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Match_.php +8 -7
  145. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/MethodCall.php +12 -12
  146. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/New_.php +10 -11
  147. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/NullsafeMethodCall.php +12 -12
  148. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/NullsafePropertyFetch.php +10 -10
  149. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/PostDec.php +7 -8
  150. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/PostInc.php +7 -8
  151. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/PreDec.php +6 -7
  152. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/PreInc.php +7 -8
  153. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Print_.php +7 -8
  154. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/PropertyFetch.php +10 -10
  155. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ShellExec.php +9 -9
  156. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/StaticCall.php +12 -13
  157. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/StaticPropertyFetch.php +11 -11
  158. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Ternary.php +12 -13
  159. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Throw_.php +6 -7
  160. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryMinus.php +7 -8
  161. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryPlus.php +7 -8
  162. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Variable.php +6 -7
  163. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/YieldFrom.php +7 -8
  164. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Yield_.php +10 -11
  165. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr.php +1 -2
  166. package/plugins/nikic/php-parser/lib/PhpParser/Node/FunctionLike.php +5 -8
  167. package/plugins/nikic/php-parser/lib/PhpParser/Node/Identifier.php +24 -14
  168. package/plugins/nikic/php-parser/lib/PhpParser/Node/InterpolatedStringPart.php +32 -0
  169. package/plugins/nikic/php-parser/lib/PhpParser/Node/IntersectionType.php +6 -9
  170. package/plugins/nikic/php-parser/lib/PhpParser/Node/MatchArm.php +8 -10
  171. package/plugins/nikic/php-parser/lib/PhpParser/Node/Name/FullyQualified.php +8 -9
  172. package/plugins/nikic/php-parser/lib/PhpParser/Node/Name/Relative.php +8 -9
  173. package/plugins/nikic/php-parser/lib/PhpParser/Node/Name.php +78 -54
  174. package/plugins/nikic/php-parser/lib/PhpParser/Node/NullableType.php +11 -10
  175. package/plugins/nikic/php-parser/lib/PhpParser/Node/Param.php +83 -24
  176. package/plugins/nikic/php-parser/lib/PhpParser/Node/PropertyHook.php +105 -0
  177. package/plugins/nikic/php-parser/lib/PhpParser/Node/PropertyItem.php +37 -0
  178. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/DNumber.php +4 -70
  179. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/Encapsed.php +4 -24
  180. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/EncapsedStringPart.php +5 -22
  181. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/Float_.php +78 -0
  182. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/Int_.php +82 -0
  183. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/InterpolatedString.php +34 -0
  184. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/LNumber.php +4 -73
  185. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Class_.php +4 -5
  186. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php +4 -5
  187. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/File.php +4 -5
  188. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Function_.php +4 -5
  189. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Line.php +4 -5
  190. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Method.php +4 -5
  191. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace_.php +4 -5
  192. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Property.php +15 -0
  193. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Trait_.php +4 -5
  194. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst.php +4 -5
  195. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/String_.php +30 -26
  196. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar.php +1 -2
  197. package/plugins/nikic/php-parser/lib/PhpParser/Node/StaticVar.php +39 -0
  198. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Block.php +29 -0
  199. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Break_.php +8 -9
  200. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Case_.php +10 -11
  201. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Catch_.php +11 -12
  202. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassConst.php +24 -32
  203. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassLike.php +17 -17
  204. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassMethod.php +47 -54
  205. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Class_.php +46 -89
  206. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Const_.php +17 -10
  207. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Continue_.php +8 -9
  208. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/DeclareDeclare.php +5 -26
  209. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Declare_.php +12 -12
  210. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Do_.php +9 -10
  211. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Echo_.php +7 -8
  212. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/ElseIf_.php +9 -10
  213. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Else_.php +7 -8
  214. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/EnumCase.php +11 -12
  215. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Enum_.php +17 -13
  216. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Expression.php +7 -8
  217. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Finally_.php +7 -8
  218. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/For_.php +19 -15
  219. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Foreach_.php +20 -17
  220. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Function_.php +28 -24
  221. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Global_.php +7 -8
  222. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Goto_.php +7 -8
  223. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/GroupUse.php +16 -14
  224. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/HaltCompiler.php +7 -8
  225. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/If_.php +18 -15
  226. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/InlineHTML.php +7 -8
  227. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Interface_.php +13 -10
  228. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Label.php +7 -8
  229. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Namespace_.php +11 -12
  230. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Nop.php +4 -5
  231. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Property.php +68 -38
  232. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/PropertyProperty.php +5 -26
  233. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Return_.php +8 -9
  234. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/StaticVar.php +4 -30
  235. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Static_.php +8 -8
  236. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Switch_.php +9 -10
  237. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUse.php +8 -9
  238. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php +12 -13
  239. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php +9 -10
  240. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation.php +3 -4
  241. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Trait_.php +10 -8
  242. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/TryCatch.php +11 -12
  243. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Unset_.php +7 -8
  244. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/UseUse.php +5 -44
  245. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Use_.php +16 -16
  246. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/While_.php +9 -10
  247. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt.php +1 -2
  248. package/plugins/nikic/php-parser/lib/PhpParser/Node/UnionType.php +7 -8
  249. package/plugins/nikic/php-parser/lib/PhpParser/Node/UseItem.php +55 -0
  250. package/plugins/nikic/php-parser/lib/PhpParser/Node/VarLikeIdentifier.php +2 -3
  251. package/plugins/nikic/php-parser/lib/PhpParser/Node/VariadicPlaceholder.php +2 -2
  252. package/plugins/nikic/php-parser/lib/PhpParser/Node.php +28 -29
  253. package/plugins/nikic/php-parser/lib/PhpParser/NodeAbstract.php +23 -20
  254. package/plugins/nikic/php-parser/lib/PhpParser/NodeDumper.php +177 -84
  255. package/plugins/nikic/php-parser/lib/PhpParser/NodeFinder.php +28 -19
  256. package/plugins/nikic/php-parser/lib/PhpParser/NodeTraverser.php +156 -160
  257. package/plugins/nikic/php-parser/lib/PhpParser/NodeTraverserInterface.php +4 -7
  258. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor/CloningVisitor.php +1 -2
  259. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor/CommentAnnotatingVisitor.php +82 -0
  260. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor/FindingVisitor.php +6 -7
  261. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor/FirstFindingVisitor.php +6 -7
  262. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php +37 -28
  263. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor/NodeConnectingVisitor.php +29 -8
  264. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor/ParentConnectingVisitor.php +23 -13
  265. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor.php +59 -7
  266. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php +1 -2
  267. package/plugins/nikic/php-parser/lib/PhpParser/Parser/Php7.php +2034 -2141
  268. package/plugins/nikic/php-parser/lib/PhpParser/Parser/Php8.php +2814 -0
  269. package/plugins/nikic/php-parser/lib/PhpParser/Parser.php +9 -3
  270. package/plugins/nikic/php-parser/lib/PhpParser/ParserAbstract.php +503 -269
  271. package/plugins/nikic/php-parser/lib/PhpParser/ParserFactory.php +15 -49
  272. package/plugins/nikic/php-parser/lib/PhpParser/PhpVersion.php +171 -0
  273. package/plugins/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php +428 -339
  274. package/plugins/nikic/php-parser/lib/PhpParser/PrettyPrinter.php +51 -0
  275. package/plugins/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php +563 -445
  276. package/plugins/nikic/php-parser/lib/PhpParser/Token.php +18 -0
  277. package/plugins/nikic/php-parser/lib/PhpParser/compatibility_tokens.php +68 -0
  278. package/plugins/rubyastgen/Gemfile +3 -2
  279. package/plugins/rubyastgen/Gemfile.lock +10 -5
  280. package/plugins/rubyastgen/bundle/bundler/setup.rb +4 -2
  281. package/plugins/rubyastgen/bundle/ruby/3.4.0/bin/bundle +29 -0
  282. package/plugins/rubyastgen/bundle/ruby/3.4.0/bin/bundler +29 -0
  283. package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/{ruby_ast_gen-2a9186207494 → ruby_ast_gen-8738b155eb4f}/Gemfile +2 -1
  284. package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/{ruby_ast_gen-2a9186207494 → ruby_ast_gen-8738b155eb4f}/README.md +7 -4
  285. package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/ruby_ast_gen-8738b155eb4f/bin/console +11 -0
  286. package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/ruby_ast_gen-8738b155eb4f/exe/ruby_ast_gen +60 -0
  287. package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/{ruby_ast_gen-2a9186207494 → ruby_ast_gen-8738b155eb4f}/lib/ruby_ast_gen/node_handling.rb +49 -31
  288. package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/{ruby_ast_gen-2a9186207494 → ruby_ast_gen-8738b155eb4f}/lib/ruby_ast_gen/version.rb +1 -1
  289. package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/{ruby_ast_gen-2a9186207494 → ruby_ast_gen-8738b155eb4f}/lib/ruby_ast_gen.rb +24 -10
  290. package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/{ruby_ast_gen-2a9186207494 → ruby_ast_gen-8738b155eb4f}/ruby_ast_gen.gemspec +4 -4
  291. package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/ruby_ast_gen-8738b155eb4f/spec/ruby_ast_gen_spec.rb +299 -0
  292. package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/{ruby_ast_gen-2a9186207494 → ruby_ast_gen-8738b155eb4f}/update_version.rb +6 -5
  293. package/plugins/rubyastgen/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.4.0/gem.build_complete +0 -0
  294. package/plugins/rubyastgen/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.4.0/gem_make.out +44 -0
  295. package/plugins/rubyastgen/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.4.0/mkmf.log +74 -0
  296. package/plugins/rubyastgen/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.4.0/prism/prism.so +0 -0
  297. package/plugins/rubyastgen/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/racc-1.8.1/gem_make.out +6 -6
  298. package/plugins/rubyastgen/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/racc-1.8.1/racc/cparse.so +0 -0
  299. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/CHANGELOG.md +5239 -0
  300. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/LICENSE.md +22 -0
  301. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/README.md +58 -0
  302. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/bundler.gemspec +46 -0
  303. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/exe/bundle +29 -0
  304. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/exe/bundler +4 -0
  305. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/.document +1 -0
  306. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/build_metadata.rb +45 -0
  307. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/capistrano.rb +22 -0
  308. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/checksum.rb +264 -0
  309. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/ci_detector.rb +75 -0
  310. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/add.rb +49 -0
  311. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/binstubs.rb +57 -0
  312. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/cache.rb +43 -0
  313. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/check.rb +40 -0
  314. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/clean.rb +25 -0
  315. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/common.rb +138 -0
  316. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/config.rb +204 -0
  317. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/console.rb +42 -0
  318. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/doctor.rb +161 -0
  319. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/exec.rb +89 -0
  320. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/fund.rb +36 -0
  321. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/gem.rb +467 -0
  322. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/info.rb +83 -0
  323. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/init.rb +51 -0
  324. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/inject.rb +60 -0
  325. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/install.rb +199 -0
  326. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/issue.rb +41 -0
  327. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/list.rb +66 -0
  328. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/lock.rb +94 -0
  329. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/open.rb +29 -0
  330. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/outdated.rb +297 -0
  331. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/platform.rb +48 -0
  332. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/plugin.rb +35 -0
  333. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/pristine.rb +60 -0
  334. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/remove.rb +17 -0
  335. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/show.rb +75 -0
  336. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/update.rb +123 -0
  337. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli/viz.rb +31 -0
  338. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/cli.rb +799 -0
  339. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/compact_index_client/cache.rb +96 -0
  340. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/compact_index_client/cache_file.rb +148 -0
  341. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/compact_index_client/parser.rb +84 -0
  342. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/compact_index_client/updater.rb +105 -0
  343. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/compact_index_client.rb +97 -0
  344. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/constants.rb +14 -0
  345. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/current_ruby.rb +82 -0
  346. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/definition.rb +1170 -0
  347. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/dependency.rb +151 -0
  348. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/deployment.rb +69 -0
  349. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/deprecate.rb +44 -0
  350. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/digest.rb +71 -0
  351. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/dsl.rb +638 -0
  352. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/endpoint_specification.rb +174 -0
  353. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/env.rb +148 -0
  354. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/environment_preserver.rb +68 -0
  355. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/errors.rb +281 -0
  356. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/feature_flag.rb +50 -0
  357. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/fetcher/base.rb +52 -0
  358. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/fetcher/compact_index.rb +120 -0
  359. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/fetcher/dependency.rb +78 -0
  360. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/fetcher/downloader.rb +91 -0
  361. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/fetcher/gem_remote_fetcher.rb +16 -0
  362. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/fetcher/index.rb +25 -0
  363. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/fetcher.rb +331 -0
  364. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/force_platform.rb +16 -0
  365. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/friendly_errors.rb +126 -0
  366. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/gem_helper.rb +237 -0
  367. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/gem_helpers.rb +144 -0
  368. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/gem_tasks.rb +7 -0
  369. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/gem_version_promoter.rb +147 -0
  370. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/graph.rb +152 -0
  371. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/index.rb +205 -0
  372. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/injector.rb +285 -0
  373. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/inline.rb +98 -0
  374. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/installer/gem_installer.rb +85 -0
  375. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/installer/parallel_installer.rb +203 -0
  376. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/installer/standalone.rb +113 -0
  377. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/installer.rb +243 -0
  378. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/lazy_specification.rb +234 -0
  379. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/lockfile_generator.rb +104 -0
  380. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/lockfile_parser.rb +300 -0
  381. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/.document +1 -0
  382. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-add.1 +76 -0
  383. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-add.1.ronn +87 -0
  384. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-binstubs.1 +33 -0
  385. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-binstubs.1.ronn +44 -0
  386. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-cache.1 +68 -0
  387. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-cache.1.ronn +108 -0
  388. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-check.1 +24 -0
  389. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-check.1.ronn +31 -0
  390. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-clean.1 +17 -0
  391. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-clean.1.ronn +18 -0
  392. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-config.1 +317 -0
  393. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-config.1.ronn +408 -0
  394. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-console.1 +33 -0
  395. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-console.1.ronn +39 -0
  396. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-doctor.1 +30 -0
  397. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-doctor.1.ronn +33 -0
  398. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-env.1 +9 -0
  399. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-env.1.ronn +10 -0
  400. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-exec.1 +107 -0
  401. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-exec.1.ronn +154 -0
  402. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-fund.1 +22 -0
  403. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-fund.1.ronn +25 -0
  404. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-gem.1 +87 -0
  405. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-gem.1.ronn +149 -0
  406. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-help.1 +9 -0
  407. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-help.1.ronn +12 -0
  408. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-info.1 +17 -0
  409. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-info.1.ronn +21 -0
  410. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-init.1 +20 -0
  411. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-init.1.ronn +32 -0
  412. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-inject.1 +31 -0
  413. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-inject.1.ronn +32 -0
  414. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-install.1 +218 -0
  415. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-install.1.ronn +387 -0
  416. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-issue.1 +45 -0
  417. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-issue.1.ronn +37 -0
  418. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-licenses.1 +9 -0
  419. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-licenses.1.ronn +10 -0
  420. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-list.1 +35 -0
  421. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-list.1.ronn +36 -0
  422. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-lock.1 +75 -0
  423. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-lock.1.ronn +115 -0
  424. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-open.1 +32 -0
  425. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-open.1.ronn +28 -0
  426. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-outdated.1 +103 -0
  427. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-outdated.1.ronn +110 -0
  428. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-platform.1 +49 -0
  429. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-platform.1.ronn +49 -0
  430. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-plugin.1 +58 -0
  431. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-plugin.1.ronn +63 -0
  432. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-pristine.1 +23 -0
  433. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-pristine.1.ronn +34 -0
  434. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-remove.1 +21 -0
  435. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-remove.1.ronn +23 -0
  436. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-show.1 +19 -0
  437. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-show.1.ronn +25 -0
  438. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-update.1 +281 -0
  439. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-update.1.ronn +359 -0
  440. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-version.1 +22 -0
  441. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-version.1.ronn +24 -0
  442. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-viz.1 +30 -0
  443. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle-viz.1.ronn +36 -0
  444. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle.1 +102 -0
  445. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/bundle.1.ronn +116 -0
  446. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/gemfile.5 +472 -0
  447. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/gemfile.5.ronn +558 -0
  448. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/man/index.txt +33 -0
  449. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/match_metadata.rb +30 -0
  450. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/match_platform.rb +23 -0
  451. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/match_remote_metadata.rb +29 -0
  452. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/materialization.rb +59 -0
  453. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/mirror.rb +221 -0
  454. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/plugin/api/source.rb +322 -0
  455. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/plugin/api.rb +81 -0
  456. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/plugin/dsl.rb +53 -0
  457. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/plugin/events.rb +85 -0
  458. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/plugin/index.rb +197 -0
  459. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/plugin/installer/git.rb +34 -0
  460. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/plugin/installer/path.rb +26 -0
  461. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/plugin/installer/rubygems.rb +19 -0
  462. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/plugin/installer.rb +132 -0
  463. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/plugin/source_list.rb +31 -0
  464. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/plugin.rb +378 -0
  465. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/process_lock.rb +20 -0
  466. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/remote_specification.rb +126 -0
  467. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/resolver/base.rb +118 -0
  468. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/resolver/candidate.rb +85 -0
  469. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/resolver/incompatibility.rb +15 -0
  470. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/resolver/package.rb +94 -0
  471. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/resolver/root.rb +25 -0
  472. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/resolver/spec_group.rb +74 -0
  473. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/resolver/strategy.rb +40 -0
  474. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/resolver.rb +522 -0
  475. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/retry.rb +66 -0
  476. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/ruby_dsl.rb +62 -0
  477. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/ruby_version.rb +137 -0
  478. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/rubygems_ext.rb +485 -0
  479. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/rubygems_gem_installer.rb +172 -0
  480. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/rubygems_integration.rb +455 -0
  481. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/runtime.rb +320 -0
  482. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/safe_marshal.rb +31 -0
  483. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/self_manager.rb +206 -0
  484. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/settings/validator.rb +102 -0
  485. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/settings.rb +599 -0
  486. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/setup.rb +39 -0
  487. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/shared_helpers.rb +398 -0
  488. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/similarity_detector.rb +63 -0
  489. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/source/gemspec.rb +15 -0
  490. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/source/git/git_proxy.rb +472 -0
  491. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/source/git.rb +452 -0
  492. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/source/metadata.rb +63 -0
  493. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/source/path/installer.rb +53 -0
  494. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/source/path.rb +250 -0
  495. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/source/rubygems/remote.rb +76 -0
  496. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/source/rubygems.rb +522 -0
  497. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/source/rubygems_aggregate.rb +68 -0
  498. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/source.rb +118 -0
  499. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/source_list.rb +273 -0
  500. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/source_map.rb +71 -0
  501. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/spec_set.rb +367 -0
  502. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/stub_specification.rb +146 -0
  503. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/.document +1 -0
  504. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/Executable +27 -0
  505. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/Executable.bundler +109 -0
  506. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/Executable.standalone +14 -0
  507. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/Gemfile +5 -0
  508. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/CHANGELOG.md.tt +5 -0
  509. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +132 -0
  510. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/Cargo.toml.tt +7 -0
  511. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/Gemfile.tt +24 -0
  512. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/LICENSE.txt.tt +21 -0
  513. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/README.md.tt +49 -0
  514. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/Rakefile.tt +67 -0
  515. package/plugins/rubyastgen/bundle/ruby/3.4.0/{bundler/gems/ruby_ast_gen-2a9186207494/bin/console → gems/bundler-2.6.7/lib/bundler/templates/newgem/bin/console.tt} +1 -1
  516. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/{ostruct-0.6.1/bin/setup → bundler-2.6.7/lib/bundler/templates/newgem/bin/setup.tt} +0 -0
  517. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/circleci/config.yml.tt +25 -0
  518. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/exe/newgem.tt +3 -0
  519. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt +15 -0
  520. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/ext/newgem/extconf-c.rb.tt +10 -0
  521. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/ext/newgem/extconf-rust.rb.tt +6 -0
  522. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt +9 -0
  523. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/ext/newgem/newgem.h.tt +6 -0
  524. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/ext/newgem/src/lib.rs.tt +12 -0
  525. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/github/workflows/main.yml.tt +37 -0
  526. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/gitignore.tt +23 -0
  527. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/gitlab-ci.yml.tt +18 -0
  528. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +9 -0
  529. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/lib/newgem.rb.tt +15 -0
  530. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/newgem.gemspec.tt +52 -0
  531. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/rspec.tt +3 -0
  532. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/rubocop.yml.tt +8 -0
  533. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/sig/newgem.rbs.tt +8 -0
  534. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +11 -0
  535. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +15 -0
  536. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/standard.yml.tt +3 -0
  537. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/test/minitest/test_helper.rb.tt +6 -0
  538. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/test/minitest/test_newgem.rb.tt +13 -0
  539. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
  540. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
  541. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/ui/rg_proxy.rb +19 -0
  542. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/ui/shell.rb +187 -0
  543. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/ui/silent.rb +96 -0
  544. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/ui.rb +9 -0
  545. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/uri_credentials_filter.rb +43 -0
  546. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/uri_normalizer.rb +23 -0
  547. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/.document +1 -0
  548. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/connection_pool/.document +1 -0
  549. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/connection_pool/LICENSE +20 -0
  550. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +224 -0
  551. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +3 -0
  552. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb +56 -0
  553. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +186 -0
  554. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/fileutils/.document +1 -0
  555. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/fileutils/lib/fileutils.rb +2696 -0
  556. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/net-http-persistent/.document +1 -0
  557. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/net-http-persistent/README.rdoc +82 -0
  558. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb +41 -0
  559. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb +65 -0
  560. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +79 -0
  561. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +1111 -0
  562. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/.document +1 -0
  563. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/LICENSE.txt +21 -0
  564. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/assignment.rb +20 -0
  565. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/basic_package_source.rb +169 -0
  566. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/failure_writer.rb +182 -0
  567. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/incompatibility.rb +150 -0
  568. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/package.rb +43 -0
  569. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/partial_solution.rb +121 -0
  570. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/rubygems.rb +45 -0
  571. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/solve_failure.rb +19 -0
  572. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/static_package_source.rb +61 -0
  573. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/strategy.rb +42 -0
  574. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/term.rb +105 -0
  575. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/version.rb +3 -0
  576. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/version_constraint.rb +129 -0
  577. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/version_range.rb +423 -0
  578. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/version_solver.rb +236 -0
  579. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub/version_union.rb +178 -0
  580. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/pub_grub/lib/pub_grub.rb +31 -0
  581. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/securerandom/.document +1 -0
  582. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/securerandom/COPYING +56 -0
  583. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/securerandom/lib/securerandom.rb +102 -0
  584. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/.document +1 -0
  585. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/LICENSE.md +20 -0
  586. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +105 -0
  587. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +61 -0
  588. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +108 -0
  589. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rb +143 -0
  590. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +371 -0
  591. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +130 -0
  592. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/actions.rb +340 -0
  593. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/base.rb +825 -0
  594. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/command.rb +151 -0
  595. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +107 -0
  596. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/error.rb +106 -0
  597. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/group.rb +292 -0
  598. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/invocation.rb +178 -0
  599. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb +37 -0
  600. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb +88 -0
  601. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/line_editor.rb +17 -0
  602. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/nested_context.rb +29 -0
  603. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +86 -0
  604. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +195 -0
  605. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/parser/option.rb +178 -0
  606. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/parser/options.rb +294 -0
  607. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/parser.rb +4 -0
  608. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +72 -0
  609. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/runner.rb +335 -0
  610. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +388 -0
  611. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/shell/color.rb +112 -0
  612. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/shell/column_printer.rb +29 -0
  613. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/shell/html.rb +81 -0
  614. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/shell/table_printer.rb +118 -0
  615. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/shell/terminal.rb +42 -0
  616. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/shell/wrapped_printer.rb +38 -0
  617. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/shell.rb +81 -0
  618. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/util.rb +285 -0
  619. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor/version.rb +3 -0
  620. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/thor/lib/thor.rb +674 -0
  621. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/tsort/.document +1 -0
  622. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/tsort/LICENSE.txt +22 -0
  623. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/tsort/lib/tsort.rb +455 -0
  624. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/.document +1 -0
  625. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/COPYING +56 -0
  626. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/lib/uri/common.rb +880 -0
  627. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/lib/uri/file.rb +100 -0
  628. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/lib/uri/ftp.rb +267 -0
  629. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/lib/uri/generic.rb +1579 -0
  630. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/lib/uri/http.rb +125 -0
  631. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/lib/uri/https.rb +23 -0
  632. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/lib/uri/ldap.rb +261 -0
  633. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/lib/uri/ldaps.rb +22 -0
  634. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/lib/uri/mailto.rb +293 -0
  635. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +546 -0
  636. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +206 -0
  637. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/lib/uri/version.rb +6 -0
  638. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/lib/uri/ws.rb +83 -0
  639. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/lib/uri/wss.rb +23 -0
  640. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendor/uri/lib/uri.rb +104 -0
  641. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendored_fileutils.rb +4 -0
  642. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendored_net_http.rb +23 -0
  643. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendored_persistent.rb +11 -0
  644. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendored_pub_grub.rb +4 -0
  645. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendored_securerandom.rb +12 -0
  646. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendored_thor.rb +8 -0
  647. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendored_timeout.rb +12 -0
  648. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendored_tsort.rb +4 -0
  649. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vendored_uri.rb +21 -0
  650. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/version.rb +13 -0
  651. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/vlad.rb +17 -0
  652. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/worker.rb +117 -0
  653. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler/yaml_serializer.rb +98 -0
  654. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/bundler-2.6.7/lib/bundler.rb +701 -0
  655. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/ostruct-0.6.3/COPYING +56 -0
  656. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/ostruct-0.6.3/bin/setup +8 -0
  657. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/{ostruct-0.6.1 → ostruct-0.6.3}/lib/ostruct.rb +5 -2
  658. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/{ostruct-0.6.1 → ostruct-0.6.3}/ostruct.gemspec +2 -0
  659. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/BSDmakefile +58 -0
  660. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/CHANGELOG.md +684 -0
  661. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/CODE_OF_CONDUCT.md +76 -0
  662. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/CONTRIBUTING.md +58 -0
  663. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/LICENSE.md +7 -0
  664. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/Makefile +108 -0
  665. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/README.md +141 -0
  666. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/config.yml +4486 -0
  667. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/build_system.md +119 -0
  668. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/configuration.md +68 -0
  669. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/cruby_compilation.md +27 -0
  670. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/design.md +53 -0
  671. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/encoding.md +121 -0
  672. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/fuzzing.md +88 -0
  673. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/heredocs.md +36 -0
  674. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/javascript.md +118 -0
  675. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/local_variable_depth.md +229 -0
  676. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/mapping.md +117 -0
  677. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/parser_translation.md +39 -0
  678. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/parsing_rules.md +22 -0
  679. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/releasing.md +96 -0
  680. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/relocation.md +34 -0
  681. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/ripper_translation.md +72 -0
  682. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/ruby_api.md +44 -0
  683. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/ruby_parser_translation.md +19 -0
  684. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/serialization.md +233 -0
  685. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/docs/testing.md +55 -0
  686. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/ext/prism/Makefile +273 -0
  687. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/ext/prism/api_node.c +6939 -0
  688. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/ext/prism/api_pack.c +276 -0
  689. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/ext/prism/extconf.rb +127 -0
  690. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/ext/prism/extension.c +1406 -0
  691. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/ext/prism/extension.h +19 -0
  692. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/ast.h +7964 -0
  693. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/defines.h +260 -0
  694. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/diagnostic.h +451 -0
  695. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/encoding.h +283 -0
  696. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/node.h +129 -0
  697. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/options.h +442 -0
  698. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/pack.h +163 -0
  699. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/parser.h +933 -0
  700. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/prettyprint.h +34 -0
  701. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/regexp.h +43 -0
  702. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/static_literals.h +121 -0
  703. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/util/pm_buffer.h +228 -0
  704. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/util/pm_char.h +204 -0
  705. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/util/pm_constant_pool.h +218 -0
  706. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/util/pm_integer.h +126 -0
  707. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/util/pm_list.h +97 -0
  708. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/util/pm_memchr.h +29 -0
  709. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/util/pm_newline_list.h +113 -0
  710. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/util/pm_string.h +190 -0
  711. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/util/pm_strncasecmp.h +32 -0
  712. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/util/pm_strpbrk.h +46 -0
  713. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism/version.h +29 -0
  714. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/include/prism.h +383 -0
  715. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/compiler.rb +496 -0
  716. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/desugar_compiler.rb +391 -0
  717. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/dispatcher.rb +2194 -0
  718. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/dot_visitor.rb +4758 -0
  719. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/dsl.rb +1000 -0
  720. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/ffi.rb +560 -0
  721. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/inspect_visitor.rb +2389 -0
  722. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/lex_compat.rb +927 -0
  723. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/mutation_compiler.rb +769 -0
  724. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/node.rb +18645 -0
  725. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/node_ext.rb +508 -0
  726. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/pack.rb +228 -0
  727. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/parse_result/comments.rb +187 -0
  728. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/parse_result/errors.rb +65 -0
  729. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/parse_result/newlines.rb +154 -0
  730. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/parse_result.rb +910 -0
  731. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/pattern.rb +268 -0
  732. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/polyfill/append_as_bytes.rb +15 -0
  733. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/polyfill/byteindex.rb +13 -0
  734. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/polyfill/unpack1.rb +14 -0
  735. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/prism.so +0 -0
  736. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/reflection.rb +413 -0
  737. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/relocation.rb +504 -0
  738. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/serialize.rb +2392 -0
  739. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/string_query.rb +30 -0
  740. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/translation/parser/builder.rb +61 -0
  741. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/translation/parser/compiler.rb +2212 -0
  742. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/translation/parser/lexer.rb +812 -0
  743. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/translation/parser.rb +355 -0
  744. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/translation/parser33.rb +12 -0
  745. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/translation/parser34.rb +12 -0
  746. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/translation/parser35.rb +12 -0
  747. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/translation/ripper/sexp.rb +125 -0
  748. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/translation/ripper/shim.rb +5 -0
  749. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/translation/ripper.rb +3458 -0
  750. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/translation/ruby_parser.rb +1646 -0
  751. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/translation.rb +14 -0
  752. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism/visitor.rb +508 -0
  753. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/lib/prism.rb +89 -0
  754. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/prism.gemspec +170 -0
  755. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/rbi/prism/compiler.rbi +12 -0
  756. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/rbi/prism/dsl.rbi +524 -0
  757. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/rbi/prism/inspect_visitor.rbi +12 -0
  758. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/rbi/prism/node.rbi +8722 -0
  759. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/rbi/prism/node_ext.rbi +107 -0
  760. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/rbi/prism/parse_result.rbi +404 -0
  761. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/rbi/prism/reflection.rbi +58 -0
  762. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/rbi/prism/string_query.rbi +12 -0
  763. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/rbi/prism/translation/parser.rbi +11 -0
  764. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/rbi/prism/translation/parser33.rbi +6 -0
  765. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/rbi/prism/translation/parser34.rbi +6 -0
  766. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/rbi/prism/translation/parser35.rbi +6 -0
  767. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/rbi/prism/translation/ripper.rbi +15 -0
  768. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/rbi/prism/visitor.rbi +473 -0
  769. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/rbi/prism.rbi +66 -0
  770. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/compiler.rbs +9 -0
  771. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/dispatcher.rbs +16 -0
  772. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/dot_visitor.rbs +6 -0
  773. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/dsl.rbs +351 -0
  774. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/inspect_visitor.rbs +22 -0
  775. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/lex_compat.rbs +10 -0
  776. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/mutation_compiler.rbs +159 -0
  777. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/node.rbs +3614 -0
  778. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/node_ext.rbs +82 -0
  779. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/pack.rbs +43 -0
  780. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/parse_result.rbs +192 -0
  781. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/pattern.rbs +13 -0
  782. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/reflection.rbs +50 -0
  783. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/relocation.rbs +185 -0
  784. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/serialize.rbs +8 -0
  785. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/string_query.rbs +11 -0
  786. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism/visitor.rbs +169 -0
  787. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/sig/prism.rbs +254 -0
  788. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/diagnostic.c +842 -0
  789. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/encoding.c +5235 -0
  790. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/node.c +8674 -0
  791. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/options.c +328 -0
  792. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/pack.c +509 -0
  793. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/prettyprint.c +8939 -0
  794. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/prism.c +23184 -0
  795. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/regexp.c +790 -0
  796. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/serialize.c +2266 -0
  797. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/static_literals.c +617 -0
  798. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/token_type.c +701 -0
  799. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/util/pm_buffer.c +357 -0
  800. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/util/pm_char.c +318 -0
  801. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/util/pm_constant_pool.c +342 -0
  802. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/util/pm_integer.c +670 -0
  803. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/util/pm_list.c +49 -0
  804. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/util/pm_memchr.c +35 -0
  805. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/util/pm_newline_list.c +125 -0
  806. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/util/pm_string.c +383 -0
  807. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/util/pm_strncasecmp.c +36 -0
  808. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/prism-1.4.0/src/util/pm_strpbrk.c +206 -0
  809. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/racc-1.8.1/ext/racc/cparse/Makefile +3 -3
  810. package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/racc-1.8.1/lib/racc/cparse.so +0 -0
  811. package/plugins/rubyastgen/bundle/ruby/3.4.0/specifications/ast-2.4.3.gemspec +1 -1
  812. package/plugins/rubyastgen/bundle/ruby/3.4.0/specifications/bundler-2.6.7.gemspec +25 -0
  813. package/plugins/rubyastgen/bundle/ruby/3.4.0/specifications/{ostruct-0.6.1.gemspec → ostruct-0.6.3.gemspec} +5 -4
  814. package/plugins/rubyastgen/bundle/ruby/3.4.0/specifications/parser-3.3.8.0.gemspec +1 -1
  815. package/plugins/rubyastgen/bundle/ruby/3.4.0/specifications/prism-1.4.0.gemspec +24 -0
  816. package/plugins/rubyastgen/bundle/ruby/3.4.0/specifications/racc-1.8.1.gemspec +1 -1
  817. package/rbastgen.js +1 -1
  818. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/CoaleseEqualTokenEmulator.php +0 -47
  819. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/FlexibleDocStringEmulator.php +0 -76
  820. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/FnTokenEmulator.php +0 -23
  821. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/NumericLiteralSeparatorEmulator.php +0 -105
  822. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Throw_.php +0 -30
  823. package/plugins/nikic/php-parser/lib/PhpParser/Parser/Multiple.php +0 -55
  824. package/plugins/nikic/php-parser/lib/PhpParser/Parser/Php5.php +0 -2682
  825. package/plugins/nikic/php-parser/lib/PhpParser/Parser/Tokens.php +0 -148
  826. package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/ruby_ast_gen-2a9186207494/exe/ruby_ast_gen +0 -59
  827. package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/ruby_ast_gen-2a9186207494/spec/ruby_ast_gen_spec.rb +0 -175
  828. /package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/{ruby_ast_gen-2a9186207494 → ruby_ast_gen-8738b155eb4f}/.rspec +0 -0
  829. /package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/{ruby_ast_gen-2a9186207494 → ruby_ast_gen-8738b155eb4f}/LICENSE.txt +0 -0
  830. /package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/{ruby_ast_gen-2a9186207494 → ruby_ast_gen-8738b155eb4f}/Rakefile +0 -0
  831. /package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/{ruby_ast_gen-2a9186207494 → ruby_ast_gen-8738b155eb4f}/bin/setup +0 -0
  832. /package/plugins/rubyastgen/bundle/ruby/3.4.0/bundler/gems/{ruby_ast_gen-2a9186207494 → ruby_ast_gen-8738b155eb4f}/spec/spec_helper.rb +0 -0
  833. /package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/{ostruct-0.6.1 → bundler-2.6.7/lib/bundler/vendor/fileutils}/COPYING +0 -0
  834. /package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/{ostruct-0.6.1 → ostruct-0.6.3}/BSDL +0 -0
  835. /package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/{ostruct-0.6.1 → ostruct-0.6.3}/Gemfile +0 -0
  836. /package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/{ostruct-0.6.1 → ostruct-0.6.3}/README.md +0 -0
  837. /package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/{ostruct-0.6.1 → ostruct-0.6.3}/Rakefile +0 -0
  838. /package/plugins/rubyastgen/bundle/ruby/3.4.0/gems/{ostruct-0.6.1 → ostruct-0.6.3}/bin/console +0 -0
@@ -1,2682 +0,0 @@
1
- <?php
2
-
3
- namespace PhpParser\Parser;
4
-
5
- use PhpParser\Error;
6
- use PhpParser\Node;
7
- use PhpParser\Node\Expr;
8
- use PhpParser\Node\Name;
9
- use PhpParser\Node\Scalar;
10
- use PhpParser\Node\Stmt;
11
-
12
- /* This is an automatically GENERATED file, which should not be manually edited.
13
- * Instead edit one of the following:
14
- * * the grammar files grammar/php5.y or grammar/php7.y
15
- * * the skeleton file grammar/parser.template
16
- * * the preprocessing script grammar/rebuildParsers.php
17
- */
18
- class Php5 extends \PhpParser\ParserAbstract
19
- {
20
- protected $tokenToSymbolMapSize = 396;
21
- protected $actionTableSize = 1099;
22
- protected $gotoTableSize = 640;
23
-
24
- protected $invalidSymbol = 168;
25
- protected $errorSymbol = 1;
26
- protected $defaultAction = -32766;
27
- protected $unexpectedTokenRule = 32767;
28
-
29
- protected $YY2TBLSTATE = 415;
30
- protected $numNonLeafStates = 663;
31
-
32
- protected $symbolToName = array(
33
- "EOF",
34
- "error",
35
- "T_THROW",
36
- "T_INCLUDE",
37
- "T_INCLUDE_ONCE",
38
- "T_EVAL",
39
- "T_REQUIRE",
40
- "T_REQUIRE_ONCE",
41
- "','",
42
- "T_LOGICAL_OR",
43
- "T_LOGICAL_XOR",
44
- "T_LOGICAL_AND",
45
- "T_PRINT",
46
- "T_YIELD",
47
- "T_DOUBLE_ARROW",
48
- "T_YIELD_FROM",
49
- "'='",
50
- "T_PLUS_EQUAL",
51
- "T_MINUS_EQUAL",
52
- "T_MUL_EQUAL",
53
- "T_DIV_EQUAL",
54
- "T_CONCAT_EQUAL",
55
- "T_MOD_EQUAL",
56
- "T_AND_EQUAL",
57
- "T_OR_EQUAL",
58
- "T_XOR_EQUAL",
59
- "T_SL_EQUAL",
60
- "T_SR_EQUAL",
61
- "T_POW_EQUAL",
62
- "T_COALESCE_EQUAL",
63
- "'?'",
64
- "':'",
65
- "T_COALESCE",
66
- "T_BOOLEAN_OR",
67
- "T_BOOLEAN_AND",
68
- "'|'",
69
- "'^'",
70
- "T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG",
71
- "T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG",
72
- "T_IS_EQUAL",
73
- "T_IS_NOT_EQUAL",
74
- "T_IS_IDENTICAL",
75
- "T_IS_NOT_IDENTICAL",
76
- "T_SPACESHIP",
77
- "'<'",
78
- "T_IS_SMALLER_OR_EQUAL",
79
- "'>'",
80
- "T_IS_GREATER_OR_EQUAL",
81
- "T_SL",
82
- "T_SR",
83
- "'+'",
84
- "'-'",
85
- "'.'",
86
- "'*'",
87
- "'/'",
88
- "'%'",
89
- "'!'",
90
- "T_INSTANCEOF",
91
- "'~'",
92
- "T_INC",
93
- "T_DEC",
94
- "T_INT_CAST",
95
- "T_DOUBLE_CAST",
96
- "T_STRING_CAST",
97
- "T_ARRAY_CAST",
98
- "T_OBJECT_CAST",
99
- "T_BOOL_CAST",
100
- "T_UNSET_CAST",
101
- "'@'",
102
- "T_POW",
103
- "'['",
104
- "T_NEW",
105
- "T_CLONE",
106
- "T_EXIT",
107
- "T_IF",
108
- "T_ELSEIF",
109
- "T_ELSE",
110
- "T_ENDIF",
111
- "T_LNUMBER",
112
- "T_DNUMBER",
113
- "T_STRING",
114
- "T_STRING_VARNAME",
115
- "T_VARIABLE",
116
- "T_NUM_STRING",
117
- "T_INLINE_HTML",
118
- "T_ENCAPSED_AND_WHITESPACE",
119
- "T_CONSTANT_ENCAPSED_STRING",
120
- "T_ECHO",
121
- "T_DO",
122
- "T_WHILE",
123
- "T_ENDWHILE",
124
- "T_FOR",
125
- "T_ENDFOR",
126
- "T_FOREACH",
127
- "T_ENDFOREACH",
128
- "T_DECLARE",
129
- "T_ENDDECLARE",
130
- "T_AS",
131
- "T_SWITCH",
132
- "T_MATCH",
133
- "T_ENDSWITCH",
134
- "T_CASE",
135
- "T_DEFAULT",
136
- "T_BREAK",
137
- "T_CONTINUE",
138
- "T_GOTO",
139
- "T_FUNCTION",
140
- "T_FN",
141
- "T_CONST",
142
- "T_RETURN",
143
- "T_TRY",
144
- "T_CATCH",
145
- "T_FINALLY",
146
- "T_USE",
147
- "T_INSTEADOF",
148
- "T_GLOBAL",
149
- "T_STATIC",
150
- "T_ABSTRACT",
151
- "T_FINAL",
152
- "T_PRIVATE",
153
- "T_PROTECTED",
154
- "T_PUBLIC",
155
- "T_READONLY",
156
- "T_VAR",
157
- "T_UNSET",
158
- "T_ISSET",
159
- "T_EMPTY",
160
- "T_HALT_COMPILER",
161
- "T_CLASS",
162
- "T_TRAIT",
163
- "T_INTERFACE",
164
- "T_EXTENDS",
165
- "T_IMPLEMENTS",
166
- "T_OBJECT_OPERATOR",
167
- "T_LIST",
168
- "T_ARRAY",
169
- "T_CALLABLE",
170
- "T_CLASS_C",
171
- "T_TRAIT_C",
172
- "T_METHOD_C",
173
- "T_FUNC_C",
174
- "T_LINE",
175
- "T_FILE",
176
- "T_START_HEREDOC",
177
- "T_END_HEREDOC",
178
- "T_DOLLAR_OPEN_CURLY_BRACES",
179
- "T_CURLY_OPEN",
180
- "T_PAAMAYIM_NEKUDOTAYIM",
181
- "T_NAMESPACE",
182
- "T_NS_C",
183
- "T_DIR",
184
- "T_NS_SEPARATOR",
185
- "T_ELLIPSIS",
186
- "T_NAME_FULLY_QUALIFIED",
187
- "T_NAME_QUALIFIED",
188
- "T_NAME_RELATIVE",
189
- "';'",
190
- "'{'",
191
- "'}'",
192
- "'('",
193
- "')'",
194
- "'$'",
195
- "'`'",
196
- "']'",
197
- "'\"'",
198
- "T_ENUM",
199
- "T_NULLSAFE_OBJECT_OPERATOR",
200
- "T_ATTRIBUTE"
201
- );
202
-
203
- protected $tokenToSymbol = array(
204
- 0, 168, 168, 168, 168, 168, 168, 168, 168, 168,
205
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
206
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
207
- 168, 168, 168, 56, 164, 168, 161, 55, 168, 168,
208
- 159, 160, 53, 50, 8, 51, 52, 54, 168, 168,
209
- 168, 168, 168, 168, 168, 168, 168, 168, 31, 156,
210
- 44, 16, 46, 30, 68, 168, 168, 168, 168, 168,
211
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
212
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
213
- 168, 70, 168, 163, 36, 168, 162, 168, 168, 168,
214
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
215
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
216
- 168, 168, 168, 157, 35, 158, 58, 168, 168, 168,
217
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
218
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
219
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
220
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
221
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
222
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
223
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
224
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
225
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
226
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
227
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
228
- 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
229
- 168, 168, 168, 168, 168, 168, 1, 2, 3, 4,
230
- 5, 6, 7, 9, 10, 11, 12, 13, 14, 15,
231
- 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
232
- 27, 28, 29, 32, 33, 34, 37, 38, 39, 40,
233
- 41, 42, 43, 45, 47, 48, 49, 57, 59, 60,
234
- 61, 62, 63, 64, 65, 66, 67, 69, 71, 72,
235
- 73, 74, 75, 76, 77, 78, 79, 80, 81, 82,
236
- 83, 84, 85, 86, 87, 88, 89, 90, 91, 92,
237
- 93, 94, 95, 96, 97, 98, 99, 100, 101, 102,
238
- 103, 104, 105, 106, 107, 108, 109, 110, 111, 112,
239
- 113, 114, 115, 116, 117, 118, 119, 120, 121, 122,
240
- 123, 124, 125, 126, 127, 128, 129, 130, 165, 131,
241
- 132, 133, 166, 134, 135, 136, 137, 138, 139, 140,
242
- 141, 142, 143, 144, 145, 146, 147, 148, 149, 150,
243
- 151, 152, 153, 154, 155, 167
244
- );
245
-
246
- protected $action = array(
247
- 700, 670, 671, 672, 673, 674, 286, 675, 676, 677,
248
- 713, 714, 223, 224, 225, 226, 227, 228, 229, 230,
249
- 231, 232, 0, 233, 234, 235, 236, 237, 238, 239,
250
- 240, 241, 242, 243, 244,-32766,-32766,-32766,-32766,-32766,
251
- -32766,-32766,-32766,-32766,-32767,-32767,-32767,-32767, 245, 246,
252
- 242, 243, 244,-32766,-32766, 678,-32766,-32766,-32766,-32766,
253
- -32766,-32766,-32766,-32766,-32766, 1229, 245, 246, 1230, 679,
254
- 680, 681, 682, 683, 684, 685, 899, 900, 747,-32766,
255
- -32766,-32766,-32766,-32766,-32766, 686, 687, 688, 689, 690,
256
- 691, 692, 693, 694, 695, 696, 716, 739, 717, 718,
257
- 719, 720, 708, 709, 710, 738, 711, 712, 697, 698,
258
- 699, 701, 702, 703, 741, 742, 743, 744, 745, 746,
259
- 875, 704, 705, 706, 707, 737, 728, 726, 727, 723,
260
- 724, 1046, 715, 721, 722, 729, 730, 732, 731, 733,
261
- 734, 55, 56, 425, 57, 58, 725, 736, 735, 755,
262
- 59, 60, -226, 61,-32766,-32766,-32766,-32766,-32766,-32766,
263
- -32766,-32766,-32766,-32766, 337,-32767,-32767,-32767,-32767, 29,
264
- 107, 108, 109, 110, 111, 112, 113, 114, 115, 116,
265
- 117, 118, 119, 620,-32766,-32766,-32766,-32766, 62, 63,
266
- 1046,-32766,-32766,-32766, 64, 419, 65, 294, 295, 66,
267
- 67, 68, 69, 70, 71, 72, 73, 823, 25, 302,
268
- 74, 418, 984, 986, 669, 668, 1100, 1101, 1078, 755,
269
- 755, 767, 1220, 768, 470,-32766,-32766,-32766, 341, 749,
270
- 824, 54,-32767,-32767,-32767,-32767, 98, 99, 100, 101,
271
- 102, 220, 221, 222, 362, 876,-32766, 27,-32766,-32766,
272
- -32766,-32766,-32766, 1046, 493, 126, 1080, 1079, 1081, 370,
273
- 1068, 930, 207, 478, 479, 952, 953, 954, 951, 950,
274
- 949, 128, 480, 481, 803, 1106, 1107, 1108, 1109, 1103,
275
- 1104, 319, 32, 297, 10, 211, -515, 1110, 1105, 669,
276
- 668, 1080, 1079, 1081, 220, 221, 222, 41, 364, 341,
277
- 334, 421, 336, 426, -128, -128, -128, 313, 1046, 469,
278
- -4, 824, 54, 812, 770, 207, 40, 21, 427, -128,
279
- 471, -128, 472, -128, 473, -128, 1046, 428, 220, 221,
280
- 222,-32766, 33, 34, 429, 361, 327, 52, 35, 474,
281
- -32766,-32766,-32766, 342, 357, 358, 475, 476, 48, 207,
282
- 249, 669, 668, 477, 443, 300, 795, 846, 430, 431,
283
- 28,-32766, 814,-32766,-32766,-32766,-32766,-32766,-32766,-32766,
284
- -32767,-32767,-32767,-32767,-32767, 952, 953, 954, 951, 950,
285
- 949, 422, 755, 424, 426, 826, 634, -128,-32766,-32766,
286
- 469, 824, 54, 288, 812, 1151, 755, 40, 21, 427,
287
- 317, 471, 345, 472, 129, 473, 9, 1186, 428, 769,
288
- 360, 324, 905, 33, 34, 429, 361, 1046, 415, 35,
289
- 474, 944, 1068, 315, 125, 357, 358, 475, 476,-32766,
290
- -32766,-32766, 926, 302, 477, 121, 1068, 759, 846, 430,
291
- 431, 669, 668, 423, 755, 1152, 809, 1046, 480, 766,
292
- -32766, 805,-32766,-32766,-32766,-32766, -261, 127, 347, 436,
293
- 841, 341, 1078, 1200, 426, 446, 826, 634, -4, 807,
294
- 469, 824, 54, 436, 812, 341, 755, 40, 21, 427,
295
- 444, 471, 130, 472, 1068, 473, 346, 767, 428, 768,
296
- -211, -211, -211, 33, 34, 429, 361, 308, 1076, 35,
297
- 474,-32766,-32766,-32766, 1046, 357, 358, 475, 476,-32766,
298
- -32766,-32766, 906, 120, 477, 539, 1068, 795, 846, 430,
299
- 431, 436,-32766, 341,-32766,-32766,-32766, 1046, 480, 810,
300
- -32766, 925,-32766,-32766, 754, 1080, 1079, 1081, 49,-32766,
301
- -32766,-32766, 749, 751, 426, 1201, 826, 634, -211, 30,
302
- 469, 669, 668, 436, 812, 341, 75, 40, 21, 427,
303
- -32766, 471, 1064, 472, 124, 473, 669, 668, 428, 212,
304
- -210, -210, -210, 33, 34, 429, 361, 51, 1186, 35,
305
- 474, 755,-32766,-32766,-32766, 357, 358, 475, 476, 213,
306
- 824, 54, 221, 222, 477, 20, 581, 795, 846, 430,
307
- 431, 220, 221, 222, 755, 222, 247, 78, 79, 80,
308
- 81, 341, 207, 517, 103, 104, 105, 752, 307, 131,
309
- 637, 1068, 207, 341, 207, 122, 826, 634, -210, 36,
310
- 106, 82, 83, 84, 85, 86, 87, 88, 89, 90,
311
- 91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
312
- 101, 102, 103, 104, 105, 1112, 307, 346, 436, 214,
313
- 341, 824, 54, 426, 123, 250, 129, 134, 106, 469,
314
- -32766, 572, 1112, 812, 245, 246, 40, 21, 427, 251,
315
- 471, 252, 472, 341, 473, 453, 22, 428, 207, 899,
316
- 900, 638, 33, 34, 429, 824, 54, -86, 35, 474,
317
- 220, 221, 222, 314, 357, 358, 100, 101, 102, 239,
318
- 240, 241, 645, 477, -230, 458, 589, 135, 374, 596,
319
- 597, 207, 760, 640, 648, 642, 941, 654, 929, 662,
320
- 822, 133, 307, 837, 426,-32766, 106, 749, 43, 44,
321
- 469, 45, 442, 46, 812, 826, 634, 40, 21, 427,
322
- 47, 471, 50, 472, 53, 473, 132, 608, 428, 302,
323
- 604, -280,-32766, 33, 34, 429, 824, 54, 426, 35,
324
- 474, 755, 957, -84, 469, 357, 358, 521, 812, 628,
325
- 363, 40, 21, 427, 477, 471, 575, 472, -515, 473,
326
- 847, 616, 428, -423,-32766, 11, 646, 33, 34, 429,
327
- 824, 54, 445, 35, 474, 462, 285, 578, 1111, 357,
328
- 358, 593, 369, 848, 594, 290, 826, 634, 477, 0,
329
- 0, 532, 0, 0, 325, 0, 0, 0, 0, 0,
330
- 651, 0, 0, 0, 322, 326, 0, 0, 0, 426,
331
- 0, 0, 0, 0, 323, 469, 316, 318, -516, 812,
332
- 862, 634, 40, 21, 427, 0, 471, 0, 472, 0,
333
- 473, 1158, 0, 428, 0, -414, 6, 7, 33, 34,
334
- 429, 824, 54, 426, 35, 474, 12, 14, 373, 469,
335
- 357, 358, -424, 812, 563, 754, 40, 21, 427, 477,
336
- 471, 248, 472, 839, 473, 38, 39, 428, 657, 658,
337
- 765, 813, 33, 34, 429, 821, 800, 815, 35, 474,
338
- 215, 216, 878, 869, 357, 358, 217, 870, 218, 798,
339
- 863, 826, 634, 477, 860, 858, 936, 937, 934, 820,
340
- 209, 804, 806, 808, 811, 933, 763, 764, 1100, 1101,
341
- 935, 659, 78, 335, 426, 359, 1102, 635, 639, 641,
342
- 469, 643, 644, 647, 812, 826, 634, 40, 21, 427,
343
- 649, 471, 650, 472, 652, 473, 653, 636, 428, 796,
344
- 1226, 1228, 762, 33, 34, 429, 215, 216, 845, 35,
345
- 474, 761, 217, 844, 218, 357, 358, 1227, 843, 1060,
346
- 831, 1048, 842, 1049, 477, 559, 209, 1106, 1107, 1108,
347
- 1109, 1103, 1104, 398, 1100, 1101, 829, 942, 867, 1110,
348
- 1105, 868, 1102, 457, 1225, 1194, 1192, 1177, 1157, 219,
349
- 1190, 1091, 917, 1198, 1188, 0, 826, 634, 24, -433,
350
- 26, 31, 37, 42, 76, 77, 210, 287, 292, 293,
351
- 308, 309, 310, 311, 339, 356, 416, 0, -227, -226,
352
- 16, 17, 18, 393, 454, 461, 463, 467, 553, 625,
353
- 1051, 559, 1054, 1106, 1107, 1108, 1109, 1103, 1104, 398,
354
- 907, 1116, 1050, 1026, 564, 1110, 1105, 1025, 1093, 1055,
355
- 0, 1044, 0, 1057, 1056, 219, 1059, 1058, 1075, 0,
356
- 1191, 1176, 1172, 1189, 1090, 1223, 1117, 1171, 600
357
- );
358
-
359
- protected $actionCheck = array(
360
- 2, 3, 4, 5, 6, 7, 14, 9, 10, 11,
361
- 12, 13, 33, 34, 35, 36, 37, 38, 39, 40,
362
- 41, 42, 0, 44, 45, 46, 47, 48, 49, 50,
363
- 51, 52, 53, 54, 55, 9, 10, 11, 33, 34,
364
- 35, 36, 37, 38, 39, 40, 41, 42, 69, 70,
365
- 53, 54, 55, 9, 10, 57, 30, 116, 32, 33,
366
- 34, 35, 36, 37, 38, 80, 69, 70, 83, 71,
367
- 72, 73, 74, 75, 76, 77, 135, 136, 80, 33,
368
- 34, 35, 36, 37, 38, 87, 88, 89, 90, 91,
369
- 92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
370
- 102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
371
- 112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
372
- 31, 123, 124, 125, 126, 127, 128, 129, 130, 131,
373
- 132, 13, 134, 135, 136, 137, 138, 139, 140, 141,
374
- 142, 3, 4, 5, 6, 7, 148, 149, 150, 82,
375
- 12, 13, 160, 15, 33, 34, 35, 36, 37, 38,
376
- 39, 40, 41, 42, 8, 44, 45, 46, 47, 16,
377
- 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
378
- 27, 28, 29, 80, 33, 34, 35, 36, 50, 51,
379
- 13, 9, 10, 11, 56, 128, 58, 59, 60, 61,
380
- 62, 63, 64, 65, 66, 67, 68, 1, 70, 71,
381
- 72, 73, 59, 60, 37, 38, 78, 79, 80, 82,
382
- 82, 106, 85, 108, 86, 9, 10, 11, 161, 80,
383
- 1, 2, 44, 45, 46, 47, 48, 49, 50, 51,
384
- 52, 9, 10, 11, 106, 156, 30, 8, 32, 33,
385
- 34, 35, 36, 13, 116, 8, 153, 154, 155, 8,
386
- 122, 158, 30, 125, 126, 116, 117, 118, 119, 120,
387
- 121, 31, 134, 135, 156, 137, 138, 139, 140, 141,
388
- 142, 143, 145, 146, 8, 8, 133, 149, 150, 37,
389
- 38, 153, 154, 155, 9, 10, 11, 159, 8, 161,
390
- 162, 8, 164, 74, 75, 76, 77, 8, 13, 80,
391
- 0, 1, 2, 84, 158, 30, 87, 88, 89, 90,
392
- 91, 92, 93, 94, 95, 96, 13, 98, 9, 10,
393
- 11, 9, 103, 104, 105, 106, 8, 70, 109, 110,
394
- 9, 10, 11, 8, 115, 116, 117, 118, 70, 30,
395
- 31, 37, 38, 124, 31, 8, 127, 128, 129, 130,
396
- 8, 30, 156, 32, 33, 34, 35, 36, 37, 38,
397
- 39, 40, 41, 42, 43, 116, 117, 118, 119, 120,
398
- 121, 8, 82, 8, 74, 156, 157, 158, 33, 34,
399
- 80, 1, 2, 8, 84, 163, 82, 87, 88, 89,
400
- 133, 91, 70, 93, 152, 95, 108, 82, 98, 158,
401
- 8, 113, 160, 103, 104, 105, 106, 13, 108, 109,
402
- 110, 123, 122, 113, 157, 115, 116, 117, 118, 9,
403
- 10, 11, 156, 71, 124, 157, 122, 127, 128, 129,
404
- 130, 37, 38, 8, 82, 160, 156, 13, 134, 156,
405
- 30, 156, 32, 33, 34, 35, 158, 157, 148, 159,
406
- 122, 161, 80, 1, 74, 133, 156, 157, 158, 156,
407
- 80, 1, 2, 159, 84, 161, 82, 87, 88, 89,
408
- 157, 91, 157, 93, 122, 95, 161, 106, 98, 108,
409
- 100, 101, 102, 103, 104, 105, 106, 159, 116, 109,
410
- 110, 9, 10, 11, 13, 115, 116, 117, 118, 9,
411
- 10, 11, 160, 16, 124, 81, 122, 127, 128, 129,
412
- 130, 159, 30, 161, 32, 33, 34, 13, 134, 156,
413
- 30, 156, 32, 33, 153, 153, 154, 155, 70, 9,
414
- 10, 11, 80, 80, 74, 160, 156, 157, 158, 14,
415
- 80, 37, 38, 159, 84, 161, 152, 87, 88, 89,
416
- 30, 91, 160, 93, 14, 95, 37, 38, 98, 16,
417
- 100, 101, 102, 103, 104, 105, 106, 70, 82, 109,
418
- 110, 82, 33, 34, 35, 115, 116, 117, 118, 16,
419
- 1, 2, 10, 11, 124, 160, 85, 127, 128, 129,
420
- 130, 9, 10, 11, 82, 11, 14, 157, 9, 10,
421
- 11, 161, 30, 85, 53, 54, 55, 154, 57, 157,
422
- 31, 122, 30, 161, 30, 157, 156, 157, 158, 30,
423
- 69, 32, 33, 34, 35, 36, 37, 38, 39, 40,
424
- 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
425
- 51, 52, 53, 54, 55, 144, 57, 161, 159, 16,
426
- 161, 1, 2, 74, 157, 16, 152, 157, 69, 80,
427
- 116, 161, 144, 84, 69, 70, 87, 88, 89, 16,
428
- 91, 16, 93, 161, 95, 75, 76, 98, 30, 135,
429
- 136, 31, 103, 104, 105, 1, 2, 31, 109, 110,
430
- 9, 10, 11, 31, 115, 116, 50, 51, 52, 50,
431
- 51, 52, 31, 124, 160, 75, 76, 101, 102, 111,
432
- 112, 30, 156, 157, 31, 31, 156, 157, 156, 157,
433
- 31, 31, 57, 38, 74, 33, 69, 80, 70, 70,
434
- 80, 70, 89, 70, 84, 156, 157, 87, 88, 89,
435
- 70, 91, 70, 93, 70, 95, 70, 96, 98, 71,
436
- 77, 82, 85, 103, 104, 105, 1, 2, 74, 109,
437
- 110, 82, 82, 97, 80, 115, 116, 85, 84, 92,
438
- 106, 87, 88, 89, 124, 91, 90, 93, 133, 95,
439
- 128, 94, 98, 147, 116, 97, 31, 103, 104, 105,
440
- 1, 2, 97, 109, 110, 97, 97, 100, 144, 115,
441
- 116, 100, 106, 128, 113, 161, 156, 157, 124, -1,
442
- -1, 151, -1, -1, 114, -1, -1, -1, -1, -1,
443
- 31, -1, -1, -1, 131, 131, -1, -1, -1, 74,
444
- -1, -1, -1, -1, 132, 80, 133, 133, 133, 84,
445
- 156, 157, 87, 88, 89, -1, 91, -1, 93, -1,
446
- 95, 144, -1, 98, -1, 147, 147, 147, 103, 104,
447
- 105, 1, 2, 74, 109, 110, 147, 147, 147, 80,
448
- 115, 116, 147, 84, 151, 153, 87, 88, 89, 124,
449
- 91, 31, 93, 152, 95, 156, 156, 98, 156, 156,
450
- 156, 156, 103, 104, 105, 156, 156, 156, 109, 110,
451
- 50, 51, 156, 156, 115, 116, 56, 156, 58, 156,
452
- 156, 156, 157, 124, 156, 156, 156, 156, 156, 156,
453
- 70, 156, 156, 156, 156, 156, 156, 156, 78, 79,
454
- 156, 158, 157, 157, 74, 157, 86, 157, 157, 157,
455
- 80, 157, 157, 157, 84, 156, 157, 87, 88, 89,
456
- 157, 91, 157, 93, 157, 95, 157, 157, 98, 158,
457
- 158, 158, 158, 103, 104, 105, 50, 51, 158, 109,
458
- 110, 158, 56, 158, 58, 115, 116, 158, 158, 158,
459
- 158, 158, 158, 158, 124, 135, 70, 137, 138, 139,
460
- 140, 141, 142, 143, 78, 79, 158, 158, 158, 149,
461
- 150, 158, 86, 158, 158, 158, 158, 158, 164, 159,
462
- 158, 158, 158, 158, 158, -1, 156, 157, 159, 162,
463
- 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
464
- 159, 159, 159, 159, 159, 159, 159, -1, 160, 160,
465
- 160, 160, 160, 160, 160, 160, 160, 160, 160, 160,
466
- 160, 135, 160, 137, 138, 139, 140, 141, 142, 143,
467
- 160, 160, 160, 160, 160, 149, 150, 160, 160, 163,
468
- -1, 162, -1, 163, 163, 159, 163, 163, 163, -1,
469
- 163, 163, 163, 163, 163, 163, 163, 163, 163
470
- );
471
-
472
- protected $actionBase = array(
473
- 0, 229, 310, 390, 470, 103, 325, 325, 784, -2,
474
- -2, 149, -2, -2, -2, 660, 765, 799, 765, 589,
475
- 694, 870, 870, 870, 252, 404, 404, 404, 514, 177,
476
- 177, 918, 434, 118, 295, 313, 240, 491, 491, 491,
477
- 491, 138, 138, 491, 491, 491, 491, 491, 491, 491,
478
- 491, 491, 491, 491, 491, 491, 491, 491, 491, 491,
479
- 491, 491, 491, 491, 491, 491, 491, 491, 491, 491,
480
- 491, 491, 491, 491, 491, 491, 491, 491, 491, 491,
481
- 491, 491, 491, 491, 491, 491, 491, 491, 491, 491,
482
- 491, 491, 491, 491, 491, 491, 491, 491, 491, 491,
483
- 491, 491, 491, 491, 491, 491, 491, 491, 491, 491,
484
- 491, 491, 491, 491, 491, 491, 491, 491, 491, 491,
485
- 491, 491, 491, 491, 491, 491, 491, 491, 491, 491,
486
- 491, 491, 491, 491, 491, 491, 89, 206, 773, 550,
487
- 535, 775, 776, 777, 912, 709, 913, 856, 857, 700,
488
- 858, 859, 862, 863, 864, 855, 865, 935, 866, 599,
489
- 599, 599, 599, 599, 599, 599, 599, 599, 599, 599,
490
- 599, 322, 592, 285, 319, 232, 44, 691, 691, 691,
491
- 691, 691, 691, 691, 182, 182, 182, 182, 182, 182,
492
- 182, 182, 182, 182, 182, 182, 182, 182, 182, 182,
493
- 182, 182, 582, 530, 530, 530, 594, 860, 658, 926,
494
- 926, 926, 926, 926, 926, 926, 926, 926, 926, 926,
495
- 926, 926, 926, 926, 926, 926, 926, 926, 926, 926,
496
- 926, 926, 926, 926, 926, 926, 926, 926, 926, 926,
497
- 926, 926, 926, 926, 926, 926, 926, 926, 926, 926,
498
- 926, 926, 926, 500, -21, -21, 492, 702, 420, 355,
499
- 216, 549, 151, 26, 26, 331, 331, 331, 331, 331,
500
- 46, 46, 5, 5, 5, 5, 153, 188, 188, 188,
501
- 188, 121, 121, 121, 121, 314, 314, 394, 394, 362,
502
- 300, 298, 499, 499, 499, 499, 499, 499, 499, 499,
503
- 499, 499, 67, 656, 656, 659, 659, 522, 554, 554,
504
- 554, 554, 679, -59, -59, 381, 462, 462, 462, 528,
505
- 717, 854, 382, 382, 382, 382, 382, 382, 561, 561,
506
- 561, -3, -3, -3, 692, 115, 137, 115, 137, 678,
507
- 732, 450, 732, 338, 677, -15, 510, 810, 468, 707,
508
- 850, 711, 853, 572, 735, 267, 529, 654, 674, 463,
509
- 529, 529, 529, 529, 654, 610, 640, 608, 463, 529,
510
- 463, 718, 323, 496, 89, 570, 507, 675, 778, 293,
511
- 670, 780, 290, 373, 332, 566, 278, 435, 733, 781,
512
- 914, 917, 385, 715, 675, 675, 675, 352, 511, 278,
513
- -8, 605, 605, 605, 605, 156, 605, 605, 605, 605,
514
- 251, 276, 375, 402, 779, 657, 657, 690, 872, 869,
515
- 869, 657, 689, 657, 690, 874, 874, 874, 874, 657,
516
- 657, 657, 657, 869, 869, 869, 688, 869, 239, 703,
517
- 704, 704, 874, 742, 743, 657, 657, 712, 869, 869,
518
- 869, 712, 695, 874, 701, 741, 277, 869, 874, 672,
519
- 689, 672, 657, 701, 672, 689, 689, 672, 22, 666,
520
- 668, 873, 875, 887, 790, 662, 685, 879, 880, 876,
521
- 878, 871, 699, 744, 745, 497, 669, 671, 673, 680,
522
- 719, 682, 713, 674, 667, 667, 667, 655, 720, 655,
523
- 667, 667, 667, 667, 667, 667, 667, 667, 916, 646,
524
- 731, 714, 653, 749, 553, 573, 791, 664, 811, 900,
525
- 893, 867, 919, 881, 898, 655, 920, 739, 247, 643,
526
- 882, 783, 786, 655, 883, 655, 792, 655, 902, 812,
527
- 686, 813, 814, 667, 910, 921, 923, 924, 925, 927,
528
- 928, 929, 930, 684, 931, 750, 696, 894, 299, 877,
529
- 718, 729, 705, 788, 751, 820, 328, 932, 823, 655,
530
- 655, 794, 785, 655, 795, 756, 740, 890, 757, 895,
531
- 933, 664, 708, 896, 655, 706, 825, 934, 328, 681,
532
- 683, 888, 661, 761, 886, 911, 885, 796, 649, 663,
533
- 829, 830, 831, 693, 763, 891, 892, 889, 764, 803,
534
- 665, 805, 697, 832, 807, 884, 768, 833, 834, 899,
535
- 676, 730, 710, 698, 687, 809, 835, 897, 769, 770,
536
- 771, 848, 772, 849, 0, 0, 0, 0, 0, 0,
537
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
538
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
539
- 0, 0, 0, 0, 138, 138, 138, 138, -2, -2,
540
- -2, -2, 0, 0, -2, 0, 0, 0, 138, 138,
541
- 138, 138, 138, 138, 138, 138, 138, 138, 138, 138,
542
- 138, 138, 138, 138, 138, 138, 138, 138, 138, 138,
543
- 138, 138, 138, 138, 0, 0, 138, 138, 138, 138,
544
- 138, 138, 138, 138, 138, 138, 138, 138, 138, 138,
545
- 138, 138, 138, 138, 138, 138, 138, 138, 138, 138,
546
- 138, 138, 138, 138, 138, 138, 138, 138, 138, 138,
547
- 138, 138, 138, 138, 138, 138, 138, 138, 138, 138,
548
- 138, 138, 138, 138, 138, 138, 138, 138, 138, 138,
549
- 138, 138, 138, 138, 138, 138, 138, 138, 138, 138,
550
- 138, 138, 138, 138, 138, 138, 138, 138, 138, 138,
551
- 138, 138, 138, 138, 138, 138, 138, 138, 138, 138,
552
- 138, 138, 138, 138, 138, 138, 138, 138, 138, 599,
553
- 599, 599, 599, 599, 599, 599, 599, 599, 599, 599,
554
- 599, 599, 599, 599, 599, 599, 599, 599, 599, 599,
555
- 599, 599, 0, 0, 0, 0, 0, 0, 0, 0,
556
- 0, 0, 0, 0, 599, -21, -21, -21, -21, 599,
557
- -21, -21, -21, -21, -21, -21, -21, 599, 599, 599,
558
- 599, 599, 599, 599, 599, 599, 599, 599, 599, 599,
559
- 599, 599, 599, 599, 599, -21, 599, 599, 599, -21,
560
- 382, -21, 382, 382, 382, 382, 382, 382, 382, 382,
561
- 382, 382, 382, 382, 382, 382, 382, 382, 382, 382,
562
- 382, 382, 382, 382, 382, 382, 382, 382, 382, 382,
563
- 382, 382, 382, 382, 382, 382, 382, 382, 382, 382,
564
- 382, 382, 382, 382, 382, 382, 599, 0, 0, 599,
565
- -21, 599, -21, 599, -21, -21, 599, 599, 599, 599,
566
- 599, 599, 599, -21, -21, -21, -21, -21, -21, 0,
567
- 561, 561, 561, 561, -21, -21, -21, -21, 382, 382,
568
- 382, 382, 382, 382, 259, 382, 382, 382, 382, 382,
569
- 382, 382, 382, 382, 382, 382, 561, 561, -3, -3,
570
- 382, 382, 382, 382, 382, 259, 382, 382, 463, 689,
571
- 689, 689, 137, 137, 137, 0, 0, 0, 0, 0,
572
- 0, 0, 0, 0, 0, 0, 0, 137, 463, 0,
573
- 463, 0, 382, 463, 689, 463, 657, 137, 689, 689,
574
- 463, 869, 616, 616, 616, 616, 328, 278, 0, 0,
575
- 689, 689, 0, 0, 0, 0, 0, 689, 0, 0,
576
- 0, 0, 0, 0, 869, 0, 0, 0, 0, 0,
577
- 667, 247, 0, 705, 335, 0, 0, 0, 0, 0,
578
- 0, 705, 335, 347, 347, 0, 684, 667, 667, 667,
579
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
580
- 0, 0, 0, 0, 0, 0, 0, 328
581
- );
582
-
583
- protected $actionDefault = array(
584
- 3,32767,32767,32767,32767,32767,32767,32767,32767,32767,
585
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
586
- 32767,32767,32767,32767,32767, 544, 544, 499,32767,32767,
587
- 32767,32767,32767,32767,32767,32767,32767, 299, 299, 299,
588
- 32767,32767,32767, 532, 532, 532, 532, 532, 532, 532,
589
- 532, 532, 532, 532,32767,32767,32767,32767,32767,32767,
590
- 383,32767,32767,32767,32767,32767,32767,32767,32767,32767,
591
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
592
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
593
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
594
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
595
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
596
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
597
- 32767,32767,32767,32767,32767,32767,32767,32767,32767, 389,
598
- 549,32767,32767,32767,32767,32767,32767,32767,32767,32767,
599
- 32767,32767,32767,32767,32767,32767,32767,32767,32767, 364,
600
- 365, 367, 368, 298, 552, 533, 247, 390, 548, 297,
601
- 249, 327, 503,32767,32767,32767, 329, 122, 258, 203,
602
- 502, 125, 296, 234, 382, 384, 328, 303, 308, 309,
603
- 310, 311, 312, 313, 314, 315, 316, 317, 318, 319,
604
- 320, 302, 458, 361, 360, 359, 460,32767, 459, 496,
605
- 496, 499,32767,32767,32767,32767,32767,32767,32767,32767,
606
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
607
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
608
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
609
- 32767,32767,32767, 325, 487, 486, 326, 456, 330, 457,
610
- 333, 461, 464, 331, 332, 349, 350, 347, 348, 351,
611
- 462, 463, 480, 481, 478, 479, 301, 352, 353, 354,
612
- 355, 482, 483, 484, 485,32767,32767, 543, 543,32767,
613
- 32767, 282,32767,32767,32767,32767,32767,32767,32767,32767,
614
- 32767,32767,32767, 340, 341, 471, 472,32767, 238, 238,
615
- 238, 238, 283, 238,32767,32767,32767,32767,32767,32767,
616
- 32767,32767,32767,32767,32767,32767,32767,32767, 335, 336,
617
- 334, 466, 467, 465, 432,32767,32767,32767, 434,32767,
618
- 32767,32767,32767,32767,32767,32767,32767,32767, 504,32767,
619
- 32767,32767,32767,32767, 517, 421, 171,32767, 413,32767,
620
- 171, 171, 171, 171,32767, 222, 224, 167,32767, 171,
621
- 32767, 490,32767,32767,32767,32767, 522, 345,32767,32767,
622
- 116,32767,32767,32767, 559,32767, 517,32767, 116,32767,
623
- 32767,32767,32767, 358, 337, 338, 339,32767,32767, 521,
624
- 515, 474, 475, 476, 477,32767, 468, 469, 470, 473,
625
- 32767,32767,32767,32767,32767,32767,32767,32767, 429, 435,
626
- 435,32767,32767,32767,32767,32767,32767,32767,32767,32767,
627
- 32767,32767,32767,32767, 520, 519,32767, 414, 498, 188,
628
- 186, 186,32767, 208, 208,32767,32767, 190, 491, 510,
629
- 32767, 190, 173,32767, 400, 175, 498,32767,32767, 240,
630
- 32767, 240,32767, 400, 240,32767,32767, 240,32767, 415,
631
- 439,32767,32767,32767,32767,32767,32767,32767,32767,32767,
632
- 32767,32767,32767,32767,32767,32767, 379, 380, 493, 506,
633
- 32767, 507,32767, 413, 343, 344, 346, 322,32767, 324,
634
- 369, 370, 371, 372, 373, 374, 375, 377,32767, 419,
635
- 32767, 422,32767,32767,32767, 257,32767, 557,32767,32767,
636
- 306, 557,32767,32767,32767, 551,32767,32767, 300,32767,
637
- 32767,32767,32767, 253,32767, 169,32767, 541,32767, 558,
638
- 32767, 515,32767, 342,32767,32767,32767,32767,32767,32767,
639
- 32767,32767,32767, 516,32767,32767,32767,32767, 229,32767,
640
- 452,32767, 116,32767,32767,32767, 189,32767,32767, 304,
641
- 248,32767,32767, 550,32767,32767,32767,32767,32767,32767,
642
- 32767,32767, 114,32767, 170,32767,32767,32767, 191,32767,
643
- 32767, 515,32767,32767,32767,32767,32767,32767,32767, 295,
644
- 32767,32767,32767,32767,32767,32767,32767, 515,32767,32767,
645
- 233,32767,32767,32767,32767,32767,32767,32767,32767,32767,
646
- 415,32767, 276,32767,32767,32767,32767,32767,32767,32767,
647
- 32767,32767,32767,32767, 127, 127, 3, 127, 127, 260,
648
- 3, 260, 127, 260, 260, 127, 127, 127, 127, 127,
649
- 127, 127, 127, 127, 127, 216, 219, 208, 208, 164,
650
- 127, 127, 268
651
- );
652
-
653
- protected $goto = array(
654
- 166, 140, 140, 140, 166, 187, 168, 144, 147, 141,
655
- 142, 143, 149, 163, 163, 163, 163, 144, 144, 165,
656
- 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
657
- 138, 159, 160, 161, 162, 184, 139, 185, 494, 495,
658
- 377, 496, 500, 501, 502, 503, 504, 505, 506, 507,
659
- 970, 164, 145, 146, 148, 171, 176, 186, 203, 253,
660
- 256, 258, 260, 263, 264, 265, 266, 267, 268, 269,
661
- 277, 278, 279, 280, 303, 304, 328, 329, 330, 394,
662
- 395, 396, 543, 188, 189, 190, 191, 192, 193, 194,
663
- 195, 196, 197, 198, 199, 200, 201, 150, 151, 152,
664
- 167, 153, 169, 154, 204, 170, 155, 156, 157, 205,
665
- 158, 136, 621, 561, 757, 561, 561, 561, 561, 561,
666
- 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
667
- 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
668
- 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
669
- 561, 561, 561, 561, 561, 561, 561, 561, 561, 1113,
670
- 629, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113,
671
- 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113,
672
- 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113,
673
- 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113,
674
- 1113, 1113, 1113, 1113, 1113, 758, 520, 531, 509, 656,
675
- 556, 1183, 750, 509, 592, 786, 1183, 888, 612, 613,
676
- 884, 617, 618, 624, 626, 631, 633, 817, 855, 855,
677
- 855, 855, 850, 856, 174, 891, 891, 1205, 1205, 177,
678
- 178, 179, 401, 402, 403, 404, 173, 202, 206, 208,
679
- 257, 259, 261, 262, 270, 271, 272, 273, 274, 275,
680
- 281, 282, 283, 284, 305, 306, 331, 332, 333, 406,
681
- 407, 408, 409, 175, 180, 254, 255, 181, 182, 183,
682
- 498, 498, 498, 498, 498, 498, 861, 498, 498, 498,
683
- 498, 498, 498, 498, 498, 498, 498, 510, 586, 538,
684
- 601, 602, 510, 545, 546, 547, 548, 549, 550, 551,
685
- 552, 554, 587, 1209, 560, 350, 560, 560, 560, 560,
686
- 560, 560, 560, 560, 560, 560, 560, 560, 560, 560,
687
- 560, 560, 560, 560, 560, 560, 560, 560, 560, 560,
688
- 560, 560, 560, 560, 560, 560, 560, 560, 560, 560,
689
- 560, 560, 560, 560, 560, 560, 560, 560, 560, 560,
690
- 400, 607, 537, 537, 569, 533, 909, 535, 535, 497,
691
- 499, 525, 541, 570, 573, 584, 591, 298, 296, 296,
692
- 296, 298, 289, 299, 611, 378, 511, 614, 595, 947,
693
- 375, 511, 437, 437, 437, 437, 437, 437, 1163, 437,
694
- 437, 437, 437, 437, 437, 437, 437, 437, 437, 1077,
695
- 948, 338, 1175, 321, 1077, 898, 898, 898, 898, 606,
696
- 898, 898, 1217, 1217, 1202, 753, 576, 605, 756, 1077,
697
- 1077, 1077, 1077, 1077, 1077, 1069, 384, 384, 384, 391,
698
- 1217, 877, 859, 857, 859, 655, 466, 512, 886, 881,
699
- 753, 384, 753, 384, 968, 384, 895, 385, 588, 353,
700
- 414, 384, 1231, 1019, 542, 1197, 1197, 1197, 568, 1094,
701
- 386, 386, 386, 904, 915, 515, 1029, 19, 15, 372,
702
- 389, 915, 940, 448, 450, 632, 340, 1216, 1216, 1114,
703
- 615, 938, 840, 555, 775, 386, 913, 1070, 1073, 1074,
704
- 399, 1069, 1182, 660, 23, 1216, 773, 1182, 544, 603,
705
- 1066, 1219, 1071, 1174, 1071, 519, 1199, 1199, 1199, 1089,
706
- 1088, 1072, 343, 523, 534, 519, 519, 772, 351, 352,
707
- 13, 579, 583, 627, 1061, 388, 782, 562, 771, 515,
708
- 783, 1181, 3, 4, 918, 956, 865, 451, 574, 1160,
709
- 464, 0, 0, 0, 0, 0, 0, 0, 0, 0,
710
- 0, 0, 0, 0, 514, 529, 0, 0, 0, 0,
711
- 514, 0, 529, 0, 0, 0, 0, 610, 513, 516,
712
- 439, 440, 1067, 619, 0, 0, 0, 0, 0, 0,
713
- 0, 0, 0, 0, 780, 1224, 0, 0, 0, 0,
714
- 0, 524, 0, 0, 0, 0, 0, 0, 0, 0,
715
- 0, 778, 0, 0, 0, 0, 0, 0, 0, 0,
716
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
717
- 0, 0, 0, 0, 0, 0, 0, 0, 301, 301
718
- );
719
-
720
- protected $gotoCheck = array(
721
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
722
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
723
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
724
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
725
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
726
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
727
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
728
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
729
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
730
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
731
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
732
- 43, 43, 57, 69, 15, 69, 69, 69, 69, 69,
733
- 69, 69, 69, 69, 69, 69, 69, 69, 69, 69,
734
- 69, 69, 69, 69, 69, 69, 69, 69, 69, 69,
735
- 69, 69, 69, 69, 69, 69, 69, 69, 69, 69,
736
- 69, 69, 69, 69, 69, 69, 69, 69, 69, 128,
737
- 9, 128, 128, 128, 128, 128, 128, 128, 128, 128,
738
- 128, 128, 128, 128, 128, 128, 128, 128, 128, 128,
739
- 128, 128, 128, 128, 128, 128, 128, 128, 128, 128,
740
- 128, 128, 128, 128, 128, 128, 128, 128, 128, 128,
741
- 128, 128, 128, 128, 128, 16, 102, 32, 69, 32,
742
- 32, 120, 6, 69, 32, 29, 120, 32, 32, 32,
743
- 32, 32, 32, 32, 32, 32, 32, 50, 69, 69,
744
- 69, 69, 69, 69, 27, 77, 77, 77, 77, 27,
745
- 27, 27, 27, 27, 27, 27, 27, 27, 27, 27,
746
- 27, 27, 27, 27, 27, 27, 27, 27, 27, 27,
747
- 27, 27, 27, 27, 27, 27, 27, 27, 27, 27,
748
- 27, 27, 27, 27, 27, 27, 27, 27, 27, 27,
749
- 119, 119, 119, 119, 119, 119, 33, 119, 119, 119,
750
- 119, 119, 119, 119, 119, 119, 119, 119, 67, 110,
751
- 67, 67, 119, 111, 111, 111, 111, 111, 111, 111,
752
- 111, 111, 111, 142, 57, 72, 57, 57, 57, 57,
753
- 57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
754
- 57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
755
- 57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
756
- 57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
757
- 51, 51, 51, 51, 51, 51, 84, 51, 51, 51,
758
- 51, 51, 51, 51, 51, 51, 51, 5, 5, 5,
759
- 5, 5, 5, 5, 63, 46, 124, 63, 129, 98,
760
- 63, 124, 57, 57, 57, 57, 57, 57, 133, 57,
761
- 57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
762
- 98, 127, 82, 127, 57, 57, 57, 57, 57, 49,
763
- 57, 57, 144, 144, 140, 11, 40, 40, 14, 57,
764
- 57, 57, 57, 57, 57, 82, 13, 13, 13, 48,
765
- 144, 14, 14, 14, 14, 14, 57, 14, 14, 14,
766
- 11, 13, 11, 13, 102, 13, 79, 11, 70, 70,
767
- 70, 13, 13, 103, 2, 9, 9, 9, 2, 34,
768
- 125, 125, 125, 81, 13, 13, 34, 34, 34, 34,
769
- 17, 13, 8, 8, 8, 8, 18, 143, 143, 8,
770
- 8, 8, 9, 34, 25, 125, 85, 82, 82, 82,
771
- 125, 82, 121, 74, 34, 143, 24, 121, 47, 34,
772
- 116, 143, 82, 82, 82, 47, 121, 121, 121, 126,
773
- 126, 82, 58, 58, 58, 47, 47, 23, 72, 72,
774
- 58, 62, 62, 62, 114, 12, 23, 12, 23, 13,
775
- 26, 121, 30, 30, 86, 100, 71, 65, 66, 132,
776
- 109, -1, -1, -1, -1, -1, -1, -1, -1, -1,
777
- -1, -1, -1, -1, 9, 9, -1, -1, -1, -1,
778
- 9, -1, 9, -1, -1, -1, -1, 13, 9, 9,
779
- 9, 9, 13, 13, -1, -1, -1, -1, -1, -1,
780
- -1, -1, -1, -1, 9, 9, -1, -1, -1, -1,
781
- -1, 102, -1, -1, -1, -1, -1, -1, -1, -1,
782
- -1, 9, -1, -1, -1, -1, -1, -1, -1, -1,
783
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
784
- -1, -1, -1, -1, -1, -1, -1, -1, 5, 5
785
- );
786
-
787
- protected $gotoBase = array(
788
- 0, 0, -172, 0, 0, 353, 201, 0, 477, 149,
789
- 0, 110, 195, 117, 426, 112, 203, 140, 171, 0,
790
- 0, 0, 0, 168, 164, 157, 119, 27, 0, 205,
791
- -118, 0, -428, 266, 51, 0, 0, 0, 0, 0,
792
- 388, 0, 0, -24, 0, 0, 345, 484, 146, 133,
793
- 209, 75, 0, 0, 0, 0, 0, 107, 161, 0,
794
- 0, 0, 222, -77, 0, 106, 97, -343, 0, -94,
795
- 135, 123, -129, 0, 129, 0, 0, -50, 0, 143,
796
- 0, 159, 64, 0, 338, 132, 122, 0, 0, 0,
797
- 0, 0, 0, 0, 0, 0, 0, 0, 98, 0,
798
- 121, 0, 165, 156, 0, 0, 0, 0, 0, 87,
799
- 273, 259, 0, 0, 114, 0, 150, 0, 0, -5,
800
- -91, 200, 0, 0, 84, 154, 202, 77, -48, 178,
801
- 0, 0, 93, 187, 0, 0, 0, 0, 0, 0,
802
- 136, 0, 286, 167, 102, 0, 0
803
- );
804
-
805
- protected $gotoDefault = array(
806
- -32768, 468, 664, 2, 665, 835, 740, 748, 598, 482,
807
- 630, 582, 380, 1193, 792, 793, 794, 381, 368, 483,
808
- 379, 410, 405, 781, 774, 776, 784, 172, 411, 787,
809
- 1, 789, 518, 825, 1020, 365, 797, 366, 590, 799,
810
- 527, 801, 802, 137, 382, 383, 528, 484, 390, 577,
811
- 816, 276, 387, 818, 367, 819, 828, 371, 465, 455,
812
- 460, 530, 557, 609, 432, 447, 571, 565, 536, 1086,
813
- 566, 864, 349, 872, 661, 880, 883, 485, 558, 894,
814
- 452, 902, 1099, 397, 908, 914, 919, 291, 922, 417,
815
- 412, 585, 927, 928, 5, 932, 622, 623, 8, 312,
816
- 955, 599, 969, 420, 1039, 1041, 486, 487, 522, 459,
817
- 508, 526, 488, 1062, 441, 413, 1065, 433, 489, 490,
818
- 434, 435, 1083, 355, 1168, 354, 449, 320, 1155, 580,
819
- 1118, 456, 1208, 1164, 348, 491, 492, 376, 1187, 392,
820
- 1203, 438, 1210, 1218, 344, 540, 567
821
- );
822
-
823
- protected $ruleToNonTerminal = array(
824
- 0, 1, 3, 3, 2, 5, 5, 6, 6, 6,
825
- 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
826
- 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
827
- 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
828
- 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
829
- 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
830
- 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
831
- 6, 6, 6, 6, 6, 6, 6, 7, 7, 7,
832
- 7, 7, 7, 7, 8, 8, 9, 10, 11, 11,
833
- 12, 12, 13, 4, 4, 4, 4, 4, 4, 4,
834
- 4, 4, 4, 4, 18, 18, 19, 19, 21, 21,
835
- 17, 17, 22, 22, 23, 23, 24, 24, 25, 25,
836
- 20, 20, 26, 28, 28, 29, 30, 30, 32, 31,
837
- 31, 31, 31, 33, 33, 33, 33, 33, 33, 33,
838
- 33, 33, 33, 33, 33, 33, 33, 33, 33, 33,
839
- 33, 33, 33, 33, 33, 33, 33, 33, 33, 33,
840
- 33, 33, 14, 14, 54, 54, 56, 55, 55, 48,
841
- 48, 58, 58, 59, 59, 60, 60, 61, 61, 15,
842
- 16, 16, 16, 64, 64, 64, 65, 65, 68, 68,
843
- 66, 66, 70, 70, 41, 41, 50, 50, 53, 53,
844
- 53, 52, 52, 71, 42, 42, 42, 42, 72, 72,
845
- 73, 73, 74, 74, 39, 39, 35, 35, 75, 37,
846
- 37, 76, 36, 36, 38, 38, 49, 49, 49, 62,
847
- 62, 78, 78, 79, 79, 81, 81, 81, 80, 80,
848
- 63, 63, 82, 82, 82, 83, 83, 84, 84, 84,
849
- 44, 44, 85, 85, 85, 45, 45, 86, 86, 87,
850
- 87, 67, 88, 88, 88, 88, 93, 93, 94, 94,
851
- 95, 95, 95, 95, 95, 96, 97, 97, 92, 92,
852
- 89, 89, 91, 91, 99, 99, 98, 98, 98, 98,
853
- 98, 98, 90, 90, 101, 100, 100, 46, 46, 40,
854
- 40, 43, 43, 43, 43, 43, 43, 43, 43, 43,
855
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
856
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
857
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
858
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
859
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
860
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
861
- 43, 43, 43, 43, 43, 43, 43, 43, 43, 43,
862
- 43, 43, 43, 43, 43, 43, 43, 34, 34, 47,
863
- 47, 106, 106, 107, 107, 107, 107, 113, 102, 102,
864
- 109, 109, 115, 115, 116, 117, 118, 118, 118, 118,
865
- 118, 118, 118, 69, 69, 57, 57, 57, 57, 103,
866
- 103, 122, 122, 119, 119, 123, 123, 123, 123, 104,
867
- 104, 104, 108, 108, 108, 114, 114, 128, 128, 128,
868
- 128, 128, 128, 128, 128, 128, 128, 128, 128, 128,
869
- 27, 27, 27, 27, 27, 27, 130, 130, 130, 130,
870
- 130, 130, 130, 130, 130, 130, 130, 130, 130, 130,
871
- 130, 130, 130, 130, 130, 130, 130, 130, 130, 130,
872
- 130, 130, 130, 130, 130, 130, 130, 130, 130, 130,
873
- 112, 112, 105, 105, 105, 105, 129, 129, 132, 132,
874
- 131, 131, 133, 133, 51, 51, 51, 51, 135, 135,
875
- 134, 134, 134, 134, 134, 136, 136, 121, 121, 124,
876
- 124, 120, 120, 138, 137, 137, 137, 137, 125, 125,
877
- 125, 125, 111, 111, 126, 126, 126, 126, 77, 139,
878
- 139, 140, 140, 140, 110, 110, 141, 141, 142, 142,
879
- 142, 142, 142, 127, 127, 127, 127, 144, 145, 143,
880
- 143, 143, 143, 143, 143, 143, 146, 146, 146
881
- );
882
-
883
- protected $ruleToLength = array(
884
- 1, 1, 2, 0, 1, 1, 1, 1, 1, 1,
885
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
886
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
887
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
888
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
889
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
890
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
891
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
892
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
893
- 1, 1, 1, 1, 1, 1, 1, 3, 5, 4,
894
- 3, 4, 2, 3, 1, 1, 7, 6, 3, 1,
895
- 3, 1, 3, 1, 1, 3, 1, 3, 1, 2,
896
- 3, 1, 3, 3, 1, 3, 2, 0, 1, 1,
897
- 1, 1, 1, 3, 5, 8, 3, 5, 9, 3,
898
- 2, 3, 2, 3, 2, 3, 3, 3, 3, 1,
899
- 2, 2, 5, 7, 9, 5, 6, 3, 3, 2,
900
- 2, 1, 1, 1, 0, 2, 8, 0, 4, 1,
901
- 3, 0, 1, 0, 1, 0, 1, 1, 1, 10,
902
- 7, 6, 5, 1, 2, 2, 0, 2, 0, 2,
903
- 0, 2, 1, 3, 1, 4, 1, 4, 1, 1,
904
- 4, 1, 3, 3, 3, 4, 4, 5, 0, 2,
905
- 4, 3, 1, 1, 1, 4, 0, 2, 3, 0,
906
- 2, 4, 0, 2, 0, 3, 1, 2, 1, 1,
907
- 0, 1, 3, 4, 6, 1, 1, 1, 0, 1,
908
- 0, 2, 2, 3, 3, 1, 3, 1, 2, 2,
909
- 3, 1, 1, 2, 4, 3, 1, 1, 3, 2,
910
- 0, 1, 3, 3, 9, 3, 1, 3, 0, 2,
911
- 4, 5, 4, 4, 4, 3, 1, 1, 1, 3,
912
- 1, 1, 0, 1, 1, 2, 1, 1, 1, 1,
913
- 1, 1, 1, 3, 1, 1, 3, 3, 1, 0,
914
- 1, 1, 3, 3, 4, 4, 1, 2, 3, 3,
915
- 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
916
- 3, 2, 2, 2, 2, 3, 3, 3, 3, 3,
917
- 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
918
- 3, 3, 3, 2, 2, 2, 2, 3, 3, 3,
919
- 3, 3, 3, 3, 3, 3, 3, 1, 3, 5,
920
- 4, 3, 4, 4, 2, 2, 2, 2, 2, 2,
921
- 2, 2, 2, 2, 2, 2, 2, 2, 1, 1,
922
- 1, 3, 2, 1, 2, 10, 11, 3, 3, 2,
923
- 4, 4, 3, 4, 4, 4, 4, 7, 3, 2,
924
- 0, 4, 1, 3, 2, 1, 2, 2, 4, 6,
925
- 2, 2, 4, 1, 1, 1, 1, 1, 1, 1,
926
- 1, 1, 1, 1, 1, 3, 3, 4, 4, 0,
927
- 2, 1, 0, 1, 1, 0, 1, 1, 1, 1,
928
- 1, 1, 1, 1, 1, 1, 1, 1, 3, 2,
929
- 1, 3, 1, 4, 3, 1, 3, 3, 3, 3,
930
- 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
931
- 3, 3, 3, 3, 2, 2, 2, 2, 3, 3,
932
- 3, 3, 3, 3, 3, 3, 5, 4, 4, 3,
933
- 1, 3, 1, 1, 3, 3, 0, 2, 0, 1,
934
- 3, 1, 3, 1, 1, 1, 1, 1, 6, 4,
935
- 3, 4, 2, 4, 4, 1, 3, 1, 2, 1,
936
- 1, 4, 1, 1, 3, 6, 4, 4, 4, 4,
937
- 1, 4, 0, 1, 1, 3, 1, 1, 4, 3,
938
- 1, 1, 1, 0, 0, 2, 3, 1, 3, 1,
939
- 4, 2, 2, 2, 2, 1, 2, 1, 1, 1,
940
- 4, 3, 3, 3, 6, 3, 1, 1, 1
941
- );
942
-
943
- protected function initReduceCallbacks() {
944
- $this->reduceCallbacks = [
945
- 0 => function ($stackPos) {
946
- $this->semValue = $this->semStack[$stackPos];
947
- },
948
- 1 => function ($stackPos) {
949
- $this->semValue = $this->handleNamespaces($this->semStack[$stackPos-(1-1)]);
950
- },
951
- 2 => function ($stackPos) {
952
- if (is_array($this->semStack[$stackPos-(2-2)])) { $this->semValue = array_merge($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)]); } else { $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)]; };
953
- },
954
- 3 => function ($stackPos) {
955
- $this->semValue = array();
956
- },
957
- 4 => function ($stackPos) {
958
- $startAttributes = $this->lookaheadStartAttributes; if (isset($startAttributes['comments'])) { $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); } else { $nop = null; };
959
- if ($nop !== null) { $this->semStack[$stackPos-(1-1)][] = $nop; } $this->semValue = $this->semStack[$stackPos-(1-1)];
960
- },
961
- 5 => function ($stackPos) {
962
- $this->semValue = $this->semStack[$stackPos];
963
- },
964
- 6 => function ($stackPos) {
965
- $this->semValue = $this->semStack[$stackPos];
966
- },
967
- 7 => function ($stackPos) {
968
- $this->semValue = $this->semStack[$stackPos];
969
- },
970
- 8 => function ($stackPos) {
971
- $this->semValue = $this->semStack[$stackPos];
972
- },
973
- 9 => function ($stackPos) {
974
- $this->semValue = $this->semStack[$stackPos];
975
- },
976
- 10 => function ($stackPos) {
977
- $this->semValue = $this->semStack[$stackPos];
978
- },
979
- 11 => function ($stackPos) {
980
- $this->semValue = $this->semStack[$stackPos];
981
- },
982
- 12 => function ($stackPos) {
983
- $this->semValue = $this->semStack[$stackPos];
984
- },
985
- 13 => function ($stackPos) {
986
- $this->semValue = $this->semStack[$stackPos];
987
- },
988
- 14 => function ($stackPos) {
989
- $this->semValue = $this->semStack[$stackPos];
990
- },
991
- 15 => function ($stackPos) {
992
- $this->semValue = $this->semStack[$stackPos];
993
- },
994
- 16 => function ($stackPos) {
995
- $this->semValue = $this->semStack[$stackPos];
996
- },
997
- 17 => function ($stackPos) {
998
- $this->semValue = $this->semStack[$stackPos];
999
- },
1000
- 18 => function ($stackPos) {
1001
- $this->semValue = $this->semStack[$stackPos];
1002
- },
1003
- 19 => function ($stackPos) {
1004
- $this->semValue = $this->semStack[$stackPos];
1005
- },
1006
- 20 => function ($stackPos) {
1007
- $this->semValue = $this->semStack[$stackPos];
1008
- },
1009
- 21 => function ($stackPos) {
1010
- $this->semValue = $this->semStack[$stackPos];
1011
- },
1012
- 22 => function ($stackPos) {
1013
- $this->semValue = $this->semStack[$stackPos];
1014
- },
1015
- 23 => function ($stackPos) {
1016
- $this->semValue = $this->semStack[$stackPos];
1017
- },
1018
- 24 => function ($stackPos) {
1019
- $this->semValue = $this->semStack[$stackPos];
1020
- },
1021
- 25 => function ($stackPos) {
1022
- $this->semValue = $this->semStack[$stackPos];
1023
- },
1024
- 26 => function ($stackPos) {
1025
- $this->semValue = $this->semStack[$stackPos];
1026
- },
1027
- 27 => function ($stackPos) {
1028
- $this->semValue = $this->semStack[$stackPos];
1029
- },
1030
- 28 => function ($stackPos) {
1031
- $this->semValue = $this->semStack[$stackPos];
1032
- },
1033
- 29 => function ($stackPos) {
1034
- $this->semValue = $this->semStack[$stackPos];
1035
- },
1036
- 30 => function ($stackPos) {
1037
- $this->semValue = $this->semStack[$stackPos];
1038
- },
1039
- 31 => function ($stackPos) {
1040
- $this->semValue = $this->semStack[$stackPos];
1041
- },
1042
- 32 => function ($stackPos) {
1043
- $this->semValue = $this->semStack[$stackPos];
1044
- },
1045
- 33 => function ($stackPos) {
1046
- $this->semValue = $this->semStack[$stackPos];
1047
- },
1048
- 34 => function ($stackPos) {
1049
- $this->semValue = $this->semStack[$stackPos];
1050
- },
1051
- 35 => function ($stackPos) {
1052
- $this->semValue = $this->semStack[$stackPos];
1053
- },
1054
- 36 => function ($stackPos) {
1055
- $this->semValue = $this->semStack[$stackPos];
1056
- },
1057
- 37 => function ($stackPos) {
1058
- $this->semValue = $this->semStack[$stackPos];
1059
- },
1060
- 38 => function ($stackPos) {
1061
- $this->semValue = $this->semStack[$stackPos];
1062
- },
1063
- 39 => function ($stackPos) {
1064
- $this->semValue = $this->semStack[$stackPos];
1065
- },
1066
- 40 => function ($stackPos) {
1067
- $this->semValue = $this->semStack[$stackPos];
1068
- },
1069
- 41 => function ($stackPos) {
1070
- $this->semValue = $this->semStack[$stackPos];
1071
- },
1072
- 42 => function ($stackPos) {
1073
- $this->semValue = $this->semStack[$stackPos];
1074
- },
1075
- 43 => function ($stackPos) {
1076
- $this->semValue = $this->semStack[$stackPos];
1077
- },
1078
- 44 => function ($stackPos) {
1079
- $this->semValue = $this->semStack[$stackPos];
1080
- },
1081
- 45 => function ($stackPos) {
1082
- $this->semValue = $this->semStack[$stackPos];
1083
- },
1084
- 46 => function ($stackPos) {
1085
- $this->semValue = $this->semStack[$stackPos];
1086
- },
1087
- 47 => function ($stackPos) {
1088
- $this->semValue = $this->semStack[$stackPos];
1089
- },
1090
- 48 => function ($stackPos) {
1091
- $this->semValue = $this->semStack[$stackPos];
1092
- },
1093
- 49 => function ($stackPos) {
1094
- $this->semValue = $this->semStack[$stackPos];
1095
- },
1096
- 50 => function ($stackPos) {
1097
- $this->semValue = $this->semStack[$stackPos];
1098
- },
1099
- 51 => function ($stackPos) {
1100
- $this->semValue = $this->semStack[$stackPos];
1101
- },
1102
- 52 => function ($stackPos) {
1103
- $this->semValue = $this->semStack[$stackPos];
1104
- },
1105
- 53 => function ($stackPos) {
1106
- $this->semValue = $this->semStack[$stackPos];
1107
- },
1108
- 54 => function ($stackPos) {
1109
- $this->semValue = $this->semStack[$stackPos];
1110
- },
1111
- 55 => function ($stackPos) {
1112
- $this->semValue = $this->semStack[$stackPos];
1113
- },
1114
- 56 => function ($stackPos) {
1115
- $this->semValue = $this->semStack[$stackPos];
1116
- },
1117
- 57 => function ($stackPos) {
1118
- $this->semValue = $this->semStack[$stackPos];
1119
- },
1120
- 58 => function ($stackPos) {
1121
- $this->semValue = $this->semStack[$stackPos];
1122
- },
1123
- 59 => function ($stackPos) {
1124
- $this->semValue = $this->semStack[$stackPos];
1125
- },
1126
- 60 => function ($stackPos) {
1127
- $this->semValue = $this->semStack[$stackPos];
1128
- },
1129
- 61 => function ($stackPos) {
1130
- $this->semValue = $this->semStack[$stackPos];
1131
- },
1132
- 62 => function ($stackPos) {
1133
- $this->semValue = $this->semStack[$stackPos];
1134
- },
1135
- 63 => function ($stackPos) {
1136
- $this->semValue = $this->semStack[$stackPos];
1137
- },
1138
- 64 => function ($stackPos) {
1139
- $this->semValue = $this->semStack[$stackPos];
1140
- },
1141
- 65 => function ($stackPos) {
1142
- $this->semValue = $this->semStack[$stackPos];
1143
- },
1144
- 66 => function ($stackPos) {
1145
- $this->semValue = $this->semStack[$stackPos];
1146
- },
1147
- 67 => function ($stackPos) {
1148
- $this->semValue = $this->semStack[$stackPos];
1149
- },
1150
- 68 => function ($stackPos) {
1151
- $this->semValue = $this->semStack[$stackPos];
1152
- },
1153
- 69 => function ($stackPos) {
1154
- $this->semValue = $this->semStack[$stackPos];
1155
- },
1156
- 70 => function ($stackPos) {
1157
- $this->semValue = $this->semStack[$stackPos];
1158
- },
1159
- 71 => function ($stackPos) {
1160
- $this->semValue = $this->semStack[$stackPos];
1161
- },
1162
- 72 => function ($stackPos) {
1163
- $this->semValue = $this->semStack[$stackPos];
1164
- },
1165
- 73 => function ($stackPos) {
1166
- $this->semValue = $this->semStack[$stackPos];
1167
- },
1168
- 74 => function ($stackPos) {
1169
- $this->semValue = $this->semStack[$stackPos];
1170
- },
1171
- 75 => function ($stackPos) {
1172
- $this->semValue = $this->semStack[$stackPos];
1173
- },
1174
- 76 => function ($stackPos) {
1175
- $this->semValue = $this->semStack[$stackPos];
1176
- },
1177
- 77 => function ($stackPos) {
1178
- $this->semValue = $this->semStack[$stackPos];
1179
- },
1180
- 78 => function ($stackPos) {
1181
- $this->semValue = $this->semStack[$stackPos];
1182
- },
1183
- 79 => function ($stackPos) {
1184
- $this->semValue = $this->semStack[$stackPos];
1185
- },
1186
- 80 => function ($stackPos) {
1187
- $this->semValue = $this->semStack[$stackPos];
1188
- },
1189
- 81 => function ($stackPos) {
1190
- $this->semValue = $this->semStack[$stackPos];
1191
- },
1192
- 82 => function ($stackPos) {
1193
- $this->semValue = $this->semStack[$stackPos];
1194
- },
1195
- 83 => function ($stackPos) {
1196
- $this->semValue = $this->semStack[$stackPos];
1197
- },
1198
- 84 => function ($stackPos) {
1199
- $this->semValue = new Node\Identifier($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1200
- },
1201
- 85 => function ($stackPos) {
1202
- $this->semValue = new Node\Identifier($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1203
- },
1204
- 86 => function ($stackPos) {
1205
- $this->semValue = new Node\Identifier($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1206
- },
1207
- 87 => function ($stackPos) {
1208
- $this->semValue = new Node\Identifier($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1209
- },
1210
- 88 => function ($stackPos) {
1211
- $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1212
- },
1213
- 89 => function ($stackPos) {
1214
- $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1215
- },
1216
- 90 => function ($stackPos) {
1217
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1218
- },
1219
- 91 => function ($stackPos) {
1220
- $this->semValue = new Name(substr($this->semStack[$stackPos-(1-1)], 1), $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1221
- },
1222
- 92 => function ($stackPos) {
1223
- $this->semValue = new Expr\Variable(substr($this->semStack[$stackPos-(1-1)], 1), $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1224
- },
1225
- 93 => function ($stackPos) {
1226
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1227
- },
1228
- 94 => function ($stackPos) {
1229
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1230
- },
1231
- 95 => function ($stackPos) {
1232
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1233
- },
1234
- 96 => function ($stackPos) {
1235
- $this->semValue = new Stmt\HaltCompiler($this->lexer->handleHaltCompiler(), $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1236
- },
1237
- 97 => function ($stackPos) {
1238
- $this->semValue = new Stmt\Namespace_($this->semStack[$stackPos-(3-2)], null, $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1239
- $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_SEMICOLON);
1240
- $this->checkNamespace($this->semValue);
1241
- },
1242
- 98 => function ($stackPos) {
1243
- $this->semValue = new Stmt\Namespace_($this->semStack[$stackPos-(5-2)], $this->semStack[$stackPos-(5-4)], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
1244
- $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_BRACED);
1245
- $this->checkNamespace($this->semValue);
1246
- },
1247
- 99 => function ($stackPos) {
1248
- $this->semValue = new Stmt\Namespace_(null, $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1249
- $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_BRACED);
1250
- $this->checkNamespace($this->semValue);
1251
- },
1252
- 100 => function ($stackPos) {
1253
- $this->semValue = new Stmt\Use_($this->semStack[$stackPos-(3-2)], Stmt\Use_::TYPE_NORMAL, $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1254
- },
1255
- 101 => function ($stackPos) {
1256
- $this->semValue = new Stmt\Use_($this->semStack[$stackPos-(4-3)], $this->semStack[$stackPos-(4-2)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1257
- },
1258
- 102 => function ($stackPos) {
1259
- $this->semValue = $this->semStack[$stackPos-(2-1)];
1260
- },
1261
- 103 => function ($stackPos) {
1262
- $this->semValue = new Stmt\Const_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1263
- },
1264
- 104 => function ($stackPos) {
1265
- $this->semValue = Stmt\Use_::TYPE_FUNCTION;
1266
- },
1267
- 105 => function ($stackPos) {
1268
- $this->semValue = Stmt\Use_::TYPE_CONSTANT;
1269
- },
1270
- 106 => function ($stackPos) {
1271
- $this->semValue = new Stmt\GroupUse($this->semStack[$stackPos-(7-3)], $this->semStack[$stackPos-(7-6)], $this->semStack[$stackPos-(7-2)], $this->startAttributeStack[$stackPos-(7-1)] + $this->endAttributes);
1272
- },
1273
- 107 => function ($stackPos) {
1274
- $this->semValue = new Stmt\GroupUse($this->semStack[$stackPos-(6-2)], $this->semStack[$stackPos-(6-5)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes);
1275
- },
1276
- 108 => function ($stackPos) {
1277
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1278
- },
1279
- 109 => function ($stackPos) {
1280
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1281
- },
1282
- 110 => function ($stackPos) {
1283
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1284
- },
1285
- 111 => function ($stackPos) {
1286
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1287
- },
1288
- 112 => function ($stackPos) {
1289
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1290
- },
1291
- 113 => function ($stackPos) {
1292
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1293
- },
1294
- 114 => function ($stackPos) {
1295
- $this->semValue = new Stmt\UseUse($this->semStack[$stackPos-(1-1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes); $this->checkUseUse($this->semValue, $stackPos-(1-1));
1296
- },
1297
- 115 => function ($stackPos) {
1298
- $this->semValue = new Stmt\UseUse($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes); $this->checkUseUse($this->semValue, $stackPos-(3-3));
1299
- },
1300
- 116 => function ($stackPos) {
1301
- $this->semValue = new Stmt\UseUse($this->semStack[$stackPos-(1-1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes); $this->checkUseUse($this->semValue, $stackPos-(1-1));
1302
- },
1303
- 117 => function ($stackPos) {
1304
- $this->semValue = new Stmt\UseUse($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes); $this->checkUseUse($this->semValue, $stackPos-(3-3));
1305
- },
1306
- 118 => function ($stackPos) {
1307
- $this->semValue = $this->semStack[$stackPos-(1-1)]; $this->semValue->type = Stmt\Use_::TYPE_NORMAL;
1308
- },
1309
- 119 => function ($stackPos) {
1310
- $this->semValue = $this->semStack[$stackPos-(2-2)]; $this->semValue->type = $this->semStack[$stackPos-(2-1)];
1311
- },
1312
- 120 => function ($stackPos) {
1313
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1314
- },
1315
- 121 => function ($stackPos) {
1316
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1317
- },
1318
- 122 => function ($stackPos) {
1319
- $this->semValue = new Node\Const_($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1320
- },
1321
- 123 => function ($stackPos) {
1322
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1323
- },
1324
- 124 => function ($stackPos) {
1325
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1326
- },
1327
- 125 => function ($stackPos) {
1328
- $this->semValue = new Node\Const_($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1329
- },
1330
- 126 => function ($stackPos) {
1331
- if (is_array($this->semStack[$stackPos-(2-2)])) { $this->semValue = array_merge($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)]); } else { $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)]; };
1332
- },
1333
- 127 => function ($stackPos) {
1334
- $this->semValue = array();
1335
- },
1336
- 128 => function ($stackPos) {
1337
- $startAttributes = $this->lookaheadStartAttributes; if (isset($startAttributes['comments'])) { $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); } else { $nop = null; };
1338
- if ($nop !== null) { $this->semStack[$stackPos-(1-1)][] = $nop; } $this->semValue = $this->semStack[$stackPos-(1-1)];
1339
- },
1340
- 129 => function ($stackPos) {
1341
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1342
- },
1343
- 130 => function ($stackPos) {
1344
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1345
- },
1346
- 131 => function ($stackPos) {
1347
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1348
- },
1349
- 132 => function ($stackPos) {
1350
- throw new Error('__HALT_COMPILER() can only be used from the outermost scope', $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1351
- },
1352
- 133 => function ($stackPos) {
1353
-
1354
- if ($this->semStack[$stackPos-(3-2)]) {
1355
- $this->semValue = $this->semStack[$stackPos-(3-2)]; $attrs = $this->startAttributeStack[$stackPos-(3-1)]; $stmts = $this->semValue; if (!empty($attrs['comments'])) {$stmts[0]->setAttribute('comments', array_merge($attrs['comments'], $stmts[0]->getAttribute('comments', []))); };
1356
- } else {
1357
- $startAttributes = $this->startAttributeStack[$stackPos-(3-1)]; if (isset($startAttributes['comments'])) { $this->semValue = new Stmt\Nop($startAttributes + $this->endAttributes); } else { $this->semValue = null; };
1358
- if (null === $this->semValue) { $this->semValue = array(); }
1359
- }
1360
-
1361
- },
1362
- 134 => function ($stackPos) {
1363
- $this->semValue = new Stmt\If_($this->semStack[$stackPos-(5-2)], ['stmts' => is_array($this->semStack[$stackPos-(5-3)]) ? $this->semStack[$stackPos-(5-3)] : array($this->semStack[$stackPos-(5-3)]), 'elseifs' => $this->semStack[$stackPos-(5-4)], 'else' => $this->semStack[$stackPos-(5-5)]], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
1364
- },
1365
- 135 => function ($stackPos) {
1366
- $this->semValue = new Stmt\If_($this->semStack[$stackPos-(8-2)], ['stmts' => $this->semStack[$stackPos-(8-4)], 'elseifs' => $this->semStack[$stackPos-(8-5)], 'else' => $this->semStack[$stackPos-(8-6)]], $this->startAttributeStack[$stackPos-(8-1)] + $this->endAttributes);
1367
- },
1368
- 136 => function ($stackPos) {
1369
- $this->semValue = new Stmt\While_($this->semStack[$stackPos-(3-2)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1370
- },
1371
- 137 => function ($stackPos) {
1372
- $this->semValue = new Stmt\Do_($this->semStack[$stackPos-(5-4)], is_array($this->semStack[$stackPos-(5-2)]) ? $this->semStack[$stackPos-(5-2)] : array($this->semStack[$stackPos-(5-2)]), $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
1373
- },
1374
- 138 => function ($stackPos) {
1375
- $this->semValue = new Stmt\For_(['init' => $this->semStack[$stackPos-(9-3)], 'cond' => $this->semStack[$stackPos-(9-5)], 'loop' => $this->semStack[$stackPos-(9-7)], 'stmts' => $this->semStack[$stackPos-(9-9)]], $this->startAttributeStack[$stackPos-(9-1)] + $this->endAttributes);
1376
- },
1377
- 139 => function ($stackPos) {
1378
- $this->semValue = new Stmt\Switch_($this->semStack[$stackPos-(3-2)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1379
- },
1380
- 140 => function ($stackPos) {
1381
- $this->semValue = new Stmt\Break_(null, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1382
- },
1383
- 141 => function ($stackPos) {
1384
- $this->semValue = new Stmt\Break_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1385
- },
1386
- 142 => function ($stackPos) {
1387
- $this->semValue = new Stmt\Continue_(null, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1388
- },
1389
- 143 => function ($stackPos) {
1390
- $this->semValue = new Stmt\Continue_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1391
- },
1392
- 144 => function ($stackPos) {
1393
- $this->semValue = new Stmt\Return_(null, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1394
- },
1395
- 145 => function ($stackPos) {
1396
- $this->semValue = new Stmt\Return_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1397
- },
1398
- 146 => function ($stackPos) {
1399
- $this->semValue = new Stmt\Global_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1400
- },
1401
- 147 => function ($stackPos) {
1402
- $this->semValue = new Stmt\Static_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1403
- },
1404
- 148 => function ($stackPos) {
1405
- $this->semValue = new Stmt\Echo_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1406
- },
1407
- 149 => function ($stackPos) {
1408
- $this->semValue = new Stmt\InlineHTML($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1409
- },
1410
- 150 => function ($stackPos) {
1411
- $this->semValue = new Stmt\Expression($this->semStack[$stackPos-(2-1)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1412
- },
1413
- 151 => function ($stackPos) {
1414
- $this->semValue = new Stmt\Expression($this->semStack[$stackPos-(2-1)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1415
- },
1416
- 152 => function ($stackPos) {
1417
- $this->semValue = new Stmt\Unset_($this->semStack[$stackPos-(5-3)], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
1418
- },
1419
- 153 => function ($stackPos) {
1420
- $this->semValue = new Stmt\Foreach_($this->semStack[$stackPos-(7-3)], $this->semStack[$stackPos-(7-5)][0], ['keyVar' => null, 'byRef' => $this->semStack[$stackPos-(7-5)][1], 'stmts' => $this->semStack[$stackPos-(7-7)]], $this->startAttributeStack[$stackPos-(7-1)] + $this->endAttributes);
1421
- },
1422
- 154 => function ($stackPos) {
1423
- $this->semValue = new Stmt\Foreach_($this->semStack[$stackPos-(9-3)], $this->semStack[$stackPos-(9-7)][0], ['keyVar' => $this->semStack[$stackPos-(9-5)], 'byRef' => $this->semStack[$stackPos-(9-7)][1], 'stmts' => $this->semStack[$stackPos-(9-9)]], $this->startAttributeStack[$stackPos-(9-1)] + $this->endAttributes);
1424
- },
1425
- 155 => function ($stackPos) {
1426
- $this->semValue = new Stmt\Declare_($this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-5)], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
1427
- },
1428
- 156 => function ($stackPos) {
1429
- $this->semValue = new Stmt\TryCatch($this->semStack[$stackPos-(6-3)], $this->semStack[$stackPos-(6-5)], $this->semStack[$stackPos-(6-6)], $this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes); $this->checkTryCatch($this->semValue);
1430
- },
1431
- 157 => function ($stackPos) {
1432
- $this->semValue = new Stmt\Throw_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1433
- },
1434
- 158 => function ($stackPos) {
1435
- $this->semValue = new Stmt\Goto_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1436
- },
1437
- 159 => function ($stackPos) {
1438
- $this->semValue = new Stmt\Label($this->semStack[$stackPos-(2-1)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1439
- },
1440
- 160 => function ($stackPos) {
1441
- $this->semValue = new Stmt\Expression($this->semStack[$stackPos-(2-1)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1442
- },
1443
- 161 => function ($stackPos) {
1444
- $this->semValue = array(); /* means: no statement */
1445
- },
1446
- 162 => function ($stackPos) {
1447
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1448
- },
1449
- 163 => function ($stackPos) {
1450
- $startAttributes = $this->startAttributeStack[$stackPos-(1-1)]; if (isset($startAttributes['comments'])) { $this->semValue = new Stmt\Nop($startAttributes + $this->endAttributes); } else { $this->semValue = null; };
1451
- if ($this->semValue === null) $this->semValue = array(); /* means: no statement */
1452
- },
1453
- 164 => function ($stackPos) {
1454
- $this->semValue = array();
1455
- },
1456
- 165 => function ($stackPos) {
1457
- $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
1458
- },
1459
- 166 => function ($stackPos) {
1460
- $this->semValue = new Stmt\Catch_(array($this->semStack[$stackPos-(8-3)]), $this->semStack[$stackPos-(8-4)], $this->semStack[$stackPos-(8-7)], $this->startAttributeStack[$stackPos-(8-1)] + $this->endAttributes);
1461
- },
1462
- 167 => function ($stackPos) {
1463
- $this->semValue = null;
1464
- },
1465
- 168 => function ($stackPos) {
1466
- $this->semValue = new Stmt\Finally_($this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1467
- },
1468
- 169 => function ($stackPos) {
1469
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1470
- },
1471
- 170 => function ($stackPos) {
1472
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1473
- },
1474
- 171 => function ($stackPos) {
1475
- $this->semValue = false;
1476
- },
1477
- 172 => function ($stackPos) {
1478
- $this->semValue = true;
1479
- },
1480
- 173 => function ($stackPos) {
1481
- $this->semValue = false;
1482
- },
1483
- 174 => function ($stackPos) {
1484
- $this->semValue = true;
1485
- },
1486
- 175 => function ($stackPos) {
1487
- $this->semValue = false;
1488
- },
1489
- 176 => function ($stackPos) {
1490
- $this->semValue = true;
1491
- },
1492
- 177 => function ($stackPos) {
1493
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1494
- },
1495
- 178 => function ($stackPos) {
1496
- $this->semValue = new Node\Identifier($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1497
- },
1498
- 179 => function ($stackPos) {
1499
- $this->semValue = new Stmt\Function_($this->semStack[$stackPos-(10-3)], ['byRef' => $this->semStack[$stackPos-(10-2)], 'params' => $this->semStack[$stackPos-(10-5)], 'returnType' => $this->semStack[$stackPos-(10-7)], 'stmts' => $this->semStack[$stackPos-(10-9)]], $this->startAttributeStack[$stackPos-(10-1)] + $this->endAttributes);
1500
- },
1501
- 180 => function ($stackPos) {
1502
- $this->semValue = new Stmt\Class_($this->semStack[$stackPos-(7-2)], ['type' => $this->semStack[$stackPos-(7-1)], 'extends' => $this->semStack[$stackPos-(7-3)], 'implements' => $this->semStack[$stackPos-(7-4)], 'stmts' => $this->semStack[$stackPos-(7-6)]], $this->startAttributeStack[$stackPos-(7-1)] + $this->endAttributes);
1503
- $this->checkClass($this->semValue, $stackPos-(7-2));
1504
- },
1505
- 181 => function ($stackPos) {
1506
- $this->semValue = new Stmt\Interface_($this->semStack[$stackPos-(6-2)], ['extends' => $this->semStack[$stackPos-(6-3)], 'stmts' => $this->semStack[$stackPos-(6-5)]], $this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes);
1507
- $this->checkInterface($this->semValue, $stackPos-(6-2));
1508
- },
1509
- 182 => function ($stackPos) {
1510
- $this->semValue = new Stmt\Trait_($this->semStack[$stackPos-(5-2)], ['stmts' => $this->semStack[$stackPos-(5-4)]], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
1511
- },
1512
- 183 => function ($stackPos) {
1513
- $this->semValue = 0;
1514
- },
1515
- 184 => function ($stackPos) {
1516
- $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT;
1517
- },
1518
- 185 => function ($stackPos) {
1519
- $this->semValue = Stmt\Class_::MODIFIER_FINAL;
1520
- },
1521
- 186 => function ($stackPos) {
1522
- $this->semValue = null;
1523
- },
1524
- 187 => function ($stackPos) {
1525
- $this->semValue = $this->semStack[$stackPos-(2-2)];
1526
- },
1527
- 188 => function ($stackPos) {
1528
- $this->semValue = array();
1529
- },
1530
- 189 => function ($stackPos) {
1531
- $this->semValue = $this->semStack[$stackPos-(2-2)];
1532
- },
1533
- 190 => function ($stackPos) {
1534
- $this->semValue = array();
1535
- },
1536
- 191 => function ($stackPos) {
1537
- $this->semValue = $this->semStack[$stackPos-(2-2)];
1538
- },
1539
- 192 => function ($stackPos) {
1540
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1541
- },
1542
- 193 => function ($stackPos) {
1543
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1544
- },
1545
- 194 => function ($stackPos) {
1546
- $this->semValue = is_array($this->semStack[$stackPos-(1-1)]) ? $this->semStack[$stackPos-(1-1)] : array($this->semStack[$stackPos-(1-1)]);
1547
- },
1548
- 195 => function ($stackPos) {
1549
- $this->semValue = $this->semStack[$stackPos-(4-2)];
1550
- },
1551
- 196 => function ($stackPos) {
1552
- $this->semValue = is_array($this->semStack[$stackPos-(1-1)]) ? $this->semStack[$stackPos-(1-1)] : array($this->semStack[$stackPos-(1-1)]);
1553
- },
1554
- 197 => function ($stackPos) {
1555
- $this->semValue = $this->semStack[$stackPos-(4-2)];
1556
- },
1557
- 198 => function ($stackPos) {
1558
- $this->semValue = is_array($this->semStack[$stackPos-(1-1)]) ? $this->semStack[$stackPos-(1-1)] : array($this->semStack[$stackPos-(1-1)]);
1559
- },
1560
- 199 => function ($stackPos) {
1561
- $this->semValue = null;
1562
- },
1563
- 200 => function ($stackPos) {
1564
- $this->semValue = $this->semStack[$stackPos-(4-2)];
1565
- },
1566
- 201 => function ($stackPos) {
1567
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1568
- },
1569
- 202 => function ($stackPos) {
1570
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1571
- },
1572
- 203 => function ($stackPos) {
1573
- $this->semValue = new Stmt\DeclareDeclare($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1574
- },
1575
- 204 => function ($stackPos) {
1576
- $this->semValue = $this->semStack[$stackPos-(3-2)];
1577
- },
1578
- 205 => function ($stackPos) {
1579
- $this->semValue = $this->semStack[$stackPos-(4-3)];
1580
- },
1581
- 206 => function ($stackPos) {
1582
- $this->semValue = $this->semStack[$stackPos-(4-2)];
1583
- },
1584
- 207 => function ($stackPos) {
1585
- $this->semValue = $this->semStack[$stackPos-(5-3)];
1586
- },
1587
- 208 => function ($stackPos) {
1588
- $this->semValue = array();
1589
- },
1590
- 209 => function ($stackPos) {
1591
- $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
1592
- },
1593
- 210 => function ($stackPos) {
1594
- $this->semValue = new Stmt\Case_($this->semStack[$stackPos-(4-2)], $this->semStack[$stackPos-(4-4)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1595
- },
1596
- 211 => function ($stackPos) {
1597
- $this->semValue = new Stmt\Case_(null, $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1598
- },
1599
- 212 => function ($stackPos) {
1600
- $this->semValue = $this->semStack[$stackPos];
1601
- },
1602
- 213 => function ($stackPos) {
1603
- $this->semValue = $this->semStack[$stackPos];
1604
- },
1605
- 214 => function ($stackPos) {
1606
- $this->semValue = is_array($this->semStack[$stackPos-(1-1)]) ? $this->semStack[$stackPos-(1-1)] : array($this->semStack[$stackPos-(1-1)]);
1607
- },
1608
- 215 => function ($stackPos) {
1609
- $this->semValue = $this->semStack[$stackPos-(4-2)];
1610
- },
1611
- 216 => function ($stackPos) {
1612
- $this->semValue = array();
1613
- },
1614
- 217 => function ($stackPos) {
1615
- $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
1616
- },
1617
- 218 => function ($stackPos) {
1618
- $this->semValue = new Stmt\ElseIf_($this->semStack[$stackPos-(3-2)], is_array($this->semStack[$stackPos-(3-3)]) ? $this->semStack[$stackPos-(3-3)] : array($this->semStack[$stackPos-(3-3)]), $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1619
- },
1620
- 219 => function ($stackPos) {
1621
- $this->semValue = array();
1622
- },
1623
- 220 => function ($stackPos) {
1624
- $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
1625
- },
1626
- 221 => function ($stackPos) {
1627
- $this->semValue = new Stmt\ElseIf_($this->semStack[$stackPos-(4-2)], $this->semStack[$stackPos-(4-4)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1628
- },
1629
- 222 => function ($stackPos) {
1630
- $this->semValue = null;
1631
- },
1632
- 223 => function ($stackPos) {
1633
- $this->semValue = new Stmt\Else_(is_array($this->semStack[$stackPos-(2-2)]) ? $this->semStack[$stackPos-(2-2)] : array($this->semStack[$stackPos-(2-2)]), $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1634
- },
1635
- 224 => function ($stackPos) {
1636
- $this->semValue = null;
1637
- },
1638
- 225 => function ($stackPos) {
1639
- $this->semValue = new Stmt\Else_($this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1640
- },
1641
- 226 => function ($stackPos) {
1642
- $this->semValue = array($this->semStack[$stackPos-(1-1)], false);
1643
- },
1644
- 227 => function ($stackPos) {
1645
- $this->semValue = array($this->semStack[$stackPos-(2-2)], true);
1646
- },
1647
- 228 => function ($stackPos) {
1648
- $this->semValue = array($this->semStack[$stackPos-(1-1)], false);
1649
- },
1650
- 229 => function ($stackPos) {
1651
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1652
- },
1653
- 230 => function ($stackPos) {
1654
- $this->semValue = array();
1655
- },
1656
- 231 => function ($stackPos) {
1657
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1658
- },
1659
- 232 => function ($stackPos) {
1660
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1661
- },
1662
- 233 => function ($stackPos) {
1663
- $this->semValue = new Node\Param($this->semStack[$stackPos-(4-4)], null, $this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-2)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes); $this->checkParam($this->semValue);
1664
- },
1665
- 234 => function ($stackPos) {
1666
- $this->semValue = new Node\Param($this->semStack[$stackPos-(6-4)], $this->semStack[$stackPos-(6-6)], $this->semStack[$stackPos-(6-1)], $this->semStack[$stackPos-(6-2)], $this->semStack[$stackPos-(6-3)], $this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes); $this->checkParam($this->semValue);
1667
- },
1668
- 235 => function ($stackPos) {
1669
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1670
- },
1671
- 236 => function ($stackPos) {
1672
- $this->semValue = new Node\Identifier('array', $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1673
- },
1674
- 237 => function ($stackPos) {
1675
- $this->semValue = new Node\Identifier('callable', $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1676
- },
1677
- 238 => function ($stackPos) {
1678
- $this->semValue = null;
1679
- },
1680
- 239 => function ($stackPos) {
1681
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1682
- },
1683
- 240 => function ($stackPos) {
1684
- $this->semValue = null;
1685
- },
1686
- 241 => function ($stackPos) {
1687
- $this->semValue = $this->semStack[$stackPos-(2-2)];
1688
- },
1689
- 242 => function ($stackPos) {
1690
- $this->semValue = array();
1691
- },
1692
- 243 => function ($stackPos) {
1693
- $this->semValue = $this->semStack[$stackPos-(3-2)];
1694
- },
1695
- 244 => function ($stackPos) {
1696
- $this->semValue = array(new Node\Arg($this->semStack[$stackPos-(3-2)], false, false, $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes));
1697
- },
1698
- 245 => function ($stackPos) {
1699
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1700
- },
1701
- 246 => function ($stackPos) {
1702
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1703
- },
1704
- 247 => function ($stackPos) {
1705
- $this->semValue = new Node\Arg($this->semStack[$stackPos-(1-1)], false, false, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1706
- },
1707
- 248 => function ($stackPos) {
1708
- $this->semValue = new Node\Arg($this->semStack[$stackPos-(2-2)], true, false, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1709
- },
1710
- 249 => function ($stackPos) {
1711
- $this->semValue = new Node\Arg($this->semStack[$stackPos-(2-2)], false, true, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1712
- },
1713
- 250 => function ($stackPos) {
1714
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1715
- },
1716
- 251 => function ($stackPos) {
1717
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1718
- },
1719
- 252 => function ($stackPos) {
1720
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1721
- },
1722
- 253 => function ($stackPos) {
1723
- $this->semValue = new Expr\Variable($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1724
- },
1725
- 254 => function ($stackPos) {
1726
- $this->semValue = new Expr\Variable($this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1727
- },
1728
- 255 => function ($stackPos) {
1729
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1730
- },
1731
- 256 => function ($stackPos) {
1732
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1733
- },
1734
- 257 => function ($stackPos) {
1735
- $this->semValue = new Stmt\StaticVar($this->semStack[$stackPos-(1-1)], null, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1736
- },
1737
- 258 => function ($stackPos) {
1738
- $this->semValue = new Stmt\StaticVar($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1739
- },
1740
- 259 => function ($stackPos) {
1741
- if ($this->semStack[$stackPos-(2-2)] !== null) { $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)]; } else { $this->semValue = $this->semStack[$stackPos-(2-1)]; }
1742
- },
1743
- 260 => function ($stackPos) {
1744
- $this->semValue = array();
1745
- },
1746
- 261 => function ($stackPos) {
1747
- $startAttributes = $this->lookaheadStartAttributes; if (isset($startAttributes['comments'])) { $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); } else { $nop = null; };
1748
- if ($nop !== null) { $this->semStack[$stackPos-(1-1)][] = $nop; } $this->semValue = $this->semStack[$stackPos-(1-1)];
1749
- },
1750
- 262 => function ($stackPos) {
1751
- $this->semValue = new Stmt\Property($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes); $this->checkProperty($this->semValue, $stackPos-(3-1));
1752
- },
1753
- 263 => function ($stackPos) {
1754
- $this->semValue = new Stmt\ClassConst($this->semStack[$stackPos-(3-2)], 0, $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1755
- },
1756
- 264 => function ($stackPos) {
1757
- $this->semValue = new Stmt\ClassMethod($this->semStack[$stackPos-(9-4)], ['type' => $this->semStack[$stackPos-(9-1)], 'byRef' => $this->semStack[$stackPos-(9-3)], 'params' => $this->semStack[$stackPos-(9-6)], 'returnType' => $this->semStack[$stackPos-(9-8)], 'stmts' => $this->semStack[$stackPos-(9-9)]], $this->startAttributeStack[$stackPos-(9-1)] + $this->endAttributes);
1758
- $this->checkClassMethod($this->semValue, $stackPos-(9-1));
1759
- },
1760
- 265 => function ($stackPos) {
1761
- $this->semValue = new Stmt\TraitUse($this->semStack[$stackPos-(3-2)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1762
- },
1763
- 266 => function ($stackPos) {
1764
- $this->semValue = array();
1765
- },
1766
- 267 => function ($stackPos) {
1767
- $this->semValue = $this->semStack[$stackPos-(3-2)];
1768
- },
1769
- 268 => function ($stackPos) {
1770
- $this->semValue = array();
1771
- },
1772
- 269 => function ($stackPos) {
1773
- $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
1774
- },
1775
- 270 => function ($stackPos) {
1776
- $this->semValue = new Stmt\TraitUseAdaptation\Precedence($this->semStack[$stackPos-(4-1)][0], $this->semStack[$stackPos-(4-1)][1], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1777
- },
1778
- 271 => function ($stackPos) {
1779
- $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos-(5-1)][0], $this->semStack[$stackPos-(5-1)][1], $this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-4)], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
1780
- },
1781
- 272 => function ($stackPos) {
1782
- $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos-(4-1)][0], $this->semStack[$stackPos-(4-1)][1], $this->semStack[$stackPos-(4-3)], null, $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1783
- },
1784
- 273 => function ($stackPos) {
1785
- $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos-(4-1)][0], $this->semStack[$stackPos-(4-1)][1], null, $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1786
- },
1787
- 274 => function ($stackPos) {
1788
- $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$stackPos-(4-1)][0], $this->semStack[$stackPos-(4-1)][1], null, $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1789
- },
1790
- 275 => function ($stackPos) {
1791
- $this->semValue = array($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)]);
1792
- },
1793
- 276 => function ($stackPos) {
1794
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1795
- },
1796
- 277 => function ($stackPos) {
1797
- $this->semValue = array(null, $this->semStack[$stackPos-(1-1)]);
1798
- },
1799
- 278 => function ($stackPos) {
1800
- $this->semValue = null;
1801
- },
1802
- 279 => function ($stackPos) {
1803
- $this->semValue = $this->semStack[$stackPos-(3-2)];
1804
- },
1805
- 280 => function ($stackPos) {
1806
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1807
- },
1808
- 281 => function ($stackPos) {
1809
- $this->semValue = 0;
1810
- },
1811
- 282 => function ($stackPos) {
1812
- $this->semValue = 0;
1813
- },
1814
- 283 => function ($stackPos) {
1815
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1816
- },
1817
- 284 => function ($stackPos) {
1818
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1819
- },
1820
- 285 => function ($stackPos) {
1821
- $this->checkModifier($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)], $stackPos-(2-2)); $this->semValue = $this->semStack[$stackPos-(2-1)] | $this->semStack[$stackPos-(2-2)];
1822
- },
1823
- 286 => function ($stackPos) {
1824
- $this->semValue = Stmt\Class_::MODIFIER_PUBLIC;
1825
- },
1826
- 287 => function ($stackPos) {
1827
- $this->semValue = Stmt\Class_::MODIFIER_PROTECTED;
1828
- },
1829
- 288 => function ($stackPos) {
1830
- $this->semValue = Stmt\Class_::MODIFIER_PRIVATE;
1831
- },
1832
- 289 => function ($stackPos) {
1833
- $this->semValue = Stmt\Class_::MODIFIER_STATIC;
1834
- },
1835
- 290 => function ($stackPos) {
1836
- $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT;
1837
- },
1838
- 291 => function ($stackPos) {
1839
- $this->semValue = Stmt\Class_::MODIFIER_FINAL;
1840
- },
1841
- 292 => function ($stackPos) {
1842
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1843
- },
1844
- 293 => function ($stackPos) {
1845
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1846
- },
1847
- 294 => function ($stackPos) {
1848
- $this->semValue = new Node\VarLikeIdentifier(substr($this->semStack[$stackPos-(1-1)], 1), $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1849
- },
1850
- 295 => function ($stackPos) {
1851
- $this->semValue = new Stmt\PropertyProperty($this->semStack[$stackPos-(1-1)], null, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1852
- },
1853
- 296 => function ($stackPos) {
1854
- $this->semValue = new Stmt\PropertyProperty($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1855
- },
1856
- 297 => function ($stackPos) {
1857
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1858
- },
1859
- 298 => function ($stackPos) {
1860
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1861
- },
1862
- 299 => function ($stackPos) {
1863
- $this->semValue = array();
1864
- },
1865
- 300 => function ($stackPos) {
1866
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1867
- },
1868
- 301 => function ($stackPos) {
1869
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1870
- },
1871
- 302 => function ($stackPos) {
1872
- $this->semValue = new Expr\Assign($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1873
- },
1874
- 303 => function ($stackPos) {
1875
- $this->semValue = new Expr\Assign($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1876
- },
1877
- 304 => function ($stackPos) {
1878
- $this->semValue = new Expr\AssignRef($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-4)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1879
- },
1880
- 305 => function ($stackPos) {
1881
- $this->semValue = new Expr\AssignRef($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-4)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1882
- },
1883
- 306 => function ($stackPos) {
1884
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1885
- },
1886
- 307 => function ($stackPos) {
1887
- $this->semValue = new Expr\Clone_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1888
- },
1889
- 308 => function ($stackPos) {
1890
- $this->semValue = new Expr\AssignOp\Plus($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1891
- },
1892
- 309 => function ($stackPos) {
1893
- $this->semValue = new Expr\AssignOp\Minus($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1894
- },
1895
- 310 => function ($stackPos) {
1896
- $this->semValue = new Expr\AssignOp\Mul($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1897
- },
1898
- 311 => function ($stackPos) {
1899
- $this->semValue = new Expr\AssignOp\Div($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1900
- },
1901
- 312 => function ($stackPos) {
1902
- $this->semValue = new Expr\AssignOp\Concat($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1903
- },
1904
- 313 => function ($stackPos) {
1905
- $this->semValue = new Expr\AssignOp\Mod($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1906
- },
1907
- 314 => function ($stackPos) {
1908
- $this->semValue = new Expr\AssignOp\BitwiseAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1909
- },
1910
- 315 => function ($stackPos) {
1911
- $this->semValue = new Expr\AssignOp\BitwiseOr($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1912
- },
1913
- 316 => function ($stackPos) {
1914
- $this->semValue = new Expr\AssignOp\BitwiseXor($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1915
- },
1916
- 317 => function ($stackPos) {
1917
- $this->semValue = new Expr\AssignOp\ShiftLeft($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1918
- },
1919
- 318 => function ($stackPos) {
1920
- $this->semValue = new Expr\AssignOp\ShiftRight($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1921
- },
1922
- 319 => function ($stackPos) {
1923
- $this->semValue = new Expr\AssignOp\Pow($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1924
- },
1925
- 320 => function ($stackPos) {
1926
- $this->semValue = new Expr\AssignOp\Coalesce($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1927
- },
1928
- 321 => function ($stackPos) {
1929
- $this->semValue = new Expr\PostInc($this->semStack[$stackPos-(2-1)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1930
- },
1931
- 322 => function ($stackPos) {
1932
- $this->semValue = new Expr\PreInc($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1933
- },
1934
- 323 => function ($stackPos) {
1935
- $this->semValue = new Expr\PostDec($this->semStack[$stackPos-(2-1)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1936
- },
1937
- 324 => function ($stackPos) {
1938
- $this->semValue = new Expr\PreDec($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1939
- },
1940
- 325 => function ($stackPos) {
1941
- $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1942
- },
1943
- 326 => function ($stackPos) {
1944
- $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1945
- },
1946
- 327 => function ($stackPos) {
1947
- $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1948
- },
1949
- 328 => function ($stackPos) {
1950
- $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1951
- },
1952
- 329 => function ($stackPos) {
1953
- $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1954
- },
1955
- 330 => function ($stackPos) {
1956
- $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1957
- },
1958
- 331 => function ($stackPos) {
1959
- $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1960
- },
1961
- 332 => function ($stackPos) {
1962
- $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1963
- },
1964
- 333 => function ($stackPos) {
1965
- $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1966
- },
1967
- 334 => function ($stackPos) {
1968
- $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1969
- },
1970
- 335 => function ($stackPos) {
1971
- $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1972
- },
1973
- 336 => function ($stackPos) {
1974
- $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1975
- },
1976
- 337 => function ($stackPos) {
1977
- $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1978
- },
1979
- 338 => function ($stackPos) {
1980
- $this->semValue = new Expr\BinaryOp\Div($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1981
- },
1982
- 339 => function ($stackPos) {
1983
- $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1984
- },
1985
- 340 => function ($stackPos) {
1986
- $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1987
- },
1988
- 341 => function ($stackPos) {
1989
- $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1990
- },
1991
- 342 => function ($stackPos) {
1992
- $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1993
- },
1994
- 343 => function ($stackPos) {
1995
- $this->semValue = new Expr\UnaryPlus($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1996
- },
1997
- 344 => function ($stackPos) {
1998
- $this->semValue = new Expr\UnaryMinus($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1999
- },
2000
- 345 => function ($stackPos) {
2001
- $this->semValue = new Expr\BooleanNot($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2002
- },
2003
- 346 => function ($stackPos) {
2004
- $this->semValue = new Expr\BitwiseNot($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2005
- },
2006
- 347 => function ($stackPos) {
2007
- $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2008
- },
2009
- 348 => function ($stackPos) {
2010
- $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2011
- },
2012
- 349 => function ($stackPos) {
2013
- $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2014
- },
2015
- 350 => function ($stackPos) {
2016
- $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2017
- },
2018
- 351 => function ($stackPos) {
2019
- $this->semValue = new Expr\BinaryOp\Spaceship($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2020
- },
2021
- 352 => function ($stackPos) {
2022
- $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2023
- },
2024
- 353 => function ($stackPos) {
2025
- $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2026
- },
2027
- 354 => function ($stackPos) {
2028
- $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2029
- },
2030
- 355 => function ($stackPos) {
2031
- $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2032
- },
2033
- 356 => function ($stackPos) {
2034
- $this->semValue = new Expr\Instanceof_($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2035
- },
2036
- 357 => function ($stackPos) {
2037
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2038
- },
2039
- 358 => function ($stackPos) {
2040
- $this->semValue = $this->semStack[$stackPos-(3-2)];
2041
- },
2042
- 359 => function ($stackPos) {
2043
- $this->semValue = new Expr\Ternary($this->semStack[$stackPos-(5-1)], $this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-5)], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
2044
- },
2045
- 360 => function ($stackPos) {
2046
- $this->semValue = new Expr\Ternary($this->semStack[$stackPos-(4-1)], null, $this->semStack[$stackPos-(4-4)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2047
- },
2048
- 361 => function ($stackPos) {
2049
- $this->semValue = new Expr\BinaryOp\Coalesce($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2050
- },
2051
- 362 => function ($stackPos) {
2052
- $this->semValue = new Expr\Isset_($this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2053
- },
2054
- 363 => function ($stackPos) {
2055
- $this->semValue = new Expr\Empty_($this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2056
- },
2057
- 364 => function ($stackPos) {
2058
- $this->semValue = new Expr\Include_($this->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2059
- },
2060
- 365 => function ($stackPos) {
2061
- $this->semValue = new Expr\Include_($this->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE_ONCE, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2062
- },
2063
- 366 => function ($stackPos) {
2064
- $this->semValue = new Expr\Eval_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2065
- },
2066
- 367 => function ($stackPos) {
2067
- $this->semValue = new Expr\Include_($this->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2068
- },
2069
- 368 => function ($stackPos) {
2070
- $this->semValue = new Expr\Include_($this->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE_ONCE, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2071
- },
2072
- 369 => function ($stackPos) {
2073
- $this->semValue = new Expr\Cast\Int_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2074
- },
2075
- 370 => function ($stackPos) {
2076
- $attrs = $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes;
2077
- $attrs['kind'] = $this->getFloatCastKind($this->semStack[$stackPos-(2-1)]);
2078
- $this->semValue = new Expr\Cast\Double($this->semStack[$stackPos-(2-2)], $attrs);
2079
- },
2080
- 371 => function ($stackPos) {
2081
- $this->semValue = new Expr\Cast\String_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2082
- },
2083
- 372 => function ($stackPos) {
2084
- $this->semValue = new Expr\Cast\Array_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2085
- },
2086
- 373 => function ($stackPos) {
2087
- $this->semValue = new Expr\Cast\Object_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2088
- },
2089
- 374 => function ($stackPos) {
2090
- $this->semValue = new Expr\Cast\Bool_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2091
- },
2092
- 375 => function ($stackPos) {
2093
- $this->semValue = new Expr\Cast\Unset_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2094
- },
2095
- 376 => function ($stackPos) {
2096
- $attrs = $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes;
2097
- $attrs['kind'] = strtolower($this->semStack[$stackPos-(2-1)]) === 'exit' ? Expr\Exit_::KIND_EXIT : Expr\Exit_::KIND_DIE;
2098
- $this->semValue = new Expr\Exit_($this->semStack[$stackPos-(2-2)], $attrs);
2099
- },
2100
- 377 => function ($stackPos) {
2101
- $this->semValue = new Expr\ErrorSuppress($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2102
- },
2103
- 378 => function ($stackPos) {
2104
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2105
- },
2106
- 379 => function ($stackPos) {
2107
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2108
- },
2109
- 380 => function ($stackPos) {
2110
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2111
- },
2112
- 381 => function ($stackPos) {
2113
- $this->semValue = new Expr\ShellExec($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2114
- },
2115
- 382 => function ($stackPos) {
2116
- $this->semValue = new Expr\Print_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2117
- },
2118
- 383 => function ($stackPos) {
2119
- $this->semValue = new Expr\Yield_(null, null, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2120
- },
2121
- 384 => function ($stackPos) {
2122
- $this->semValue = new Expr\YieldFrom($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2123
- },
2124
- 385 => function ($stackPos) {
2125
- $this->semValue = new Expr\Closure(['static' => false, 'byRef' => $this->semStack[$stackPos-(10-2)], 'params' => $this->semStack[$stackPos-(10-4)], 'uses' => $this->semStack[$stackPos-(10-6)], 'returnType' => $this->semStack[$stackPos-(10-7)], 'stmts' => $this->semStack[$stackPos-(10-9)]], $this->startAttributeStack[$stackPos-(10-1)] + $this->endAttributes);
2126
- },
2127
- 386 => function ($stackPos) {
2128
- $this->semValue = new Expr\Closure(['static' => true, 'byRef' => $this->semStack[$stackPos-(11-3)], 'params' => $this->semStack[$stackPos-(11-5)], 'uses' => $this->semStack[$stackPos-(11-7)], 'returnType' => $this->semStack[$stackPos-(11-8)], 'stmts' => $this->semStack[$stackPos-(11-10)]], $this->startAttributeStack[$stackPos-(11-1)] + $this->endAttributes);
2129
- },
2130
- 387 => function ($stackPos) {
2131
- $this->semValue = $this->semStack[$stackPos-(3-2)];
2132
- },
2133
- 388 => function ($stackPos) {
2134
- $this->semValue = $this->semStack[$stackPos-(3-2)];
2135
- },
2136
- 389 => function ($stackPos) {
2137
- $this->semValue = new Expr\Yield_($this->semStack[$stackPos-(2-2)], null, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2138
- },
2139
- 390 => function ($stackPos) {
2140
- $this->semValue = new Expr\Yield_($this->semStack[$stackPos-(4-4)], $this->semStack[$stackPos-(4-2)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2141
- },
2142
- 391 => function ($stackPos) {
2143
- $attrs = $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes; $attrs['kind'] = Expr\Array_::KIND_LONG;
2144
- $this->semValue = new Expr\Array_($this->semStack[$stackPos-(4-3)], $attrs);
2145
- },
2146
- 392 => function ($stackPos) {
2147
- $attrs = $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes; $attrs['kind'] = Expr\Array_::KIND_SHORT;
2148
- $this->semValue = new Expr\Array_($this->semStack[$stackPos-(3-2)], $attrs);
2149
- },
2150
- 393 => function ($stackPos) {
2151
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2152
- },
2153
- 394 => function ($stackPos) {
2154
- $this->semValue = new Expr\ArrayDimFetch(Scalar\String_::fromString($this->semStack[$stackPos-(4-1)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes), $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2155
- },
2156
- 395 => function ($stackPos) {
2157
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2158
- },
2159
- 396 => function ($stackPos) {
2160
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2161
- },
2162
- 397 => function ($stackPos) {
2163
- $this->semValue = array(new Stmt\Class_(null, ['type' => 0, 'extends' => $this->semStack[$stackPos-(7-3)], 'implements' => $this->semStack[$stackPos-(7-4)], 'stmts' => $this->semStack[$stackPos-(7-6)]], $this->startAttributeStack[$stackPos-(7-1)] + $this->endAttributes), $this->semStack[$stackPos-(7-2)]);
2164
- $this->checkClass($this->semValue[0], -1);
2165
- },
2166
- 398 => function ($stackPos) {
2167
- $this->semValue = new Expr\New_($this->semStack[$stackPos-(3-2)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2168
- },
2169
- 399 => function ($stackPos) {
2170
- list($class, $ctorArgs) = $this->semStack[$stackPos-(2-2)]; $this->semValue = new Expr\New_($class, $ctorArgs, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2171
- },
2172
- 400 => function ($stackPos) {
2173
- $this->semValue = array();
2174
- },
2175
- 401 => function ($stackPos) {
2176
- $this->semValue = $this->semStack[$stackPos-(4-3)];
2177
- },
2178
- 402 => function ($stackPos) {
2179
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
2180
- },
2181
- 403 => function ($stackPos) {
2182
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
2183
- },
2184
- 404 => function ($stackPos) {
2185
- $this->semValue = new Expr\ClosureUse($this->semStack[$stackPos-(2-2)], $this->semStack[$stackPos-(2-1)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2186
- },
2187
- 405 => function ($stackPos) {
2188
- $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2189
- },
2190
- 406 => function ($stackPos) {
2191
- $this->semValue = new Expr\FuncCall($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2192
- },
2193
- 407 => function ($stackPos) {
2194
- $this->semValue = new Expr\FuncCall($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2195
- },
2196
- 408 => function ($stackPos) {
2197
- $this->semValue = new Expr\StaticCall($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->semStack[$stackPos-(4-4)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2198
- },
2199
- 409 => function ($stackPos) {
2200
- $this->semValue = new Expr\StaticCall($this->semStack[$stackPos-(6-1)], $this->semStack[$stackPos-(6-4)], $this->semStack[$stackPos-(6-6)], $this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes);
2201
- },
2202
- 410 => function ($stackPos) {
2203
- $this->semValue = $this->fixupPhp5StaticPropCall($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2204
- },
2205
- 411 => function ($stackPos) {
2206
- $this->semValue = new Expr\FuncCall($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2207
- },
2208
- 412 => function ($stackPos) {
2209
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2210
- },
2211
- 413 => function ($stackPos) {
2212
- $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2213
- },
2214
- 414 => function ($stackPos) {
2215
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2216
- },
2217
- 415 => function ($stackPos) {
2218
- $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2219
- },
2220
- 416 => function ($stackPos) {
2221
- $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2222
- },
2223
- 417 => function ($stackPos) {
2224
- $this->semValue = new Name\FullyQualified(substr($this->semStack[$stackPos-(1-1)], 1), $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2225
- },
2226
- 418 => function ($stackPos) {
2227
- $this->semValue = new Name\Relative(substr($this->semStack[$stackPos-(1-1)], 10), $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2228
- },
2229
- 419 => function ($stackPos) {
2230
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2231
- },
2232
- 420 => function ($stackPos) {
2233
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2234
- },
2235
- 421 => function ($stackPos) {
2236
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2237
- },
2238
- 422 => function ($stackPos) {
2239
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2240
- },
2241
- 423 => function ($stackPos) {
2242
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2243
- },
2244
- 424 => function ($stackPos) {
2245
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2246
- },
2247
- 425 => function ($stackPos) {
2248
- $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2249
- },
2250
- 426 => function ($stackPos) {
2251
- $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2252
- },
2253
- 427 => function ($stackPos) {
2254
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2255
- },
2256
- 428 => function ($stackPos) {
2257
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2258
- },
2259
- 429 => function ($stackPos) {
2260
- $this->semValue = null;
2261
- },
2262
- 430 => function ($stackPos) {
2263
- $this->semValue = null;
2264
- },
2265
- 431 => function ($stackPos) {
2266
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2267
- },
2268
- 432 => function ($stackPos) {
2269
- $this->semValue = array();
2270
- },
2271
- 433 => function ($stackPos) {
2272
- $this->semValue = array(new Scalar\EncapsedStringPart(Scalar\String_::parseEscapeSequences($this->semStack[$stackPos-(1-1)], '`', false), $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes));
2273
- },
2274
- 434 => function ($stackPos) {
2275
- foreach ($this->semStack[$stackPos-(1-1)] as $s) { if ($s instanceof Node\Scalar\EncapsedStringPart) { $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '`', false); } }; $this->semValue = $this->semStack[$stackPos-(1-1)];
2276
- },
2277
- 435 => function ($stackPos) {
2278
- $this->semValue = array();
2279
- },
2280
- 436 => function ($stackPos) {
2281
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2282
- },
2283
- 437 => function ($stackPos) {
2284
- $this->semValue = $this->parseLNumber($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes, true);
2285
- },
2286
- 438 => function ($stackPos) {
2287
- $this->semValue = Scalar\DNumber::fromString($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2288
- },
2289
- 439 => function ($stackPos) {
2290
- $this->semValue = Scalar\String_::fromString($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes, false);
2291
- },
2292
- 440 => function ($stackPos) {
2293
- $this->semValue = new Scalar\MagicConst\Line($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2294
- },
2295
- 441 => function ($stackPos) {
2296
- $this->semValue = new Scalar\MagicConst\File($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2297
- },
2298
- 442 => function ($stackPos) {
2299
- $this->semValue = new Scalar\MagicConst\Dir($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2300
- },
2301
- 443 => function ($stackPos) {
2302
- $this->semValue = new Scalar\MagicConst\Class_($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2303
- },
2304
- 444 => function ($stackPos) {
2305
- $this->semValue = new Scalar\MagicConst\Trait_($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2306
- },
2307
- 445 => function ($stackPos) {
2308
- $this->semValue = new Scalar\MagicConst\Method($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2309
- },
2310
- 446 => function ($stackPos) {
2311
- $this->semValue = new Scalar\MagicConst\Function_($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2312
- },
2313
- 447 => function ($stackPos) {
2314
- $this->semValue = new Scalar\MagicConst\Namespace_($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2315
- },
2316
- 448 => function ($stackPos) {
2317
- $this->semValue = $this->parseDocString($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-2)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes, $this->startAttributeStack[$stackPos-(3-3)] + $this->endAttributeStack[$stackPos-(3-3)], false);
2318
- },
2319
- 449 => function ($stackPos) {
2320
- $this->semValue = $this->parseDocString($this->semStack[$stackPos-(2-1)], '', $this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes, $this->startAttributeStack[$stackPos-(2-2)] + $this->endAttributeStack[$stackPos-(2-2)], false);
2321
- },
2322
- 450 => function ($stackPos) {
2323
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2324
- },
2325
- 451 => function ($stackPos) {
2326
- $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2327
- },
2328
- 452 => function ($stackPos) {
2329
- $this->semValue = new Expr\ConstFetch($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2330
- },
2331
- 453 => function ($stackPos) {
2332
- $this->semValue = new Expr\Array_($this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2333
- },
2334
- 454 => function ($stackPos) {
2335
- $this->semValue = new Expr\Array_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2336
- },
2337
- 455 => function ($stackPos) {
2338
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2339
- },
2340
- 456 => function ($stackPos) {
2341
- $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2342
- },
2343
- 457 => function ($stackPos) {
2344
- $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2345
- },
2346
- 458 => function ($stackPos) {
2347
- $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2348
- },
2349
- 459 => function ($stackPos) {
2350
- $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2351
- },
2352
- 460 => function ($stackPos) {
2353
- $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2354
- },
2355
- 461 => function ($stackPos) {
2356
- $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2357
- },
2358
- 462 => function ($stackPos) {
2359
- $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2360
- },
2361
- 463 => function ($stackPos) {
2362
- $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2363
- },
2364
- 464 => function ($stackPos) {
2365
- $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2366
- },
2367
- 465 => function ($stackPos) {
2368
- $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2369
- },
2370
- 466 => function ($stackPos) {
2371
- $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2372
- },
2373
- 467 => function ($stackPos) {
2374
- $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2375
- },
2376
- 468 => function ($stackPos) {
2377
- $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2378
- },
2379
- 469 => function ($stackPos) {
2380
- $this->semValue = new Expr\BinaryOp\Div($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2381
- },
2382
- 470 => function ($stackPos) {
2383
- $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2384
- },
2385
- 471 => function ($stackPos) {
2386
- $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2387
- },
2388
- 472 => function ($stackPos) {
2389
- $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2390
- },
2391
- 473 => function ($stackPos) {
2392
- $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2393
- },
2394
- 474 => function ($stackPos) {
2395
- $this->semValue = new Expr\UnaryPlus($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2396
- },
2397
- 475 => function ($stackPos) {
2398
- $this->semValue = new Expr\UnaryMinus($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2399
- },
2400
- 476 => function ($stackPos) {
2401
- $this->semValue = new Expr\BooleanNot($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2402
- },
2403
- 477 => function ($stackPos) {
2404
- $this->semValue = new Expr\BitwiseNot($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2405
- },
2406
- 478 => function ($stackPos) {
2407
- $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2408
- },
2409
- 479 => function ($stackPos) {
2410
- $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2411
- },
2412
- 480 => function ($stackPos) {
2413
- $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2414
- },
2415
- 481 => function ($stackPos) {
2416
- $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2417
- },
2418
- 482 => function ($stackPos) {
2419
- $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2420
- },
2421
- 483 => function ($stackPos) {
2422
- $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2423
- },
2424
- 484 => function ($stackPos) {
2425
- $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2426
- },
2427
- 485 => function ($stackPos) {
2428
- $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2429
- },
2430
- 486 => function ($stackPos) {
2431
- $this->semValue = new Expr\Ternary($this->semStack[$stackPos-(5-1)], $this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-5)], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
2432
- },
2433
- 487 => function ($stackPos) {
2434
- $this->semValue = new Expr\Ternary($this->semStack[$stackPos-(4-1)], null, $this->semStack[$stackPos-(4-4)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2435
- },
2436
- 488 => function ($stackPos) {
2437
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2438
- },
2439
- 489 => function ($stackPos) {
2440
- $this->semValue = $this->semStack[$stackPos-(3-2)];
2441
- },
2442
- 490 => function ($stackPos) {
2443
- $this->semValue = new Expr\ConstFetch($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2444
- },
2445
- 491 => function ($stackPos) {
2446
- $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2447
- },
2448
- 492 => function ($stackPos) {
2449
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2450
- },
2451
- 493 => function ($stackPos) {
2452
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2453
- },
2454
- 494 => function ($stackPos) {
2455
- $attrs = $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes; $attrs['kind'] = Scalar\String_::KIND_DOUBLE_QUOTED;
2456
- foreach ($this->semStack[$stackPos-(3-2)] as $s) { if ($s instanceof Node\Scalar\EncapsedStringPart) { $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '"', true); } }; $this->semValue = new Scalar\Encapsed($this->semStack[$stackPos-(3-2)], $attrs);
2457
- },
2458
- 495 => function ($stackPos) {
2459
- $this->semValue = $this->parseDocString($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-2)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes, $this->startAttributeStack[$stackPos-(3-3)] + $this->endAttributeStack[$stackPos-(3-3)], true);
2460
- },
2461
- 496 => function ($stackPos) {
2462
- $this->semValue = array();
2463
- },
2464
- 497 => function ($stackPos) {
2465
- $this->semValue = $this->semStack[$stackPos-(2-1)];
2466
- },
2467
- 498 => function ($stackPos) {
2468
- $this->semValue = $this->semStack[$stackPos];
2469
- },
2470
- 499 => function ($stackPos) {
2471
- $this->semValue = $this->semStack[$stackPos];
2472
- },
2473
- 500 => function ($stackPos) {
2474
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
2475
- },
2476
- 501 => function ($stackPos) {
2477
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
2478
- },
2479
- 502 => function ($stackPos) {
2480
- $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(3-3)], $this->semStack[$stackPos-(3-1)], false, $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2481
- },
2482
- 503 => function ($stackPos) {
2483
- $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(1-1)], null, false, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2484
- },
2485
- 504 => function ($stackPos) {
2486
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2487
- },
2488
- 505 => function ($stackPos) {
2489
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2490
- },
2491
- 506 => function ($stackPos) {
2492
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2493
- },
2494
- 507 => function ($stackPos) {
2495
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2496
- },
2497
- 508 => function ($stackPos) {
2498
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(6-2)], $this->semStack[$stackPos-(6-5)], $this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes);
2499
- },
2500
- 509 => function ($stackPos) {
2501
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2502
- },
2503
- 510 => function ($stackPos) {
2504
- $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2505
- },
2506
- 511 => function ($stackPos) {
2507
- $this->semValue = new Expr\MethodCall($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->semStack[$stackPos-(4-4)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2508
- },
2509
- 512 => function ($stackPos) {
2510
- $this->semValue = new Expr\FuncCall($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2511
- },
2512
- 513 => function ($stackPos) {
2513
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2514
- },
2515
- 514 => function ($stackPos) {
2516
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2517
- },
2518
- 515 => function ($stackPos) {
2519
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2520
- },
2521
- 516 => function ($stackPos) {
2522
- $this->semValue = $this->semStack[$stackPos-(3-2)];
2523
- },
2524
- 517 => function ($stackPos) {
2525
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2526
- },
2527
- 518 => function ($stackPos) {
2528
- $this->semValue = new Expr\Variable($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2529
- },
2530
- 519 => function ($stackPos) {
2531
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2532
- },
2533
- 520 => function ($stackPos) {
2534
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2535
- },
2536
- 521 => function ($stackPos) {
2537
- $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-4)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2538
- },
2539
- 522 => function ($stackPos) {
2540
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2541
- },
2542
- 523 => function ($stackPos) {
2543
- $var = substr($this->semStack[$stackPos-(1-1)], 1); $this->semValue = \is_string($var) ? new Node\VarLikeIdentifier($var, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes) : $var;
2544
- },
2545
- 524 => function ($stackPos) {
2546
- $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2547
- },
2548
- 525 => function ($stackPos) {
2549
- $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos-(6-1)], $this->semStack[$stackPos-(6-5)], $this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes);
2550
- },
2551
- 526 => function ($stackPos) {
2552
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2553
- },
2554
- 527 => function ($stackPos) {
2555
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2556
- },
2557
- 528 => function ($stackPos) {
2558
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2559
- },
2560
- 529 => function ($stackPos) {
2561
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2562
- },
2563
- 530 => function ($stackPos) {
2564
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2565
- },
2566
- 531 => function ($stackPos) {
2567
- $this->semValue = new Expr\Variable($this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2568
- },
2569
- 532 => function ($stackPos) {
2570
- $this->semValue = null;
2571
- },
2572
- 533 => function ($stackPos) {
2573
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2574
- },
2575
- 534 => function ($stackPos) {
2576
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2577
- },
2578
- 535 => function ($stackPos) {
2579
- $this->semValue = $this->semStack[$stackPos-(3-2)];
2580
- },
2581
- 536 => function ($stackPos) {
2582
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2583
- },
2584
- 537 => function ($stackPos) {
2585
- $this->semValue = new Expr\Error($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes); $this->errorState = 2;
2586
- },
2587
- 538 => function ($stackPos) {
2588
- $this->semValue = new Expr\List_($this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2589
- },
2590
- 539 => function ($stackPos) {
2591
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
2592
- },
2593
- 540 => function ($stackPos) {
2594
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
2595
- },
2596
- 541 => function ($stackPos) {
2597
- $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(1-1)], null, false, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2598
- },
2599
- 542 => function ($stackPos) {
2600
- $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(1-1)], null, false, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2601
- },
2602
- 543 => function ($stackPos) {
2603
- $this->semValue = null;
2604
- },
2605
- 544 => function ($stackPos) {
2606
- $this->semValue = array();
2607
- },
2608
- 545 => function ($stackPos) {
2609
- $this->semValue = $this->semStack[$stackPos-(2-1)];
2610
- },
2611
- 546 => function ($stackPos) {
2612
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
2613
- },
2614
- 547 => function ($stackPos) {
2615
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
2616
- },
2617
- 548 => function ($stackPos) {
2618
- $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(3-3)], $this->semStack[$stackPos-(3-1)], false, $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2619
- },
2620
- 549 => function ($stackPos) {
2621
- $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(1-1)], null, false, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2622
- },
2623
- 550 => function ($stackPos) {
2624
- $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(4-4)], $this->semStack[$stackPos-(4-1)], true, $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2625
- },
2626
- 551 => function ($stackPos) {
2627
- $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(2-2)], null, true, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2628
- },
2629
- 552 => function ($stackPos) {
2630
- $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(2-2)], null, false, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes, true);
2631
- },
2632
- 553 => function ($stackPos) {
2633
- $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
2634
- },
2635
- 554 => function ($stackPos) {
2636
- $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
2637
- },
2638
- 555 => function ($stackPos) {
2639
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
2640
- },
2641
- 556 => function ($stackPos) {
2642
- $this->semValue = array($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)]);
2643
- },
2644
- 557 => function ($stackPos) {
2645
- $this->semValue = new Scalar\EncapsedStringPart($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2646
- },
2647
- 558 => function ($stackPos) {
2648
- $this->semValue = new Expr\Variable($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2649
- },
2650
- 559 => function ($stackPos) {
2651
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2652
- },
2653
- 560 => function ($stackPos) {
2654
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2655
- },
2656
- 561 => function ($stackPos) {
2657
- $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2658
- },
2659
- 562 => function ($stackPos) {
2660
- $this->semValue = new Expr\Variable($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2661
- },
2662
- 563 => function ($stackPos) {
2663
- $this->semValue = new Expr\Variable($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2664
- },
2665
- 564 => function ($stackPos) {
2666
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(6-2)], $this->semStack[$stackPos-(6-4)], $this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes);
2667
- },
2668
- 565 => function ($stackPos) {
2669
- $this->semValue = $this->semStack[$stackPos-(3-2)];
2670
- },
2671
- 566 => function ($stackPos) {
2672
- $this->semValue = new Scalar\String_($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2673
- },
2674
- 567 => function ($stackPos) {
2675
- $this->semValue = $this->parseNumString($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2676
- },
2677
- 568 => function ($stackPos) {
2678
- $this->semValue = $this->semStack[$stackPos-(1-1)];
2679
- },
2680
- ];
2681
- }
2682
- }