@appthreat/atom 1.8.1 → 1.8.2

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 (298) hide show
  1. package/package.json +1 -1
  2. package/phpastgen.js +7 -1
  3. package/plugins/autoload.php +1 -1
  4. package/plugins/bin/atom +1 -1
  5. package/plugins/bin/atom.bat +1 -1
  6. package/plugins/composer/autoload_classmap.php +18 -18
  7. package/plugins/composer/autoload_real.php +4 -4
  8. package/plugins/composer/autoload_static.php +22 -22
  9. package/plugins/composer/installed.json +10 -12
  10. package/plugins/composer/installed.php +9 -9
  11. package/plugins/lib/io.appthreat.atom-1.8.2-classpath.jar +0 -0
  12. package/plugins/lib/{io.appthreat.atom-1.8.1.jar → io.appthreat.atom-1.8.2.jar} +0 -0
  13. package/plugins/lib/{io.appthreat.c2cpg_3-1.1.3.jar → io.appthreat.c2cpg_3-1.1.4.jar} +0 -0
  14. package/plugins/lib/{io.appthreat.dataflowengineoss_3-1.1.3.jar → io.appthreat.dataflowengineoss_3-1.1.4.jar} +0 -0
  15. package/plugins/lib/{io.appthreat.javasrc2cpg_3-1.1.3.jar → io.appthreat.javasrc2cpg_3-1.1.4.jar} +0 -0
  16. package/plugins/lib/{io.appthreat.jimple2cpg_3-1.1.3.jar → io.appthreat.jimple2cpg_3-1.1.4.jar} +0 -0
  17. package/plugins/lib/{io.appthreat.jssrc2cpg_3-1.1.3.jar → io.appthreat.jssrc2cpg_3-1.1.4.jar} +0 -0
  18. package/plugins/lib/{io.appthreat.php2atom_3-1.1.3.jar → io.appthreat.php2atom_3-1.1.4.jar} +0 -0
  19. package/plugins/lib/{io.appthreat.pysrc2cpg_3-1.1.3.jar → io.appthreat.pysrc2cpg_3-1.1.4.jar} +0 -0
  20. package/plugins/lib/{io.appthreat.semanticcpg_3-1.1.3.jar → io.appthreat.semanticcpg_3-1.1.4.jar} +0 -0
  21. package/plugins/lib/{io.appthreat.x2cpg_3-1.1.3.jar → io.appthreat.x2cpg_3-1.1.4.jar} +0 -0
  22. package/plugins/nikic/php-parser/README.md +12 -20
  23. package/plugins/nikic/php-parser/bin/php-parse +10 -11
  24. package/plugins/nikic/php-parser/composer.json +4 -6
  25. package/plugins/nikic/php-parser/lib/PhpParser/Builder/ClassConst.php +15 -17
  26. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Class_.php +30 -35
  27. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Declaration.php +4 -11
  28. package/plugins/nikic/php-parser/lib/PhpParser/Builder/EnumCase.php +7 -9
  29. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Enum_.php +27 -26
  30. package/plugins/nikic/php-parser/lib/PhpParser/Builder/FunctionLike.php +7 -7
  31. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Function_.php +7 -7
  32. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Interface_.php +10 -11
  33. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Method.php +15 -16
  34. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Namespace_.php +5 -5
  35. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Param.php +35 -16
  36. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Property.php +19 -19
  37. package/plugins/nikic/php-parser/lib/PhpParser/Builder/TraitUse.php +5 -6
  38. package/plugins/nikic/php-parser/lib/PhpParser/Builder/TraitUseAdaptation.php +28 -25
  39. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Trait_.php +11 -16
  40. package/plugins/nikic/php-parser/lib/PhpParser/Builder/Use_.php +8 -8
  41. package/plugins/nikic/php-parser/lib/PhpParser/Builder.php +3 -2
  42. package/plugins/nikic/php-parser/lib/PhpParser/BuilderFactory.php +69 -45
  43. package/plugins/nikic/php-parser/lib/PhpParser/BuilderHelpers.php +19 -17
  44. package/plugins/nikic/php-parser/lib/PhpParser/Comment/Doc.php +2 -1
  45. package/plugins/nikic/php-parser/lib/PhpParser/Comment.php +67 -35
  46. package/plugins/nikic/php-parser/lib/PhpParser/ConstExprEvaluationException.php +3 -3
  47. package/plugins/nikic/php-parser/lib/PhpParser/ConstExprEvaluator.php +10 -15
  48. package/plugins/nikic/php-parser/lib/PhpParser/Error.php +33 -24
  49. package/plugins/nikic/php-parser/lib/PhpParser/ErrorHandler/Collecting.php +9 -6
  50. package/plugins/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php +3 -2
  51. package/plugins/nikic/php-parser/lib/PhpParser/ErrorHandler.php +3 -2
  52. package/plugins/nikic/php-parser/lib/PhpParser/Internal/DiffElem.php +7 -11
  53. package/plugins/nikic/php-parser/lib/PhpParser/Internal/Differ.php +22 -36
  54. package/plugins/nikic/php-parser/lib/PhpParser/Internal/PrintableNewAnonClassNode.php +13 -20
  55. package/plugins/nikic/php-parser/lib/PhpParser/Internal/TokenStream.php +70 -55
  56. package/plugins/nikic/php-parser/lib/PhpParser/JsonDecoder.php +10 -15
  57. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php +93 -68
  58. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/AttributeEmulator.php +18 -11
  59. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/CoaleseEqualTokenEmulator.php +47 -0
  60. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/EnumTokenEmulator.php +15 -10
  61. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ExplicitOctalEmulator.php +11 -12
  62. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/FlexibleDocStringEmulator.php +76 -0
  63. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/FnTokenEmulator.php +23 -0
  64. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/KeywordEmulator.php +25 -19
  65. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/MatchTokenEmulator.php +10 -6
  66. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/NullsafeTokenEmulator.php +29 -22
  67. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/NumericLiteralSeparatorEmulator.php +105 -0
  68. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ReadonlyFunctionTokenEmulator.php +3 -3
  69. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ReadonlyTokenEmulator.php +15 -10
  70. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ReverseEmulator.php +5 -6
  71. package/plugins/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/TokenEmulator.php +5 -10
  72. package/plugins/nikic/php-parser/lib/PhpParser/Lexer.php +513 -69
  73. package/plugins/nikic/php-parser/lib/PhpParser/NameContext.php +24 -23
  74. package/plugins/nikic/php-parser/lib/PhpParser/Node/Arg.php +15 -13
  75. package/plugins/nikic/php-parser/lib/PhpParser/Node/Attribute.php +10 -9
  76. package/plugins/nikic/php-parser/lib/PhpParser/Node/AttributeGroup.php +7 -5
  77. package/plugins/nikic/php-parser/lib/PhpParser/Node/ComplexType.php +2 -1
  78. package/plugins/nikic/php-parser/lib/PhpParser/Node/Const_.php +10 -9
  79. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php +11 -10
  80. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayItem.php +39 -1
  81. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Array_.php +11 -11
  82. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ArrowFunction.php +28 -33
  83. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Assign.php +10 -9
  84. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php +3 -2
  85. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php +3 -2
  86. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseXor.php +3 -2
  87. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Coalesce.php +3 -2
  88. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Concat.php +3 -2
  89. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Div.php +3 -2
  90. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Minus.php +3 -2
  91. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mod.php +3 -2
  92. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mul.php +3 -2
  93. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Plus.php +3 -2
  94. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php +3 -2
  95. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftLeft.php +3 -2
  96. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftRight.php +3 -2
  97. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp.php +8 -7
  98. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/AssignRef.php +10 -9
  99. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php +5 -4
  100. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php +5 -4
  101. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php +5 -4
  102. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php +5 -4
  103. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php +5 -4
  104. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Coalesce.php +5 -4
  105. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Concat.php +5 -4
  106. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Div.php +5 -4
  107. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Equal.php +5 -4
  108. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Greater.php +5 -4
  109. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php +5 -4
  110. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php +5 -4
  111. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php +5 -4
  112. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalOr.php +5 -4
  113. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalXor.php +5 -4
  114. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Minus.php +5 -4
  115. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mod.php +5 -4
  116. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php +5 -4
  117. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php +5 -4
  118. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php +5 -4
  119. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Plus.php +5 -4
  120. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Pow.php +5 -4
  121. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php +5 -4
  122. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php +5 -4
  123. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php +5 -4
  124. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php +5 -4
  125. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Spaceship.php +5 -4
  126. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp.php +11 -8
  127. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BitwiseNot.php +8 -7
  128. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/BooleanNot.php +8 -7
  129. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/CallLike.php +7 -3
  130. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Array_.php +3 -2
  131. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Bool_.php +3 -2
  132. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Double.php +6 -5
  133. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Int_.php +3 -2
  134. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Object_.php +3 -2
  135. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/String_.php +3 -2
  136. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Unset_.php +3 -2
  137. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Cast.php +6 -5
  138. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ClassConstFetch.php +10 -10
  139. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Clone_.php +8 -7
  140. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Closure.php +26 -33
  141. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ClosureUse.php +32 -1
  142. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ConstFetch.php +8 -7
  143. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Empty_.php +8 -7
  144. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Error.php +6 -5
  145. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ErrorSuppress.php +8 -7
  146. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Eval_.php +8 -7
  147. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Exit_.php +11 -10
  148. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/FuncCall.php +11 -10
  149. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Include_.php +14 -13
  150. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Instanceof_.php +11 -11
  151. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Isset_.php +8 -7
  152. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/List_.php +8 -12
  153. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Match_.php +7 -8
  154. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/MethodCall.php +12 -12
  155. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/New_.php +11 -10
  156. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/NullsafeMethodCall.php +12 -12
  157. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/NullsafePropertyFetch.php +10 -10
  158. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/PostDec.php +8 -7
  159. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/PostInc.php +8 -7
  160. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/PreDec.php +7 -6
  161. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/PreInc.php +8 -7
  162. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Print_.php +8 -7
  163. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/PropertyFetch.php +10 -10
  164. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/ShellExec.php +9 -9
  165. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/StaticCall.php +13 -12
  166. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/StaticPropertyFetch.php +11 -11
  167. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Ternary.php +13 -12
  168. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Throw_.php +7 -6
  169. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryMinus.php +8 -7
  170. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryPlus.php +8 -7
  171. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Variable.php +7 -6
  172. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/YieldFrom.php +8 -7
  173. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr/Yield_.php +11 -10
  174. package/plugins/nikic/php-parser/lib/PhpParser/Node/Expr.php +2 -1
  175. package/plugins/nikic/php-parser/lib/PhpParser/Node/FunctionLike.php +8 -5
  176. package/plugins/nikic/php-parser/lib/PhpParser/Node/Identifier.php +13 -13
  177. package/plugins/nikic/php-parser/lib/PhpParser/Node/IntersectionType.php +9 -6
  178. package/plugins/nikic/php-parser/lib/PhpParser/Node/MatchArm.php +9 -8
  179. package/plugins/nikic/php-parser/lib/PhpParser/Node/Name/FullyQualified.php +9 -8
  180. package/plugins/nikic/php-parser/lib/PhpParser/Node/Name/Relative.php +9 -8
  181. package/plugins/nikic/php-parser/lib/PhpParser/Node/Name.php +56 -71
  182. package/plugins/nikic/php-parser/lib/PhpParser/Node/NullableType.php +10 -11
  183. package/plugins/nikic/php-parser/lib/PhpParser/Node/Param.php +22 -46
  184. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/DNumber.php +75 -1
  185. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/Encapsed.php +29 -1
  186. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/EncapsedStringPart.php +28 -1
  187. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/LNumber.php +78 -1
  188. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Class_.php +5 -4
  189. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php +5 -4
  190. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/File.php +5 -4
  191. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Function_.php +5 -4
  192. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Line.php +5 -4
  193. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Method.php +5 -4
  194. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace_.php +5 -4
  195. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Trait_.php +5 -4
  196. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst.php +5 -4
  197. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/String_.php +26 -30
  198. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar.php +2 -1
  199. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Break_.php +9 -8
  200. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Case_.php +11 -10
  201. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Catch_.php +12 -11
  202. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassConst.php +32 -24
  203. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassLike.php +13 -13
  204. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassMethod.php +54 -47
  205. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Class_.php +89 -46
  206. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Const_.php +8 -7
  207. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Continue_.php +9 -8
  208. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/DeclareDeclare.php +32 -1
  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 +10 -9
  211. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Echo_.php +8 -7
  212. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/ElseIf_.php +10 -9
  213. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Else_.php +8 -7
  214. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/EnumCase.php +12 -11
  215. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Enum_.php +13 -17
  216. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Expression.php +8 -7
  217. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Finally_.php +8 -7
  218. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/For_.php +15 -19
  219. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Foreach_.php +17 -20
  220. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Function_.php +24 -28
  221. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Global_.php +8 -7
  222. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Goto_.php +8 -7
  223. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/GroupUse.php +14 -16
  224. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/HaltCompiler.php +8 -7
  225. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/If_.php +15 -18
  226. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/InlineHTML.php +8 -7
  227. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Interface_.php +10 -13
  228. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Label.php +8 -7
  229. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Namespace_.php +12 -11
  230. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Nop.php +5 -4
  231. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Property.php +37 -28
  232. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/PropertyProperty.php +32 -1
  233. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Return_.php +9 -8
  234. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/StaticVar.php +35 -1
  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 +10 -9
  237. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Throw_.php +30 -0
  238. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUse.php +9 -8
  239. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php +13 -12
  240. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php +10 -9
  241. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation.php +4 -3
  242. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Trait_.php +8 -10
  243. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/TryCatch.php +12 -11
  244. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Unset_.php +8 -7
  245. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/UseUse.php +50 -1
  246. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Use_.php +16 -16
  247. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/While_.php +10 -9
  248. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt.php +2 -1
  249. package/plugins/nikic/php-parser/lib/PhpParser/Node/UnionType.php +8 -7
  250. package/plugins/nikic/php-parser/lib/PhpParser/Node/VarLikeIdentifier.php +3 -2
  251. package/plugins/nikic/php-parser/lib/PhpParser/Node/VariadicPlaceholder.php +2 -2
  252. package/plugins/nikic/php-parser/lib/PhpParser/Node.php +29 -24
  253. package/plugins/nikic/php-parser/lib/PhpParser/NodeAbstract.php +20 -20
  254. package/plugins/nikic/php-parser/lib/PhpParser/NodeDumper.php +84 -168
  255. package/plugins/nikic/php-parser/lib/PhpParser/NodeFinder.php +19 -28
  256. package/plugins/nikic/php-parser/lib/PhpParser/NodeTraverser.php +84 -71
  257. package/plugins/nikic/php-parser/lib/PhpParser/NodeTraverserInterface.php +7 -4
  258. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor/CloningVisitor.php +2 -1
  259. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor/FindingVisitor.php +5 -4
  260. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor/FirstFindingVisitor.php +7 -6
  261. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php +28 -30
  262. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor/NodeConnectingVisitor.php +3 -2
  263. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor/ParentConnectingVisitor.php +11 -8
  264. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor.php +7 -59
  265. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php +2 -1
  266. package/plugins/nikic/php-parser/lib/PhpParser/Parser/Multiple.php +55 -0
  267. package/plugins/nikic/php-parser/lib/PhpParser/Parser/Php5.php +2682 -0
  268. package/plugins/nikic/php-parser/lib/PhpParser/Parser/Php7.php +1522 -1323
  269. package/plugins/nikic/php-parser/lib/PhpParser/Parser/Tokens.php +148 -0
  270. package/plugins/nikic/php-parser/lib/PhpParser/Parser.php +3 -9
  271. package/plugins/nikic/php-parser/lib/PhpParser/ParserAbstract.php +252 -433
  272. package/plugins/nikic/php-parser/lib/PhpParser/ParserFactory.php +49 -15
  273. package/plugins/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php +335 -386
  274. package/plugins/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php +438 -517
  275. package/plugins/lib/io.appthreat.atom-1.8.1-classpath.jar +0 -0
  276. package/plugins/nikic/php-parser/.php-cs-fixer.dist.php +0 -31
  277. package/plugins/nikic/php-parser/Makefile +0 -10
  278. package/plugins/nikic/php-parser/lib/PhpParser/Internal/TokenPolyfill.php +0 -237
  279. package/plugins/nikic/php-parser/lib/PhpParser/Modifiers.php +0 -69
  280. package/plugins/nikic/php-parser/lib/PhpParser/Node/ArrayItem.php +0 -43
  281. package/plugins/nikic/php-parser/lib/PhpParser/Node/ClosureUse.php +0 -36
  282. package/plugins/nikic/php-parser/lib/PhpParser/Node/DeclareItem.php +0 -37
  283. package/plugins/nikic/php-parser/lib/PhpParser/Node/InterpolatedStringPart.php +0 -32
  284. package/plugins/nikic/php-parser/lib/PhpParser/Node/PropertyItem.php +0 -37
  285. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/Float_.php +0 -78
  286. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/Int_.php +0 -82
  287. package/plugins/nikic/php-parser/lib/PhpParser/Node/Scalar/InterpolatedString.php +0 -34
  288. package/plugins/nikic/php-parser/lib/PhpParser/Node/StaticVar.php +0 -39
  289. package/plugins/nikic/php-parser/lib/PhpParser/Node/Stmt/Block.php +0 -29
  290. package/plugins/nikic/php-parser/lib/PhpParser/Node/UseItem.php +0 -55
  291. package/plugins/nikic/php-parser/lib/PhpParser/NodeVisitor/CommentAnnotatingVisitor.php +0 -82
  292. package/plugins/nikic/php-parser/lib/PhpParser/Parser/Php8.php +0 -2717
  293. package/plugins/nikic/php-parser/lib/PhpParser/PhpVersion.php +0 -164
  294. package/plugins/nikic/php-parser/lib/PhpParser/PrettyPrinter.php +0 -51
  295. package/plugins/nikic/php-parser/lib/PhpParser/Token.php +0 -18
  296. package/plugins/nikic/php-parser/lib/PhpParser/compatibility_tokens.php +0 -56
  297. package/plugins/nikic/php-parser/phpstan-baseline.neon +0 -236
  298. package/plugins/nikic/php-parser/phpstan.neon.dist +0 -8
@@ -1,9 +1,8 @@
1
- <?php declare(strict_types=1);
1
+ <?php
2
2
 
3
3
  namespace PhpParser\Parser;
4
4
 
5
5
  use PhpParser\Error;
6
- use PhpParser\Modifiers;
7
6
  use PhpParser\Node;
8
7
  use PhpParser\Node\Expr;
9
8
  use PhpParser\Node\Name;
@@ -12,166 +11,25 @@ use PhpParser\Node\Stmt;
12
11
 
13
12
  /* This is an automatically GENERATED file, which should not be manually edited.
14
13
  * Instead edit one of the following:
15
- * * the grammar file grammar/php.y
14
+ * * the grammar files grammar/php5.y or grammar/php7.y
16
15
  * * the skeleton file grammar/parser.template
17
16
  * * the preprocessing script grammar/rebuildParsers.php
18
17
  */
19
18
  class Php7 extends \PhpParser\ParserAbstract
20
19
  {
21
- public const YYERRTOK = 256;
22
- public const T_THROW = 257;
23
- public const T_INCLUDE = 258;
24
- public const T_INCLUDE_ONCE = 259;
25
- public const T_EVAL = 260;
26
- public const T_REQUIRE = 261;
27
- public const T_REQUIRE_ONCE = 262;
28
- public const T_LOGICAL_OR = 263;
29
- public const T_LOGICAL_XOR = 264;
30
- public const T_LOGICAL_AND = 265;
31
- public const T_PRINT = 266;
32
- public const T_YIELD = 267;
33
- public const T_DOUBLE_ARROW = 268;
34
- public const T_YIELD_FROM = 269;
35
- public const T_PLUS_EQUAL = 270;
36
- public const T_MINUS_EQUAL = 271;
37
- public const T_MUL_EQUAL = 272;
38
- public const T_DIV_EQUAL = 273;
39
- public const T_CONCAT_EQUAL = 274;
40
- public const T_MOD_EQUAL = 275;
41
- public const T_AND_EQUAL = 276;
42
- public const T_OR_EQUAL = 277;
43
- public const T_XOR_EQUAL = 278;
44
- public const T_SL_EQUAL = 279;
45
- public const T_SR_EQUAL = 280;
46
- public const T_POW_EQUAL = 281;
47
- public const T_COALESCE_EQUAL = 282;
48
- public const T_COALESCE = 283;
49
- public const T_BOOLEAN_OR = 284;
50
- public const T_BOOLEAN_AND = 285;
51
- public const T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG = 286;
52
- public const T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG = 287;
53
- public const T_IS_EQUAL = 288;
54
- public const T_IS_NOT_EQUAL = 289;
55
- public const T_IS_IDENTICAL = 290;
56
- public const T_IS_NOT_IDENTICAL = 291;
57
- public const T_SPACESHIP = 292;
58
- public const T_IS_SMALLER_OR_EQUAL = 293;
59
- public const T_IS_GREATER_OR_EQUAL = 294;
60
- public const T_SL = 295;
61
- public const T_SR = 296;
62
- public const T_INSTANCEOF = 297;
63
- public const T_INC = 298;
64
- public const T_DEC = 299;
65
- public const T_INT_CAST = 300;
66
- public const T_DOUBLE_CAST = 301;
67
- public const T_STRING_CAST = 302;
68
- public const T_ARRAY_CAST = 303;
69
- public const T_OBJECT_CAST = 304;
70
- public const T_BOOL_CAST = 305;
71
- public const T_UNSET_CAST = 306;
72
- public const T_POW = 307;
73
- public const T_NEW = 308;
74
- public const T_CLONE = 309;
75
- public const T_EXIT = 310;
76
- public const T_IF = 311;
77
- public const T_ELSEIF = 312;
78
- public const T_ELSE = 313;
79
- public const T_ENDIF = 314;
80
- public const T_LNUMBER = 315;
81
- public const T_DNUMBER = 316;
82
- public const T_STRING = 317;
83
- public const T_STRING_VARNAME = 318;
84
- public const T_VARIABLE = 319;
85
- public const T_NUM_STRING = 320;
86
- public const T_INLINE_HTML = 321;
87
- public const T_ENCAPSED_AND_WHITESPACE = 322;
88
- public const T_CONSTANT_ENCAPSED_STRING = 323;
89
- public const T_ECHO = 324;
90
- public const T_DO = 325;
91
- public const T_WHILE = 326;
92
- public const T_ENDWHILE = 327;
93
- public const T_FOR = 328;
94
- public const T_ENDFOR = 329;
95
- public const T_FOREACH = 330;
96
- public const T_ENDFOREACH = 331;
97
- public const T_DECLARE = 332;
98
- public const T_ENDDECLARE = 333;
99
- public const T_AS = 334;
100
- public const T_SWITCH = 335;
101
- public const T_MATCH = 336;
102
- public const T_ENDSWITCH = 337;
103
- public const T_CASE = 338;
104
- public const T_DEFAULT = 339;
105
- public const T_BREAK = 340;
106
- public const T_CONTINUE = 341;
107
- public const T_GOTO = 342;
108
- public const T_FUNCTION = 343;
109
- public const T_FN = 344;
110
- public const T_CONST = 345;
111
- public const T_RETURN = 346;
112
- public const T_TRY = 347;
113
- public const T_CATCH = 348;
114
- public const T_FINALLY = 349;
115
- public const T_USE = 350;
116
- public const T_INSTEADOF = 351;
117
- public const T_GLOBAL = 352;
118
- public const T_STATIC = 353;
119
- public const T_ABSTRACT = 354;
120
- public const T_FINAL = 355;
121
- public const T_PRIVATE = 356;
122
- public const T_PROTECTED = 357;
123
- public const T_PUBLIC = 358;
124
- public const T_READONLY = 359;
125
- public const T_VAR = 360;
126
- public const T_UNSET = 361;
127
- public const T_ISSET = 362;
128
- public const T_EMPTY = 363;
129
- public const T_HALT_COMPILER = 364;
130
- public const T_CLASS = 365;
131
- public const T_TRAIT = 366;
132
- public const T_INTERFACE = 367;
133
- public const T_ENUM = 368;
134
- public const T_EXTENDS = 369;
135
- public const T_IMPLEMENTS = 370;
136
- public const T_OBJECT_OPERATOR = 371;
137
- public const T_NULLSAFE_OBJECT_OPERATOR = 372;
138
- public const T_LIST = 373;
139
- public const T_ARRAY = 374;
140
- public const T_CALLABLE = 375;
141
- public const T_CLASS_C = 376;
142
- public const T_TRAIT_C = 377;
143
- public const T_METHOD_C = 378;
144
- public const T_FUNC_C = 379;
145
- public const T_LINE = 380;
146
- public const T_FILE = 381;
147
- public const T_START_HEREDOC = 382;
148
- public const T_END_HEREDOC = 383;
149
- public const T_DOLLAR_OPEN_CURLY_BRACES = 384;
150
- public const T_CURLY_OPEN = 385;
151
- public const T_PAAMAYIM_NEKUDOTAYIM = 386;
152
- public const T_NAMESPACE = 387;
153
- public const T_NS_C = 388;
154
- public const T_DIR = 389;
155
- public const T_NS_SEPARATOR = 390;
156
- public const T_ELLIPSIS = 391;
157
- public const T_NAME_FULLY_QUALIFIED = 392;
158
- public const T_NAME_QUALIFIED = 393;
159
- public const T_NAME_RELATIVE = 394;
160
- public const T_ATTRIBUTE = 395;
20
+ protected $tokenToSymbolMapSize = 396;
21
+ protected $actionTableSize = 1241;
22
+ protected $gotoTableSize = 629;
161
23
 
162
- protected int $tokenToSymbolMapSize = 396;
163
- protected int $actionTableSize = 1258;
164
- protected int $gotoTableSize = 567;
24
+ protected $invalidSymbol = 168;
25
+ protected $errorSymbol = 1;
26
+ protected $defaultAction = -32766;
27
+ protected $unexpectedTokenRule = 32767;
165
28
 
166
- protected int $invalidSymbol = 168;
167
- protected int $errorSymbol = 1;
168
- protected int $defaultAction = -32766;
169
- protected int $unexpectedTokenRule = 32767;
29
+ protected $YY2TBLSTATE = 434;
30
+ protected $numNonLeafStates = 736;
170
31
 
171
- protected int $YY2TBLSTATE = 435;
172
- protected int $numNonLeafStates = 739;
173
-
174
- protected array $symbolToName = array(
32
+ protected $symbolToName = array(
175
33
  "EOF",
176
34
  "error",
177
35
  "T_THROW",
@@ -333,21 +191,21 @@ class Php7 extends \PhpParser\ParserAbstract
333
191
  "T_ATTRIBUTE",
334
192
  "';'",
335
193
  "']'",
336
- "'('",
337
- "')'",
338
194
  "'{'",
339
195
  "'}'",
196
+ "'('",
197
+ "')'",
340
198
  "'`'",
341
199
  "'\"'",
342
200
  "'$'"
343
201
  );
344
202
 
345
- protected array $tokenToSymbol = array(
203
+ protected $tokenToSymbol = array(
346
204
  0, 168, 168, 168, 168, 168, 168, 168, 168, 168,
347
205
  168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
348
206
  168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
349
207
  168, 168, 168, 56, 166, 168, 167, 55, 168, 168,
350
- 161, 162, 53, 50, 8, 51, 52, 54, 168, 168,
208
+ 163, 164, 53, 50, 8, 51, 52, 54, 168, 168,
351
209
  168, 168, 168, 168, 168, 168, 168, 168, 31, 159,
352
210
  44, 16, 46, 30, 68, 168, 168, 168, 168, 168,
353
211
  168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
@@ -355,7 +213,7 @@ class Php7 extends \PhpParser\ParserAbstract
355
213
  168, 70, 168, 160, 36, 168, 165, 168, 168, 168,
356
214
  168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
357
215
  168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
358
- 168, 168, 168, 163, 35, 164, 58, 168, 168, 168,
216
+ 168, 168, 168, 161, 35, 162, 58, 168, 168, 168,
359
217
  168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
360
218
  168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
361
219
  168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
@@ -385,526 +243,529 @@ class Php7 extends \PhpParser\ParserAbstract
385
243
  153, 154, 155, 156, 157, 158
386
244
  );
387
245
 
388
- protected array $action = array(
389
- 133, 134, 135, 582, 136, 137, 0, 751, 752, 753,
390
- 138, 38,-32766,-32766,-32766, 151,-32766,-32766,-32766,-32767,
391
- -32767,-32767,-32767, 102, 103, 104, 105, 106, 1112, 1113,
392
- 1114, 1111, 1110, 1109, 1115, 745, 744,-32766,-32766,-32766,
246
+ protected $action = array(
247
+ 133, 134, 135, 579, 136, 137, 0, 748, 749, 750,
248
+ 138, 38, 327,-32766,-32766,-32766,-32766,-32766,-32766,-32767,
249
+ -32767,-32767,-32767, 102, 103, 104, 105, 106, 1109, 1110,
250
+ 1111, 1108, 1107, 1106, 1112, 742, 741,-32766, 1232,-32766,
393
251
  -32766,-32766,-32766,-32766,-32766,-32766,-32767,-32767,-32767,-32767,
394
- -32767, 1245, 837,-32766, 1322, 754,-32766,-32766,-32766,-32766,
395
- -594,-32766,-32766,-32766, 104, 105, 106, -594, 1306, 265,
396
- 139, 404, 758, 759, 760, 761, 990,-32766, 429,-32766,
397
- -32766, -16,-32766, 242, 1027, 815, 762, 763, 764, 765,
398
- 766, 767, 768, 769, 770, 771, 791, 583, 792, 793,
399
- 794, 795, 783, 784, 345, 346, 786, 787, 772, 773,
400
- 774, 776, 777, 778, 356, 818, 819, 820, 821, 822,
401
- 584, 779, 780, 585, 586,-32766, 803, 801, 802, 814,
402
- 798, 799, 835, 826, 587, 588, 797, 589, 590, 591,
403
- 592, 593, 594, 826, 459, 460, 461, 1036, 800, 595,
404
- 596, 941, 140, 2, 133, 134, 135, 582, 136, 137,
405
- 1060, 751, 752, 753, 138, 38, -328, -110, -110, 1326,
406
- 290, 23, -110,-32766,-32766,-32766, 1325, 35, -110, 1112,
407
- 1113, 1114, 1111, 1110, 1109, 1115, 612,-32766, 129, 745,
408
- 744, 107, 108, 109,-32766, 274,-32766,-32766,-32766,-32766,
409
- -32766,-32766,-32766, 828, 991, -194, 145, 110, 298, 754,
410
- 836, 75,-32766,-32766,-32766, 1351, 142, 326, 1352, -594,
411
- 326, -594, 254, 265, 139, 404, 758, 759, 760, 761,
412
- 82, -272, 429,-32766, 326,-32766,-32766,-32766,-32766, 815,
413
- 762, 763, 764, 765, 766, 767, 768, 769, 770, 771,
414
- 791, 583, 792, 793, 794, 795, 783, 784, 345, 346,
415
- 786, 787, 772, 773, 774, 776, 777, 778, 356, 818,
416
- 819, 820, 821, 822, 584, 779, 780, 585, 586, 830,
417
- 803, 801, 802, 814, 798, 799, 712, 309, 587, 588,
418
- 797, 589, 590, 591, 592, 593, 594, -78, 83, 84,
419
- 85, -85, 800, 595, 596, 311, 149, 775, 746, 747,
420
- 748, 749, 750, 725, 751, 752, 753, 788, 789, 37,
421
- -328, 86, 87, 88, 89, 90, 91, 92, 93, 94,
422
- 95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
423
- 105, 106, 107, 108, 109, 323, 274, 482,-32766,-32766,
424
- -32766, -58,-32766,-32766,-32766, 959, 960, 127, 110, -194,
425
- 961, 339, 754,-32766,-32766,-32766, 955, -85, 291,-32766,
426
- 1088,-32766,-32766,-32766,-32766,-32766, 755, 756, 757, 758,
427
- 759, 760, 761, -193,-32766, 824,-32766,-32766,-32766, -367,
428
- 429, -367, 815, 762, 763, 764, 765, 766, 767, 768,
429
- 769, 770, 771, 791, 813, 792, 793, 794, 795, 783,
430
- 784, 785, 812, 786, 787, 772, 773, 774, 776, 777,
431
- 778, 817, 818, 819, 820, 821, 822, 823, 779, 780,
432
- 781, 782, -548, 803, 801, 802, 814, 798, 799, 340,
433
- 327, 790, 796, 797, 804, 805, 807, 806, 808, 809,
434
- 1033, 391, 606, 7,-32766, 800, 811, 810, 50, 51,
435
- 52, 513, 53, 54, 831, 1240, 1239, 1241, 55, 56,
436
- -110, 57, 1036, 920, 1090, -110, 1036, -110, 291, 483,
437
- 745, 744, 305, 382, 381, -110, -110, -110, -110, -110,
438
- -110, -110, -110, 423, 920, 283, -548, -548, 152, 290,
439
- 380, 381, 1245, 715, 467, 468, 58, 59, 370, 21,
440
- 423, -545, 60, 556, 61, 248, 249, 62, 63, 64,
441
- 65, 66, 67, 68, 69, -548, 28, 267, 70, 445,
442
- 514, 1104, 374, -342, 1272, 1273, 515, -193, 835, 154,
443
- 832, -544, 1270, 42, 25, 516, 389, 517, 241, 518,
444
- 920, 519, 298, 1238, 520, 521, 910, 920, 441, 44,
445
- 45, 446, 377, 376,-32766, 46, 522, 1023, 1022, 1021,
446
- 1024, 368, 338, 442, 1278, -545, -545, 910, 1231, 443,
447
- 524, 525, 526, 835, 1245, 835, 1036, 716, 1341, 1236,
448
- -545, 155, 528, 529,-32766, 1259, 1260, 1261, 1262, 1256,
449
- 1257, 297, -551, 943, -545, -544, -544, 1263, 1258, 290,
450
- 1035, 1240, 1239, 1241, 298, 444, 1036, 71, 1266, 841,
451
- -544, 321, 322, 326, -153, -153, -153, 920, 1240, 1239,
452
- 1241, 922, -550, 910, -544, 710, 943, -591,-32766, -153,
453
- 910, -153, 357, -153, -591, -153, 862, 1033, 863, 1089,
454
- 36, 251, 922, 737, 156, 375, 710, 717, 862, -585,
455
- 863, -585, 75, 158, -546, 835, 959, 960, 326, 1036,
456
- -57, 523, 920,-32766,-32766, 362, 896, 955, -110, -110,
457
- -110, 32, 111, 112, 113, 114, 115, 116, 117, 118,
458
- 119, 120, 121, 122, 123, 745, 744, 656, 26, 835,
459
- -110, -110, 720, 745, 744, -110, 33, 834, 922, 124,
460
- 910, -110, 710, -153, 125, 922, 675, 676, 130, 710,
461
- -32766, 150, 407, 131, 1150, 1152, 48, 144, -546, -546,
462
- 378, 379,-32766, 383, 384, -543, 28, 159, 1238, 920,
463
- 160, 298, 1059, -546, 75,-32766,-32766,-32766, 835,-32766,
464
- 326,-32766, 1270,-32766, -87, 910,-32766, -546, 647, 648,
465
- 161,-32766,-32766,-32766, -4, 920, -84,-32766,-32766, 727,
466
- 162, 287, 163,-32766, 420, -302, -78, -73, -72, -71,
467
- 141, 287,-32766, -70, 326, 976, 745, 744, 1231, 710,
468
- 299, 300, -69, -68, -67, -298, -591, -66, -591, -543,
469
- -543, -65, 528, 529, -46, 1259, 1260, 1261, 1262, 1256,
470
- 1257, -18, 74, 148, -543, 273, 284, 1263, 1258, 126,
471
- -543, 726, 910,-32766, 729, 919, 147, 73, -543, 1238,
472
- 922, 690, 322, 326, 710, 279,-32766,-32766,-32766, 280,
473
- -32766, 285,-32766, 286,-32766, 332, 288,-32766, 910, 289,
474
- 292, 49,-32766,-32766,-32766, 293, 274, 1033,-32766,-32766,
475
- 937, 110, -50, 685,-32766, 420, 146, 691, 826, 701,
476
- 375, 703, 436,-32766, 1353, 20, 561, 296, 645, 1036,
477
- 835, 959, 960, 1119, -543, -543, 523,-32766, 692, 693,
478
- 306, 527, 955, -110, -110, -110, 132, 922, 834, -543,
479
- 464, 710, 283, 662, 657,-32766, 1240, 1239, 1241, 678,
480
- 304, 1238, 283, -543, 10, 301, 302, 493,-32766,-32766,
481
- -32766, 663,-32766, 922,-32766, 679,-32766, 710, -4,-32766,
482
- 373, 40, -508, 956,-32766,-32766,-32766, -275, 731,-32766,
483
- -32766,-32766, 920, 303, 128, 1238,-32766, 420, 310, 0,
484
- 567, 0,-32766,-32766,-32766,-32766,-32766, 0,-32766, 0,
485
- -32766,-32766, 0,-32766, 0, 1277, -498, 0,-32766,-32766,
486
- -32766,-32766, 1279, 0,-32766,-32766, 8, 1238, 24, 372,
487
- -32766, 420, 920, 1267,-32766,-32766,-32766, 610,-32766,-32766,
488
- -32766, 939,-32766, 298, -579,-32766, 846, 41, 734, 488,
489
- -32766,-32766,-32766,-32766, 735, 854,-32766,-32766, 901, 1238,
490
- 574, 1000,-32766, 420, 977, 984,-32766,-32766,-32766, 974,
491
- -32766,-32766,-32766, 985,-32766, 910, 899,-32766, 972, 1093,
492
- 1096, 1097,-32766,-32766,-32766, 1094, 1095, 1101,-32766,-32766,
493
- 1292, -250, -250, -250,-32766, 420, 1310, 375, 1344, 650,
494
- 28, 267, -578,-32766, -577, -551, -550, -549, 959, 960,
495
- -492, 1, 835, 523, 29, 910, 1270, 30, 896, 955,
496
- -110, -110, -110, 39, 43, 47, 72, 76, 77, 78,
497
- 79, -249, -249, -249, 80, 81, 143, 375, 153, 157,
498
- 897, 247, 328, 357, 358, 359, 360, 361, 959, 960,
499
- 922, 362, 1231, 523, 710, -250, 363, 364, 896, 955,
500
- -110, -110, -110, 365, 366, 367, 369, 529, 28, 1259,
501
- 1260, 1261, 1262, 1256, 1257, 437, 555, 1348, -273, -272,
502
- 835, 1263, 1258, 13, 1270, 14,-32766, 15, 16, 18,
503
- 922, 73, 1238, 1350, 710, -249, 322, 326, 406,-32766,
504
- -32766,-32766, 484,-32766, 485,-32766, 492,-32766, 495, 496,
505
- -32766, 497, 498, 502, 503,-32766,-32766,-32766, 504, 511,
506
- 1231,-32766,-32766, 572, 696, 1249, 1190,-32766, 420, 1268,
507
- 1062, 1061, 1042, 1226, 1038, 529,-32766, 1259, 1260, 1261,
508
- 1262, 1256, 1257, -277, -102, 12, 17, 27, 295, 1263,
509
- 1258, 405, 603, 607, 636, 702, 1194, 1244, 1191, 73,
510
- 34, 1323, 0, 320, 322, 326, 371, 711, 714, 718,
511
- 719, 721, 722, 723, 724, 0, 728, 713, 0, 857,
512
- 856, 865, 949, 992, 864, 1349, 948, 946, 947, 950,
513
- 1222, 930, 940, 928, 982, 983, 634, 1347, 1304, 1293,
514
- 1311, 1320, 0, 1207, 0, 1271, 0, 326
252
+ -32767, 2, 107, 108, 109, 751, 274, 381, 380,-32766,
253
+ -32766,-32766,-32766, 104, 105, 106, 1024, 422, 110, 265,
254
+ 139, 403, 755, 756, 757, 758, 466, 467, 428, 938,
255
+ 291,-32766, 287,-32766,-32766, 759, 760, 761, 762, 763,
256
+ 764, 765, 766, 767, 768, 769, 789, 580, 790, 791,
257
+ 792, 793, 781, 782, 344, 345, 784, 785, 770, 771,
258
+ 772, 774, 775, 776, 355, 816, 817, 818, 819, 820,
259
+ 581, 777, 778, 582, 583, 810, 801, 799, 800, 813,
260
+ 796, 797, 687, -545, 584, 585, 795, 586, 587, 588,
261
+ 589, 590, 591, -328, -593, -367, 1234, -367, 798, 592,
262
+ 593, -593, 140,-32766,-32766,-32766, 133, 134, 135, 579,
263
+ 136, 137, 1057, 748, 749, 750, 138, 38, 688, 1020,
264
+ 1019, 1018, 1021, 390,-32766, 7,-32766,-32766,-32766,-32766,
265
+ -32766,-32766,-32766,-32766,-32766,-32766, 379, 380, 1033, 689,
266
+ 690, 742, 741,-32766,-32766,-32766, 422, -545, -545, -590,
267
+ -32766,-32766,-32766, 1032,-32766, 127, -590, 1236, 1235, 1237,
268
+ 1318, 751, -545, 290,-32766, 283,-32766,-32766,-32766,-32766,
269
+ -32766, 1236, 1235, 1237, -545, 265, 139, 403, 755, 756,
270
+ 757, 758, 16, 481, 428, 458, 459, 460, 298, 722,
271
+ 35, 759, 760, 761, 762, 763, 764, 765, 766, 767,
272
+ 768, 769, 789, 580, 790, 791, 792, 793, 781, 782,
273
+ 344, 345, 784, 785, 770, 771, 772, 774, 775, 776,
274
+ 355, 816, 817, 818, 819, 820, 581, 777, 778, 582,
275
+ 583, 810, 801, 799, 800, 813, 796, 797, 129, 824,
276
+ 584, 585, 795, 586, 587, 588, 589, 590, 591, -328,
277
+ 83, 84, 85, -593, 798, 592, 593, -593, 149, 773,
278
+ 743, 744, 745, 746, 747, 824, 748, 749, 750, 786,
279
+ 787, 37, 145, 86, 87, 88, 89, 90, 91, 92,
280
+ 93, 94, 95, 96, 97, 98, 99, 100, 101, 102,
281
+ 103, 104, 105, 106, 107, 108, 109, 291, 274, 835,
282
+ 254, 1109, 1110, 1111, 1108, 1107, 1106, 1112, -590, 860,
283
+ 110, 861, -590, 482, 751,-32766,-32766,-32766,-32766,-32766,
284
+ 142, 603, 1085, 742, 741, 1262, 326, 987, 752, 753,
285
+ 754, 755, 756, 757, 758, 309,-32766, 822,-32766,-32766,
286
+ -32766,-32766, 242, 553, 759, 760, 761, 762, 763, 764,
287
+ 765, 766, 767, 768, 769, 789, 812, 790, 791, 792,
288
+ 793, 781, 782, 783, 811, 784, 785, 770, 771, 772,
289
+ 774, 775, 776, 815, 816, 817, 818, 819, 820, 821,
290
+ 777, 778, 779, 780, 810, 801, 799, 800, 813, 796,
291
+ 797, 311, 940, 788, 794, 795, 802, 803, 805, 804,
292
+ 806, 807, 323, 609, 1274, 1033, 833, 798, 809, 808,
293
+ 50, 51, 52, 512, 53, 54, 860, 241, 861, 918,
294
+ 55, 56, -111, 57,-32766,-32766,-32766, -111, 826, -111,
295
+ 290, 1302, 1347, 356, 305, 1348, 339, -111, -111, -111,
296
+ -111, -111, -111, -111, -111,-32766, -194,-32766,-32766,-32766,
297
+ -193, 956, 957, 829, -86, 988, 958, 834, 58, 59,
298
+ 340, 428, 952, -544, 60, 832, 61, 247, 248, 62,
299
+ 63, 64, 65, 66, 67, 68, 69, 1241, 28, 267,
300
+ 70, 444, 513, -342,-32766, 141, 1268, 1269, 514, 918,
301
+ 833, 326, -272, 918, 1266, 42, 25, 515, 940, 516,
302
+ 14, 517, 908, 518, 828, 369, 519, 520, 373, 709,
303
+ 1033, 44, 45, 445, 376, 375, 388, 46, 521, 712,
304
+ -86, 440, 1101, 367, 338, -543, 441, -544, -544, 830,
305
+ 1227, 442, 523, 524, 525, 290, 1236, 1235, 1237, 361,
306
+ 1030, 443, -544, 1087, 526, 527, 839, 1255, 1256, 1257,
307
+ 1258, 1252, 1253, 297, -544, 151, -550, -584, 833, 1259,
308
+ 1254, -584, 1033, 1236, 1235, 1237, 298, -154, -154, -154,
309
+ 152, 71, 908, 321, 322, 326, 908, 920, 1030, 707,
310
+ 833, 154, -154, 1337, -154, 155, -154, 283, -154, -543,
311
+ -543, 82, 1232, 1086, 1322, 734, 156, 326, 374, 158,
312
+ 1033, 1321, -194, -79, -543, -88, -193, 742, 741, 956,
313
+ 957, 653, 26,-32766, 522, -51, -543, 33, -549, 894,
314
+ 952, -111, -111, -111, 32, 111, 112, 113, 114, 115,
315
+ 116, 117, 118, 119, 120, 121, 122, 123, -59, 75,
316
+ 28, 672, 673, 326, -58, 36, 250, 920, 124, 707,
317
+ 125, 920, 833, 707, -154, 130, 1266, 131,-32766, -547,
318
+ 144, -542, 150, 406, 1234, 377, 378, 1146, 1148, 382,
319
+ 383,-32766,-32766,-32766, -85,-32766, 1056,-32766, -542,-32766,
320
+ 644, 645,-32766, 159, 160, 161, 1232,-32766,-32766,-32766,
321
+ 162, -79, 1227,-32766,-32766, 742, 741, 163, -302,-32766,
322
+ 419, -75, -4, 918, -73, 287, 526, 527,-32766, 1255,
323
+ 1256, 1257, 1258, 1252, 1253, -72, -71, -70, -69, -68,
324
+ -67, 1259, 1254, -547, -547, -542, -542, 742, 741, -66,
325
+ -47, -18,-32766, 73, 148, 918, 322, 326, 1234, 273,
326
+ -542, 284, -542, -542, 723,-32766,-32766,-32766, 726,-32766,
327
+ -547,-32766, -542,-32766, 917, 147,-32766, -542, 288, 289,
328
+ -298,-32766,-32766,-32766,-32766, 713, 279,-32766,-32766, -542,
329
+ 1234, 280, 285,-32766, 419, 48, 286,-32766,-32766,-32766,
330
+ 332,-32766,-32766,-32766, 292,-32766, 908, 293,-32766, 934,
331
+ 274, 1030, 918,-32766,-32766,-32766, 110, 682, 132,-32766,
332
+ -32766, 833, 146,-32766, 559,-32766, 419, 659, 374, 824,
333
+ 435, 1349, 74, 1033,-32766, 296, 654, 1116, 908, 956,
334
+ 957, 306, 714, 698, 522, 555, 303, 13, 310, 852,
335
+ 952, -111, -111, -111, 700, 463, 492, 953, 283, 299,
336
+ 300,-32766, 49, 675, 918, 304, 660, 1234, 676, 936,
337
+ 1273,-32766, 10, 1263,-32766,-32766,-32766, 642,-32766, 918,
338
+ -32766, 920,-32766, 707, -4,-32766, 126, 34, 918, 565,
339
+ -32766,-32766,-32766,-32766, 0, 908,-32766,-32766, 0, 1234,
340
+ 918, 0,-32766, 419, 0, 0,-32766,-32766,-32766, 717,
341
+ -32766,-32766,-32766, 920,-32766, 707, 1033,-32766, 724, 1275,
342
+ 0, 487,-32766,-32766,-32766,-32766, 301, 302,-32766,-32766,
343
+ -507, 1234, 571, -497,-32766, 419, 607, 8,-32766,-32766,
344
+ -32766, 372,-32766,-32766,-32766, 17,-32766, 908, 371,-32766,
345
+ 832, 298, 320, 128,-32766,-32766,-32766, 40, 370, 41,
346
+ -32766,-32766, 908, -250, -250, -250,-32766, 419, 731, 374,
347
+ 973, 908, 707, 732, 899,-32766, 997, 974, 728, 981,
348
+ 956, 957, 971, 908, 982, 522, 897, 969, 1090, 1093,
349
+ 894, 952, -111, -111, -111, 28, 1094, 1091, 1092, -249,
350
+ -249, -249, 1241, 1098, 708, 374, 844, 833, 1288, 1306,
351
+ 1340, 1266, 647, 1267, 711, 715, 956, 957, 716, 1241,
352
+ 718, 522, 920, 719, 707, -250, 894, 952, -111, -111,
353
+ -111, 720, -16, 721, 725, 710, -511, 920, 895, 707,
354
+ -578, 1232, 1344, 1346, 855, 854, 920, 1227, 707, -577,
355
+ 863, 946, 989, 862, 1345, 945, 943, 944, 920, 947,
356
+ 707, -249, 527, 1218, 1255, 1256, 1257, 1258, 1252, 1253,
357
+ 927, 937, 925, 979, 980, 631, 1259, 1254, 1343, 1300,
358
+ -32766, 1289, 1307, 833, 1316, -275, 1234, -576, 73, -550,
359
+ -549, 322, 326,-32766,-32766,-32766, -548,-32766, -491,-32766,
360
+ 833,-32766, 1, 29,-32766, 30, 39, 43, 47,-32766,
361
+ -32766,-32766, 72, 76, 77,-32766,-32766, 1232, -111, -111,
362
+ 78,-32766, 419, -111, 79, 80, 81, 143, 153, -111,
363
+ -32766, 157, 246, 328, 1232, -111, -111, 356,-32766, 357,
364
+ -111, 358, 359, 360, 361, 362, -111, 363, 364, 365,
365
+ 366, 368, 436, 0, -273,-32766, -272, 19, 20, 298,
366
+ 21, 22, 24, 405, 75, 1203, 483, 484, 326, 491,
367
+ 0, 494, 495, 496, 497, 501, 298, 502, 503, 510,
368
+ 693, 75, 0, 1245, 1186, 326, 1264, 1059, 1058, 1039,
369
+ 1222, 1035, -277, -103, 18, 23, 27, 295, 404, 600,
370
+ 604, 633, 699, 1190, 1240, 1187, 1319, 0, 0, 0,
371
+ 326
515
372
  );
516
373
 
517
- protected array $actionCheck = array(
374
+ protected $actionCheck = array(
518
375
  2, 3, 4, 5, 6, 7, 0, 9, 10, 11,
519
- 12, 13, 9, 10, 11, 14, 9, 10, 11, 44,
376
+ 12, 13, 70, 9, 10, 11, 9, 10, 11, 44,
520
377
  45, 46, 47, 48, 49, 50, 51, 52, 116, 117,
521
378
  118, 119, 120, 121, 122, 37, 38, 30, 116, 32,
522
379
  33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
523
- 43, 1, 1, 9, 1, 57, 9, 10, 11, 137,
524
- 1, 9, 10, 11, 50, 51, 52, 8, 1, 71,
525
- 72, 73, 74, 75, 76, 77, 31, 30, 80, 32,
526
- 33, 31, 30, 14, 1, 87, 88, 89, 90, 91,
380
+ 43, 8, 53, 54, 55, 57, 57, 106, 107, 137,
381
+ 9, 10, 11, 50, 51, 52, 1, 116, 69, 71,
382
+ 72, 73, 74, 75, 76, 77, 134, 135, 80, 1,
383
+ 30, 30, 30, 32, 33, 87, 88, 89, 90, 91,
527
384
  92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
528
385
  102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
529
386
  112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
530
- 122, 123, 124, 125, 126, 116, 128, 129, 130, 131,
531
- 132, 133, 82, 80, 136, 137, 138, 139, 140, 141,
532
- 142, 143, 144, 80, 129, 130, 131, 138, 150, 151,
533
- 152, 1, 154, 8, 2, 3, 4, 5, 6, 7,
534
- 162, 9, 10, 11, 12, 13, 8, 117, 118, 1,
535
- 161, 8, 122, 9, 10, 11, 8, 8, 128, 116,
536
- 117, 118, 119, 120, 121, 122, 51, 137, 8, 37,
537
- 38, 53, 54, 55, 30, 57, 32, 33, 34, 35,
538
- 36, 37, 38, 80, 159, 8, 8, 69, 158, 57,
539
- 159, 161, 9, 10, 11, 80, 163, 167, 83, 160,
540
- 167, 162, 8, 71, 72, 73, 74, 75, 76, 77,
541
- 163, 162, 80, 30, 167, 32, 33, 34, 35, 87,
542
- 88, 89, 90, 91, 92, 93, 94, 95, 96, 97,
543
- 98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
544
- 108, 109, 110, 111, 112, 113, 114, 115, 116, 117,
545
- 118, 119, 120, 121, 122, 123, 124, 125, 126, 156,
546
- 128, 129, 130, 131, 132, 133, 163, 8, 136, 137,
547
- 138, 139, 140, 141, 142, 143, 144, 16, 9, 10,
548
- 11, 31, 150, 151, 152, 8, 154, 2, 3, 4,
549
- 5, 6, 7, 163, 9, 10, 11, 12, 13, 30,
550
- 162, 32, 33, 34, 35, 36, 37, 38, 39, 40,
551
- 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
552
- 51, 52, 53, 54, 55, 8, 57, 31, 9, 10,
553
- 11, 16, 9, 10, 11, 117, 118, 14, 69, 162,
554
- 122, 8, 57, 9, 10, 11, 128, 97, 30, 30,
555
- 1, 32, 33, 34, 35, 36, 71, 72, 73, 74,
556
- 75, 76, 77, 8, 30, 80, 32, 33, 34, 106,
557
- 80, 108, 87, 88, 89, 90, 91, 92, 93, 94,
558
- 95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
559
- 105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
560
- 115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
561
- 125, 126, 70, 128, 129, 130, 131, 132, 133, 8,
562
- 70, 136, 137, 138, 139, 140, 141, 142, 143, 144,
563
- 116, 106, 1, 108, 116, 150, 151, 152, 2, 3,
564
- 4, 5, 6, 7, 80, 155, 156, 157, 12, 13,
565
- 101, 15, 138, 1, 164, 106, 138, 108, 30, 163,
566
- 37, 38, 113, 106, 107, 116, 117, 118, 119, 120,
567
- 121, 122, 123, 116, 1, 161, 134, 135, 14, 161,
568
- 106, 107, 1, 31, 134, 135, 50, 51, 8, 101,
569
- 116, 70, 56, 85, 58, 59, 60, 61, 62, 63,
570
- 64, 65, 66, 67, 68, 163, 70, 71, 72, 73,
571
- 74, 123, 8, 164, 78, 79, 80, 162, 82, 14,
572
- 156, 70, 86, 87, 88, 89, 8, 91, 97, 93,
573
- 1, 95, 158, 80, 98, 99, 84, 1, 8, 103,
574
- 104, 105, 106, 107, 116, 109, 110, 119, 120, 121,
575
- 122, 115, 116, 8, 146, 134, 135, 84, 122, 8,
576
- 124, 125, 126, 82, 1, 82, 138, 31, 85, 116,
577
- 149, 14, 136, 137, 116, 139, 140, 141, 142, 143,
578
- 144, 145, 161, 122, 163, 134, 135, 151, 152, 161,
579
- 137, 155, 156, 157, 158, 8, 138, 161, 1, 8,
580
- 149, 165, 166, 167, 75, 76, 77, 1, 155, 156,
581
- 157, 159, 161, 84, 163, 163, 122, 1, 137, 90,
582
- 84, 92, 161, 94, 8, 96, 106, 116, 108, 159,
583
- 147, 148, 159, 163, 14, 106, 163, 31, 106, 160,
584
- 108, 162, 161, 14, 70, 82, 117, 118, 167, 138,
585
- 16, 122, 1, 9, 10, 161, 127, 128, 129, 130,
586
- 131, 16, 17, 18, 19, 20, 21, 22, 23, 24,
587
- 25, 26, 27, 28, 29, 37, 38, 75, 76, 82,
588
- 117, 118, 31, 37, 38, 122, 14, 155, 159, 16,
589
- 84, 128, 163, 164, 16, 159, 75, 76, 16, 163,
590
- 137, 101, 102, 16, 59, 60, 70, 16, 134, 135,
591
- 106, 107, 74, 106, 107, 70, 70, 16, 80, 1,
592
- 16, 158, 1, 149, 161, 87, 88, 89, 82, 91,
593
- 167, 93, 86, 95, 31, 84, 98, 163, 111, 112,
594
- 16, 103, 104, 105, 0, 1, 31, 109, 110, 31,
595
- 16, 30, 16, 115, 116, 35, 31, 31, 31, 31,
596
- 163, 30, 124, 31, 167, 159, 37, 38, 122, 163,
597
- 134, 135, 31, 31, 31, 35, 160, 31, 162, 134,
598
- 135, 31, 136, 137, 31, 139, 140, 141, 142, 143,
599
- 144, 31, 154, 31, 149, 31, 31, 151, 152, 163,
600
- 70, 31, 84, 74, 31, 31, 31, 161, 163, 80,
601
- 159, 80, 166, 167, 163, 35, 87, 88, 89, 35,
602
- 91, 35, 93, 35, 95, 35, 37, 98, 84, 37,
603
- 37, 70, 103, 104, 105, 37, 57, 116, 109, 110,
604
- 38, 69, 31, 77, 115, 116, 70, 116, 80, 80,
605
- 106, 92, 108, 124, 83, 97, 89, 113, 113, 138,
606
- 82, 117, 118, 82, 134, 135, 122, 85, 137, 138,
607
- 114, 127, 128, 129, 130, 131, 31, 159, 155, 149,
608
- 97, 163, 161, 96, 90, 74, 155, 156, 157, 94,
609
- 133, 80, 161, 163, 150, 134, 135, 97, 87, 88,
610
- 89, 100, 91, 159, 93, 100, 95, 163, 164, 98,
611
- 149, 159, 149, 128, 103, 104, 105, 162, 164, 74,
612
- 109, 110, 1, 132, 163, 80, 115, 116, 132, -1,
613
- 153, -1, 87, 88, 89, 124, 91, -1, 93, -1,
614
- 95, 137, -1, 98, -1, 146, 149, -1, 103, 104,
615
- 105, 74, 146, -1, 109, 110, 149, 80, 149, 149,
616
- 115, 116, 1, 160, 87, 88, 89, 153, 91, 124,
617
- 93, 154, 95, 158, 161, 98, 160, 159, 159, 102,
618
- 103, 104, 105, 74, 159, 159, 109, 110, 159, 80,
619
- 81, 159, 115, 116, 159, 159, 87, 88, 89, 159,
620
- 91, 124, 93, 159, 95, 84, 159, 98, 159, 159,
621
- 159, 159, 103, 104, 105, 159, 159, 159, 109, 110,
622
- 160, 100, 101, 102, 115, 116, 160, 106, 160, 160,
623
- 70, 71, 161, 124, 161, 161, 161, 161, 117, 118,
624
- 161, 161, 82, 122, 161, 84, 86, 161, 127, 128,
625
- 129, 130, 131, 161, 161, 161, 161, 161, 161, 161,
626
- 161, 100, 101, 102, 161, 161, 161, 106, 161, 161,
627
- 164, 161, 161, 161, 161, 161, 161, 161, 117, 118,
628
- 159, 161, 122, 122, 163, 164, 161, 161, 127, 128,
629
- 129, 130, 131, 161, 161, 161, 161, 137, 70, 139,
630
- 140, 141, 142, 143, 144, 161, 161, 164, 162, 162,
631
- 82, 151, 152, 162, 86, 162, 74, 162, 162, 162,
632
- 159, 161, 80, 164, 163, 164, 166, 167, 162, 87,
633
- 88, 89, 162, 91, 162, 93, 162, 95, 162, 162,
634
- 98, 162, 162, 162, 162, 103, 104, 105, 162, 162,
635
- 122, 109, 110, 162, 162, 162, 162, 115, 116, 162,
636
- 162, 162, 162, 162, 162, 137, 124, 139, 140, 141,
637
- 142, 143, 144, 162, 162, 162, 162, 162, 162, 151,
638
- 152, 162, 162, 162, 162, 162, 162, 162, 162, 161,
639
- 163, 162, -1, 163, 166, 167, 163, 163, 163, 163,
640
- 163, 163, 163, 163, 163, -1, 163, 163, -1, 164,
641
- 164, 164, 164, 164, 164, 164, 164, 164, 164, 164,
387
+ 122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
388
+ 132, 133, 80, 70, 136, 137, 138, 139, 140, 141,
389
+ 142, 143, 144, 8, 1, 106, 80, 108, 150, 151,
390
+ 152, 8, 154, 9, 10, 11, 2, 3, 4, 5,
391
+ 6, 7, 164, 9, 10, 11, 12, 13, 116, 119,
392
+ 120, 121, 122, 106, 30, 108, 32, 33, 34, 35,
393
+ 36, 37, 38, 9, 10, 11, 106, 107, 138, 137,
394
+ 138, 37, 38, 9, 10, 11, 116, 134, 135, 1,
395
+ 9, 10, 11, 137, 30, 14, 8, 155, 156, 157,
396
+ 1, 57, 149, 163, 30, 163, 32, 33, 34, 35,
397
+ 36, 155, 156, 157, 161, 71, 72, 73, 74, 75,
398
+ 76, 77, 8, 31, 80, 129, 130, 131, 158, 161,
399
+ 8, 87, 88, 89, 90, 91, 92, 93, 94, 95,
400
+ 96, 97, 98, 99, 100, 101, 102, 103, 104, 105,
401
+ 106, 107, 108, 109, 110, 111, 112, 113, 114, 115,
402
+ 116, 117, 118, 119, 120, 121, 122, 123, 124, 125,
403
+ 126, 127, 128, 129, 130, 131, 132, 133, 8, 80,
404
+ 136, 137, 138, 139, 140, 141, 142, 143, 144, 164,
405
+ 9, 10, 11, 160, 150, 151, 152, 164, 154, 2,
406
+ 3, 4, 5, 6, 7, 80, 9, 10, 11, 12,
407
+ 13, 30, 8, 32, 33, 34, 35, 36, 37, 38,
408
+ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
409
+ 49, 50, 51, 52, 53, 54, 55, 30, 57, 1,
410
+ 8, 116, 117, 118, 119, 120, 121, 122, 160, 106,
411
+ 69, 108, 164, 161, 57, 9, 10, 11, 9, 10,
412
+ 161, 1, 1, 37, 38, 1, 167, 31, 71, 72,
413
+ 73, 74, 75, 76, 77, 8, 30, 80, 32, 33,
414
+ 34, 35, 14, 85, 87, 88, 89, 90, 91, 92,
415
+ 93, 94, 95, 96, 97, 98, 99, 100, 101, 102,
416
+ 103, 104, 105, 106, 107, 108, 109, 110, 111, 112,
417
+ 113, 114, 115, 116, 117, 118, 119, 120, 121, 122,
418
+ 123, 124, 125, 126, 127, 128, 129, 130, 131, 132,
419
+ 133, 8, 122, 136, 137, 138, 139, 140, 141, 142,
420
+ 143, 144, 8, 51, 146, 138, 82, 150, 151, 152,
421
+ 2, 3, 4, 5, 6, 7, 106, 97, 108, 1,
422
+ 12, 13, 101, 15, 9, 10, 11, 106, 80, 108,
423
+ 163, 1, 80, 163, 113, 83, 8, 116, 117, 118,
424
+ 119, 120, 121, 122, 123, 30, 8, 32, 33, 34,
425
+ 8, 117, 118, 80, 31, 159, 122, 159, 50, 51,
426
+ 8, 80, 128, 70, 56, 155, 58, 59, 60, 61,
427
+ 62, 63, 64, 65, 66, 67, 68, 1, 70, 71,
428
+ 72, 73, 74, 162, 9, 161, 78, 79, 80, 1,
429
+ 82, 167, 164, 1, 86, 87, 88, 89, 122, 91,
430
+ 101, 93, 84, 95, 156, 8, 98, 99, 8, 161,
431
+ 138, 103, 104, 105, 106, 107, 8, 109, 110, 31,
432
+ 97, 8, 123, 115, 116, 70, 8, 134, 135, 156,
433
+ 122, 8, 124, 125, 126, 163, 155, 156, 157, 163,
434
+ 116, 8, 149, 162, 136, 137, 8, 139, 140, 141,
435
+ 142, 143, 144, 145, 161, 14, 163, 160, 82, 151,
436
+ 152, 164, 138, 155, 156, 157, 158, 75, 76, 77,
437
+ 14, 163, 84, 165, 166, 167, 84, 159, 116, 161,
438
+ 82, 14, 90, 85, 92, 14, 94, 163, 96, 134,
439
+ 135, 161, 116, 159, 1, 161, 14, 167, 106, 14,
440
+ 138, 8, 164, 16, 149, 31, 164, 37, 38, 117,
441
+ 118, 75, 76, 137, 122, 31, 161, 14, 163, 127,
442
+ 128, 129, 130, 131, 16, 17, 18, 19, 20, 21,
443
+ 22, 23, 24, 25, 26, 27, 28, 29, 16, 163,
444
+ 70, 75, 76, 167, 16, 147, 148, 159, 16, 161,
445
+ 16, 159, 82, 161, 162, 16, 86, 16, 74, 70,
446
+ 16, 70, 101, 102, 80, 106, 107, 59, 60, 106,
447
+ 107, 87, 88, 89, 31, 91, 1, 93, 70, 95,
448
+ 111, 112, 98, 16, 16, 16, 116, 103, 104, 105,
449
+ 16, 31, 122, 109, 110, 37, 38, 16, 35, 115,
450
+ 116, 31, 0, 1, 31, 30, 136, 137, 124, 139,
451
+ 140, 141, 142, 143, 144, 31, 31, 31, 31, 31,
452
+ 31, 151, 152, 134, 135, 134, 135, 37, 38, 31,
453
+ 31, 31, 74, 163, 31, 1, 166, 167, 80, 31,
454
+ 149, 31, 134, 135, 31, 87, 88, 89, 31, 91,
455
+ 161, 93, 161, 95, 31, 31, 98, 149, 37, 37,
456
+ 35, 103, 104, 105, 74, 31, 35, 109, 110, 161,
457
+ 80, 35, 35, 115, 116, 70, 35, 87, 88, 89,
458
+ 35, 91, 124, 93, 37, 95, 84, 37, 98, 38,
459
+ 57, 116, 1, 103, 104, 105, 69, 77, 31, 109,
460
+ 110, 82, 70, 85, 89, 115, 116, 96, 106, 80,
461
+ 108, 83, 154, 138, 124, 113, 90, 82, 84, 117,
462
+ 118, 114, 31, 80, 122, 85, 132, 97, 132, 127,
463
+ 128, 129, 130, 131, 92, 97, 97, 128, 163, 134,
464
+ 135, 74, 70, 94, 1, 133, 100, 80, 100, 154,
465
+ 146, 137, 150, 160, 87, 88, 89, 113, 91, 1,
466
+ 93, 159, 95, 161, 162, 98, 161, 161, 1, 153,
467
+ 103, 104, 105, 74, -1, 84, 109, 110, -1, 80,
468
+ 1, -1, 115, 116, -1, -1, 87, 88, 89, 31,
469
+ 91, 124, 93, 159, 95, 161, 138, 98, 31, 146,
470
+ -1, 102, 103, 104, 105, 74, 134, 135, 109, 110,
471
+ 149, 80, 81, 149, 115, 116, 153, 149, 87, 88,
472
+ 89, 149, 91, 124, 93, 149, 95, 84, 149, 98,
473
+ 155, 158, 161, 161, 103, 104, 105, 159, 161, 159,
474
+ 109, 110, 84, 100, 101, 102, 115, 116, 159, 106,
475
+ 159, 84, 161, 159, 159, 124, 159, 159, 162, 159,
476
+ 117, 118, 159, 84, 159, 122, 159, 159, 159, 159,
477
+ 127, 128, 129, 130, 131, 70, 159, 159, 159, 100,
478
+ 101, 102, 1, 159, 161, 106, 160, 82, 160, 160,
479
+ 160, 86, 160, 166, 161, 161, 117, 118, 161, 1,
480
+ 161, 122, 159, 161, 161, 162, 127, 128, 129, 130,
481
+ 131, 161, 31, 161, 161, 161, 165, 159, 162, 161,
482
+ 163, 116, 162, 162, 162, 162, 159, 122, 161, 163,
483
+ 162, 162, 162, 162, 162, 162, 162, 162, 159, 162,
484
+ 161, 162, 137, 162, 139, 140, 141, 142, 143, 144,
485
+ 162, 162, 162, 162, 162, 162, 151, 152, 162, 162,
486
+ 74, 162, 162, 82, 162, 164, 80, 163, 163, 163,
487
+ 163, 166, 167, 87, 88, 89, 163, 91, 163, 93,
488
+ 82, 95, 163, 163, 98, 163, 163, 163, 163, 103,
489
+ 104, 105, 163, 163, 163, 109, 110, 116, 117, 118,
490
+ 163, 115, 116, 122, 163, 163, 163, 163, 163, 128,
491
+ 124, 163, 163, 163, 116, 117, 118, 163, 137, 163,
492
+ 122, 163, 163, 163, 163, 163, 128, 163, 163, 163,
493
+ 163, 163, 163, -1, 164, 137, 164, 164, 164, 158,
494
+ 164, 164, 164, 164, 163, 165, 164, 164, 167, 164,
495
+ -1, 164, 164, 164, 164, 164, 158, 164, 164, 164,
496
+ 164, 163, -1, 164, 164, 167, 164, 164, 164, 164,
642
497
  164, 164, 164, 164, 164, 164, 164, 164, 164, 164,
643
- 164, 164, -1, 165, -1, 166, -1, 167
498
+ 164, 164, 164, 164, 164, 164, 164, -1, -1, -1,
499
+ 167
644
500
  );
645
501
 
646
- protected array $actionBase = array(
647
- 0, -2, 152, 549, 764, 941, 981, 751, 617, 310,
648
- 123, 877, 556, 671, 671, 738, 671, 472, 626, 789,
649
- 63, 305, 305, 789, 305, 493, 493, 493, 658, 658,
650
- 658, 658, 749, 749, 897, 897, 929, 865, 831, 1062,
651
- 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062,
652
- 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062,
653
- 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062,
654
- 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062,
655
- 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062,
656
- 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062,
657
- 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062,
658
- 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062,
659
- 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062,
660
- 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062,
661
- 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062,
662
- 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062,
663
- 1062, 1062, 1062, 1062, 51, 45, 451, 692, 1036, 1044,
664
- 1040, 1045, 1034, 1033, 1039, 1041, 1046, 1083, 1084, 795,
665
- 1085, 1086, 1082, 1087, 1042, 889, 1035, 1043, 289, 289,
666
- 289, 289, 289, 289, 289, 289, 289, 289, 289, 289,
667
- 289, 289, 289, 289, 289, 289, 289, 289, 289, 289,
668
- 289, 289, 289, 289, 289, 44, 343, 664, 3, 3,
669
- 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
670
- 3, 3, 3, 3, 3, 3, 3, 3, 52, 52,
671
- 52, 666, 666, 47, 354, 980, 203, 1048, 1048, 1048,
672
- 1048, 1048, 1048, 1048, 1048, 1048, 665, 339, 164, 164,
673
- 7, 7, 7, 7, 7, 50, 369, 583, -25, -25,
674
- -25, -25, 448, 741, 501, 408, 283, 338, 394, 334,
675
- 334, 14, 14, 531, 531, 9, 9, 531, 531, 531,
676
- 478, 478, 478, 478, 441, 471, 552, 428, 824, 53,
677
- 53, 53, 53, 824, 824, 824, 824, 826, 1089, 824,
678
- 824, 824, 594, 750, 750, 781, 138, 138, 138, 750,
679
- 540, 503, 503, 540, 238, 503, 67, 135, -78, 805,
680
- 377, 499, -78, 362, 656, 636, 59, 743, 624, 743,
681
- 1032, 481, 802, 802, 514, 773, 746, 878, 1064, 1049,
682
- 821, 1080, 825, 1081, 15, 370, 745, 1031, 1031, 1031,
683
- 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1090, 443,
684
- 1032, 384, 1090, 1090, 1090, 443, 443, 443, 443, 443,
685
- 443, 443, 443, 443, 443, 647, 384, 622, 641, 384,
686
- 810, 443, 51, 817, 51, 51, 51, 51, 51, 51,
687
- 51, 51, 51, 51, 780, 316, 51, 45, 150, 150,
688
- 490, 83, 150, 150, 150, 150, 51, 51, 51, 51,
689
- 624, 799, 797, 627, 834, 375, 799, 799, 799, 270,
690
- 158, 69, 197, 740, 760, 345, 788, 788, 801, 900,
691
- 900, 788, 798, 788, 801, 914, 788, 788, 900, 900,
692
- 835, 180, 550, 353, 524, 565, 900, 279, 788, 788,
693
- 788, 788, 816, 571, 788, 214, 198, 788, 788, 816,
694
- 811, 785, 145, 777, 900, 900, 900, 816, 500, 777,
695
- 777, 777, 839, 845, 765, 784, 337, 297, 611, 169,
696
- 822, 784, 784, 788, 538, 765, 784, 765, 784, 837,
697
- 784, 784, 784, 765, 784, 798, 431, 784, 721, 607,
698
- 163, 784, 6, 915, 916, 723, 917, 912, 918, 964,
699
- 919, 923, 1054, 899, 930, 913, 924, 965, 906, 903,
700
- 794, 693, 698, 827, 783, 896, 792, 792, 792, 894,
701
- 792, 792, 792, 792, 792, 792, 792, 792, 693, 823,
702
- 830, 787, 933, 702, 707, 1011, 819, 926, 1088, 932,
703
- 1013, 925, 772, 711, 977, 934, 774, 1050, 935, 936,
704
- 986, 1014, 846, 1017, 963, 796, 979, 1065, 836, 945,
705
- 1055, 792, 915, 923, 735, 913, 924, 906, 903, 770,
706
- 766, 762, 763, 761, 752, 747, 748, 782, 1018, 893,
707
- 833, 880, 940, 895, 693, 886, 971, 1047, 990, 992,
708
- 1053, 803, 791, 888, 1066, 946, 952, 953, 1056, 1019,
709
- 1057, 838, 973, 775, 994, 820, 1067, 996, 997, 999,
710
- 1000, 1058, 1068, 1059, 891, 1060, 849, 814, 966, 807,
711
- 1069, 1, 806, 808, 818, 955, 484, 931, 1061, 1070,
712
- 1071, 1001, 1002, 1006, 1072, 1073, 927, 852, 975, 815,
713
- 976, 967, 855, 856, 525, 813, 1020, 800, 804, 812,
714
- 577, 640, 1074, 1075, 1076, 928, 790, 786, 860, 864,
715
- 1021, 809, 1022, 1077, 649, 867, 724, 1078, 1012, 744,
716
- 754, 281, 654, 335, 756, 779, 1063, 829, 776, 778,
717
- 954, 754, 793, 869, 1079, 870, 871, 872, 1007, 876,
502
+ protected $actionBase = array(
503
+ 0, -2, 154, 542, 752, 893, 929, 52, 374, 431,
504
+ 398, 869, 793, 235, 307, 307, 793, 307, 784, 908,
505
+ 908, 917, 908, 538, 841, 468, 468, 468, 708, 708,
506
+ 708, 708, 740, 740, 849, 849, 881, 817, 634, 1036,
507
+ 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036,
508
+ 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036,
509
+ 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036,
510
+ 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036,
511
+ 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036,
512
+ 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036,
513
+ 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036,
514
+ 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036,
515
+ 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036,
516
+ 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036,
517
+ 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036,
518
+ 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036,
519
+ 1036, 1036, 1036, 1036, 348, 346, 370, 653, 1063, 1069,
520
+ 1065, 1070, 1061, 1060, 1064, 1066, 1071, 946, 947, 774,
521
+ 949, 950, 943, 952, 1067, 882, 1062, 1068, 291, 291,
522
+ 291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
523
+ 291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
524
+ 291, 291, 291, 291, 291, 525, 191, 359, 4, 4,
525
+ 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
526
+ 4, 4, 4, 4, 4, 4, 4, 4, 174, 174,
527
+ 174, 620, 620, 51, 465, 356, 955, 955, 955, 955,
528
+ 955, 955, 955, 955, 955, 955, 658, 184, 144, 144,
529
+ 7, 7, 7, 7, 7, 1031, 371, 1048, -25, -25,
530
+ -25, -25, 50, 725, 526, 449, 39, 317, 80, 474,
531
+ 474, 13, 13, 512, 512, 422, 422, 512, 512, 512,
532
+ 808, 808, 808, 808, 443, 505, 360, 308, -78, 209,
533
+ 209, 209, 209, -78, -78, -78, -78, 803, 877, -78,
534
+ -78, -78, 63, 641, 641, 822, -1, -1, -1, 641,
535
+ 253, 790, 548, 253, 384, 548, 480, 402, 764, 759,
536
+ -49, 447, 764, 639, 755, 198, 143, 825, 609, 825,
537
+ 1059, 320, 768, 426, 749, 720, 874, 904, 1072, 796,
538
+ 941, 798, 942, 106, -58, 710, 1058, 1058, 1058, 1058,
539
+ 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1073, 336, 1059,
540
+ 423, 1073, 1073, 1073, 336, 336, 336, 336, 336, 336,
541
+ 336, 336, 336, 336, 619, 423, 586, 616, 423, 795,
542
+ 336, 348, 814, 348, 348, 348, 348, 348, 348, 348,
543
+ 348, 348, 348, 750, 202, 348, 346, 78, 78, 484,
544
+ 65, 78, 78, 78, 78, 348, 348, 348, 348, 609,
545
+ 783, 766, 613, 813, 492, 783, 783, 783, 473, 135,
546
+ 378, 488, 713, 775, 67, 779, 779, 785, 969, 969,
547
+ 779, 769, 779, 785, 975, 779, 779, 969, 969, 823,
548
+ 280, 563, 478, 550, 568, 969, 377, 779, 779, 779,
549
+ 779, 746, 573, 779, 342, 314, 779, 779, 746, 744,
550
+ 760, 43, 762, 969, 969, 969, 746, 547, 762, 762,
551
+ 762, 839, 844, 794, 758, 444, 433, 588, 232, 801,
552
+ 758, 758, 779, 558, 794, 758, 794, 758, 745, 758,
553
+ 758, 758, 794, 758, 769, 502, 758, 717, 583, 224,
554
+ 758, 6, 979, 980, 624, 981, 973, 987, 1019, 991,
555
+ 992, 873, 965, 999, 974, 993, 972, 970, 773, 682,
556
+ 684, 818, 811, 963, 777, 777, 777, 956, 777, 777,
557
+ 777, 777, 777, 777, 777, 777, 682, 743, 829, 765,
558
+ 1006, 689, 691, 754, 906, 901, 1030, 1004, 1049, 994,
559
+ 828, 694, 1028, 1008, 846, 821, 1009, 1010, 1029, 1050,
560
+ 1052, 910, 782, 911, 912, 876, 1012, 883, 777, 979,
561
+ 992, 693, 974, 993, 972, 970, 748, 739, 737, 738,
562
+ 736, 735, 723, 734, 753, 1053, 954, 907, 878, 1011,
563
+ 957, 682, 879, 1023, 756, 1032, 1033, 827, 788, 778,
564
+ 880, 913, 1014, 1015, 1016, 884, 1054, 887, 830, 1024,
565
+ 951, 1035, 789, 918, 1037, 1038, 1039, 1040, 889, 919,
566
+ 892, 916, 900, 845, 776, 1020, 761, 920, 591, 787,
567
+ 791, 800, 1018, 606, 1000, 902, 921, 922, 1041, 1043,
568
+ 1044, 923, 924, 995, 847, 1026, 799, 1027, 1022, 848,
569
+ 850, 617, 797, 1055, 781, 786, 772, 621, 632, 925,
570
+ 927, 931, 998, 763, 770, 853, 855, 1056, 771, 1057,
571
+ 938, 635, 857, 718, 939, 1046, 719, 724, 637, 678,
572
+ 672, 731, 792, 903, 826, 757, 780, 1017, 724, 767,
573
+ 858, 940, 859, 860, 867, 1045, 868, 0, 0, 0,
718
574
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
719
575
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
576
+ 0, 0, 0, 0, 0, 0, 0, 458, 458, 458,
577
+ 458, 458, 458, 307, 307, 307, 307, 307, 307, 307,
578
+ 0, 0, 307, 0, 458, 458, 458, 458, 458, 458,
579
+ 458, 458, 458, 458, 458, 458, 458, 458, 458, 458,
580
+ 458, 458, 458, 458, 458, 458, 458, 458, 458, 458,
581
+ 458, 458, 458, 458, 458, 458, 458, 458, 458, 458,
582
+ 458, 458, 458, 458, 458, 458, 458, 458, 458, 458,
583
+ 458, 458, 458, 458, 458, 458, 458, 458, 458, 458,
584
+ 458, 458, 458, 458, 458, 458, 458, 458, 458, 458,
585
+ 458, 458, 458, 458, 458, 458, 458, 458, 458, 458,
586
+ 458, 458, 458, 458, 458, 458, 458, 458, 458, 458,
587
+ 458, 458, 458, 458, 458, 458, 458, 458, 458, 458,
588
+ 458, 458, 458, 458, 458, 458, 458, 458, 458, 458,
589
+ 458, 458, 458, 458, 458, 458, 458, 458, 458, 458,
590
+ 458, 458, 458, 458, 458, 458, 458, 458, 458, 458,
591
+ 458, 458, 458, 458, 458, 458, 458, 458, 458, 458,
592
+ 458, 458, 458, 458, 458, 458, 458, 458, 458, 458,
593
+ 291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
594
+ 291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
595
+ 291, 291, 291, 291, 0, 0, 0, 0, 0, 0,
720
596
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
721
- 456, 456, 456, 456, 456, 456, 305, 305, 305, 305,
722
- 305, 456, 456, 456, 456, 456, 456, 456, 305, 305,
723
- 0, 0, 305, 0, 456, 456, 456, 456, 456, 456,
724
- 456, 456, 456, 456, 456, 456, 456, 456, 456, 456,
725
- 456, 456, 456, 456, 456, 456, 456, 456, 456, 456,
726
- 456, 456, 456, 456, 456, 456, 456, 456, 456, 456,
727
- 456, 456, 456, 456, 456, 456, 456, 456, 456, 456,
728
- 456, 456, 456, 456, 456, 456, 456, 456, 456, 456,
729
- 456, 456, 456, 456, 456, 456, 456, 456, 456, 456,
730
- 456, 456, 456, 456, 456, 456, 456, 456, 456, 456,
731
- 456, 456, 456, 456, 456, 456, 456, 456, 456, 456,
732
- 456, 456, 456, 456, 456, 456, 456, 456, 456, 456,
733
- 456, 456, 456, 456, 456, 456, 456, 456, 456, 456,
734
- 456, 456, 456, 456, 456, 456, 456, 456, 456, 456,
735
- 456, 456, 456, 456, 456, 456, 456, 456, 456, 456,
736
- 456, 456, 456, 456, 456, 456, 456, 456, 456, 456,
737
- 456, 456, 456, 289, 289, 289, 289, 289, 289, 289,
738
- 289, 289, 289, 289, 289, 289, 289, 289, 289, 289,
739
- 289, 289, 289, 289, 289, 289, 289, 0, 0, 0,
740
597
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
598
+ 0, 291, 291, 291, 291, 291, 291, 291, 291, 291,
599
+ 291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
600
+ 291, 291, 291, 291, 291, 291, 291, 66, 66, 291,
601
+ 291, 291, 66, 66, 66, 66, 66, 66, 66, 66,
602
+ 66, 66, 0, 291, 291, 291, 291, 291, 291, 291,
603
+ 291, 66, 823, 66, -1, -1, -1, -1, 66, 66,
604
+ 66, -88, -88, 66, 384, 66, 66, -1, -1, 66,
605
+ 66, 66, 66, 66, 66, 66, 66, 66, 66, 66,
606
+ 0, 0, 423, 548, 66, 769, 769, 769, 769, 66,
607
+ 66, 66, 66, 548, 548, 66, 66, 66, 0, 0,
608
+ 0, 0, 0, 0, 0, 0, 423, 548, 0, 423,
609
+ 0, 0, 769, 769, 66, 384, 823, 643, 66, 0,
610
+ 0, 0, 0, 423, 769, 423, 336, 779, 548, 779,
611
+ 336, 336, 78, 348, 643, 611, 611, 611, 611, 0,
612
+ 0, 609, 823, 823, 823, 823, 823, 823, 823, 823,
613
+ 823, 823, 823, 769, 0, 823, 0, 769, 769, 769,
741
614
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
742
- 0, 0, 0, 0, 289, 289, 289, 289, 289, 289,
743
- 289, 289, 289, 289, 289, 289, 289, 289, 289, 289,
744
- 289, 289, 289, 289, 289, 289, 289, 289, 289, 289,
745
- 473, 473, 289, 289, 473, 289, 473, 473, 473, 473,
746
- 473, 473, 473, 473, 473, 0, 289, 289, 289, 289,
747
- 289, 289, 289, 289, 473, 835, 473, 138, 138, 138,
748
- 138, 473, 473, 473, -88, -88, 473, 238, 473, 473,
749
- 138, 138, 473, 473, 473, 473, 473, 473, 473, 473,
750
- 473, 473, 473, 0, 0, 384, 503, 473, 798, 798,
751
- 798, 798, 473, 473, 473, 473, 503, 503, 473, 473,
752
- 473, 0, 0, 0, 0, 0, 0, 0, 0, 384,
753
- 0, 0, 384, 0, 0, 798, 798, 473, 238, 835,
754
- 168, 473, 0, 0, 0, 0, 384, 798, 384, 443,
755
- 788, 503, 503, 788, 443, 443, 150, 51, 168, 620,
756
- 620, 620, 620, 0, 0, 624, 835, 835, 835, 835,
757
- 835, 835, 835, 835, 835, 835, 835, 798, 0, 835,
758
- 0, 798, 798, 798, 0, 0, 0, 0, 0, 0,
759
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 798,
760
- 0, 0, 900, 0, 0, 0, 0, 0, 0, 0,
761
- 0, 0, 0, 914, 0, 0, 0, 0, 0, 0,
762
- 798, 0, 0, 0, 0, 0, 0, 0, 0, 0,
763
- 792, 803, 0, 803, 0, 792, 792, 792, 0, 0,
764
- 0, 0, 813, 809
615
+ 0, 0, 0, 0, 0, 769, 0, 0, 969, 0,
616
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 975,
617
+ 0, 0, 0, 0, 0, 0, 769, 0, 0, 0,
618
+ 0, 0, 0, 0, 0, 0, 777, 788, 0, 788,
619
+ 0, 777, 777, 777, 0, 0, 0, 0, 797, 771
765
620
  );
766
621
 
767
- protected array $actionDefault = array(
768
- 3,32767, 102,32767,32767,32767,32767,32767,32767,32767,
622
+ protected $actionDefault = array(
623
+ 3,32767, 103,32767,32767,32767,32767,32767,32767,32767,
624
+ 32767,32767,32767,32767,32767,32767, 101,32767,32767,32767,
625
+ 32767,32767,32767,32767,32767,32767,32767,32767, 596, 596,
626
+ 596, 596,32767,32767, 254, 103,32767,32767, 469, 387,
627
+ 387, 387,32767,32767, 540, 540, 540, 540, 540, 540,
628
+ 32767,32767,32767,32767,32767,32767, 469,32767,32767,32767,
769
629
  32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
770
- 32767,32767,32767, 100,32767,32767,32767,32767, 597, 597,
771
- 597, 597,32767,32767, 254, 102,32767,32767, 470, 387,
772
- 387, 387,32767,32767, 541, 541, 541, 541, 541, 541,
773
- 32767,32767,32767,32767,32767,32767, 470,32767,32767,32767,
774
630
  32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
775
631
  32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
776
632
  32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
777
633
  32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
778
634
  32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
635
+ 32767,32767,32767,32767,32767,32767,32767,32767,32767, 101,
636
+ 32767,32767,32767, 37, 7, 8, 10, 11, 50, 17,
637
+ 324,32767,32767,32767,32767, 103,32767,32767,32767,32767,
779
638
  32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
780
- 32767,32767,32767,32767,32767,32767,32767,32767,32767, 100,
781
- 32767,32767,32767, 36, 7, 8, 10, 11, 49, 17,
782
- 324,32767,32767,32767,32767, 102,32767,32767,32767,32767,
639
+ 32767,32767,32767,32767,32767,32767,32767, 589,32767,32767,
783
640
  32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
784
- 32767,32767,32767,32767,32767,32767,32767, 590,32767,32767,
641
+ 32767,32767,32767,32767,32767,32767,32767,32767, 473, 452,
642
+ 453, 455, 456, 386, 541, 595, 327, 592, 385, 146,
643
+ 339, 329, 242, 330, 258, 474, 259, 475, 478, 479,
644
+ 215, 287, 382, 150, 151, 416, 470, 418, 468, 472,
645
+ 417, 392, 397, 398, 399, 400, 401, 402, 403, 404,
646
+ 405, 406, 407, 408, 409, 390, 391, 471, 449, 448,
647
+ 447,32767,32767, 414, 415, 419,32767,32767,32767,32767,
648
+ 32767,32767,32767,32767, 103,32767, 389, 422, 420, 421,
649
+ 438, 439, 436, 437, 440,32767,32767,32767, 441, 442,
650
+ 443, 444, 316,32767,32767, 366, 364, 316, 112,32767,
651
+ 32767, 429, 430,32767,32767,32767,32767,32767,32767,32767,
652
+ 32767,32767,32767,32767, 534, 446,32767,32767,32767,32767,
653
+ 32767,32767,32767,32767,32767,32767,32767,32767,32767, 103,
654
+ 32767, 101, 536, 411, 413, 503, 424, 425, 423, 393,
655
+ 32767, 510,32767, 103,32767, 512,32767,32767,32767,32767,
656
+ 32767,32767,32767, 535,32767, 542, 542,32767, 496, 101,
657
+ 195,32767,32767,32767, 195, 195,32767,32767,32767,32767,
658
+ 32767,32767,32767,32767, 603, 496, 111, 111, 111, 111,
659
+ 111, 111, 111, 111, 111, 111, 111,32767, 195, 111,
660
+ 32767,32767,32767, 101, 195, 195, 195, 195, 195, 195,
661
+ 195, 195, 195, 195, 190,32767, 268, 270, 103, 557,
662
+ 195,32767, 515,32767,32767,32767,32767,32767,32767,32767,
663
+ 32767,32767,32767, 508,32767,32767,32767,32767,32767,32767,
664
+ 32767,32767,32767,32767,32767,32767,32767,32767,32767, 496,
665
+ 434, 139,32767, 139, 542, 426, 427, 428, 498, 542,
666
+ 542, 542, 312, 289,32767,32767,32767,32767, 513, 513,
667
+ 101, 101, 101, 101, 508,32767,32767,32767,32767, 112,
668
+ 100, 100, 100, 100, 100, 104, 102,32767,32767,32767,
669
+ 32767, 223, 100,32767, 102, 102,32767,32767, 223, 225,
670
+ 212, 102, 227,32767, 561, 562, 223, 102, 227, 227,
671
+ 227, 247, 247, 485, 318, 102, 100, 102, 102, 197,
672
+ 318, 318,32767, 102, 485, 318, 485, 318, 199, 318,
673
+ 318, 318, 485, 318,32767, 102, 318, 214, 100, 100,
674
+ 318,32767,32767,32767, 498,32767,32767,32767,32767,32767,
675
+ 32767,32767, 222,32767,32767,32767,32767,32767,32767,32767,
676
+ 529,32767, 546, 559, 432, 433, 435, 544, 457, 458,
677
+ 459, 460, 461, 462, 463, 465, 591,32767, 502,32767,
678
+ 32767,32767, 338, 601,32767, 601,32767,32767,32767,32767,
785
679
  32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
786
- 32767,32767,32767,32767,32767,32767,32767,32767, 474, 453,
787
- 454, 456, 457, 386, 542, 596, 327, 593, 385, 145,
788
- 339, 329, 242, 330, 258, 475, 259, 476, 479, 480,
789
- 215, 287, 382, 149, 150, 417, 471, 419, 469, 473,
790
- 418, 392, 398, 399, 400, 401, 402, 403, 404, 405,
791
- 406, 407, 408, 409, 410, 390, 391, 472, 450, 449,
792
- 448,32767,32767, 415, 416,32767, 420,32767,32767,32767,
793
- 32767,32767,32767,32767, 102,32767, 389, 423, 421, 422,
794
- 439, 440, 437, 438, 441,32767,32767,32767, 442, 443,
795
- 444, 445, 316,32767,32767, 366, 364, 316, 111,32767,
796
- 32767, 430, 431,32767,32767,32767,32767,32767,32767,32767,
797
- 32767,32767,32767,32767, 535, 447,32767,32767,32767,32767,
798
- 32767,32767,32767,32767,32767,32767,32767,32767,32767, 102,
799
- 32767, 100, 537, 412, 414, 504, 425, 426, 424, 393,
800
- 32767, 511,32767, 102,32767, 513,32767,32767,32767,32767,
801
- 32767,32767,32767, 536,32767, 543, 543,32767, 497, 100,
802
- 195,32767,32767, 512,32767, 195, 195,32767,32767,32767,
803
- 32767,32767,32767,32767,32767, 604, 497, 110, 110, 110,
804
- 110, 110, 110, 110, 110, 110, 110, 110,32767, 195,
805
- 110,32767,32767,32767, 100, 195, 195, 195, 195, 195,
806
- 195, 195, 195, 195, 195, 190,32767, 268, 270, 102,
807
- 558, 195,32767, 516,32767,32767,32767,32767,32767,32767,
808
- 32767,32767,32767,32767, 509,32767,32767,32767,32767,32767,
680
+ 32767, 602,32767, 542,32767,32767,32767,32767, 431, 9,
681
+ 76, 491, 43, 44, 52, 58, 519, 520, 521, 522,
682
+ 516, 517, 523, 518,32767,32767, 524, 567,32767,32767,
683
+ 543, 594,32767,32767,32767,32767,32767,32767, 139,32767,
809
684
  32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
810
- 497, 435, 138,32767, 138, 543, 427, 428, 429, 499,
811
- 543, 543, 543, 312, 289,32767,32767,32767,32767, 514,
812
- 514, 100, 100, 100, 100, 509,32767,32767,32767,32767,
813
- 111, 99, 99, 99, 99, 99, 103, 101,32767,32767,
814
- 32767,32767, 223, 99,32767, 101, 101,32767,32767, 223,
815
- 225, 212, 101, 227,32767, 562, 563, 223, 101, 227,
816
- 227, 227, 247, 247, 486, 318, 101, 99, 101, 101,
817
- 197, 318, 318,32767, 101, 486, 318, 486, 318, 199,
818
- 318, 318, 318, 486, 318,32767, 101, 318, 214, 99,
819
- 99, 318,32767,32767,32767, 499,32767,32767,32767,32767,
820
- 32767,32767,32767, 222,32767,32767,32767,32767,32767,32767,
821
- 32767,32767, 530,32767, 547, 560, 433, 434, 436, 545,
822
- 458, 459, 460, 461, 462, 463, 464, 466, 592,32767,
823
- 503,32767,32767,32767, 338,32767, 602,32767,32767,32767,
685
+ 529,32767, 137,32767,32767,32767,32767,32767,32767,32767,
686
+ 32767, 525,32767,32767,32767, 542,32767,32767,32767,32767,
687
+ 314, 311,32767,32767,32767,32767,32767,32767,32767,32767,
688
+ 32767,32767,32767,32767,32767,32767,32767,32767, 542,32767,
689
+ 32767,32767,32767,32767, 291,32767, 308,32767,32767,32767,
824
690
  32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
825
- 32767,32767,32767,32767, 603,32767, 543,32767,32767,32767,
826
- 32767, 432, 9, 74, 492, 42, 43, 51, 57, 520,
827
- 521, 522, 523, 517, 518, 524, 519,32767,32767, 525,
828
- 568,32767,32767, 544, 595,32767,32767,32767,32767,32767,
829
- 32767, 138,32767,32767,32767,32767,32767,32767,32767,32767,
830
- 32767,32767,32767, 530,32767, 136,32767,32767,32767,32767,
831
- 32767,32767,32767,32767, 526,32767,32767,32767, 543,32767,
832
- 32767,32767,32767, 314, 311,32767,32767,32767,32767,32767,
833
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
834
- 32767, 543,32767,32767,32767,32767,32767, 291,32767, 308,
835
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
836
- 32767,32767,32767,32767,32767,32767, 286,32767,32767, 381,
837
- 499, 294, 296, 297,32767,32767,32767,32767, 360,32767,
838
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
839
- 152, 152, 3, 3, 341, 152, 152, 152, 341, 341,
840
- 152, 341, 341, 341, 152, 152, 152, 152, 152, 152,
841
- 280, 185, 262, 265, 247, 247, 152, 352, 152
691
+ 32767,32767,32767, 286,32767,32767, 381, 498, 294, 296,
692
+ 297,32767,32767,32767,32767, 360,32767,32767,32767,32767,
693
+ 32767,32767,32767,32767,32767,32767,32767, 153, 153, 3,
694
+ 3, 341, 153, 153, 153, 341, 341, 153, 341, 341,
695
+ 341, 153, 153, 153, 153, 153, 153, 280, 185, 262,
696
+ 265, 247, 247, 153, 352, 153
842
697
  );
843
698
 
844
- protected array $goto = array(
845
- 196, 196, 1034, 1065, 697, 431, 661, 621, 658, 319,
846
- 706, 425, 313, 314, 335, 576, 430, 336, 432, 638,
847
- 654, 655, 852, 672, 673, 674, 853, 167, 167, 167,
699
+ protected $goto = array(
700
+ 196, 196, 1031, 703, 694, 430, 658, 1062, 1334, 1334,
701
+ 424, 313, 314, 335, 573, 319, 429, 336, 431, 635,
702
+ 651, 652, 850, 669, 670, 671, 1334, 167, 167, 167,
848
703
  167, 221, 197, 193, 193, 177, 179, 216, 193, 193,
849
704
  193, 193, 193, 194, 194, 194, 194, 194, 194, 188,
850
- 189, 190, 191, 192, 218, 216, 219, 536, 537, 421,
851
- 538, 540, 541, 542, 543, 544, 545, 546, 547, 1136,
705
+ 189, 190, 191, 192, 218, 216, 219, 534, 535, 420,
706
+ 536, 538, 539, 540, 541, 542, 543, 544, 545, 1132,
852
707
  168, 169, 170, 195, 171, 172, 173, 166, 174, 175,
853
- 176, 178, 215, 217, 220, 238, 243, 244, 246, 257,
708
+ 176, 178, 215, 217, 220, 238, 243, 244, 245, 257,
854
709
  258, 259, 260, 261, 262, 263, 264, 268, 269, 270,
855
- 271, 281, 282, 316, 317, 318, 426, 427, 428, 581,
710
+ 271, 281, 282, 316, 317, 318, 425, 426, 427, 578,
856
711
  222, 223, 224, 225, 226, 227, 228, 229, 230, 231,
857
712
  232, 233, 234, 235, 236, 180, 237, 181, 198, 199,
858
- 200, 239, 188, 189, 190, 191, 192, 218, 1136, 201,
713
+ 200, 239, 188, 189, 190, 191, 192, 218, 1132, 201,
859
714
  182, 183, 184, 202, 198, 185, 240, 203, 201, 165,
860
715
  204, 205, 186, 206, 207, 208, 187, 209, 210, 211,
861
- 212, 213, 214, 855, 466, 466, 278, 278, 278, 278,
862
- 623, 623, 351, 466, 1269, 600, 1269, 1269, 1269, 1269,
863
- 1269, 1269, 1269, 1269, 1269, 1287, 1287, 599, 1100, 1287,
864
- 709, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287,
865
- 508, 700, 458, 1098, 975, 559, 552, 860, 419, 909,
866
- 904, 905, 918, 861, 906, 858, 907, 908, 859, 848,
867
- 827, 912, 354, 354, 354, 354, 396, 399, 560, 601,
868
- 605, 1087, 1082, 1083, 1084, 341, 552, 559, 568, 569,
869
- 344, 579, 602, 616, 617, 408, 409, 1232, 440, 479,
870
- 670, 22, 671, 886, 412, 413, 414, 481, 684, 349,
871
- 1237, 415, 1237, 1107, 1108, 347, 833, 1034, 1034, 1237,
872
- 573, 848, 1034, 1327, 1034, 1034, 1040, 1039, 1034, 1034,
873
- 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1319,
874
- 1319, 1319, 1319, 1237, 893, 851, 893, 893, 1237, 1237,
875
- 1237, 1237, 1233, 1234, 1237, 1237, 1237, 833, 355, 833,
876
- 843, 996, 252, 252, 1043, 1044, 1037, 1037, 355, 355,
877
- 681, 952, 394, 926, 1029, 1045, 1046, 927, 1235, 1295,
878
- 1296, 942, 355, 355, 942, 913, 355, 914, 1354, 250,
879
- 250, 250, 250, 245, 253, 548, 548, 548, 548, 554,
880
- 604, 1285, 1285, 355, 355, 1285, 571, 1285, 1285, 1285,
881
- 1285, 1285, 1285, 1285, 1285, 1285, 539, 539, 342, 424,
882
- 539, 611, 539, 539, 539, 539, 539, 539, 539, 539,
883
- 539, 566, 476, 1312, 1313, 733, 637, 639, 325, 308,
884
- 659, 848, 343, 342, 683, 687, 1010, 695, 704, 1006,
885
- 660, 1298, 609, 624, 627, 628, 629, 630, 651, 652,
886
- 653, 708, 1216, 944, 1314, 1315, 1217, 1220, 945, 1221,
887
- 1337, 1337, 686, 352, 353, 868, 553, 563, 450, 450,
888
- 450, 553, 1309, 563, 1309, 1133, 397, 462, 1337, 1058,
889
- 880, 1309, 1185, 867, 500, 5, 501, 6, 469, 580,
890
- 470, 471, 507, 554, 878, 1340, 1340, 1345, 1346, 433,
891
- 438, 550, 666, 550, 433, 682, 1321, 1321, 1321, 1321,
892
- 550, 337, 1041, 1041, 931, 1123, 873, 665, 1052, 1048,
893
- 1049, 619, 845, 876, 324, 275, 324, 1015, 967, 410,
894
- 705, 577, 614, 1305, 456, 872, 403, 664, 994, 969,
895
- 969, 969, 969, 866, 870, 456, 963, 970, 881, 869,
896
- 1070, 1074, 631, 633, 635, 1227, 1230, 958, 615, 978,
897
- 450, 450, 450, 450, 450, 450, 450, 450, 450, 450,
898
- 450, 999, 1018, 450, 971, 1073, 732, 477, 1228, 1307,
899
- 1307, 1073, 736, 968, 551, 1008, 1003, 882, 694, 1075,
900
- 1071, 829, 255, 255, 980, 0, 1118, 0, 1013, 1013,
901
- 694, 0, 0, 0, 694, 1116, 885
716
+ 212, 213, 214, 853, 851, 278, 278, 278, 278, 418,
717
+ 620, 620, 350, 570, 597, 1265, 1265, 1265, 1265, 1265,
718
+ 1265, 1265, 1265, 1265, 1265, 1283, 1283, 831, 618, 655,
719
+ 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283,
720
+ 353, 353, 353, 353, 866, 557, 550, 858, 825, 907,
721
+ 902, 903, 916, 859, 904, 856, 905, 906, 857, 878,
722
+ 457, 910, 865, 884, 546, 546, 546, 546, 831, 601,
723
+ 831, 1084, 1079, 1080, 1081, 341, 550, 557, 566, 567,
724
+ 343, 576, 599, 613, 614, 407, 408, 972, 465, 465,
725
+ 667, 15, 668, 1323, 411, 412, 413, 465, 681, 348,
726
+ 1233, 414, 1233, 478, 569, 346, 439, 1031, 1031, 1233,
727
+ 993, 480, 1031, 393, 1031, 1031, 1104, 1105, 1031, 1031,
728
+ 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1315,
729
+ 1315, 1315, 1315, 1233, 657, 1333, 1333, 1055, 1233, 1233,
730
+ 1233, 1233, 1037, 1036, 1233, 1233, 1233, 1034, 1034, 1181,
731
+ 354, 678, 949, 1333, 437, 1026, 1042, 1043, 337, 691,
732
+ 354, 354, 827, 923, 691, 1040, 1041, 924, 691, 663,
733
+ 1336, 939, 871, 939, 354, 354, 1281, 1281, 354, 679,
734
+ 1350, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281,
735
+ 1281, 552, 537, 537, 911, 354, 912, 537, 537, 537,
736
+ 537, 537, 537, 537, 537, 537, 537, 548, 564, 548,
737
+ 574, 611, 730, 634, 636, 849, 548, 656, 475, 1308,
738
+ 1309, 680, 684, 1007, 692, 701, 1003, 252, 252, 996,
739
+ 970, 970, 968, 970, 729, 843, 549, 1005, 1000, 423,
740
+ 455, 608, 1294, 846, 955, 966, 966, 966, 966, 325,
741
+ 308, 455, 960, 967, 249, 249, 249, 249, 251, 253,
742
+ 402, 351, 352, 683, 868, 551, 561, 449, 449, 449,
743
+ 551, 1305, 561, 1305, 612, 396, 461, 1010, 1010, 1224,
744
+ 1305, 395, 398, 558, 598, 602, 1015, 468, 577, 469,
745
+ 470, 1310, 1311, 876, 552, 846, 1341, 1342, 964, 409,
746
+ 702, 733, 324, 275, 324, 1317, 1317, 1317, 1317, 606,
747
+ 621, 624, 625, 626, 627, 648, 649, 650, 705, 1068,
748
+ 596, 1097, 874, 706, 476, 1228, 507, 697, 880, 1095,
749
+ 1115, 432, 1301, 628, 630, 632, 432, 879, 867, 1067,
750
+ 1071, 5, 1072, 6, 1038, 1038, 977, 0, 975, 662,
751
+ 1049, 1045, 1046, 0, 0, 0, 0, 1226, 449, 449,
752
+ 449, 449, 449, 449, 449, 449, 449, 449, 449, 928,
753
+ 1120, 449, 965, 1070, 0, 0, 616, 1303, 1303, 1070,
754
+ 1229, 1230, 1012, 499, 0, 500, 0, 0, 841, 0,
755
+ 870, 506, 661, 991, 1113, 883, 1212, 941, 864, 0,
756
+ 1213, 1216, 942, 1217, 0, 0, 1231, 1291, 1292, 0,
757
+ 1223, 0, 0, 0, 846, 0, 0, 0, 0, 0,
758
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
759
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
760
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
761
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
762
+ 0, 0, 0, 0, 0, 0, 0, 255, 255
902
763
  );
903
764
 
904
- protected array $gotoCheck = array(
905
- 42, 42, 73, 127, 73, 66, 66, 56, 56, 66,
906
- 9, 66, 66, 66, 66, 66, 66, 66, 66, 66,
907
- 86, 86, 26, 86, 86, 86, 27, 42, 42, 42,
765
+ protected $gotoCheck = array(
766
+ 42, 42, 72, 9, 72, 65, 65, 126, 181, 181,
767
+ 65, 65, 65, 65, 65, 65, 65, 65, 65, 65,
768
+ 85, 85, 26, 85, 85, 85, 181, 42, 42, 42,
908
769
  42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
909
770
  42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
910
771
  42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
@@ -918,94 +779,100 @@ class Php7 extends \PhpParser\ParserAbstract
918
779
  42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
919
780
  42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
920
781
  42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
921
- 42, 42, 42, 15, 149, 149, 23, 23, 23, 23,
922
- 108, 108, 97, 149, 108, 130, 108, 108, 108, 108,
923
- 108, 108, 108, 108, 108, 170, 170, 8, 8, 170,
924
- 8, 170, 170, 170, 170, 170, 170, 170, 170, 170,
925
- 8, 8, 83, 8, 49, 76, 76, 15, 43, 15,
926
- 15, 15, 15, 15, 15, 15, 15, 15, 15, 22,
927
- 6, 15, 24, 24, 24, 24, 59, 59, 59, 59,
928
- 59, 15, 15, 15, 15, 76, 76, 76, 76, 76,
929
- 76, 76, 76, 76, 76, 82, 82, 20, 83, 84,
930
- 82, 76, 82, 45, 82, 82, 82, 84, 82, 179,
931
- 73, 82, 73, 144, 144, 82, 12, 73, 73, 73,
932
- 172, 22, 73, 181, 73, 73, 118, 118, 73, 73,
933
- 73, 73, 73, 73, 73, 73, 73, 73, 73, 9,
934
- 9, 9, 9, 73, 25, 25, 25, 25, 73, 73,
935
- 73, 73, 20, 20, 73, 73, 73, 12, 14, 12,
936
- 20, 103, 5, 5, 119, 119, 89, 89, 14, 14,
937
- 89, 89, 62, 73, 89, 89, 89, 73, 20, 20,
938
- 20, 9, 14, 14, 9, 65, 14, 65, 14, 5,
939
- 5, 5, 5, 5, 5, 107, 107, 107, 107, 14,
940
- 107, 171, 171, 14, 14, 171, 104, 171, 171, 171,
941
- 171, 171, 171, 171, 171, 171, 173, 173, 168, 13,
942
- 173, 13, 173, 173, 173, 173, 173, 173, 173, 173,
943
- 173, 48, 176, 176, 176, 48, 48, 48, 169, 169,
944
- 48, 22, 168, 168, 48, 48, 48, 48, 48, 48,
945
- 64, 14, 81, 81, 81, 81, 81, 81, 81, 81,
946
- 81, 81, 79, 79, 178, 178, 79, 79, 79, 79,
947
- 182, 182, 14, 97, 97, 35, 9, 9, 23, 23,
948
- 23, 9, 130, 9, 130, 150, 9, 9, 182, 114,
949
- 35, 130, 151, 35, 155, 46, 155, 46, 9, 9,
950
- 9, 9, 155, 14, 9, 182, 182, 9, 9, 117,
951
- 113, 19, 120, 19, 117, 116, 130, 130, 130, 130,
952
- 19, 29, 117, 117, 17, 17, 39, 117, 117, 117,
953
- 117, 17, 18, 9, 24, 24, 24, 17, 93, 93,
954
- 93, 2, 2, 130, 19, 17, 28, 17, 17, 19,
955
- 19, 19, 19, 17, 37, 19, 19, 19, 16, 16,
956
- 16, 16, 85, 85, 85, 17, 14, 92, 80, 16,
957
- 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
958
- 23, 50, 110, 23, 50, 130, 50, 157, 160, 130,
959
- 130, 130, 99, 16, 50, 50, 50, 41, 7, 132,
960
- 129, 7, 5, 5, 96, -1, 147, -1, 107, 107,
961
- 7, -1, -1, -1, 7, 16, 16
782
+ 42, 42, 42, 15, 27, 23, 23, 23, 23, 43,
783
+ 107, 107, 96, 170, 129, 107, 107, 107, 107, 107,
784
+ 107, 107, 107, 107, 107, 168, 168, 12, 55, 55,
785
+ 168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
786
+ 24, 24, 24, 24, 35, 75, 75, 15, 6, 15,
787
+ 15, 15, 15, 15, 15, 15, 15, 15, 15, 35,
788
+ 82, 15, 35, 45, 106, 106, 106, 106, 12, 106,
789
+ 12, 15, 15, 15, 15, 75, 75, 75, 75, 75,
790
+ 75, 75, 75, 75, 75, 81, 81, 49, 148, 148,
791
+ 81, 75, 81, 179, 81, 81, 81, 148, 81, 177,
792
+ 72, 81, 72, 83, 103, 81, 82, 72, 72, 72,
793
+ 102, 83, 72, 61, 72, 72, 143, 143, 72, 72,
794
+ 72, 72, 72, 72, 72, 72, 72, 72, 72, 9,
795
+ 9, 9, 9, 72, 63, 180, 180, 113, 72, 72,
796
+ 72, 72, 117, 117, 72, 72, 72, 88, 88, 150,
797
+ 14, 88, 88, 180, 112, 88, 88, 88, 29, 7,
798
+ 14, 14, 7, 72, 7, 118, 118, 72, 7, 119,
799
+ 180, 9, 39, 9, 14, 14, 169, 169, 14, 115,
800
+ 14, 169, 169, 169, 169, 169, 169, 169, 169, 169,
801
+ 169, 14, 171, 171, 64, 14, 64, 171, 171, 171,
802
+ 171, 171, 171, 171, 171, 171, 171, 19, 48, 19,
803
+ 2, 2, 48, 48, 48, 25, 19, 48, 174, 174,
804
+ 174, 48, 48, 48, 48, 48, 48, 5, 5, 25,
805
+ 25, 25, 25, 25, 25, 18, 25, 25, 25, 13,
806
+ 19, 13, 14, 22, 91, 19, 19, 19, 19, 167,
807
+ 167, 19, 19, 19, 5, 5, 5, 5, 5, 5,
808
+ 28, 96, 96, 14, 37, 9, 9, 23, 23, 23,
809
+ 9, 129, 9, 129, 79, 9, 9, 106, 106, 159,
810
+ 129, 58, 58, 58, 58, 58, 109, 9, 9, 9,
811
+ 9, 176, 176, 9, 14, 22, 9, 9, 92, 92,
812
+ 92, 98, 24, 24, 24, 129, 129, 129, 129, 80,
813
+ 80, 80, 80, 80, 80, 80, 80, 80, 80, 128,
814
+ 8, 8, 9, 8, 156, 20, 8, 8, 41, 8,
815
+ 146, 116, 129, 84, 84, 84, 116, 16, 16, 16,
816
+ 16, 46, 131, 46, 116, 116, 95, -1, 16, 116,
817
+ 116, 116, 116, -1, -1, -1, -1, 14, 23, 23,
818
+ 23, 23, 23, 23, 23, 23, 23, 23, 23, 17,
819
+ 17, 23, 16, 129, -1, -1, 17, 129, 129, 129,
820
+ 20, 20, 17, 154, -1, 154, -1, -1, 20, -1,
821
+ 17, 154, 17, 17, 16, 16, 78, 78, 17, -1,
822
+ 78, 78, 78, 78, -1, -1, 20, 20, 20, -1,
823
+ 17, -1, -1, -1, 22, -1, -1, -1, -1, -1,
824
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
825
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
826
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
827
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
828
+ -1, -1, -1, -1, -1, -1, -1, 5, 5
962
829
  );
963
830
 
964
- protected array $gotoBase = array(
965
- 0, 0, -221, 0, 0, 311, 200, 541, 179, -10,
966
- 0, 0, -30, 32, 11, -185, 56, 9, 173, 196,
967
- -146, 0, -59, 163, 219, 291, 18, 22, 159, 175,
968
- 0, 0, 0, 0, 0, 54, 0, 165, 0, 153,
969
- 0, 106, -1, 189, 0, 230, -291, 0, -330, 186,
970
- 519, 0, 0, 0, 0, 0, -33, 0, 0, 181,
971
- 0, 0, 280, 0, 158, 321, -236, 0, 0, 0,
972
- 0, 0, 0, -5, 0, 0, -140, 0, 0, 4,
973
- 174, 44, -246, -76, -220, 33, -698, 0, 0, 37,
974
- 0, 0, 188, 184, 0, 0, 111, -311, 0, 135,
975
- 0, 0, 0, 276, 313, 0, 0, 317, -71, 0,
976
- 162, 0, 0, 183, 166, 0, 182, 187, -3, 29,
977
- 172, 0, 0, 0, 0, 0, 0, 1, 0, 176,
978
- 167, 0, 107, 0, 0, 0, 0, 0, 0, 0,
979
- 0, 0, 0, 0, -12, 0, 0, 112, 0, 130,
980
- 190, 168, 0, 0, 0, -51, 0, 97, 0, 0,
981
- 169, 0, 0, 0, 0, 0, 0, 0, 71, 67,
982
- -56, 110, 241, 125, 0, 0, 82, 0, 42, 229,
983
- 0, 242, 113, 0, 0
831
+ protected $gotoBase = array(
832
+ 0, 0, -339, 0, 0, 386, 195, 312, 472, -10,
833
+ 0, 0, -109, 62, 13, -184, 46, 65, 86, 102,
834
+ 93, 0, 125, 162, 197, 371, 18, 160, 83, 22,
835
+ 0, 0, 0, 0, 0, -166, 0, 85, 0, 9,
836
+ 0, 48, -1, 157, 0, 207, -232, 0, -340, 223,
837
+ 0, 0, 0, 0, 0, 148, 0, 0, 396, 0,
838
+ 0, 231, 0, 52, 334, -236, 0, 0, 0, 0,
839
+ 0, 0, -5, 0, 0, -139, 0, 0, 149, 91,
840
+ 112, -245, -58, -205, 15, -695, 0, 0, 28, 0,
841
+ 0, 75, 154, 0, 0, 64, -310, 0, 55, 0,
842
+ 0, 0, 235, 221, 0, 0, 196, -71, 0, 77,
843
+ 0, 0, 37, 24, 0, 56, 219, 23, 40, 39,
844
+ 0, 0, 0, 0, 0, 0, 5, 0, 106, 166,
845
+ 0, 61, 0, 0, 0, 0, 0, 0, 0, 0,
846
+ 0, 0, 0, 1, 0, 0, 47, 0, 214, 0,
847
+ 35, 0, 0, 0, 49, 0, 45, 0, 0, 71,
848
+ 0, 0, 0, 0, 0, 0, 0, 88, -56, 95,
849
+ 144, 111, 0, 0, 78, 0, 80, 229, 0, 222,
850
+ -12, -299, 0, 0
984
851
  );
985
852
 
986
- protected array $gotoDefault = array(
987
- -32768, 512, 740, 4, 741, 935, 816, 825, 597, 530,
988
- 707, 348, 625, 422, 1303, 911, 1122, 578, 844, 1246,
989
- 1254, 457, 847, 330, 730, 923, 894, 895, 400, 386,
990
- 392, 398, 649, 626, 494, 879, 453, 871, 486, 874,
991
- 452, 883, 164, 418, 510, 887, 3, 890, 557, 921,
992
- 973, 387, 898, 388, 677, 900, 562, 902, 903, 395,
993
- 401, 402, 1127, 570, 622, 915, 256, 564, 916, 385,
994
- 917, 925, 390, 393, 688, 465, 505, 499, 411, 1102,
995
- 565, 608, 646, 447, 473, 620, 632, 618, 480, 434,
996
- 416, 329, 957, 965, 487, 463, 979, 350, 987, 738,
997
- 1135, 640, 489, 995, 641, 1002, 1005, 531, 532, 478,
998
- 1017, 272, 1020, 490, 19, 667, 1031, 1032, 668, 642,
999
- 1054, 643, 669, 644, 1056, 472, 598, 1064, 454, 1072,
1000
- 1291, 455, 1076, 266, 1079, 277, 417, 435, 1085, 1086,
1001
- 9, 1092, 698, 699, 11, 276, 509, 1117, 689, 451,
1002
- 1134, 439, 1204, 1206, 558, 491, 1224, 1223, 680, 506,
1003
- 1229, 448, 1294, 449, 533, 474, 315, 534, 1338, 307,
1004
- 333, 312, 549, 294, 334, 535, 475, 1300, 1308, 331,
1005
- 31, 1328, 1339, 575, 613
853
+ protected $gotoDefault = array(
854
+ -32768, 511, 737, 4, 738, 932, 814, 823, 594, 528,
855
+ 704, 347, 622, 421, 1299, 909, 1119, 575, 842, 1242,
856
+ 1250, 456, 845, 330, 727, 891, 892, 893, 399, 385,
857
+ 391, 397, 646, 623, 493, 877, 452, 869, 485, 872,
858
+ 451, 881, 164, 417, 509, 885, 3, 888, 554, 919,
859
+ 386, 896, 387, 674, 898, 560, 900, 901, 394, 400,
860
+ 401, 1124, 568, 619, 913, 256, 562, 914, 384, 915,
861
+ 922, 389, 392, 685, 464, 504, 498, 410, 1099, 563,
862
+ 605, 643, 446, 472, 617, 629, 615, 479, 433, 415,
863
+ 329, 954, 962, 486, 462, 976, 349, 984, 735, 1131,
864
+ 637, 488, 992, 638, 999, 1002, 529, 530, 477, 1014,
865
+ 272, 1017, 489, 12, 664, 1028, 1029, 665, 639, 1051,
866
+ 640, 666, 641, 1053, 471, 595, 1061, 453, 1069, 1287,
867
+ 454, 1073, 266, 1076, 277, 416, 434, 1082, 1083, 9,
868
+ 1089, 695, 696, 11, 276, 508, 1114, 686, 450, 1130,
869
+ 438, 1200, 1202, 556, 490, 1220, 1219, 677, 505, 1225,
870
+ 447, 1290, 448, 531, 473, 315, 532, 307, 333, 312,
871
+ 547, 294, 334, 533, 474, 1296, 1304, 331, 31, 1324,
872
+ 1335, 342, 572, 610
1006
873
  );
1007
874
 
1008
- protected array $ruleToNonTerminal = array(
875
+ protected $ruleToNonTerminal = array(
1009
876
  0, 1, 3, 3, 2, 5, 5, 6, 6, 6,
1010
877
  6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
1011
878
  6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
@@ -1013,38 +880,38 @@ class Php7 extends \PhpParser\ParserAbstract
1013
880
  6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
1014
881
  6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
1015
882
  6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
1016
- 6, 6, 6, 6, 6, 6, 6, 7, 7, 7,
1017
- 7, 7, 7, 7, 7, 8, 8, 9, 10, 11,
1018
- 11, 11, 12, 12, 13, 13, 14, 15, 15, 16,
1019
- 16, 17, 17, 18, 18, 21, 21, 22, 23, 23,
1020
- 24, 24, 4, 4, 4, 4, 4, 4, 4, 4,
1021
- 4, 4, 4, 29, 29, 30, 30, 32, 34, 34,
1022
- 28, 36, 36, 33, 38, 38, 35, 35, 37, 37,
1023
- 39, 39, 31, 40, 40, 41, 43, 44, 44, 45,
1024
- 45, 46, 46, 48, 47, 47, 47, 47, 49, 49,
883
+ 6, 6, 6, 6, 6, 6, 6, 6, 7, 7,
884
+ 7, 7, 7, 7, 7, 7, 8, 8, 9, 10,
885
+ 11, 11, 11, 12, 12, 13, 13, 14, 15, 15,
886
+ 16, 16, 17, 17, 18, 18, 21, 21, 22, 23,
887
+ 23, 24, 24, 4, 4, 4, 4, 4, 4, 4,
888
+ 4, 4, 4, 4, 29, 29, 30, 30, 32, 34,
889
+ 34, 28, 36, 36, 33, 38, 38, 35, 35, 37,
890
+ 37, 39, 39, 31, 40, 40, 41, 43, 44, 44,
891
+ 45, 45, 46, 46, 48, 47, 47, 47, 47, 49,
1025
892
  49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
1026
893
  49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
1027
- 49, 49, 25, 25, 50, 69, 69, 72, 72, 71,
1028
- 70, 70, 63, 75, 75, 76, 76, 77, 77, 78,
1029
- 78, 79, 79, 80, 80, 26, 26, 27, 27, 27,
1030
- 27, 27, 88, 88, 90, 90, 83, 83, 91, 91,
1031
- 92, 92, 92, 84, 84, 87, 87, 85, 85, 93,
1032
- 94, 94, 57, 57, 65, 65, 68, 68, 68, 67,
1033
- 95, 95, 96, 58, 58, 58, 58, 97, 97, 98,
1034
- 98, 99, 99, 100, 101, 101, 102, 102, 103, 103,
1035
- 55, 55, 51, 51, 105, 53, 53, 106, 52, 52,
1036
- 54, 54, 64, 64, 64, 64, 81, 81, 109, 109,
1037
- 111, 111, 112, 112, 112, 112, 110, 110, 110, 114,
1038
- 114, 114, 114, 89, 89, 117, 117, 117, 118, 118,
1039
- 115, 115, 119, 119, 121, 121, 122, 122, 116, 123,
1040
- 123, 120, 124, 124, 124, 124, 113, 113, 82, 82,
1041
- 82, 20, 20, 20, 126, 125, 125, 127, 127, 127,
1042
- 127, 60, 128, 128, 129, 61, 131, 131, 132, 132,
1043
- 133, 133, 86, 134, 134, 134, 134, 134, 134, 134,
1044
- 139, 139, 140, 140, 141, 141, 141, 141, 141, 142,
1045
- 143, 143, 138, 138, 135, 135, 137, 137, 145, 145,
1046
- 144, 144, 144, 144, 144, 144, 144, 136, 146, 146,
1047
- 148, 147, 147, 62, 104, 149, 149, 56, 56, 42,
894
+ 49, 49, 49, 25, 25, 68, 68, 71, 71, 70,
895
+ 69, 69, 62, 74, 74, 75, 75, 76, 76, 77,
896
+ 77, 78, 78, 79, 79, 26, 26, 27, 27, 27,
897
+ 27, 27, 87, 87, 89, 89, 82, 82, 90, 90,
898
+ 91, 91, 91, 83, 83, 86, 86, 84, 84, 92,
899
+ 93, 93, 56, 56, 64, 64, 67, 67, 67, 66,
900
+ 94, 94, 95, 57, 57, 57, 57, 96, 96, 97,
901
+ 97, 98, 98, 99, 100, 100, 101, 101, 102, 102,
902
+ 54, 54, 50, 50, 104, 52, 52, 105, 51, 51,
903
+ 53, 53, 63, 63, 63, 63, 80, 80, 108, 108,
904
+ 110, 110, 111, 111, 111, 111, 109, 109, 109, 113,
905
+ 113, 113, 113, 88, 88, 116, 116, 116, 117, 117,
906
+ 114, 114, 118, 118, 120, 120, 121, 121, 115, 122,
907
+ 122, 119, 123, 123, 123, 123, 112, 112, 81, 81,
908
+ 81, 20, 20, 20, 125, 124, 124, 126, 126, 126,
909
+ 126, 59, 127, 127, 128, 60, 130, 130, 131, 131,
910
+ 132, 132, 85, 133, 133, 133, 133, 133, 133, 133,
911
+ 138, 138, 139, 139, 140, 140, 140, 140, 140, 141,
912
+ 142, 142, 137, 137, 134, 134, 136, 136, 144, 144,
913
+ 143, 143, 143, 143, 143, 143, 143, 135, 145, 145,
914
+ 147, 146, 146, 61, 103, 148, 148, 55, 55, 42,
1048
915
  42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
1049
916
  42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
1050
917
  42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
@@ -1054,23 +921,23 @@ class Php7 extends \PhpParser\ParserAbstract
1054
921
  42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
1055
922
  42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
1056
923
  42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
1057
- 42, 42, 42, 156, 150, 150, 155, 155, 158, 159,
1058
- 159, 160, 161, 162, 162, 162, 162, 19, 19, 73,
1059
- 73, 73, 73, 151, 151, 151, 151, 164, 164, 152,
1060
- 152, 154, 154, 154, 157, 157, 170, 170, 170, 170,
1061
- 170, 170, 170, 170, 170, 171, 171, 171, 108, 173,
1062
- 173, 173, 173, 153, 153, 153, 153, 153, 153, 153,
1063
- 153, 59, 59, 167, 167, 167, 167, 174, 174, 163,
1064
- 163, 163, 175, 175, 175, 175, 175, 175, 74, 74,
1065
- 66, 66, 66, 66, 130, 130, 130, 130, 178, 177,
1066
- 166, 166, 166, 166, 166, 166, 166, 165, 165, 165,
1067
- 176, 176, 176, 176, 107, 172, 180, 180, 179, 179,
1068
- 181, 181, 181, 181, 181, 181, 181, 181, 169, 169,
1069
- 169, 169, 168, 183, 182, 182, 182, 182, 182, 182,
1070
- 182, 182, 184, 184, 184, 184
924
+ 42, 42, 155, 149, 149, 154, 154, 157, 158, 158,
925
+ 159, 160, 161, 161, 161, 161, 19, 19, 72, 72,
926
+ 72, 72, 150, 150, 150, 150, 163, 163, 151, 151,
927
+ 153, 153, 153, 156, 156, 168, 168, 168, 168, 168,
928
+ 168, 168, 168, 168, 169, 169, 169, 107, 171, 171,
929
+ 171, 171, 152, 152, 152, 152, 152, 152, 152, 152,
930
+ 58, 58, 166, 166, 166, 166, 172, 172, 162, 162,
931
+ 162, 173, 173, 173, 173, 173, 173, 73, 73, 65,
932
+ 65, 65, 65, 129, 129, 129, 129, 176, 175, 165,
933
+ 165, 165, 165, 165, 165, 165, 164, 164, 164, 174,
934
+ 174, 174, 174, 106, 170, 178, 178, 177, 177, 179,
935
+ 179, 179, 179, 179, 179, 179, 179, 167, 167, 167,
936
+ 167, 181, 182, 180, 180, 180, 180, 180, 180, 180,
937
+ 180, 183, 183, 183, 183
1071
938
  );
1072
939
 
1073
- protected array $ruleToLength = array(
940
+ protected $ruleToLength = array(
1074
941
  1, 1, 2, 0, 1, 1, 1, 1, 1, 1,
1075
942
  1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1076
943
  1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
@@ -1080,16 +947,16 @@ class Php7 extends \PhpParser\ParserAbstract
1080
947
  1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1081
948
  1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1082
949
  1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1083
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 0,
1084
- 1, 0, 1, 1, 2, 1, 3, 4, 1, 2,
1085
- 0, 1, 1, 1, 1, 4, 3, 5, 4, 3,
1086
- 4, 2, 3, 1, 1, 7, 6, 2, 3, 1,
1087
- 2, 3, 1, 2, 3, 1, 1, 3, 1, 3,
1088
- 1, 2, 2, 3, 1, 3, 2, 3, 1, 3,
1089
- 3, 2, 0, 1, 1, 1, 1, 1, 3, 7,
1090
- 10, 5, 7, 9, 5, 3, 3, 3, 3, 3,
1091
- 3, 1, 2, 5, 7, 9, 6, 5, 6, 3,
1092
- 2, 1, 1, 1, 1, 0, 2, 1, 3, 8,
950
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
951
+ 0, 1, 0, 1, 1, 2, 1, 3, 4, 1,
952
+ 2, 0, 1, 1, 1, 1, 1, 3, 5, 4,
953
+ 3, 4, 2, 3, 1, 1, 7, 6, 2, 3,
954
+ 1, 2, 3, 1, 2, 3, 1, 1, 3, 1,
955
+ 3, 1, 2, 2, 3, 1, 3, 2, 3, 1,
956
+ 3, 3, 2, 0, 1, 1, 1, 1, 1, 3,
957
+ 7, 10, 5, 7, 9, 5, 3, 3, 3, 3,
958
+ 3, 3, 1, 2, 5, 7, 9, 6, 5, 6,
959
+ 3, 2, 1, 1, 1, 0, 2, 1, 3, 8,
1093
960
  0, 4, 2, 1, 3, 0, 1, 0, 1, 0,
1094
961
  1, 3, 1, 1, 1, 8, 9, 7, 8, 7,
1095
962
  6, 8, 0, 2, 0, 2, 1, 2, 1, 2,
@@ -1110,165 +977,327 @@ class Php7 extends \PhpParser\ParserAbstract
1110
977
  1, 1, 1, 1, 1, 1, 0, 1, 1, 2,
1111
978
  1, 1, 1, 1, 1, 1, 1, 2, 1, 3,
1112
979
  1, 1, 3, 2, 2, 3, 1, 0, 1, 1,
1113
- 3, 3, 3, 4, 4, 1, 1, 2, 3, 3,
980
+ 3, 3, 3, 4, 1, 1, 2, 3, 3, 3,
1114
981
  3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
1115
- 3, 2, 2, 2, 2, 3, 3, 3, 3, 3,
982
+ 2, 2, 2, 2, 3, 3, 3, 3, 3, 3,
1116
983
  3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
1117
- 3, 3, 3, 2, 2, 2, 2, 3, 3, 3,
1118
- 3, 3, 3, 3, 3, 3, 3, 3, 5, 4,
1119
- 3, 4, 4, 2, 2, 4, 2, 2, 2, 2,
1120
- 2, 2, 2, 2, 2, 2, 2, 1, 3, 2,
1121
- 1, 2, 4, 2, 2, 8, 9, 8, 9, 9,
1122
- 10, 9, 10, 8, 3, 2, 0, 4, 2, 1,
1123
- 3, 2, 1, 2, 2, 2, 4, 1, 1, 1,
1124
- 1, 1, 1, 1, 1, 3, 1, 1, 1, 0,
1125
- 3, 0, 1, 1, 0, 1, 1, 1, 1, 1,
1126
- 1, 1, 1, 1, 1, 3, 5, 3, 3, 4,
1127
- 1, 1, 3, 1, 1, 1, 1, 1, 3, 2,
1128
- 3, 0, 1, 1, 3, 1, 1, 1, 1, 1,
1129
- 3, 1, 1, 4, 4, 1, 4, 4, 0, 1,
1130
- 1, 1, 3, 3, 1, 4, 2, 2, 1, 3,
1131
- 1, 4, 4, 3, 3, 3, 3, 1, 3, 1,
1132
- 1, 3, 1, 1, 4, 1, 1, 1, 3, 1,
1133
- 1, 2, 1, 3, 4, 3, 2, 0, 2, 2,
1134
- 1, 2, 1, 1, 1, 4, 3, 3, 3, 3,
1135
- 6, 3, 1, 1, 2, 1
984
+ 3, 3, 2, 2, 2, 2, 3, 3, 3, 3,
985
+ 3, 3, 3, 3, 3, 3, 3, 5, 4, 3,
986
+ 4, 4, 2, 2, 4, 2, 2, 2, 2, 2,
987
+ 2, 2, 2, 2, 2, 2, 1, 3, 2, 1,
988
+ 2, 4, 2, 2, 8, 9, 8, 9, 9, 10,
989
+ 9, 10, 8, 3, 2, 0, 4, 2, 1, 3,
990
+ 2, 1, 2, 2, 2, 4, 1, 1, 1, 1,
991
+ 1, 1, 1, 1, 3, 1, 1, 1, 0, 3,
992
+ 0, 1, 1, 0, 1, 1, 1, 1, 1, 1,
993
+ 1, 1, 1, 1, 3, 5, 3, 3, 4, 1,
994
+ 1, 3, 1, 1, 1, 1, 1, 3, 2, 3,
995
+ 0, 1, 1, 3, 1, 1, 1, 1, 1, 3,
996
+ 1, 1, 4, 4, 1, 4, 4, 0, 1, 1,
997
+ 1, 3, 3, 1, 4, 2, 2, 1, 3, 1,
998
+ 4, 4, 3, 3, 3, 3, 1, 3, 1, 1,
999
+ 3, 1, 1, 4, 1, 1, 1, 3, 1, 1,
1000
+ 2, 1, 3, 4, 3, 2, 0, 2, 2, 1,
1001
+ 2, 1, 1, 1, 4, 3, 3, 3, 3, 6,
1002
+ 3, 1, 1, 2, 1
1136
1003
  );
1137
1004
 
1138
- protected function initReduceCallbacks(): void {
1005
+ protected function initReduceCallbacks() {
1139
1006
  $this->reduceCallbacks = [
1140
- 0 => null,
1007
+ 0 => function ($stackPos) {
1008
+ $this->semValue = $this->semStack[$stackPos];
1009
+ },
1141
1010
  1 => function ($stackPos) {
1142
1011
  $this->semValue = $this->handleNamespaces($this->semStack[$stackPos-(1-1)]);
1143
1012
  },
1144
1013
  2 => function ($stackPos) {
1145
- if ($this->semStack[$stackPos-(2-2)] !== null) { $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; } $this->semValue = $this->semStack[$stackPos-(2-1)];;
1014
+ 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)]; };
1146
1015
  },
1147
1016
  3 => function ($stackPos) {
1148
1017
  $this->semValue = array();
1149
1018
  },
1150
1019
  4 => function ($stackPos) {
1151
- $nop = $this->maybeCreateZeroLengthNop($this->tokenPos);;
1020
+ $startAttributes = $this->lookaheadStartAttributes; if (isset($startAttributes['comments'])) { $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); } else { $nop = null; };
1152
1021
  if ($nop !== null) { $this->semStack[$stackPos-(1-1)][] = $nop; } $this->semValue = $this->semStack[$stackPos-(1-1)];
1153
1022
  },
1154
- 5 => null,
1155
- 6 => null,
1156
- 7 => null,
1157
- 8 => null,
1158
- 9 => null,
1159
- 10 => null,
1160
- 11 => null,
1161
- 12 => null,
1162
- 13 => null,
1163
- 14 => null,
1164
- 15 => null,
1165
- 16 => null,
1166
- 17 => null,
1167
- 18 => null,
1168
- 19 => null,
1169
- 20 => null,
1170
- 21 => null,
1171
- 22 => null,
1172
- 23 => null,
1173
- 24 => null,
1174
- 25 => null,
1175
- 26 => null,
1176
- 27 => null,
1177
- 28 => null,
1178
- 29 => null,
1179
- 30 => null,
1180
- 31 => null,
1181
- 32 => null,
1182
- 33 => null,
1183
- 34 => null,
1184
- 35 => null,
1185
- 36 => null,
1186
- 37 => null,
1187
- 38 => null,
1188
- 39 => null,
1189
- 40 => null,
1190
- 41 => null,
1191
- 42 => null,
1192
- 43 => null,
1193
- 44 => null,
1194
- 45 => null,
1195
- 46 => null,
1196
- 47 => null,
1197
- 48 => null,
1198
- 49 => null,
1199
- 50 => null,
1200
- 51 => null,
1201
- 52 => null,
1202
- 53 => null,
1203
- 54 => null,
1204
- 55 => null,
1205
- 56 => null,
1206
- 57 => null,
1207
- 58 => null,
1208
- 59 => null,
1209
- 60 => null,
1210
- 61 => null,
1211
- 62 => null,
1212
- 63 => null,
1213
- 64 => null,
1214
- 65 => null,
1215
- 66 => null,
1216
- 67 => null,
1217
- 68 => null,
1218
- 69 => null,
1219
- 70 => null,
1220
- 71 => null,
1221
- 72 => null,
1222
- 73 => null,
1223
- 74 => null,
1224
- 75 => null,
1023
+ 5 => function ($stackPos) {
1024
+ $this->semValue = $this->semStack[$stackPos];
1025
+ },
1026
+ 6 => function ($stackPos) {
1027
+ $this->semValue = $this->semStack[$stackPos];
1028
+ },
1029
+ 7 => function ($stackPos) {
1030
+ $this->semValue = $this->semStack[$stackPos];
1031
+ },
1032
+ 8 => function ($stackPos) {
1033
+ $this->semValue = $this->semStack[$stackPos];
1034
+ },
1035
+ 9 => function ($stackPos) {
1036
+ $this->semValue = $this->semStack[$stackPos];
1037
+ },
1038
+ 10 => function ($stackPos) {
1039
+ $this->semValue = $this->semStack[$stackPos];
1040
+ },
1041
+ 11 => function ($stackPos) {
1042
+ $this->semValue = $this->semStack[$stackPos];
1043
+ },
1044
+ 12 => function ($stackPos) {
1045
+ $this->semValue = $this->semStack[$stackPos];
1046
+ },
1047
+ 13 => function ($stackPos) {
1048
+ $this->semValue = $this->semStack[$stackPos];
1049
+ },
1050
+ 14 => function ($stackPos) {
1051
+ $this->semValue = $this->semStack[$stackPos];
1052
+ },
1053
+ 15 => function ($stackPos) {
1054
+ $this->semValue = $this->semStack[$stackPos];
1055
+ },
1056
+ 16 => function ($stackPos) {
1057
+ $this->semValue = $this->semStack[$stackPos];
1058
+ },
1059
+ 17 => function ($stackPos) {
1060
+ $this->semValue = $this->semStack[$stackPos];
1061
+ },
1062
+ 18 => function ($stackPos) {
1063
+ $this->semValue = $this->semStack[$stackPos];
1064
+ },
1065
+ 19 => function ($stackPos) {
1066
+ $this->semValue = $this->semStack[$stackPos];
1067
+ },
1068
+ 20 => function ($stackPos) {
1069
+ $this->semValue = $this->semStack[$stackPos];
1070
+ },
1071
+ 21 => function ($stackPos) {
1072
+ $this->semValue = $this->semStack[$stackPos];
1073
+ },
1074
+ 22 => function ($stackPos) {
1075
+ $this->semValue = $this->semStack[$stackPos];
1076
+ },
1077
+ 23 => function ($stackPos) {
1078
+ $this->semValue = $this->semStack[$stackPos];
1079
+ },
1080
+ 24 => function ($stackPos) {
1081
+ $this->semValue = $this->semStack[$stackPos];
1082
+ },
1083
+ 25 => function ($stackPos) {
1084
+ $this->semValue = $this->semStack[$stackPos];
1085
+ },
1086
+ 26 => function ($stackPos) {
1087
+ $this->semValue = $this->semStack[$stackPos];
1088
+ },
1089
+ 27 => function ($stackPos) {
1090
+ $this->semValue = $this->semStack[$stackPos];
1091
+ },
1092
+ 28 => function ($stackPos) {
1093
+ $this->semValue = $this->semStack[$stackPos];
1094
+ },
1095
+ 29 => function ($stackPos) {
1096
+ $this->semValue = $this->semStack[$stackPos];
1097
+ },
1098
+ 30 => function ($stackPos) {
1099
+ $this->semValue = $this->semStack[$stackPos];
1100
+ },
1101
+ 31 => function ($stackPos) {
1102
+ $this->semValue = $this->semStack[$stackPos];
1103
+ },
1104
+ 32 => function ($stackPos) {
1105
+ $this->semValue = $this->semStack[$stackPos];
1106
+ },
1107
+ 33 => function ($stackPos) {
1108
+ $this->semValue = $this->semStack[$stackPos];
1109
+ },
1110
+ 34 => function ($stackPos) {
1111
+ $this->semValue = $this->semStack[$stackPos];
1112
+ },
1113
+ 35 => function ($stackPos) {
1114
+ $this->semValue = $this->semStack[$stackPos];
1115
+ },
1116
+ 36 => function ($stackPos) {
1117
+ $this->semValue = $this->semStack[$stackPos];
1118
+ },
1119
+ 37 => function ($stackPos) {
1120
+ $this->semValue = $this->semStack[$stackPos];
1121
+ },
1122
+ 38 => function ($stackPos) {
1123
+ $this->semValue = $this->semStack[$stackPos];
1124
+ },
1125
+ 39 => function ($stackPos) {
1126
+ $this->semValue = $this->semStack[$stackPos];
1127
+ },
1128
+ 40 => function ($stackPos) {
1129
+ $this->semValue = $this->semStack[$stackPos];
1130
+ },
1131
+ 41 => function ($stackPos) {
1132
+ $this->semValue = $this->semStack[$stackPos];
1133
+ },
1134
+ 42 => function ($stackPos) {
1135
+ $this->semValue = $this->semStack[$stackPos];
1136
+ },
1137
+ 43 => function ($stackPos) {
1138
+ $this->semValue = $this->semStack[$stackPos];
1139
+ },
1140
+ 44 => function ($stackPos) {
1141
+ $this->semValue = $this->semStack[$stackPos];
1142
+ },
1143
+ 45 => function ($stackPos) {
1144
+ $this->semValue = $this->semStack[$stackPos];
1145
+ },
1146
+ 46 => function ($stackPos) {
1147
+ $this->semValue = $this->semStack[$stackPos];
1148
+ },
1149
+ 47 => function ($stackPos) {
1150
+ $this->semValue = $this->semStack[$stackPos];
1151
+ },
1152
+ 48 => function ($stackPos) {
1153
+ $this->semValue = $this->semStack[$stackPos];
1154
+ },
1155
+ 49 => function ($stackPos) {
1156
+ $this->semValue = $this->semStack[$stackPos];
1157
+ },
1158
+ 50 => function ($stackPos) {
1159
+ $this->semValue = $this->semStack[$stackPos];
1160
+ },
1161
+ 51 => function ($stackPos) {
1162
+ $this->semValue = $this->semStack[$stackPos];
1163
+ },
1164
+ 52 => function ($stackPos) {
1165
+ $this->semValue = $this->semStack[$stackPos];
1166
+ },
1167
+ 53 => function ($stackPos) {
1168
+ $this->semValue = $this->semStack[$stackPos];
1169
+ },
1170
+ 54 => function ($stackPos) {
1171
+ $this->semValue = $this->semStack[$stackPos];
1172
+ },
1173
+ 55 => function ($stackPos) {
1174
+ $this->semValue = $this->semStack[$stackPos];
1175
+ },
1176
+ 56 => function ($stackPos) {
1177
+ $this->semValue = $this->semStack[$stackPos];
1178
+ },
1179
+ 57 => function ($stackPos) {
1180
+ $this->semValue = $this->semStack[$stackPos];
1181
+ },
1182
+ 58 => function ($stackPos) {
1183
+ $this->semValue = $this->semStack[$stackPos];
1184
+ },
1185
+ 59 => function ($stackPos) {
1186
+ $this->semValue = $this->semStack[$stackPos];
1187
+ },
1188
+ 60 => function ($stackPos) {
1189
+ $this->semValue = $this->semStack[$stackPos];
1190
+ },
1191
+ 61 => function ($stackPos) {
1192
+ $this->semValue = $this->semStack[$stackPos];
1193
+ },
1194
+ 62 => function ($stackPos) {
1195
+ $this->semValue = $this->semStack[$stackPos];
1196
+ },
1197
+ 63 => function ($stackPos) {
1198
+ $this->semValue = $this->semStack[$stackPos];
1199
+ },
1200
+ 64 => function ($stackPos) {
1201
+ $this->semValue = $this->semStack[$stackPos];
1202
+ },
1203
+ 65 => function ($stackPos) {
1204
+ $this->semValue = $this->semStack[$stackPos];
1205
+ },
1206
+ 66 => function ($stackPos) {
1207
+ $this->semValue = $this->semStack[$stackPos];
1208
+ },
1209
+ 67 => function ($stackPos) {
1210
+ $this->semValue = $this->semStack[$stackPos];
1211
+ },
1212
+ 68 => function ($stackPos) {
1213
+ $this->semValue = $this->semStack[$stackPos];
1214
+ },
1215
+ 69 => function ($stackPos) {
1216
+ $this->semValue = $this->semStack[$stackPos];
1217
+ },
1218
+ 70 => function ($stackPos) {
1219
+ $this->semValue = $this->semStack[$stackPos];
1220
+ },
1221
+ 71 => function ($stackPos) {
1222
+ $this->semValue = $this->semStack[$stackPos];
1223
+ },
1224
+ 72 => function ($stackPos) {
1225
+ $this->semValue = $this->semStack[$stackPos];
1226
+ },
1227
+ 73 => function ($stackPos) {
1228
+ $this->semValue = $this->semStack[$stackPos];
1229
+ },
1230
+ 74 => function ($stackPos) {
1231
+ $this->semValue = $this->semStack[$stackPos];
1232
+ },
1233
+ 75 => function ($stackPos) {
1234
+ $this->semValue = $this->semStack[$stackPos];
1235
+ },
1225
1236
  76 => function ($stackPos) {
1226
- $this->semValue = $this->semStack[$stackPos-(1-1)]; if ($this->semValue === "<?=") $this->emitError(new Error('Cannot use "<?=" as an identifier', $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos])));
1227
- },
1228
- 77 => null,
1229
- 78 => null,
1230
- 79 => null,
1231
- 80 => null,
1232
- 81 => null,
1233
- 82 => null,
1234
- 83 => null,
1235
- 84 => null,
1237
+ $this->semValue = $this->semStack[$stackPos];
1238
+ },
1239
+ 77 => function ($stackPos) {
1240
+ $this->semValue = $this->semStack[$stackPos];
1241
+ },
1242
+ 78 => function ($stackPos) {
1243
+ $this->semValue = $this->semStack[$stackPos];
1244
+ },
1245
+ 79 => function ($stackPos) {
1246
+ $this->semValue = $this->semStack[$stackPos];
1247
+ },
1248
+ 80 => function ($stackPos) {
1249
+ $this->semValue = $this->semStack[$stackPos];
1250
+ },
1251
+ 81 => function ($stackPos) {
1252
+ $this->semValue = $this->semStack[$stackPos];
1253
+ },
1254
+ 82 => function ($stackPos) {
1255
+ $this->semValue = $this->semStack[$stackPos];
1256
+ },
1257
+ 83 => function ($stackPos) {
1258
+ $this->semValue = $this->semStack[$stackPos];
1259
+ },
1260
+ 84 => function ($stackPos) {
1261
+ $this->semValue = $this->semStack[$stackPos];
1262
+ },
1236
1263
  85 => function ($stackPos) {
1237
- $this->semValue = new Node\Identifier($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1264
+ $this->semValue = $this->semStack[$stackPos];
1238
1265
  },
1239
1266
  86 => function ($stackPos) {
1240
- $this->semValue = new Node\Identifier($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1267
+ $this->semValue = new Node\Identifier($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1241
1268
  },
1242
1269
  87 => function ($stackPos) {
1243
- $this->semValue = new Node\Identifier($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1270
+ $this->semValue = new Node\Identifier($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1244
1271
  },
1245
1272
  88 => function ($stackPos) {
1246
- $this->semValue = new Node\Identifier($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1273
+ $this->semValue = new Node\Identifier($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1247
1274
  },
1248
1275
  89 => function ($stackPos) {
1249
- $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1276
+ $this->semValue = new Node\Identifier($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1250
1277
  },
1251
1278
  90 => function ($stackPos) {
1252
- $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1279
+ $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1253
1280
  },
1254
1281
  91 => function ($stackPos) {
1255
- $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1282
+ $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1256
1283
  },
1257
1284
  92 => function ($stackPos) {
1258
- $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1285
+ $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1259
1286
  },
1260
1287
  93 => function ($stackPos) {
1261
- $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1288
+ $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1289
+ },
1290
+ 94 => function ($stackPos) {
1291
+ $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1262
1292
  },
1263
- 94 => null,
1264
1293
  95 => function ($stackPos) {
1265
- $this->semValue = new Name(substr($this->semStack[$stackPos-(1-1)], 1), $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1294
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1266
1295
  },
1267
1296
  96 => function ($stackPos) {
1268
- $this->semValue = new Expr\Variable(substr($this->semStack[$stackPos-(1-1)], 1), $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1297
+ $this->semValue = new Name(substr($this->semStack[$stackPos-(1-1)], 1), $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1269
1298
  },
1270
1299
  97 => function ($stackPos) {
1271
- /* nothing */
1300
+ $this->semValue = new Expr\Variable(substr($this->semStack[$stackPos-(1-1)], 1), $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1272
1301
  },
1273
1302
  98 => function ($stackPos) {
1274
1303
  /* nothing */
@@ -1277,237 +1306,283 @@ class Php7 extends \PhpParser\ParserAbstract
1277
1306
  /* nothing */
1278
1307
  },
1279
1308
  100 => function ($stackPos) {
1280
- $this->emitError(new Error('A trailing comma is not allowed here', $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos])));
1309
+ /* nothing */
1310
+ },
1311
+ 101 => function ($stackPos) {
1312
+ $this->emitError(new Error('A trailing comma is not allowed here', $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes));
1313
+ },
1314
+ 102 => function ($stackPos) {
1315
+ $this->semValue = $this->semStack[$stackPos];
1281
1316
  },
1282
- 101 => null,
1283
- 102 => null,
1284
1317
  103 => function ($stackPos) {
1285
- $this->semValue = new Node\Attribute($this->semStack[$stackPos-(1-1)], [], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1318
+ $this->semValue = $this->semStack[$stackPos];
1286
1319
  },
1287
1320
  104 => function ($stackPos) {
1288
- $this->semValue = new Node\Attribute($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
1321
+ $this->semValue = new Node\Attribute($this->semStack[$stackPos-(1-1)], [], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1289
1322
  },
1290
1323
  105 => function ($stackPos) {
1291
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1324
+ $this->semValue = new Node\Attribute($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1292
1325
  },
1293
1326
  106 => function ($stackPos) {
1294
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1327
+ $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1295
1328
  },
1296
1329
  107 => function ($stackPos) {
1297
- $this->semValue = new Node\AttributeGroup($this->semStack[$stackPos-(4-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
1330
+ $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1298
1331
  },
1299
1332
  108 => function ($stackPos) {
1300
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1333
+ $this->semValue = new Node\AttributeGroup($this->semStack[$stackPos-(4-2)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1301
1334
  },
1302
1335
  109 => function ($stackPos) {
1303
- $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
1336
+ $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1304
1337
  },
1305
1338
  110 => function ($stackPos) {
1339
+ $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
1340
+ },
1341
+ 111 => function ($stackPos) {
1306
1342
  $this->semValue = [];
1307
1343
  },
1308
- 111 => null,
1309
- 112 => null,
1310
- 113 => null,
1311
- 114 => null,
1344
+ 112 => function ($stackPos) {
1345
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1346
+ },
1347
+ 113 => function ($stackPos) {
1348
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1349
+ },
1350
+ 114 => function ($stackPos) {
1351
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1352
+ },
1312
1353
  115 => function ($stackPos) {
1313
- $this->semValue = new Stmt\HaltCompiler($this->handleHaltCompiler(), $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
1354
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1314
1355
  },
1315
1356
  116 => function ($stackPos) {
1316
- $this->semValue = new Stmt\Namespace_($this->semStack[$stackPos-(3-2)], null, $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1317
- $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_SEMICOLON);
1318
- $this->checkNamespace($this->semValue);
1357
+ $this->semValue = new Stmt\HaltCompiler($this->lexer->handleHaltCompiler(), $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1319
1358
  },
1320
1359
  117 => function ($stackPos) {
1321
- $this->semValue = new Stmt\Namespace_($this->semStack[$stackPos-(5-2)], $this->semStack[$stackPos-(5-4)], $this->getAttributes($this->tokenStartStack[$stackPos-(5-1)], $this->tokenEndStack[$stackPos]));
1322
- $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_BRACED);
1360
+ $this->semValue = new Stmt\Namespace_($this->semStack[$stackPos-(3-2)], null, $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1361
+ $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_SEMICOLON);
1323
1362
  $this->checkNamespace($this->semValue);
1324
1363
  },
1325
1364
  118 => function ($stackPos) {
1326
- $this->semValue = new Stmt\Namespace_(null, $this->semStack[$stackPos-(4-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
1365
+ $this->semValue = new Stmt\Namespace_($this->semStack[$stackPos-(5-2)], $this->semStack[$stackPos-(5-4)], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
1327
1366
  $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_BRACED);
1328
1367
  $this->checkNamespace($this->semValue);
1329
1368
  },
1330
1369
  119 => function ($stackPos) {
1331
- $this->semValue = new Stmt\Use_($this->semStack[$stackPos-(3-2)], Stmt\Use_::TYPE_NORMAL, $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1370
+ $this->semValue = new Stmt\Namespace_(null, $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1371
+ $this->semValue->setAttribute('kind', Stmt\Namespace_::KIND_BRACED);
1372
+ $this->checkNamespace($this->semValue);
1332
1373
  },
1333
1374
  120 => function ($stackPos) {
1334
- $this->semValue = new Stmt\Use_($this->semStack[$stackPos-(4-3)], $this->semStack[$stackPos-(4-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
1375
+ $this->semValue = new Stmt\Use_($this->semStack[$stackPos-(3-2)], Stmt\Use_::TYPE_NORMAL, $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1376
+ },
1377
+ 121 => function ($stackPos) {
1378
+ $this->semValue = new Stmt\Use_($this->semStack[$stackPos-(4-3)], $this->semStack[$stackPos-(4-2)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1335
1379
  },
1336
- 121 => null,
1337
1380
  122 => function ($stackPos) {
1338
- $this->semValue = new Stmt\Const_($this->semStack[$stackPos-(3-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1381
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
1339
1382
  },
1340
1383
  123 => function ($stackPos) {
1341
- $this->semValue = Stmt\Use_::TYPE_FUNCTION;
1384
+ $this->semValue = new Stmt\Const_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1342
1385
  },
1343
1386
  124 => function ($stackPos) {
1344
- $this->semValue = Stmt\Use_::TYPE_CONSTANT;
1387
+ $this->semValue = Stmt\Use_::TYPE_FUNCTION;
1345
1388
  },
1346
1389
  125 => function ($stackPos) {
1347
- $this->semValue = new Stmt\GroupUse($this->semStack[$stackPos-(7-3)], $this->semStack[$stackPos-(7-6)], $this->semStack[$stackPos-(7-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(7-1)], $this->tokenEndStack[$stackPos]));
1390
+ $this->semValue = Stmt\Use_::TYPE_CONSTANT;
1348
1391
  },
1349
1392
  126 => function ($stackPos) {
1350
- $this->semValue = new Stmt\GroupUse($this->semStack[$stackPos-(6-2)], $this->semStack[$stackPos-(6-5)], Stmt\Use_::TYPE_UNKNOWN, $this->getAttributes($this->tokenStartStack[$stackPos-(6-1)], $this->tokenEndStack[$stackPos]));
1393
+ $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);
1394
+ },
1395
+ 127 => function ($stackPos) {
1396
+ $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);
1351
1397
  },
1352
- 127 => null,
1353
1398
  128 => function ($stackPos) {
1354
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1399
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
1355
1400
  },
1356
1401
  129 => function ($stackPos) {
1402
+ $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1403
+ },
1404
+ 130 => function ($stackPos) {
1357
1405
  $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1358
1406
  },
1359
- 130 => null,
1360
1407
  131 => function ($stackPos) {
1361
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1408
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
1362
1409
  },
1363
1410
  132 => function ($stackPos) {
1411
+ $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1412
+ },
1413
+ 133 => function ($stackPos) {
1364
1414
  $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1365
1415
  },
1366
- 133 => null,
1367
1416
  134 => function ($stackPos) {
1368
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1417
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
1369
1418
  },
1370
1419
  135 => function ($stackPos) {
1371
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1420
+ $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1372
1421
  },
1373
1422
  136 => function ($stackPos) {
1374
- $this->semValue = new Node\UseItem($this->semStack[$stackPos-(1-1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos])); $this->checkUseUse($this->semValue, $stackPos-(1-1));
1423
+ $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1375
1424
  },
1376
1425
  137 => function ($stackPos) {
1377
- $this->semValue = new Node\UseItem($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], Stmt\Use_::TYPE_UNKNOWN, $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos])); $this->checkUseUse($this->semValue, $stackPos-(3-3));
1426
+ $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));
1378
1427
  },
1379
1428
  138 => function ($stackPos) {
1380
- $this->semValue = new Node\UseItem($this->semStack[$stackPos-(1-1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos])); $this->checkUseUse($this->semValue, $stackPos-(1-1));
1429
+ $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));
1381
1430
  },
1382
1431
  139 => function ($stackPos) {
1383
- $this->semValue = new Node\UseItem($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], Stmt\Use_::TYPE_UNKNOWN, $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos])); $this->checkUseUse($this->semValue, $stackPos-(3-3));
1432
+ $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));
1384
1433
  },
1385
1434
  140 => function ($stackPos) {
1386
- $this->semValue = $this->semStack[$stackPos-(1-1)]; $this->semValue->type = Stmt\Use_::TYPE_NORMAL;
1435
+ $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));
1387
1436
  },
1388
1437
  141 => function ($stackPos) {
1438
+ $this->semValue = $this->semStack[$stackPos-(1-1)]; $this->semValue->type = Stmt\Use_::TYPE_NORMAL;
1439
+ },
1440
+ 142 => function ($stackPos) {
1389
1441
  $this->semValue = $this->semStack[$stackPos-(2-2)]; $this->semValue->type = $this->semStack[$stackPos-(2-1)];
1390
1442
  },
1391
- 142 => null,
1392
1443
  143 => function ($stackPos) {
1393
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1444
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
1394
1445
  },
1395
1446
  144 => function ($stackPos) {
1396
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1447
+ $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1397
1448
  },
1398
1449
  145 => function ($stackPos) {
1399
- $this->semValue = new Node\Const_($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1450
+ $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1451
+ },
1452
+ 146 => function ($stackPos) {
1453
+ $this->semValue = new Node\Const_($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1400
1454
  },
1401
- 146 => null,
1402
1455
  147 => function ($stackPos) {
1403
- $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1456
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
1404
1457
  },
1405
1458
  148 => function ($stackPos) {
1406
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1459
+ $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1407
1460
  },
1408
1461
  149 => function ($stackPos) {
1409
- $this->semValue = new Node\Const_(new Node\Identifier($this->semStack[$stackPos-(3-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos-(3-1)])), $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1462
+ $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1410
1463
  },
1411
1464
  150 => function ($stackPos) {
1412
- $this->semValue = new Node\Const_(new Node\Identifier($this->semStack[$stackPos-(3-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos-(3-1)])), $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1465
+ $this->semValue = new Node\Const_(new Node\Identifier($this->semStack[$stackPos-(3-1)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributeStack[$stackPos-(3-1)]), $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1413
1466
  },
1414
1467
  151 => function ($stackPos) {
1415
- if ($this->semStack[$stackPos-(2-2)] !== null) { $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; } $this->semValue = $this->semStack[$stackPos-(2-1)];;
1468
+ $this->semValue = new Node\Const_(new Node\Identifier($this->semStack[$stackPos-(3-1)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributeStack[$stackPos-(3-1)]), $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1416
1469
  },
1417
1470
  152 => function ($stackPos) {
1418
- $this->semValue = array();
1471
+ 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)]; };
1419
1472
  },
1420
1473
  153 => function ($stackPos) {
1421
- $nop = $this->maybeCreateZeroLengthNop($this->tokenPos);;
1474
+ $this->semValue = array();
1475
+ },
1476
+ 154 => function ($stackPos) {
1477
+ $startAttributes = $this->lookaheadStartAttributes; if (isset($startAttributes['comments'])) { $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); } else { $nop = null; };
1422
1478
  if ($nop !== null) { $this->semStack[$stackPos-(1-1)][] = $nop; } $this->semValue = $this->semStack[$stackPos-(1-1)];
1423
1479
  },
1424
- 154 => null,
1425
- 155 => null,
1426
- 156 => null,
1480
+ 155 => function ($stackPos) {
1481
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1482
+ },
1483
+ 156 => function ($stackPos) {
1484
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1485
+ },
1427
1486
  157 => function ($stackPos) {
1428
- throw new Error('__HALT_COMPILER() can only be used from the outermost scope', $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1487
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1429
1488
  },
1430
1489
  158 => function ($stackPos) {
1431
- $this->semValue = new Stmt\Block($this->semStack[$stackPos-(3-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1490
+ throw new Error('__HALT_COMPILER() can only be used from the outermost scope', $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1432
1491
  },
1433
1492
  159 => function ($stackPos) {
1434
- $this->semValue = new Stmt\If_($this->semStack[$stackPos-(7-3)], ['stmts' => $this->semStack[$stackPos-(7-5)], 'elseifs' => $this->semStack[$stackPos-(7-6)], 'else' => $this->semStack[$stackPos-(7-7)]], $this->getAttributes($this->tokenStartStack[$stackPos-(7-1)], $this->tokenEndStack[$stackPos]));
1493
+
1494
+ if ($this->semStack[$stackPos-(3-2)]) {
1495
+ $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', []))); };
1496
+ } else {
1497
+ $startAttributes = $this->startAttributeStack[$stackPos-(3-1)]; if (isset($startAttributes['comments'])) { $this->semValue = new Stmt\Nop($startAttributes + $this->endAttributes); } else { $this->semValue = null; };
1498
+ if (null === $this->semValue) { $this->semValue = array(); }
1499
+ }
1500
+
1435
1501
  },
1436
1502
  160 => function ($stackPos) {
1437
- $this->semValue = new Stmt\If_($this->semStack[$stackPos-(10-3)], ['stmts' => $this->semStack[$stackPos-(10-6)], 'elseifs' => $this->semStack[$stackPos-(10-7)], 'else' => $this->semStack[$stackPos-(10-8)]], $this->getAttributes($this->tokenStartStack[$stackPos-(10-1)], $this->tokenEndStack[$stackPos]));
1503
+ $this->semValue = new Stmt\If_($this->semStack[$stackPos-(7-3)], ['stmts' => is_array($this->semStack[$stackPos-(7-5)]) ? $this->semStack[$stackPos-(7-5)] : array($this->semStack[$stackPos-(7-5)]), 'elseifs' => $this->semStack[$stackPos-(7-6)], 'else' => $this->semStack[$stackPos-(7-7)]], $this->startAttributeStack[$stackPos-(7-1)] + $this->endAttributes);
1438
1504
  },
1439
1505
  161 => function ($stackPos) {
1440
- $this->semValue = new Stmt\While_($this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-5)], $this->getAttributes($this->tokenStartStack[$stackPos-(5-1)], $this->tokenEndStack[$stackPos]));
1506
+ $this->semValue = new Stmt\If_($this->semStack[$stackPos-(10-3)], ['stmts' => $this->semStack[$stackPos-(10-6)], 'elseifs' => $this->semStack[$stackPos-(10-7)], 'else' => $this->semStack[$stackPos-(10-8)]], $this->startAttributeStack[$stackPos-(10-1)] + $this->endAttributes);
1441
1507
  },
1442
1508
  162 => function ($stackPos) {
1443
- $this->semValue = new Stmt\Do_($this->semStack[$stackPos-(7-5)], $this->semStack[$stackPos-(7-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(7-1)], $this->tokenEndStack[$stackPos]));
1509
+ $this->semValue = new Stmt\While_($this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-5)], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
1444
1510
  },
1445
1511
  163 => function ($stackPos) {
1446
- $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->getAttributes($this->tokenStartStack[$stackPos-(9-1)], $this->tokenEndStack[$stackPos]));
1512
+ $this->semValue = new Stmt\Do_($this->semStack[$stackPos-(7-5)], is_array($this->semStack[$stackPos-(7-2)]) ? $this->semStack[$stackPos-(7-2)] : array($this->semStack[$stackPos-(7-2)]), $this->startAttributeStack[$stackPos-(7-1)] + $this->endAttributes);
1447
1513
  },
1448
1514
  164 => function ($stackPos) {
1449
- $this->semValue = new Stmt\Switch_($this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-5)], $this->getAttributes($this->tokenStartStack[$stackPos-(5-1)], $this->tokenEndStack[$stackPos]));
1515
+ $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);
1450
1516
  },
1451
1517
  165 => function ($stackPos) {
1452
- $this->semValue = new Stmt\Break_($this->semStack[$stackPos-(3-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1518
+ $this->semValue = new Stmt\Switch_($this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-5)], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
1453
1519
  },
1454
1520
  166 => function ($stackPos) {
1455
- $this->semValue = new Stmt\Continue_($this->semStack[$stackPos-(3-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1521
+ $this->semValue = new Stmt\Break_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1456
1522
  },
1457
1523
  167 => function ($stackPos) {
1458
- $this->semValue = new Stmt\Return_($this->semStack[$stackPos-(3-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1524
+ $this->semValue = new Stmt\Continue_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1459
1525
  },
1460
1526
  168 => function ($stackPos) {
1461
- $this->semValue = new Stmt\Global_($this->semStack[$stackPos-(3-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1527
+ $this->semValue = new Stmt\Return_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1462
1528
  },
1463
1529
  169 => function ($stackPos) {
1464
- $this->semValue = new Stmt\Static_($this->semStack[$stackPos-(3-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1530
+ $this->semValue = new Stmt\Global_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1465
1531
  },
1466
1532
  170 => function ($stackPos) {
1467
- $this->semValue = new Stmt\Echo_($this->semStack[$stackPos-(3-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1533
+ $this->semValue = new Stmt\Static_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1468
1534
  },
1469
1535
  171 => function ($stackPos) {
1470
-
1471
- $this->semValue = new Stmt\InlineHTML($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1472
- $this->semValue->setAttribute('hasLeadingNewline', $this->inlineHtmlHasLeadingNewline($stackPos-(1-1)));
1473
-
1536
+ $this->semValue = new Stmt\Echo_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1474
1537
  },
1475
1538
  172 => function ($stackPos) {
1476
- $this->semValue = new Stmt\Expression($this->semStack[$stackPos-(2-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
1539
+ $this->semValue = new Stmt\InlineHTML($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1477
1540
  },
1478
1541
  173 => function ($stackPos) {
1479
- $this->semValue = new Stmt\Unset_($this->semStack[$stackPos-(5-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(5-1)], $this->tokenEndStack[$stackPos]));
1542
+
1543
+ $e = $this->semStack[$stackPos-(2-1)];
1544
+ if ($e instanceof Expr\Throw_) {
1545
+ // For backwards-compatibility reasons, convert throw in statement position into
1546
+ // Stmt\Throw_ rather than Stmt\Expression(Expr\Throw_).
1547
+ $this->semValue = new Stmt\Throw_($e->expr, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1548
+ } else {
1549
+ $this->semValue = new Stmt\Expression($e, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1550
+ }
1551
+
1480
1552
  },
1481
1553
  174 => function ($stackPos) {
1482
- $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->getAttributes($this->tokenStartStack[$stackPos-(7-1)], $this->tokenEndStack[$stackPos]));
1554
+ $this->semValue = new Stmt\Unset_($this->semStack[$stackPos-(5-3)], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
1483
1555
  },
1484
1556
  175 => function ($stackPos) {
1485
- $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->getAttributes($this->tokenStartStack[$stackPos-(9-1)], $this->tokenEndStack[$stackPos]));
1557
+ $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);
1486
1558
  },
1487
1559
  176 => function ($stackPos) {
1488
- $this->semValue = new Stmt\Foreach_($this->semStack[$stackPos-(6-3)], new Expr\Error($this->getAttributes($this->tokenStartStack[$stackPos-(6-4)], $this->tokenEndStack[$stackPos-(6-4)])), ['stmts' => $this->semStack[$stackPos-(6-6)]], $this->getAttributes($this->tokenStartStack[$stackPos-(6-1)], $this->tokenEndStack[$stackPos]));
1560
+ $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);
1489
1561
  },
1490
1562
  177 => function ($stackPos) {
1491
- $this->semValue = new Stmt\Declare_($this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-5)], $this->getAttributes($this->tokenStartStack[$stackPos-(5-1)], $this->tokenEndStack[$stackPos]));
1563
+ $this->semValue = new Stmt\Foreach_($this->semStack[$stackPos-(6-3)], new Expr\Error($this->startAttributeStack[$stackPos-(6-4)] + $this->endAttributeStack[$stackPos-(6-4)]), ['stmts' => $this->semStack[$stackPos-(6-6)]], $this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes);
1492
1564
  },
1493
1565
  178 => function ($stackPos) {
1494
- $this->semValue = new Stmt\TryCatch($this->semStack[$stackPos-(6-3)], $this->semStack[$stackPos-(6-5)], $this->semStack[$stackPos-(6-6)], $this->getAttributes($this->tokenStartStack[$stackPos-(6-1)], $this->tokenEndStack[$stackPos])); $this->checkTryCatch($this->semValue);
1566
+ $this->semValue = new Stmt\Declare_($this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-5)], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
1495
1567
  },
1496
1568
  179 => function ($stackPos) {
1497
- $this->semValue = new Stmt\Goto_($this->semStack[$stackPos-(3-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1569
+ $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);
1498
1570
  },
1499
1571
  180 => function ($stackPos) {
1500
- $this->semValue = new Stmt\Label($this->semStack[$stackPos-(2-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
1572
+ $this->semValue = new Stmt\Goto_($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1501
1573
  },
1502
1574
  181 => function ($stackPos) {
1503
- $this->semValue = null; /* means: no statement */
1575
+ $this->semValue = new Stmt\Label($this->semStack[$stackPos-(2-1)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1576
+ },
1577
+ 182 => function ($stackPos) {
1578
+ $this->semValue = array(); /* means: no statement */
1504
1579
  },
1505
- 182 => null,
1506
1580
  183 => function ($stackPos) {
1507
- $this->semValue = $this->maybeCreateNop($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]);
1581
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1508
1582
  },
1509
1583
  184 => function ($stackPos) {
1510
- if ($this->semStack[$stackPos-(1-1)] instanceof Stmt\Block) { $this->semValue = $this->semStack[$stackPos-(1-1)]->stmts; } else if ($this->semStack[$stackPos-(1-1)] === null) { $this->semValue = []; } else { $this->semValue = [$this->semStack[$stackPos-(1-1)]]; };
1584
+ $startAttributes = $this->startAttributeStack[$stackPos-(1-1)]; if (isset($startAttributes['comments'])) { $this->semValue = new Stmt\Nop($startAttributes + $this->endAttributes); } else { $this->semValue = null; };
1585
+ if ($this->semValue === null) $this->semValue = array(); /* means: no statement */
1511
1586
  },
1512
1587
  185 => function ($stackPos) {
1513
1588
  $this->semValue = array();
@@ -1522,15 +1597,17 @@ class Php7 extends \PhpParser\ParserAbstract
1522
1597
  $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1523
1598
  },
1524
1599
  189 => function ($stackPos) {
1525
- $this->semValue = new Stmt\Catch_($this->semStack[$stackPos-(8-3)], $this->semStack[$stackPos-(8-4)], $this->semStack[$stackPos-(8-7)], $this->getAttributes($this->tokenStartStack[$stackPos-(8-1)], $this->tokenEndStack[$stackPos]));
1600
+ $this->semValue = new Stmt\Catch_($this->semStack[$stackPos-(8-3)], $this->semStack[$stackPos-(8-4)], $this->semStack[$stackPos-(8-7)], $this->startAttributeStack[$stackPos-(8-1)] + $this->endAttributes);
1526
1601
  },
1527
1602
  190 => function ($stackPos) {
1528
1603
  $this->semValue = null;
1529
1604
  },
1530
1605
  191 => function ($stackPos) {
1531
- $this->semValue = new Stmt\Finally_($this->semStack[$stackPos-(4-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
1606
+ $this->semValue = new Stmt\Finally_($this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1607
+ },
1608
+ 192 => function ($stackPos) {
1609
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
1532
1610
  },
1533
- 192 => null,
1534
1611
  193 => function ($stackPos) {
1535
1612
  $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1536
1613
  },
@@ -1561,33 +1638,35 @@ class Php7 extends \PhpParser\ParserAbstract
1561
1638
  202 => function ($stackPos) {
1562
1639
  $this->semValue = [];
1563
1640
  },
1564
- 203 => null,
1641
+ 203 => function ($stackPos) {
1642
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1643
+ },
1565
1644
  204 => function ($stackPos) {
1566
- $this->semValue = new Node\Identifier($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1645
+ $this->semValue = new Node\Identifier($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1567
1646
  },
1568
1647
  205 => function ($stackPos) {
1569
- $this->semValue = new Stmt\Function_($this->semStack[$stackPos-(8-3)], ['byRef' => $this->semStack[$stackPos-(8-2)], 'params' => $this->semStack[$stackPos-(8-5)], 'returnType' => $this->semStack[$stackPos-(8-7)], 'stmts' => $this->semStack[$stackPos-(8-8)], 'attrGroups' => []], $this->getAttributes($this->tokenStartStack[$stackPos-(8-1)], $this->tokenEndStack[$stackPos]));
1648
+ $this->semValue = new Stmt\Function_($this->semStack[$stackPos-(8-3)], ['byRef' => $this->semStack[$stackPos-(8-2)], 'params' => $this->semStack[$stackPos-(8-5)], 'returnType' => $this->semStack[$stackPos-(8-7)], 'stmts' => $this->semStack[$stackPos-(8-8)], 'attrGroups' => []], $this->startAttributeStack[$stackPos-(8-1)] + $this->endAttributes);
1570
1649
  },
1571
1650
  206 => function ($stackPos) {
1572
- $this->semValue = new Stmt\Function_($this->semStack[$stackPos-(9-4)], ['byRef' => $this->semStack[$stackPos-(9-3)], 'params' => $this->semStack[$stackPos-(9-6)], 'returnType' => $this->semStack[$stackPos-(9-8)], 'stmts' => $this->semStack[$stackPos-(9-9)], 'attrGroups' => $this->semStack[$stackPos-(9-1)]], $this->getAttributes($this->tokenStartStack[$stackPos-(9-1)], $this->tokenEndStack[$stackPos]));
1651
+ $this->semValue = new Stmt\Function_($this->semStack[$stackPos-(9-4)], ['byRef' => $this->semStack[$stackPos-(9-3)], 'params' => $this->semStack[$stackPos-(9-6)], 'returnType' => $this->semStack[$stackPos-(9-8)], 'stmts' => $this->semStack[$stackPos-(9-9)], 'attrGroups' => $this->semStack[$stackPos-(9-1)]], $this->startAttributeStack[$stackPos-(9-1)] + $this->endAttributes);
1573
1652
  },
1574
1653
  207 => function ($stackPos) {
1575
- $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)], 'attrGroups' => []], $this->getAttributes($this->tokenStartStack[$stackPos-(7-1)], $this->tokenEndStack[$stackPos]));
1654
+ $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)], 'attrGroups' => []], $this->startAttributeStack[$stackPos-(7-1)] + $this->endAttributes);
1576
1655
  $this->checkClass($this->semValue, $stackPos-(7-2));
1577
1656
  },
1578
1657
  208 => function ($stackPos) {
1579
- $this->semValue = new Stmt\Class_($this->semStack[$stackPos-(8-3)], ['type' => $this->semStack[$stackPos-(8-2)], 'extends' => $this->semStack[$stackPos-(8-4)], 'implements' => $this->semStack[$stackPos-(8-5)], 'stmts' => $this->semStack[$stackPos-(8-7)], 'attrGroups' => $this->semStack[$stackPos-(8-1)]], $this->getAttributes($this->tokenStartStack[$stackPos-(8-1)], $this->tokenEndStack[$stackPos]));
1658
+ $this->semValue = new Stmt\Class_($this->semStack[$stackPos-(8-3)], ['type' => $this->semStack[$stackPos-(8-2)], 'extends' => $this->semStack[$stackPos-(8-4)], 'implements' => $this->semStack[$stackPos-(8-5)], 'stmts' => $this->semStack[$stackPos-(8-7)], 'attrGroups' => $this->semStack[$stackPos-(8-1)]], $this->startAttributeStack[$stackPos-(8-1)] + $this->endAttributes);
1580
1659
  $this->checkClass($this->semValue, $stackPos-(8-3));
1581
1660
  },
1582
1661
  209 => function ($stackPos) {
1583
- $this->semValue = new Stmt\Interface_($this->semStack[$stackPos-(7-3)], ['extends' => $this->semStack[$stackPos-(7-4)], 'stmts' => $this->semStack[$stackPos-(7-6)], 'attrGroups' => $this->semStack[$stackPos-(7-1)]], $this->getAttributes($this->tokenStartStack[$stackPos-(7-1)], $this->tokenEndStack[$stackPos]));
1662
+ $this->semValue = new Stmt\Interface_($this->semStack[$stackPos-(7-3)], ['extends' => $this->semStack[$stackPos-(7-4)], 'stmts' => $this->semStack[$stackPos-(7-6)], 'attrGroups' => $this->semStack[$stackPos-(7-1)]], $this->startAttributeStack[$stackPos-(7-1)] + $this->endAttributes);
1584
1663
  $this->checkInterface($this->semValue, $stackPos-(7-3));
1585
1664
  },
1586
1665
  210 => function ($stackPos) {
1587
- $this->semValue = new Stmt\Trait_($this->semStack[$stackPos-(6-3)], ['stmts' => $this->semStack[$stackPos-(6-5)], 'attrGroups' => $this->semStack[$stackPos-(6-1)]], $this->getAttributes($this->tokenStartStack[$stackPos-(6-1)], $this->tokenEndStack[$stackPos]));
1666
+ $this->semValue = new Stmt\Trait_($this->semStack[$stackPos-(6-3)], ['stmts' => $this->semStack[$stackPos-(6-5)], 'attrGroups' => $this->semStack[$stackPos-(6-1)]], $this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes);
1588
1667
  },
1589
1668
  211 => function ($stackPos) {
1590
- $this->semValue = new Stmt\Enum_($this->semStack[$stackPos-(8-3)], ['scalarType' => $this->semStack[$stackPos-(8-4)], 'implements' => $this->semStack[$stackPos-(8-5)], 'stmts' => $this->semStack[$stackPos-(8-7)], 'attrGroups' => $this->semStack[$stackPos-(8-1)]], $this->getAttributes($this->tokenStartStack[$stackPos-(8-1)], $this->tokenEndStack[$stackPos]));
1669
+ $this->semValue = new Stmt\Enum_($this->semStack[$stackPos-(8-3)], ['scalarType' => $this->semStack[$stackPos-(8-4)], 'implements' => $this->semStack[$stackPos-(8-5)], 'stmts' => $this->semStack[$stackPos-(8-7)], 'attrGroups' => $this->semStack[$stackPos-(8-1)]], $this->startAttributeStack[$stackPos-(8-1)] + $this->endAttributes);
1591
1670
  $this->checkEnum($this->semValue, $stackPos-(8-3));
1592
1671
  },
1593
1672
  212 => function ($stackPos) {
@@ -1605,19 +1684,23 @@ class Php7 extends \PhpParser\ParserAbstract
1605
1684
  216 => function ($stackPos) {
1606
1685
  $this->semValue = 0;
1607
1686
  },
1608
- 217 => null,
1609
- 218 => null,
1687
+ 217 => function ($stackPos) {
1688
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
1689
+ },
1690
+ 218 => function ($stackPos) {
1691
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1692
+ },
1610
1693
  219 => function ($stackPos) {
1611
1694
  $this->checkClassModifier($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)];
1612
1695
  },
1613
1696
  220 => function ($stackPos) {
1614
- $this->semValue = Modifiers::ABSTRACT;
1697
+ $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT;
1615
1698
  },
1616
1699
  221 => function ($stackPos) {
1617
- $this->semValue = Modifiers::FINAL;
1700
+ $this->semValue = Stmt\Class_::MODIFIER_FINAL;
1618
1701
  },
1619
1702
  222 => function ($stackPos) {
1620
- $this->semValue = Modifiers::READONLY;
1703
+ $this->semValue = Stmt\Class_::MODIFIER_READONLY;
1621
1704
  },
1622
1705
  223 => function ($stackPos) {
1623
1706
  $this->semValue = null;
@@ -1637,23 +1720,29 @@ class Php7 extends \PhpParser\ParserAbstract
1637
1720
  228 => function ($stackPos) {
1638
1721
  $this->semValue = $this->semStack[$stackPos-(2-2)];
1639
1722
  },
1640
- 229 => null,
1723
+ 229 => function ($stackPos) {
1724
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
1725
+ },
1641
1726
  230 => function ($stackPos) {
1642
1727
  $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1643
1728
  },
1644
1729
  231 => function ($stackPos) {
1645
1730
  $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1646
1731
  },
1647
- 232 => null,
1732
+ 232 => function ($stackPos) {
1733
+ $this->semValue = is_array($this->semStack[$stackPos-(1-1)]) ? $this->semStack[$stackPos-(1-1)] : array($this->semStack[$stackPos-(1-1)]);
1734
+ },
1648
1735
  233 => function ($stackPos) {
1649
1736
  $this->semValue = $this->semStack[$stackPos-(4-2)];
1650
1737
  },
1651
- 234 => null,
1738
+ 234 => function ($stackPos) {
1739
+ $this->semValue = is_array($this->semStack[$stackPos-(1-1)]) ? $this->semStack[$stackPos-(1-1)] : array($this->semStack[$stackPos-(1-1)]);
1740
+ },
1652
1741
  235 => function ($stackPos) {
1653
1742
  $this->semValue = $this->semStack[$stackPos-(4-2)];
1654
1743
  },
1655
1744
  236 => function ($stackPos) {
1656
- if ($this->semStack[$stackPos-(1-1)] instanceof Stmt\Block) { $this->semValue = $this->semStack[$stackPos-(1-1)]->stmts; } else if ($this->semStack[$stackPos-(1-1)] === null) { $this->semValue = []; } else { $this->semValue = [$this->semStack[$stackPos-(1-1)]]; };
1745
+ $this->semValue = is_array($this->semStack[$stackPos-(1-1)]) ? $this->semStack[$stackPos-(1-1)] : array($this->semStack[$stackPos-(1-1)]);
1657
1746
  },
1658
1747
  237 => function ($stackPos) {
1659
1748
  $this->semValue = null;
@@ -1661,7 +1750,9 @@ class Php7 extends \PhpParser\ParserAbstract
1661
1750
  238 => function ($stackPos) {
1662
1751
  $this->semValue = $this->semStack[$stackPos-(4-2)];
1663
1752
  },
1664
- 239 => null,
1753
+ 239 => function ($stackPos) {
1754
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
1755
+ },
1665
1756
  240 => function ($stackPos) {
1666
1757
  $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1667
1758
  },
@@ -1669,7 +1760,7 @@ class Php7 extends \PhpParser\ParserAbstract
1669
1760
  $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1670
1761
  },
1671
1762
  242 => function ($stackPos) {
1672
- $this->semValue = new Node\DeclareItem($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1763
+ $this->semValue = new Stmt\DeclareDeclare($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1673
1764
  },
1674
1765
  243 => function ($stackPos) {
1675
1766
  $this->semValue = $this->semStack[$stackPos-(3-2)];
@@ -1690,20 +1781,26 @@ class Php7 extends \PhpParser\ParserAbstract
1690
1781
  $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
1691
1782
  },
1692
1783
  249 => function ($stackPos) {
1693
- $this->semValue = new Stmt\Case_($this->semStack[$stackPos-(4-2)], $this->semStack[$stackPos-(4-4)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
1784
+ $this->semValue = new Stmt\Case_($this->semStack[$stackPos-(4-2)], $this->semStack[$stackPos-(4-4)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1694
1785
  },
1695
1786
  250 => function ($stackPos) {
1696
- $this->semValue = new Stmt\Case_(null, $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1787
+ $this->semValue = new Stmt\Case_(null, $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1788
+ },
1789
+ 251 => function ($stackPos) {
1790
+ $this->semValue = $this->semStack[$stackPos];
1791
+ },
1792
+ 252 => function ($stackPos) {
1793
+ $this->semValue = $this->semStack[$stackPos];
1697
1794
  },
1698
- 251 => null,
1699
- 252 => null,
1700
1795
  253 => function ($stackPos) {
1701
- $this->semValue = new Expr\Match_($this->semStack[$stackPos-(7-3)], $this->semStack[$stackPos-(7-6)], $this->getAttributes($this->tokenStartStack[$stackPos-(7-1)], $this->tokenEndStack[$stackPos]));
1796
+ $this->semValue = new Expr\Match_($this->semStack[$stackPos-(7-3)], $this->semStack[$stackPos-(7-6)], $this->startAttributeStack[$stackPos-(7-1)] + $this->endAttributes);
1702
1797
  },
1703
1798
  254 => function ($stackPos) {
1704
1799
  $this->semValue = [];
1705
1800
  },
1706
- 255 => null,
1801
+ 255 => function ($stackPos) {
1802
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
1803
+ },
1707
1804
  256 => function ($stackPos) {
1708
1805
  $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1709
1806
  },
@@ -1711,13 +1808,13 @@ class Php7 extends \PhpParser\ParserAbstract
1711
1808
  $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1712
1809
  },
1713
1810
  258 => function ($stackPos) {
1714
- $this->semValue = new Node\MatchArm($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
1811
+ $this->semValue = new Node\MatchArm($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1715
1812
  },
1716
1813
  259 => function ($stackPos) {
1717
- $this->semValue = new Node\MatchArm(null, $this->semStack[$stackPos-(4-4)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
1814
+ $this->semValue = new Node\MatchArm(null, $this->semStack[$stackPos-(4-4)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
1718
1815
  },
1719
1816
  260 => function ($stackPos) {
1720
- $this->semValue = $this->semStack[$stackPos-(1-1)];
1817
+ $this->semValue = is_array($this->semStack[$stackPos-(1-1)]) ? $this->semStack[$stackPos-(1-1)] : array($this->semStack[$stackPos-(1-1)]);
1721
1818
  },
1722
1819
  261 => function ($stackPos) {
1723
1820
  $this->semValue = $this->semStack[$stackPos-(4-2)];
@@ -1729,7 +1826,7 @@ class Php7 extends \PhpParser\ParserAbstract
1729
1826
  $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
1730
1827
  },
1731
1828
  264 => function ($stackPos) {
1732
- $this->semValue = new Stmt\ElseIf_($this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-5)], $this->getAttributes($this->tokenStartStack[$stackPos-(5-1)], $this->tokenEndStack[$stackPos]));
1829
+ $this->semValue = new Stmt\ElseIf_($this->semStack[$stackPos-(5-3)], is_array($this->semStack[$stackPos-(5-5)]) ? $this->semStack[$stackPos-(5-5)] : array($this->semStack[$stackPos-(5-5)]), $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
1733
1830
  },
1734
1831
  265 => function ($stackPos) {
1735
1832
  $this->semValue = array();
@@ -1738,19 +1835,19 @@ class Php7 extends \PhpParser\ParserAbstract
1738
1835
  $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
1739
1836
  },
1740
1837
  267 => function ($stackPos) {
1741
- $this->semValue = new Stmt\ElseIf_($this->semStack[$stackPos-(6-3)], $this->semStack[$stackPos-(6-6)], $this->getAttributes($this->tokenStartStack[$stackPos-(6-1)], $this->tokenEndStack[$stackPos])); $this->fixupAlternativeElse($this->semValue);
1838
+ $this->semValue = new Stmt\ElseIf_($this->semStack[$stackPos-(6-3)], $this->semStack[$stackPos-(6-6)], $this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes); $this->fixupAlternativeElse($this->semValue);
1742
1839
  },
1743
1840
  268 => function ($stackPos) {
1744
1841
  $this->semValue = null;
1745
1842
  },
1746
1843
  269 => function ($stackPos) {
1747
- $this->semValue = new Stmt\Else_($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
1844
+ $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);
1748
1845
  },
1749
1846
  270 => function ($stackPos) {
1750
1847
  $this->semValue = null;
1751
1848
  },
1752
1849
  271 => function ($stackPos) {
1753
- $this->semValue = new Stmt\Else_($this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos])); $this->fixupAlternativeElse($this->semValue);
1850
+ $this->semValue = new Stmt\Else_($this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes); $this->fixupAlternativeElse($this->semValue);
1754
1851
  },
1755
1852
  272 => function ($stackPos) {
1756
1853
  $this->semValue = array($this->semStack[$stackPos-(1-1)], false);
@@ -1762,9 +1859,11 @@ class Php7 extends \PhpParser\ParserAbstract
1762
1859
  $this->semValue = array($this->semStack[$stackPos-(1-1)], false);
1763
1860
  },
1764
1861
  275 => function ($stackPos) {
1765
- $this->semValue = array($this->fixupArrayDestructuring($this->semStack[$stackPos-(1-1)]), false);
1862
+ $this->semValue = array($this->semStack[$stackPos-(1-1)], false);
1863
+ },
1864
+ 276 => function ($stackPos) {
1865
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
1766
1866
  },
1767
- 276 => null,
1768
1867
  277 => function ($stackPos) {
1769
1868
  $this->semValue = array();
1770
1869
  },
@@ -1781,50 +1880,58 @@ class Php7 extends \PhpParser\ParserAbstract
1781
1880
  $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)];
1782
1881
  },
1783
1882
  282 => function ($stackPos) {
1784
- $this->semValue = Modifiers::PUBLIC;
1883
+ $this->semValue = Stmt\Class_::MODIFIER_PUBLIC;
1785
1884
  },
1786
1885
  283 => function ($stackPos) {
1787
- $this->semValue = Modifiers::PROTECTED;
1886
+ $this->semValue = Stmt\Class_::MODIFIER_PROTECTED;
1788
1887
  },
1789
1888
  284 => function ($stackPos) {
1790
- $this->semValue = Modifiers::PRIVATE;
1889
+ $this->semValue = Stmt\Class_::MODIFIER_PRIVATE;
1791
1890
  },
1792
1891
  285 => function ($stackPos) {
1793
- $this->semValue = Modifiers::READONLY;
1892
+ $this->semValue = Stmt\Class_::MODIFIER_READONLY;
1794
1893
  },
1795
1894
  286 => function ($stackPos) {
1796
- $this->semValue = new Node\Param($this->semStack[$stackPos-(6-6)], null, $this->semStack[$stackPos-(6-3)], $this->semStack[$stackPos-(6-4)], $this->semStack[$stackPos-(6-5)], $this->getAttributes($this->tokenStartStack[$stackPos-(6-1)], $this->tokenEndStack[$stackPos]), $this->semStack[$stackPos-(6-2)], $this->semStack[$stackPos-(6-1)]);
1895
+ $this->semValue = new Node\Param($this->semStack[$stackPos-(6-6)], null, $this->semStack[$stackPos-(6-3)], $this->semStack[$stackPos-(6-4)], $this->semStack[$stackPos-(6-5)], $this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes, $this->semStack[$stackPos-(6-2)], $this->semStack[$stackPos-(6-1)]);
1797
1896
  $this->checkParam($this->semValue);
1798
1897
  },
1799
1898
  287 => function ($stackPos) {
1800
- $this->semValue = new Node\Param($this->semStack[$stackPos-(8-6)], $this->semStack[$stackPos-(8-8)], $this->semStack[$stackPos-(8-3)], $this->semStack[$stackPos-(8-4)], $this->semStack[$stackPos-(8-5)], $this->getAttributes($this->tokenStartStack[$stackPos-(8-1)], $this->tokenEndStack[$stackPos]), $this->semStack[$stackPos-(8-2)], $this->semStack[$stackPos-(8-1)]);
1899
+ $this->semValue = new Node\Param($this->semStack[$stackPos-(8-6)], $this->semStack[$stackPos-(8-8)], $this->semStack[$stackPos-(8-3)], $this->semStack[$stackPos-(8-4)], $this->semStack[$stackPos-(8-5)], $this->startAttributeStack[$stackPos-(8-1)] + $this->endAttributes, $this->semStack[$stackPos-(8-2)], $this->semStack[$stackPos-(8-1)]);
1801
1900
  $this->checkParam($this->semValue);
1802
1901
  },
1803
1902
  288 => function ($stackPos) {
1804
- $this->semValue = new Node\Param(new Expr\Error($this->getAttributes($this->tokenStartStack[$stackPos-(6-1)], $this->tokenEndStack[$stackPos])), null, $this->semStack[$stackPos-(6-3)], $this->semStack[$stackPos-(6-4)], $this->semStack[$stackPos-(6-5)], $this->getAttributes($this->tokenStartStack[$stackPos-(6-1)], $this->tokenEndStack[$stackPos]), $this->semStack[$stackPos-(6-2)], $this->semStack[$stackPos-(6-1)]);
1903
+ $this->semValue = new Node\Param(new Expr\Error($this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes), null, $this->semStack[$stackPos-(6-3)], $this->semStack[$stackPos-(6-4)], $this->semStack[$stackPos-(6-5)], $this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes, $this->semStack[$stackPos-(6-2)], $this->semStack[$stackPos-(6-1)]);
1904
+ },
1905
+ 289 => function ($stackPos) {
1906
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1805
1907
  },
1806
- 289 => null,
1807
1908
  290 => function ($stackPos) {
1808
- $this->semValue = new Node\NullableType($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
1909
+ $this->semValue = new Node\NullableType($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1809
1910
  },
1810
1911
  291 => function ($stackPos) {
1811
- $this->semValue = new Node\UnionType($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1912
+ $this->semValue = new Node\UnionType($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1913
+ },
1914
+ 292 => function ($stackPos) {
1915
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1916
+ },
1917
+ 293 => function ($stackPos) {
1918
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1812
1919
  },
1813
- 292 => null,
1814
- 293 => null,
1815
1920
  294 => function ($stackPos) {
1816
- $this->semValue = new Node\Name('static', $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1921
+ $this->semValue = new Node\Name('static', $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1817
1922
  },
1818
1923
  295 => function ($stackPos) {
1819
1924
  $this->semValue = $this->handleBuiltinTypes($this->semStack[$stackPos-(1-1)]);
1820
1925
  },
1821
1926
  296 => function ($stackPos) {
1822
- $this->semValue = new Node\Identifier('array', $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1927
+ $this->semValue = new Node\Identifier('array', $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1823
1928
  },
1824
1929
  297 => function ($stackPos) {
1825
- $this->semValue = new Node\Identifier('callable', $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1930
+ $this->semValue = new Node\Identifier('callable', $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1931
+ },
1932
+ 298 => function ($stackPos) {
1933
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1826
1934
  },
1827
- 298 => null,
1828
1935
  299 => function ($stackPos) {
1829
1936
  $this->semValue = $this->semStack[$stackPos-(3-2)];
1830
1937
  },
@@ -1834,7 +1941,9 @@ class Php7 extends \PhpParser\ParserAbstract
1834
1941
  301 => function ($stackPos) {
1835
1942
  $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1836
1943
  },
1837
- 302 => null,
1944
+ 302 => function ($stackPos) {
1945
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1946
+ },
1838
1947
  303 => function ($stackPos) {
1839
1948
  $this->semValue = $this->semStack[$stackPos-(3-2)];
1840
1949
  },
@@ -1851,7 +1960,7 @@ class Php7 extends \PhpParser\ParserAbstract
1851
1960
  $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1852
1961
  },
1853
1962
  308 => function ($stackPos) {
1854
- $this->semValue = new Node\IntersectionType($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1963
+ $this->semValue = new Node\IntersectionType($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1855
1964
  },
1856
1965
  309 => function ($stackPos) {
1857
1966
  $this->semValue = array($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)]);
@@ -1860,20 +1969,26 @@ class Php7 extends \PhpParser\ParserAbstract
1860
1969
  $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1861
1970
  },
1862
1971
  311 => function ($stackPos) {
1863
- $this->semValue = new Node\IntersectionType($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1972
+ $this->semValue = new Node\IntersectionType($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1973
+ },
1974
+ 312 => function ($stackPos) {
1975
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1864
1976
  },
1865
- 312 => null,
1866
1977
  313 => function ($stackPos) {
1867
- $this->semValue = new Node\NullableType($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
1978
+ $this->semValue = new Node\NullableType($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1868
1979
  },
1869
1980
  314 => function ($stackPos) {
1870
- $this->semValue = new Node\UnionType($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
1981
+ $this->semValue = new Node\UnionType($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1982
+ },
1983
+ 315 => function ($stackPos) {
1984
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1871
1985
  },
1872
- 315 => null,
1873
1986
  316 => function ($stackPos) {
1874
1987
  $this->semValue = null;
1875
1988
  },
1876
- 317 => null,
1989
+ 317 => function ($stackPos) {
1990
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
1991
+ },
1877
1992
  318 => function ($stackPos) {
1878
1993
  $this->semValue = null;
1879
1994
  },
@@ -1893,7 +2008,7 @@ class Php7 extends \PhpParser\ParserAbstract
1893
2008
  $this->semValue = array($this->semStack[$stackPos-(3-2)]);
1894
2009
  },
1895
2010
  324 => function ($stackPos) {
1896
- $this->semValue = new Node\VariadicPlaceholder($this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2011
+ $this->semValue = new Node\VariadicPlaceholder($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1897
2012
  },
1898
2013
  325 => function ($stackPos) {
1899
2014
  $this->semValue = array($this->semStack[$stackPos-(1-1)]);
@@ -1902,26 +2017,32 @@ class Php7 extends \PhpParser\ParserAbstract
1902
2017
  $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1903
2018
  },
1904
2019
  327 => function ($stackPos) {
1905
- $this->semValue = new Node\Arg($this->semStack[$stackPos-(1-1)], false, false, $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2020
+ $this->semValue = new Node\Arg($this->semStack[$stackPos-(1-1)], false, false, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1906
2021
  },
1907
2022
  328 => function ($stackPos) {
1908
- $this->semValue = new Node\Arg($this->semStack[$stackPos-(2-2)], true, false, $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2023
+ $this->semValue = new Node\Arg($this->semStack[$stackPos-(2-2)], true, false, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1909
2024
  },
1910
2025
  329 => function ($stackPos) {
1911
- $this->semValue = new Node\Arg($this->semStack[$stackPos-(2-2)], false, true, $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2026
+ $this->semValue = new Node\Arg($this->semStack[$stackPos-(2-2)], false, true, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
1912
2027
  },
1913
2028
  330 => function ($stackPos) {
1914
- $this->semValue = new Node\Arg($this->semStack[$stackPos-(3-3)], false, false, $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]), $this->semStack[$stackPos-(3-1)]);
2029
+ $this->semValue = new Node\Arg($this->semStack[$stackPos-(3-3)], false, false, $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes, $this->semStack[$stackPos-(3-1)]);
2030
+ },
2031
+ 331 => function ($stackPos) {
2032
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
1915
2033
  },
1916
- 331 => null,
1917
2034
  332 => function ($stackPos) {
1918
2035
  $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1919
2036
  },
1920
2037
  333 => function ($stackPos) {
1921
2038
  $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1922
2039
  },
1923
- 334 => null,
1924
- 335 => null,
2040
+ 334 => function ($stackPos) {
2041
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2042
+ },
2043
+ 335 => function ($stackPos) {
2044
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
2045
+ },
1925
2046
  336 => function ($stackPos) {
1926
2047
  $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
1927
2048
  },
@@ -1929,10 +2050,10 @@ class Php7 extends \PhpParser\ParserAbstract
1929
2050
  $this->semValue = array($this->semStack[$stackPos-(1-1)]);
1930
2051
  },
1931
2052
  338 => function ($stackPos) {
1932
- $this->semValue = new Node\StaticVar($this->semStack[$stackPos-(1-1)], null, $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2053
+ $this->semValue = new Stmt\StaticVar($this->semStack[$stackPos-(1-1)], null, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
1933
2054
  },
1934
2055
  339 => function ($stackPos) {
1935
- $this->semValue = new Node\StaticVar($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2056
+ $this->semValue = new Stmt\StaticVar($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1936
2057
  },
1937
2058
  340 => function ($stackPos) {
1938
2059
  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)]; }
@@ -1941,30 +2062,30 @@ class Php7 extends \PhpParser\ParserAbstract
1941
2062
  $this->semValue = array();
1942
2063
  },
1943
2064
  342 => function ($stackPos) {
1944
- $nop = $this->maybeCreateZeroLengthNop($this->tokenPos);;
2065
+ $startAttributes = $this->lookaheadStartAttributes; if (isset($startAttributes['comments'])) { $nop = new Stmt\Nop($this->createCommentNopAttributes($startAttributes['comments'])); } else { $nop = null; };
1945
2066
  if ($nop !== null) { $this->semStack[$stackPos-(1-1)][] = $nop; } $this->semValue = $this->semStack[$stackPos-(1-1)];
1946
2067
  },
1947
2068
  343 => function ($stackPos) {
1948
- $this->semValue = new Stmt\Property($this->semStack[$stackPos-(5-2)], $this->semStack[$stackPos-(5-4)], $this->getAttributes($this->tokenStartStack[$stackPos-(5-1)], $this->tokenEndStack[$stackPos]), $this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-1)]);
2069
+ $this->semValue = new Stmt\Property($this->semStack[$stackPos-(5-2)], $this->semStack[$stackPos-(5-4)], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes, $this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-1)]);
1949
2070
  $this->checkProperty($this->semValue, $stackPos-(5-2));
1950
2071
  },
1951
2072
  344 => function ($stackPos) {
1952
- $this->semValue = new Stmt\ClassConst($this->semStack[$stackPos-(5-4)], $this->semStack[$stackPos-(5-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(5-1)], $this->tokenEndStack[$stackPos]), $this->semStack[$stackPos-(5-1)]);
2073
+ $this->semValue = new Stmt\ClassConst($this->semStack[$stackPos-(5-4)], $this->semStack[$stackPos-(5-2)], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes, $this->semStack[$stackPos-(5-1)]);
1953
2074
  $this->checkClassConst($this->semValue, $stackPos-(5-2));
1954
2075
  },
1955
2076
  345 => function ($stackPos) {
1956
- $this->semValue = new Stmt\ClassConst($this->semStack[$stackPos-(6-5)], $this->semStack[$stackPos-(6-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(6-1)], $this->tokenEndStack[$stackPos]), $this->semStack[$stackPos-(6-1)], $this->semStack[$stackPos-(6-4)]);
2077
+ $this->semValue = new Stmt\ClassConst($this->semStack[$stackPos-(6-5)], $this->semStack[$stackPos-(6-2)], $this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes, $this->semStack[$stackPos-(6-1)], $this->semStack[$stackPos-(6-4)]);
1957
2078
  $this->checkClassConst($this->semValue, $stackPos-(6-2));
1958
2079
  },
1959
2080
  346 => function ($stackPos) {
1960
- $this->semValue = new Stmt\ClassMethod($this->semStack[$stackPos-(10-5)], ['type' => $this->semStack[$stackPos-(10-2)], 'byRef' => $this->semStack[$stackPos-(10-4)], 'params' => $this->semStack[$stackPos-(10-7)], 'returnType' => $this->semStack[$stackPos-(10-9)], 'stmts' => $this->semStack[$stackPos-(10-10)], 'attrGroups' => $this->semStack[$stackPos-(10-1)]], $this->getAttributes($this->tokenStartStack[$stackPos-(10-1)], $this->tokenEndStack[$stackPos]));
2081
+ $this->semValue = new Stmt\ClassMethod($this->semStack[$stackPos-(10-5)], ['type' => $this->semStack[$stackPos-(10-2)], 'byRef' => $this->semStack[$stackPos-(10-4)], 'params' => $this->semStack[$stackPos-(10-7)], 'returnType' => $this->semStack[$stackPos-(10-9)], 'stmts' => $this->semStack[$stackPos-(10-10)], 'attrGroups' => $this->semStack[$stackPos-(10-1)]], $this->startAttributeStack[$stackPos-(10-1)] + $this->endAttributes);
1961
2082
  $this->checkClassMethod($this->semValue, $stackPos-(10-2));
1962
2083
  },
1963
2084
  347 => function ($stackPos) {
1964
- $this->semValue = new Stmt\TraitUse($this->semStack[$stackPos-(3-2)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2085
+ $this->semValue = new Stmt\TraitUse($this->semStack[$stackPos-(3-2)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
1965
2086
  },
1966
2087
  348 => function ($stackPos) {
1967
- $this->semValue = new Stmt\EnumCase($this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-4)], $this->semStack[$stackPos-(5-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(5-1)], $this->tokenEndStack[$stackPos]));
2088
+ $this->semValue = new Stmt\EnumCase($this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-4)], $this->semStack[$stackPos-(5-1)], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
1968
2089
  },
1969
2090
  349 => function ($stackPos) {
1970
2091
  $this->semValue = null; /* will be skipped */
@@ -1982,65 +2103,77 @@ class Php7 extends \PhpParser\ParserAbstract
1982
2103
  $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
1983
2104
  },
1984
2105
  354 => function ($stackPos) {
1985
- $this->semValue = new Stmt\TraitUseAdaptation\Precedence($this->semStack[$stackPos-(4-1)][0], $this->semStack[$stackPos-(4-1)][1], $this->semStack[$stackPos-(4-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2106
+ $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);
1986
2107
  },
1987
2108
  355 => function ($stackPos) {
1988
- $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->getAttributes($this->tokenStartStack[$stackPos-(5-1)], $this->tokenEndStack[$stackPos]));
2109
+ $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);
1989
2110
  },
1990
2111
  356 => function ($stackPos) {
1991
- $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->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2112
+ $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);
1992
2113
  },
1993
2114
  357 => function ($stackPos) {
1994
- $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->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2115
+ $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);
1995
2116
  },
1996
2117
  358 => function ($stackPos) {
1997
- $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->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2118
+ $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);
1998
2119
  },
1999
2120
  359 => function ($stackPos) {
2000
2121
  $this->semValue = array($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)]);
2001
2122
  },
2002
- 360 => null,
2123
+ 360 => function ($stackPos) {
2124
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2125
+ },
2003
2126
  361 => function ($stackPos) {
2004
2127
  $this->semValue = array(null, $this->semStack[$stackPos-(1-1)]);
2005
2128
  },
2006
2129
  362 => function ($stackPos) {
2007
2130
  $this->semValue = null;
2008
2131
  },
2009
- 363 => null,
2010
- 364 => null,
2132
+ 363 => function ($stackPos) {
2133
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2134
+ },
2135
+ 364 => function ($stackPos) {
2136
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2137
+ },
2011
2138
  365 => function ($stackPos) {
2012
2139
  $this->semValue = 0;
2013
2140
  },
2014
2141
  366 => function ($stackPos) {
2015
2142
  $this->semValue = 0;
2016
2143
  },
2017
- 367 => null,
2018
- 368 => null,
2144
+ 367 => function ($stackPos) {
2145
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2146
+ },
2147
+ 368 => function ($stackPos) {
2148
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2149
+ },
2019
2150
  369 => function ($stackPos) {
2020
2151
  $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)];
2021
2152
  },
2022
2153
  370 => function ($stackPos) {
2023
- $this->semValue = Modifiers::PUBLIC;
2154
+ $this->semValue = Stmt\Class_::MODIFIER_PUBLIC;
2024
2155
  },
2025
2156
  371 => function ($stackPos) {
2026
- $this->semValue = Modifiers::PROTECTED;
2157
+ $this->semValue = Stmt\Class_::MODIFIER_PROTECTED;
2027
2158
  },
2028
2159
  372 => function ($stackPos) {
2029
- $this->semValue = Modifiers::PRIVATE;
2160
+ $this->semValue = Stmt\Class_::MODIFIER_PRIVATE;
2030
2161
  },
2031
2162
  373 => function ($stackPos) {
2032
- $this->semValue = Modifiers::STATIC;
2163
+ $this->semValue = Stmt\Class_::MODIFIER_STATIC;
2033
2164
  },
2034
2165
  374 => function ($stackPos) {
2035
- $this->semValue = Modifiers::ABSTRACT;
2166
+ $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT;
2036
2167
  },
2037
2168
  375 => function ($stackPos) {
2038
- $this->semValue = Modifiers::FINAL;
2169
+ $this->semValue = Stmt\Class_::MODIFIER_FINAL;
2039
2170
  },
2040
2171
  376 => function ($stackPos) {
2041
- $this->semValue = Modifiers::READONLY;
2172
+ $this->semValue = Stmt\Class_::MODIFIER_READONLY;
2173
+ },
2174
+ 377 => function ($stackPos) {
2175
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
2042
2176
  },
2043
- 377 => null,
2044
2177
  378 => function ($stackPos) {
2045
2178
  $this->semValue = array($this->semStack[$stackPos-(1-1)]);
2046
2179
  },
@@ -2048,16 +2181,20 @@ class Php7 extends \PhpParser\ParserAbstract
2048
2181
  $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
2049
2182
  },
2050
2183
  380 => function ($stackPos) {
2051
- $this->semValue = new Node\VarLikeIdentifier(substr($this->semStack[$stackPos-(1-1)], 1), $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2184
+ $this->semValue = new Node\VarLikeIdentifier(substr($this->semStack[$stackPos-(1-1)], 1), $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2052
2185
  },
2053
2186
  381 => function ($stackPos) {
2054
- $this->semValue = new Node\PropertyItem($this->semStack[$stackPos-(1-1)], null, $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2187
+ $this->semValue = new Stmt\PropertyProperty($this->semStack[$stackPos-(1-1)], null, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2055
2188
  },
2056
2189
  382 => function ($stackPos) {
2057
- $this->semValue = new Node\PropertyItem($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2190
+ $this->semValue = new Stmt\PropertyProperty($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2191
+ },
2192
+ 383 => function ($stackPos) {
2193
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
2194
+ },
2195
+ 384 => function ($stackPos) {
2196
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
2058
2197
  },
2059
- 383 => null,
2060
- 384 => null,
2061
2198
  385 => function ($stackPos) {
2062
2199
  $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
2063
2200
  },
@@ -2067,633 +2204,695 @@ class Php7 extends \PhpParser\ParserAbstract
2067
2204
  387 => function ($stackPos) {
2068
2205
  $this->semValue = array();
2069
2206
  },
2070
- 388 => null,
2071
- 389 => null,
2207
+ 388 => function ($stackPos) {
2208
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2209
+ },
2210
+ 389 => function ($stackPos) {
2211
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2212
+ },
2072
2213
  390 => function ($stackPos) {
2073
- $this->semValue = new Expr\Assign($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2214
+ $this->semValue = new Expr\Assign($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2074
2215
  },
2075
2216
  391 => function ($stackPos) {
2076
- $this->semValue = new Expr\Assign($this->fixupArrayDestructuring($this->semStack[$stackPos-(3-1)]), $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2217
+ $this->semValue = new Expr\Assign($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2077
2218
  },
2078
2219
  392 => function ($stackPos) {
2079
- $this->semValue = new Expr\Assign($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2220
+ $this->semValue = new Expr\Assign($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2080
2221
  },
2081
2222
  393 => function ($stackPos) {
2082
- $this->semValue = new Expr\AssignRef($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-4)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2223
+ $this->semValue = new Expr\AssignRef($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-4)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2083
2224
  },
2084
2225
  394 => function ($stackPos) {
2085
- $this->semValue = new Expr\AssignRef($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-4)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2086
- if (!$this->phpVersion->allowsAssignNewByReference()) {
2087
- $this->emitError(new Error('Cannot assign new by reference', $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos])));
2088
- }
2089
-
2226
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2227
+ },
2228
+ 395 => function ($stackPos) {
2229
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2230
+ },
2231
+ 396 => function ($stackPos) {
2232
+ $this->semValue = new Expr\Clone_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2090
2233
  },
2091
- 395 => null,
2092
- 396 => null,
2093
2234
  397 => function ($stackPos) {
2094
- $this->semValue = new Expr\Clone_($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2235
+ $this->semValue = new Expr\AssignOp\Plus($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2095
2236
  },
2096
2237
  398 => function ($stackPos) {
2097
- $this->semValue = new Expr\AssignOp\Plus($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2238
+ $this->semValue = new Expr\AssignOp\Minus($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2098
2239
  },
2099
2240
  399 => function ($stackPos) {
2100
- $this->semValue = new Expr\AssignOp\Minus($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2241
+ $this->semValue = new Expr\AssignOp\Mul($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2101
2242
  },
2102
2243
  400 => function ($stackPos) {
2103
- $this->semValue = new Expr\AssignOp\Mul($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2244
+ $this->semValue = new Expr\AssignOp\Div($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2104
2245
  },
2105
2246
  401 => function ($stackPos) {
2106
- $this->semValue = new Expr\AssignOp\Div($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2247
+ $this->semValue = new Expr\AssignOp\Concat($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2107
2248
  },
2108
2249
  402 => function ($stackPos) {
2109
- $this->semValue = new Expr\AssignOp\Concat($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2250
+ $this->semValue = new Expr\AssignOp\Mod($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2110
2251
  },
2111
2252
  403 => function ($stackPos) {
2112
- $this->semValue = new Expr\AssignOp\Mod($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2253
+ $this->semValue = new Expr\AssignOp\BitwiseAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2113
2254
  },
2114
2255
  404 => function ($stackPos) {
2115
- $this->semValue = new Expr\AssignOp\BitwiseAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2256
+ $this->semValue = new Expr\AssignOp\BitwiseOr($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2116
2257
  },
2117
2258
  405 => function ($stackPos) {
2118
- $this->semValue = new Expr\AssignOp\BitwiseOr($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2259
+ $this->semValue = new Expr\AssignOp\BitwiseXor($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2119
2260
  },
2120
2261
  406 => function ($stackPos) {
2121
- $this->semValue = new Expr\AssignOp\BitwiseXor($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2262
+ $this->semValue = new Expr\AssignOp\ShiftLeft($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2122
2263
  },
2123
2264
  407 => function ($stackPos) {
2124
- $this->semValue = new Expr\AssignOp\ShiftLeft($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2265
+ $this->semValue = new Expr\AssignOp\ShiftRight($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2125
2266
  },
2126
2267
  408 => function ($stackPos) {
2127
- $this->semValue = new Expr\AssignOp\ShiftRight($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2268
+ $this->semValue = new Expr\AssignOp\Pow($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2128
2269
  },
2129
2270
  409 => function ($stackPos) {
2130
- $this->semValue = new Expr\AssignOp\Pow($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2271
+ $this->semValue = new Expr\AssignOp\Coalesce($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2131
2272
  },
2132
2273
  410 => function ($stackPos) {
2133
- $this->semValue = new Expr\AssignOp\Coalesce($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2274
+ $this->semValue = new Expr\PostInc($this->semStack[$stackPos-(2-1)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2134
2275
  },
2135
2276
  411 => function ($stackPos) {
2136
- $this->semValue = new Expr\PostInc($this->semStack[$stackPos-(2-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2277
+ $this->semValue = new Expr\PreInc($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2137
2278
  },
2138
2279
  412 => function ($stackPos) {
2139
- $this->semValue = new Expr\PreInc($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2280
+ $this->semValue = new Expr\PostDec($this->semStack[$stackPos-(2-1)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2140
2281
  },
2141
2282
  413 => function ($stackPos) {
2142
- $this->semValue = new Expr\PostDec($this->semStack[$stackPos-(2-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2283
+ $this->semValue = new Expr\PreDec($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2143
2284
  },
2144
2285
  414 => function ($stackPos) {
2145
- $this->semValue = new Expr\PreDec($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2286
+ $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2146
2287
  },
2147
2288
  415 => function ($stackPos) {
2148
- $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2289
+ $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2149
2290
  },
2150
2291
  416 => function ($stackPos) {
2151
- $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2292
+ $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2152
2293
  },
2153
2294
  417 => function ($stackPos) {
2154
- $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2295
+ $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2155
2296
  },
2156
2297
  418 => function ($stackPos) {
2157
- $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2298
+ $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2158
2299
  },
2159
2300
  419 => function ($stackPos) {
2160
- $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2301
+ $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2161
2302
  },
2162
2303
  420 => function ($stackPos) {
2163
- $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2304
+ $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2164
2305
  },
2165
2306
  421 => function ($stackPos) {
2166
- $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2307
+ $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2167
2308
  },
2168
2309
  422 => function ($stackPos) {
2169
- $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2310
+ $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2170
2311
  },
2171
2312
  423 => function ($stackPos) {
2172
- $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2313
+ $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2173
2314
  },
2174
2315
  424 => function ($stackPos) {
2175
- $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2316
+ $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2176
2317
  },
2177
2318
  425 => function ($stackPos) {
2178
- $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2319
+ $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2179
2320
  },
2180
2321
  426 => function ($stackPos) {
2181
- $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2322
+ $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2182
2323
  },
2183
2324
  427 => function ($stackPos) {
2184
- $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2325
+ $this->semValue = new Expr\BinaryOp\Div($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2185
2326
  },
2186
2327
  428 => function ($stackPos) {
2187
- $this->semValue = new Expr\BinaryOp\Div($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2328
+ $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2188
2329
  },
2189
2330
  429 => function ($stackPos) {
2190
- $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2331
+ $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2191
2332
  },
2192
2333
  430 => function ($stackPos) {
2193
- $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2334
+ $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2194
2335
  },
2195
2336
  431 => function ($stackPos) {
2196
- $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2337
+ $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2197
2338
  },
2198
2339
  432 => function ($stackPos) {
2199
- $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2340
+ $this->semValue = new Expr\UnaryPlus($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2200
2341
  },
2201
2342
  433 => function ($stackPos) {
2202
- $this->semValue = new Expr\UnaryPlus($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2343
+ $this->semValue = new Expr\UnaryMinus($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2203
2344
  },
2204
2345
  434 => function ($stackPos) {
2205
- $this->semValue = new Expr\UnaryMinus($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2346
+ $this->semValue = new Expr\BooleanNot($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2206
2347
  },
2207
2348
  435 => function ($stackPos) {
2208
- $this->semValue = new Expr\BooleanNot($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2349
+ $this->semValue = new Expr\BitwiseNot($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2209
2350
  },
2210
2351
  436 => function ($stackPos) {
2211
- $this->semValue = new Expr\BitwiseNot($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2352
+ $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2212
2353
  },
2213
2354
  437 => function ($stackPos) {
2214
- $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2355
+ $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2215
2356
  },
2216
2357
  438 => function ($stackPos) {
2217
- $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2358
+ $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2218
2359
  },
2219
2360
  439 => function ($stackPos) {
2220
- $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2361
+ $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2221
2362
  },
2222
2363
  440 => function ($stackPos) {
2223
- $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2364
+ $this->semValue = new Expr\BinaryOp\Spaceship($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2224
2365
  },
2225
2366
  441 => function ($stackPos) {
2226
- $this->semValue = new Expr\BinaryOp\Spaceship($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2367
+ $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2227
2368
  },
2228
2369
  442 => function ($stackPos) {
2229
- $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2370
+ $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2230
2371
  },
2231
2372
  443 => function ($stackPos) {
2232
- $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2373
+ $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2233
2374
  },
2234
2375
  444 => function ($stackPos) {
2235
- $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2376
+ $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2236
2377
  },
2237
2378
  445 => function ($stackPos) {
2238
- $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2379
+ $this->semValue = new Expr\Instanceof_($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2239
2380
  },
2240
2381
  446 => function ($stackPos) {
2241
- $this->semValue = new Expr\Instanceof_($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2382
+ $this->semValue = $this->semStack[$stackPos-(3-2)];
2242
2383
  },
2243
2384
  447 => function ($stackPos) {
2244
- $this->semValue = $this->semStack[$stackPos-(3-2)];
2385
+ $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);
2245
2386
  },
2246
2387
  448 => function ($stackPos) {
2247
- $this->semValue = new Expr\Ternary($this->semStack[$stackPos-(5-1)], $this->semStack[$stackPos-(5-3)], $this->semStack[$stackPos-(5-5)], $this->getAttributes($this->tokenStartStack[$stackPos-(5-1)], $this->tokenEndStack[$stackPos]));
2388
+ $this->semValue = new Expr\Ternary($this->semStack[$stackPos-(4-1)], null, $this->semStack[$stackPos-(4-4)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2248
2389
  },
2249
2390
  449 => function ($stackPos) {
2250
- $this->semValue = new Expr\Ternary($this->semStack[$stackPos-(4-1)], null, $this->semStack[$stackPos-(4-4)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2391
+ $this->semValue = new Expr\BinaryOp\Coalesce($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2251
2392
  },
2252
2393
  450 => function ($stackPos) {
2253
- $this->semValue = new Expr\BinaryOp\Coalesce($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2394
+ $this->semValue = new Expr\Isset_($this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2254
2395
  },
2255
2396
  451 => function ($stackPos) {
2256
- $this->semValue = new Expr\Isset_($this->semStack[$stackPos-(4-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2397
+ $this->semValue = new Expr\Empty_($this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2257
2398
  },
2258
2399
  452 => function ($stackPos) {
2259
- $this->semValue = new Expr\Empty_($this->semStack[$stackPos-(4-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2400
+ $this->semValue = new Expr\Include_($this->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2260
2401
  },
2261
2402
  453 => function ($stackPos) {
2262
- $this->semValue = new Expr\Include_($this->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE, $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2403
+ $this->semValue = new Expr\Include_($this->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE_ONCE, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2263
2404
  },
2264
2405
  454 => function ($stackPos) {
2265
- $this->semValue = new Expr\Include_($this->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE_ONCE, $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2406
+ $this->semValue = new Expr\Eval_($this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2266
2407
  },
2267
2408
  455 => function ($stackPos) {
2268
- $this->semValue = new Expr\Eval_($this->semStack[$stackPos-(4-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2409
+ $this->semValue = new Expr\Include_($this->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2269
2410
  },
2270
2411
  456 => function ($stackPos) {
2271
- $this->semValue = new Expr\Include_($this->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE, $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2412
+ $this->semValue = new Expr\Include_($this->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE_ONCE, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2272
2413
  },
2273
2414
  457 => function ($stackPos) {
2274
- $this->semValue = new Expr\Include_($this->semStack[$stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE_ONCE, $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2415
+ $this->semValue = new Expr\Cast\Int_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2275
2416
  },
2276
2417
  458 => function ($stackPos) {
2277
- $this->semValue = new Expr\Cast\Int_($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2278
- },
2279
- 459 => function ($stackPos) {
2280
- $attrs = $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]);
2418
+ $attrs = $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes;
2281
2419
  $attrs['kind'] = $this->getFloatCastKind($this->semStack[$stackPos-(2-1)]);
2282
2420
  $this->semValue = new Expr\Cast\Double($this->semStack[$stackPos-(2-2)], $attrs);
2283
2421
  },
2422
+ 459 => function ($stackPos) {
2423
+ $this->semValue = new Expr\Cast\String_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2424
+ },
2284
2425
  460 => function ($stackPos) {
2285
- $this->semValue = new Expr\Cast\String_($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2426
+ $this->semValue = new Expr\Cast\Array_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2286
2427
  },
2287
2428
  461 => function ($stackPos) {
2288
- $this->semValue = new Expr\Cast\Array_($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2429
+ $this->semValue = new Expr\Cast\Object_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2289
2430
  },
2290
2431
  462 => function ($stackPos) {
2291
- $this->semValue = new Expr\Cast\Object_($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2432
+ $this->semValue = new Expr\Cast\Bool_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2292
2433
  },
2293
2434
  463 => function ($stackPos) {
2294
- $this->semValue = new Expr\Cast\Bool_($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2435
+ $this->semValue = new Expr\Cast\Unset_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2295
2436
  },
2296
2437
  464 => function ($stackPos) {
2297
- $this->semValue = new Expr\Cast\Unset_($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2298
- },
2299
- 465 => function ($stackPos) {
2300
- $attrs = $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]);
2438
+ $attrs = $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes;
2301
2439
  $attrs['kind'] = strtolower($this->semStack[$stackPos-(2-1)]) === 'exit' ? Expr\Exit_::KIND_EXIT : Expr\Exit_::KIND_DIE;
2302
2440
  $this->semValue = new Expr\Exit_($this->semStack[$stackPos-(2-2)], $attrs);
2303
2441
  },
2442
+ 465 => function ($stackPos) {
2443
+ $this->semValue = new Expr\ErrorSuppress($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2444
+ },
2304
2445
  466 => function ($stackPos) {
2305
- $this->semValue = new Expr\ErrorSuppress($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2446
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2447
+ },
2448
+ 467 => function ($stackPos) {
2449
+ $this->semValue = new Expr\ShellExec($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2306
2450
  },
2307
- 467 => null,
2308
2451
  468 => function ($stackPos) {
2309
- $this->semValue = new Expr\ShellExec($this->semStack[$stackPos-(3-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2452
+ $this->semValue = new Expr\Print_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2310
2453
  },
2311
2454
  469 => function ($stackPos) {
2312
- $this->semValue = new Expr\Print_($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2455
+ $this->semValue = new Expr\Yield_(null, null, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2313
2456
  },
2314
2457
  470 => function ($stackPos) {
2315
- $this->semValue = new Expr\Yield_(null, null, $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2458
+ $this->semValue = new Expr\Yield_($this->semStack[$stackPos-(2-2)], null, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2316
2459
  },
2317
2460
  471 => function ($stackPos) {
2318
- $this->semValue = new Expr\Yield_($this->semStack[$stackPos-(2-2)], null, $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2461
+ $this->semValue = new Expr\Yield_($this->semStack[$stackPos-(4-4)], $this->semStack[$stackPos-(4-2)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2319
2462
  },
2320
2463
  472 => function ($stackPos) {
2321
- $this->semValue = new Expr\Yield_($this->semStack[$stackPos-(4-4)], $this->semStack[$stackPos-(4-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2464
+ $this->semValue = new Expr\YieldFrom($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2322
2465
  },
2323
2466
  473 => function ($stackPos) {
2324
- $this->semValue = new Expr\YieldFrom($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2467
+ $this->semValue = new Expr\Throw_($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2325
2468
  },
2326
2469
  474 => function ($stackPos) {
2327
- $this->semValue = new Expr\Throw_($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2470
+ $this->semValue = new Expr\ArrowFunction(['static' => false, 'byRef' => $this->semStack[$stackPos-(8-2)], 'params' => $this->semStack[$stackPos-(8-4)], 'returnType' => $this->semStack[$stackPos-(8-6)], 'expr' => $this->semStack[$stackPos-(8-8)], 'attrGroups' => []], $this->startAttributeStack[$stackPos-(8-1)] + $this->endAttributes);
2328
2471
  },
2329
2472
  475 => function ($stackPos) {
2330
- $this->semValue = new Expr\ArrowFunction(['static' => false, 'byRef' => $this->semStack[$stackPos-(8-2)], 'params' => $this->semStack[$stackPos-(8-4)], 'returnType' => $this->semStack[$stackPos-(8-6)], 'expr' => $this->semStack[$stackPos-(8-8)], 'attrGroups' => []], $this->getAttributes($this->tokenStartStack[$stackPos-(8-1)], $this->tokenEndStack[$stackPos]));
2473
+ $this->semValue = new Expr\ArrowFunction(['static' => true, 'byRef' => $this->semStack[$stackPos-(9-3)], 'params' => $this->semStack[$stackPos-(9-5)], 'returnType' => $this->semStack[$stackPos-(9-7)], 'expr' => $this->semStack[$stackPos-(9-9)], 'attrGroups' => []], $this->startAttributeStack[$stackPos-(9-1)] + $this->endAttributes);
2331
2474
  },
2332
2475
  476 => function ($stackPos) {
2333
- $this->semValue = new Expr\ArrowFunction(['static' => true, 'byRef' => $this->semStack[$stackPos-(9-3)], 'params' => $this->semStack[$stackPos-(9-5)], 'returnType' => $this->semStack[$stackPos-(9-7)], 'expr' => $this->semStack[$stackPos-(9-9)], 'attrGroups' => []], $this->getAttributes($this->tokenStartStack[$stackPos-(9-1)], $this->tokenEndStack[$stackPos]));
2476
+ $this->semValue = new Expr\Closure(['static' => false, 'byRef' => $this->semStack[$stackPos-(8-2)], 'params' => $this->semStack[$stackPos-(8-4)], 'uses' => $this->semStack[$stackPos-(8-6)], 'returnType' => $this->semStack[$stackPos-(8-7)], 'stmts' => $this->semStack[$stackPos-(8-8)], 'attrGroups' => []], $this->startAttributeStack[$stackPos-(8-1)] + $this->endAttributes);
2334
2477
  },
2335
2478
  477 => function ($stackPos) {
2336
- $this->semValue = new Expr\Closure(['static' => false, 'byRef' => $this->semStack[$stackPos-(8-2)], 'params' => $this->semStack[$stackPos-(8-4)], 'uses' => $this->semStack[$stackPos-(8-6)], 'returnType' => $this->semStack[$stackPos-(8-7)], 'stmts' => $this->semStack[$stackPos-(8-8)], 'attrGroups' => []], $this->getAttributes($this->tokenStartStack[$stackPos-(8-1)], $this->tokenEndStack[$stackPos]));
2479
+ $this->semValue = new Expr\Closure(['static' => true, 'byRef' => $this->semStack[$stackPos-(9-3)], 'params' => $this->semStack[$stackPos-(9-5)], 'uses' => $this->semStack[$stackPos-(9-7)], 'returnType' => $this->semStack[$stackPos-(9-8)], 'stmts' => $this->semStack[$stackPos-(9-9)], 'attrGroups' => []], $this->startAttributeStack[$stackPos-(9-1)] + $this->endAttributes);
2337
2480
  },
2338
2481
  478 => function ($stackPos) {
2339
- $this->semValue = new Expr\Closure(['static' => true, 'byRef' => $this->semStack[$stackPos-(9-3)], 'params' => $this->semStack[$stackPos-(9-5)], 'uses' => $this->semStack[$stackPos-(9-7)], 'returnType' => $this->semStack[$stackPos-(9-8)], 'stmts' => $this->semStack[$stackPos-(9-9)], 'attrGroups' => []], $this->getAttributes($this->tokenStartStack[$stackPos-(9-1)], $this->tokenEndStack[$stackPos]));
2482
+ $this->semValue = new Expr\ArrowFunction(['static' => false, 'byRef' => $this->semStack[$stackPos-(9-3)], 'params' => $this->semStack[$stackPos-(9-5)], 'returnType' => $this->semStack[$stackPos-(9-7)], 'expr' => $this->semStack[$stackPos-(9-9)], 'attrGroups' => $this->semStack[$stackPos-(9-1)]], $this->startAttributeStack[$stackPos-(9-1)] + $this->endAttributes);
2340
2483
  },
2341
2484
  479 => function ($stackPos) {
2342
- $this->semValue = new Expr\ArrowFunction(['static' => false, 'byRef' => $this->semStack[$stackPos-(9-3)], 'params' => $this->semStack[$stackPos-(9-5)], 'returnType' => $this->semStack[$stackPos-(9-7)], 'expr' => $this->semStack[$stackPos-(9-9)], 'attrGroups' => $this->semStack[$stackPos-(9-1)]], $this->getAttributes($this->tokenStartStack[$stackPos-(9-1)], $this->tokenEndStack[$stackPos]));
2485
+ $this->semValue = new Expr\ArrowFunction(['static' => true, 'byRef' => $this->semStack[$stackPos-(10-4)], 'params' => $this->semStack[$stackPos-(10-6)], 'returnType' => $this->semStack[$stackPos-(10-8)], 'expr' => $this->semStack[$stackPos-(10-10)], 'attrGroups' => $this->semStack[$stackPos-(10-1)]], $this->startAttributeStack[$stackPos-(10-1)] + $this->endAttributes);
2343
2486
  },
2344
2487
  480 => function ($stackPos) {
2345
- $this->semValue = new Expr\ArrowFunction(['static' => true, 'byRef' => $this->semStack[$stackPos-(10-4)], 'params' => $this->semStack[$stackPos-(10-6)], 'returnType' => $this->semStack[$stackPos-(10-8)], 'expr' => $this->semStack[$stackPos-(10-10)], 'attrGroups' => $this->semStack[$stackPos-(10-1)]], $this->getAttributes($this->tokenStartStack[$stackPos-(10-1)], $this->tokenEndStack[$stackPos]));
2488
+ $this->semValue = new Expr\Closure(['static' => false, 'byRef' => $this->semStack[$stackPos-(9-3)], 'params' => $this->semStack[$stackPos-(9-5)], 'uses' => $this->semStack[$stackPos-(9-7)], 'returnType' => $this->semStack[$stackPos-(9-8)], 'stmts' => $this->semStack[$stackPos-(9-9)], 'attrGroups' => $this->semStack[$stackPos-(9-1)]], $this->startAttributeStack[$stackPos-(9-1)] + $this->endAttributes);
2346
2489
  },
2347
2490
  481 => function ($stackPos) {
2348
- $this->semValue = new Expr\Closure(['static' => false, 'byRef' => $this->semStack[$stackPos-(9-3)], 'params' => $this->semStack[$stackPos-(9-5)], 'uses' => $this->semStack[$stackPos-(9-7)], 'returnType' => $this->semStack[$stackPos-(9-8)], 'stmts' => $this->semStack[$stackPos-(9-9)], 'attrGroups' => $this->semStack[$stackPos-(9-1)]], $this->getAttributes($this->tokenStartStack[$stackPos-(9-1)], $this->tokenEndStack[$stackPos]));
2491
+ $this->semValue = new Expr\Closure(['static' => true, 'byRef' => $this->semStack[$stackPos-(10-4)], 'params' => $this->semStack[$stackPos-(10-6)], 'uses' => $this->semStack[$stackPos-(10-8)], 'returnType' => $this->semStack[$stackPos-(10-9)], 'stmts' => $this->semStack[$stackPos-(10-10)], 'attrGroups' => $this->semStack[$stackPos-(10-1)]], $this->startAttributeStack[$stackPos-(10-1)] + $this->endAttributes);
2349
2492
  },
2350
2493
  482 => function ($stackPos) {
2351
- $this->semValue = new Expr\Closure(['static' => true, 'byRef' => $this->semStack[$stackPos-(10-4)], 'params' => $this->semStack[$stackPos-(10-6)], 'uses' => $this->semStack[$stackPos-(10-8)], 'returnType' => $this->semStack[$stackPos-(10-9)], 'stmts' => $this->semStack[$stackPos-(10-10)], 'attrGroups' => $this->semStack[$stackPos-(10-1)]], $this->getAttributes($this->tokenStartStack[$stackPos-(10-1)], $this->tokenEndStack[$stackPos]));
2494
+ $this->semValue = array(new Stmt\Class_(null, ['type' => $this->semStack[$stackPos-(8-2)], 'extends' => $this->semStack[$stackPos-(8-4)], 'implements' => $this->semStack[$stackPos-(8-5)], 'stmts' => $this->semStack[$stackPos-(8-7)], 'attrGroups' => $this->semStack[$stackPos-(8-1)]], $this->startAttributeStack[$stackPos-(8-1)] + $this->endAttributes), $this->semStack[$stackPos-(8-3)]);
2495
+ $this->checkClass($this->semValue[0], -1);
2352
2496
  },
2353
2497
  483 => function ($stackPos) {
2354
- $this->semValue = array(new Stmt\Class_(null, ['type' => $this->semStack[$stackPos-(8-2)], 'extends' => $this->semStack[$stackPos-(8-4)], 'implements' => $this->semStack[$stackPos-(8-5)], 'stmts' => $this->semStack[$stackPos-(8-7)], 'attrGroups' => $this->semStack[$stackPos-(8-1)]], $this->getAttributes($this->tokenStartStack[$stackPos-(8-1)], $this->tokenEndStack[$stackPos])), $this->semStack[$stackPos-(8-3)]);
2355
- $this->checkClass($this->semValue[0], -1);
2498
+ $this->semValue = new Expr\New_($this->semStack[$stackPos-(3-2)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2356
2499
  },
2357
2500
  484 => function ($stackPos) {
2358
- $this->semValue = new Expr\New_($this->semStack[$stackPos-(3-2)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2501
+ list($class, $ctorArgs) = $this->semStack[$stackPos-(2-2)]; $this->semValue = new Expr\New_($class, $ctorArgs, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2359
2502
  },
2360
2503
  485 => function ($stackPos) {
2361
- list($class, $ctorArgs) = $this->semStack[$stackPos-(2-2)]; $this->semValue = new Expr\New_($class, $ctorArgs, $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2504
+ $this->semValue = array();
2362
2505
  },
2363
2506
  486 => function ($stackPos) {
2364
- $this->semValue = array();
2507
+ $this->semValue = $this->semStack[$stackPos-(4-3)];
2365
2508
  },
2366
2509
  487 => function ($stackPos) {
2367
- $this->semValue = $this->semStack[$stackPos-(4-3)];
2510
+ $this->semValue = $this->semStack[$stackPos-(2-1)];
2368
2511
  },
2369
- 488 => null,
2370
- 489 => function ($stackPos) {
2512
+ 488 => function ($stackPos) {
2371
2513
  $this->semValue = array($this->semStack[$stackPos-(1-1)]);
2372
2514
  },
2373
- 490 => function ($stackPos) {
2515
+ 489 => function ($stackPos) {
2374
2516
  $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
2375
2517
  },
2518
+ 490 => function ($stackPos) {
2519
+ $this->semValue = new Expr\ClosureUse($this->semStack[$stackPos-(2-2)], $this->semStack[$stackPos-(2-1)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2520
+ },
2376
2521
  491 => function ($stackPos) {
2377
- $this->semValue = new Node\ClosureUse($this->semStack[$stackPos-(2-2)], $this->semStack[$stackPos-(2-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2522
+ $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2378
2523
  },
2379
2524
  492 => function ($stackPos) {
2380
- $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2525
+ $this->semValue = new Expr\FuncCall($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2381
2526
  },
2382
2527
  493 => function ($stackPos) {
2383
- $this->semValue = new Expr\FuncCall($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2528
+ $this->semValue = new Expr\FuncCall($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2384
2529
  },
2385
2530
  494 => function ($stackPos) {
2386
- $this->semValue = new Expr\FuncCall($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2531
+ $this->semValue = new Expr\FuncCall($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2387
2532
  },
2388
2533
  495 => function ($stackPos) {
2389
- $this->semValue = new Expr\FuncCall($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2534
+ $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);
2390
2535
  },
2391
2536
  496 => function ($stackPos) {
2392
- $this->semValue = new Expr\StaticCall($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->semStack[$stackPos-(4-4)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2537
+ $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2393
2538
  },
2394
2539
  497 => function ($stackPos) {
2395
- $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2540
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2541
+ },
2542
+ 498 => function ($stackPos) {
2543
+ $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2396
2544
  },
2397
- 498 => null,
2398
2545
  499 => function ($stackPos) {
2399
- $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2546
+ $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2400
2547
  },
2401
2548
  500 => function ($stackPos) {
2402
- $this->semValue = new Name($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2549
+ $this->semValue = new Name\FullyQualified(substr($this->semStack[$stackPos-(1-1)], 1), $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2403
2550
  },
2404
2551
  501 => function ($stackPos) {
2405
- $this->semValue = new Name\FullyQualified(substr($this->semStack[$stackPos-(1-1)], 1), $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2552
+ $this->semValue = new Name\Relative(substr($this->semStack[$stackPos-(1-1)], 10), $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2406
2553
  },
2407
2554
  502 => function ($stackPos) {
2408
- $this->semValue = new Name\Relative(substr($this->semStack[$stackPos-(1-1)], 10), $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2555
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2409
2556
  },
2410
- 503 => null,
2411
- 504 => null,
2412
- 505 => function ($stackPos) {
2557
+ 503 => function ($stackPos) {
2558
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2559
+ },
2560
+ 504 => function ($stackPos) {
2413
2561
  $this->semValue = $this->semStack[$stackPos-(3-2)];
2414
2562
  },
2563
+ 505 => function ($stackPos) {
2564
+ $this->semValue = new Expr\Error($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes); $this->errorState = 2;
2565
+ },
2415
2566
  506 => function ($stackPos) {
2416
- $this->semValue = new Expr\Error($this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos])); $this->errorState = 2;
2567
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2417
2568
  },
2418
- 507 => null,
2419
- 508 => null,
2420
- 509 => function ($stackPos) {
2569
+ 507 => function ($stackPos) {
2570
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2571
+ },
2572
+ 508 => function ($stackPos) {
2421
2573
  $this->semValue = null;
2422
2574
  },
2423
- 510 => function ($stackPos) {
2575
+ 509 => function ($stackPos) {
2424
2576
  $this->semValue = $this->semStack[$stackPos-(3-2)];
2425
2577
  },
2426
- 511 => function ($stackPos) {
2578
+ 510 => function ($stackPos) {
2427
2579
  $this->semValue = array();
2428
2580
  },
2581
+ 511 => function ($stackPos) {
2582
+ $this->semValue = array(new Scalar\EncapsedStringPart(Scalar\String_::parseEscapeSequences($this->semStack[$stackPos-(1-1)], '`'), $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes));
2583
+ },
2429
2584
  512 => function ($stackPos) {
2430
- $this->semValue = array($this->semStack[$stackPos-(1-1)]); foreach ($this->semValue as $s) { if ($s instanceof Node\InterpolatedStringPart) { $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '`', $this->phpVersion->supportsUnicodeEscapes()); } };
2585
+ foreach ($this->semStack[$stackPos-(1-1)] as $s) { if ($s instanceof Node\Scalar\EncapsedStringPart) { $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '`', true); } }; $this->semValue = $this->semStack[$stackPos-(1-1)];
2431
2586
  },
2432
2587
  513 => function ($stackPos) {
2433
- foreach ($this->semStack[$stackPos-(1-1)] as $s) { if ($s instanceof Node\InterpolatedStringPart) { $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '`', $this->phpVersion->supportsUnicodeEscapes()); } }; $this->semValue = $this->semStack[$stackPos-(1-1)];
2588
+ $this->semValue = array();
2434
2589
  },
2435
2590
  514 => function ($stackPos) {
2436
- $this->semValue = array();
2591
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2592
+ },
2593
+ 515 => function ($stackPos) {
2594
+ $this->semValue = new Expr\ConstFetch($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2437
2595
  },
2438
- 515 => null,
2439
2596
  516 => function ($stackPos) {
2440
- $this->semValue = new Expr\ConstFetch($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2597
+ $this->semValue = new Scalar\MagicConst\Line($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2441
2598
  },
2442
2599
  517 => function ($stackPos) {
2443
- $this->semValue = new Scalar\MagicConst\Line($this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2600
+ $this->semValue = new Scalar\MagicConst\File($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2444
2601
  },
2445
2602
  518 => function ($stackPos) {
2446
- $this->semValue = new Scalar\MagicConst\File($this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2603
+ $this->semValue = new Scalar\MagicConst\Dir($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2447
2604
  },
2448
2605
  519 => function ($stackPos) {
2449
- $this->semValue = new Scalar\MagicConst\Dir($this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2606
+ $this->semValue = new Scalar\MagicConst\Class_($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2450
2607
  },
2451
2608
  520 => function ($stackPos) {
2452
- $this->semValue = new Scalar\MagicConst\Class_($this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2609
+ $this->semValue = new Scalar\MagicConst\Trait_($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2453
2610
  },
2454
2611
  521 => function ($stackPos) {
2455
- $this->semValue = new Scalar\MagicConst\Trait_($this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2612
+ $this->semValue = new Scalar\MagicConst\Method($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2456
2613
  },
2457
2614
  522 => function ($stackPos) {
2458
- $this->semValue = new Scalar\MagicConst\Method($this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2615
+ $this->semValue = new Scalar\MagicConst\Function_($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2459
2616
  },
2460
2617
  523 => function ($stackPos) {
2461
- $this->semValue = new Scalar\MagicConst\Function_($this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2618
+ $this->semValue = new Scalar\MagicConst\Namespace_($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2462
2619
  },
2463
2620
  524 => function ($stackPos) {
2464
- $this->semValue = new Scalar\MagicConst\Namespace_($this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2621
+ $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2465
2622
  },
2466
2623
  525 => function ($stackPos) {
2467
- $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2624
+ $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos-(5-1)], $this->semStack[$stackPos-(5-4)], $this->startAttributeStack[$stackPos-(5-1)] + $this->endAttributes);
2468
2625
  },
2469
2626
  526 => function ($stackPos) {
2470
- $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos-(5-1)], $this->semStack[$stackPos-(5-4)], $this->getAttributes($this->tokenStartStack[$stackPos-(5-1)], $this->tokenEndStack[$stackPos]));
2627
+ $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos-(3-1)], new Expr\Error($this->startAttributeStack[$stackPos-(3-3)] + $this->endAttributeStack[$stackPos-(3-3)]), $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes); $this->errorState = 2;
2471
2628
  },
2472
2629
  527 => function ($stackPos) {
2473
- $this->semValue = new Expr\ClassConstFetch($this->semStack[$stackPos-(3-1)], new Expr\Error($this->getAttributes($this->tokenStartStack[$stackPos-(3-3)], $this->tokenEndStack[$stackPos-(3-3)])), $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos])); $this->errorState = 2;
2630
+ $attrs = $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes; $attrs['kind'] = Expr\Array_::KIND_SHORT;
2631
+ $this->semValue = new Expr\Array_($this->semStack[$stackPos-(3-2)], $attrs);
2474
2632
  },
2475
2633
  528 => function ($stackPos) {
2476
- $attrs = $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]); $attrs['kind'] = Expr\Array_::KIND_SHORT;
2477
- $this->semValue = new Expr\Array_($this->semStack[$stackPos-(3-2)], $attrs);
2634
+ $attrs = $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes; $attrs['kind'] = Expr\Array_::KIND_LONG;
2635
+ $this->semValue = new Expr\Array_($this->semStack[$stackPos-(4-3)], $attrs);
2478
2636
  },
2479
2637
  529 => function ($stackPos) {
2480
- $attrs = $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]); $attrs['kind'] = Expr\Array_::KIND_LONG;
2481
- $this->semValue = new Expr\Array_($this->semStack[$stackPos-(4-3)], $attrs);
2482
- $this->createdArrays->attach($this->semValue);
2638
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2483
2639
  },
2484
2640
  530 => function ($stackPos) {
2485
- $this->semValue = $this->semStack[$stackPos-(1-1)]; $this->createdArrays->attach($this->semValue);
2641
+ $this->semValue = Scalar\String_::fromString($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2486
2642
  },
2487
2643
  531 => function ($stackPos) {
2488
- $this->semValue = Scalar\String_::fromString($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]), $this->phpVersion->supportsUnicodeEscapes());
2644
+ $attrs = $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes; $attrs['kind'] = Scalar\String_::KIND_DOUBLE_QUOTED;
2645
+ 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);
2489
2646
  },
2490
2647
  532 => function ($stackPos) {
2491
- $attrs = $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]); $attrs['kind'] = Scalar\String_::KIND_DOUBLE_QUOTED;
2492
- foreach ($this->semStack[$stackPos-(3-2)] as $s) { if ($s instanceof Node\InterpolatedStringPart) { $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '"', $this->phpVersion->supportsUnicodeEscapes()); } }; $this->semValue = new Scalar\InterpolatedString($this->semStack[$stackPos-(3-2)], $attrs);
2648
+ $this->semValue = $this->parseLNumber($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2493
2649
  },
2494
2650
  533 => function ($stackPos) {
2495
- $this->semValue = $this->parseLNumber($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]), $this->phpVersion->allowsInvalidOctals());
2651
+ $this->semValue = Scalar\DNumber::fromString($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2496
2652
  },
2497
2653
  534 => function ($stackPos) {
2498
- $this->semValue = Scalar\Float_::fromString($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2654
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2655
+ },
2656
+ 535 => function ($stackPos) {
2657
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2658
+ },
2659
+ 536 => function ($stackPos) {
2660
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2661
+ },
2662
+ 537 => function ($stackPos) {
2663
+ $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);
2499
2664
  },
2500
- 535 => null,
2501
- 536 => null,
2502
- 537 => null,
2503
2665
  538 => function ($stackPos) {
2504
- $this->semValue = $this->parseDocString($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-2)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]), $this->getAttributes($this->tokenStartStack[$stackPos-(3-3)], $this->tokenEndStack[$stackPos-(3-3)]), true);
2666
+ $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)], true);
2505
2667
  },
2506
2668
  539 => function ($stackPos) {
2507
- $this->semValue = $this->parseDocString($this->semStack[$stackPos-(2-1)], '', $this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]), $this->getAttributes($this->tokenStartStack[$stackPos-(2-2)], $this->tokenEndStack[$stackPos-(2-2)]), true);
2669
+ $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);
2508
2670
  },
2509
2671
  540 => function ($stackPos) {
2510
- $this->semValue = $this->parseDocString($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-2)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]), $this->getAttributes($this->tokenStartStack[$stackPos-(3-3)], $this->tokenEndStack[$stackPos-(3-3)]), true);
2672
+ $this->semValue = null;
2511
2673
  },
2512
2674
  541 => function ($stackPos) {
2513
- $this->semValue = null;
2675
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2676
+ },
2677
+ 542 => function ($stackPos) {
2678
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2679
+ },
2680
+ 543 => function ($stackPos) {
2681
+ $this->semValue = $this->semStack[$stackPos-(3-2)];
2514
2682
  },
2515
- 542 => null,
2516
- 543 => null,
2517
2683
  544 => function ($stackPos) {
2684
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2685
+ },
2686
+ 545 => function ($stackPos) {
2687
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2688
+ },
2689
+ 546 => function ($stackPos) {
2690
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2691
+ },
2692
+ 547 => function ($stackPos) {
2693
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2694
+ },
2695
+ 548 => function ($stackPos) {
2696
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2697
+ },
2698
+ 549 => function ($stackPos) {
2518
2699
  $this->semValue = $this->semStack[$stackPos-(3-2)];
2519
2700
  },
2520
- 545 => null,
2521
- 546 => null,
2522
- 547 => null,
2523
- 548 => null,
2524
- 549 => null,
2525
2701
  550 => function ($stackPos) {
2526
- $this->semValue = $this->semStack[$stackPos-(3-2)];
2702
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2703
+ },
2704
+ 551 => function ($stackPos) {
2705
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2706
+ },
2707
+ 552 => function ($stackPos) {
2708
+ $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2527
2709
  },
2528
- 551 => null,
2529
- 552 => null,
2530
2710
  553 => function ($stackPos) {
2531
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2711
+ $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2532
2712
  },
2533
2713
  554 => function ($stackPos) {
2534
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2714
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2715
+ },
2716
+ 555 => function ($stackPos) {
2717
+ $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);
2535
2718
  },
2536
- 555 => null,
2537
2719
  556 => function ($stackPos) {
2538
- $this->semValue = new Expr\MethodCall($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->semStack[$stackPos-(4-4)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2720
+ $this->semValue = new Expr\NullsafeMethodCall($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->semStack[$stackPos-(4-4)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2539
2721
  },
2540
2722
  557 => function ($stackPos) {
2541
- $this->semValue = new Expr\NullsafeMethodCall($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->semStack[$stackPos-(4-4)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2723
+ $this->semValue = null;
2542
2724
  },
2543
2725
  558 => function ($stackPos) {
2544
- $this->semValue = null;
2726
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2727
+ },
2728
+ 559 => function ($stackPos) {
2729
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2730
+ },
2731
+ 560 => function ($stackPos) {
2732
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2733
+ },
2734
+ 561 => function ($stackPos) {
2735
+ $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2545
2736
  },
2546
- 559 => null,
2547
- 560 => null,
2548
- 561 => null,
2549
2737
  562 => function ($stackPos) {
2550
- $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2738
+ $this->semValue = new Expr\NullsafePropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2551
2739
  },
2552
2740
  563 => function ($stackPos) {
2553
- $this->semValue = new Expr\NullsafePropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2741
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2742
+ },
2743
+ 564 => function ($stackPos) {
2744
+ $this->semValue = new Expr\Variable($this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2554
2745
  },
2555
- 564 => null,
2556
2746
  565 => function ($stackPos) {
2557
- $this->semValue = new Expr\Variable($this->semStack[$stackPos-(4-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2747
+ $this->semValue = new Expr\Variable($this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2558
2748
  },
2559
2749
  566 => function ($stackPos) {
2560
- $this->semValue = new Expr\Variable($this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2750
+ $this->semValue = new Expr\Variable(new Expr\Error($this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes), $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes); $this->errorState = 2;
2561
2751
  },
2562
2752
  567 => function ($stackPos) {
2563
- $this->semValue = new Expr\Variable(new Expr\Error($this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos])), $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos])); $this->errorState = 2;
2753
+ $var = $this->semStack[$stackPos-(1-1)]->name; $this->semValue = \is_string($var) ? new Node\VarLikeIdentifier($var, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes) : $var;
2564
2754
  },
2565
2755
  568 => function ($stackPos) {
2566
- $var = $this->semStack[$stackPos-(1-1)]->name; $this->semValue = \is_string($var) ? new Node\VarLikeIdentifier($var, $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos])) : $var;
2756
+ $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2567
2757
  },
2568
2758
  569 => function ($stackPos) {
2569
- $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2759
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2760
+ },
2761
+ 570 => function ($stackPos) {
2762
+ $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2570
2763
  },
2571
- 570 => null,
2572
2764
  571 => function ($stackPos) {
2573
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2765
+ $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2574
2766
  },
2575
2767
  572 => function ($stackPos) {
2576
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2768
+ $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2577
2769
  },
2578
2770
  573 => function ($stackPos) {
2579
- $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2771
+ $this->semValue = new Expr\NullsafePropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2580
2772
  },
2581
2773
  574 => function ($stackPos) {
2582
- $this->semValue = new Expr\NullsafePropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2774
+ $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2583
2775
  },
2584
2776
  575 => function ($stackPos) {
2585
- $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2777
+ $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2586
2778
  },
2587
2779
  576 => function ($stackPos) {
2588
- $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2780
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2781
+ },
2782
+ 577 => function ($stackPos) {
2783
+ $this->semValue = $this->semStack[$stackPos-(3-2)];
2589
2784
  },
2590
- 577 => null,
2591
2785
  578 => function ($stackPos) {
2786
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2787
+ },
2788
+ 579 => function ($stackPos) {
2789
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2790
+ },
2791
+ 580 => function ($stackPos) {
2592
2792
  $this->semValue = $this->semStack[$stackPos-(3-2)];
2593
2793
  },
2594
- 579 => null,
2595
- 580 => null,
2596
2794
  581 => function ($stackPos) {
2597
- $this->semValue = $this->semStack[$stackPos-(3-2)];
2795
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2796
+ },
2797
+ 582 => function ($stackPos) {
2798
+ $this->semValue = new Expr\Error($this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes); $this->errorState = 2;
2598
2799
  },
2599
- 582 => null,
2600
2800
  583 => function ($stackPos) {
2601
- $this->semValue = new Expr\Error($this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos])); $this->errorState = 2;
2801
+ $this->semValue = new Expr\List_($this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2602
2802
  },
2603
2803
  584 => function ($stackPos) {
2604
- $this->semValue = new Expr\List_($this->semStack[$stackPos-(4-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos])); $this->semValue->setAttribute('kind', Expr\List_::KIND_LIST);
2605
- $this->postprocessList($this->semValue);
2804
+ $this->semValue = $this->semStack[$stackPos-(1-1)]; $end = count($this->semValue)-1; if ($this->semValue[$end] === null) array_pop($this->semValue);
2606
2805
  },
2607
2806
  585 => function ($stackPos) {
2608
- $this->semValue = $this->semStack[$stackPos-(1-1)]; $end = count($this->semValue)-1; if ($this->semValue[$end]->value instanceof Expr\Error) array_pop($this->semValue);
2807
+ $this->semValue = $this->semStack[$stackPos];
2609
2808
  },
2610
- 586 => null,
2611
- 587 => function ($stackPos) {
2809
+ 586 => function ($stackPos) {
2612
2810
  /* do nothing -- prevent default action of $$=$this->semStack[$1]. See $551. */
2613
2811
  },
2614
- 588 => function ($stackPos) {
2812
+ 587 => function ($stackPos) {
2615
2813
  $this->semStack[$stackPos-(3-1)][] = $this->semStack[$stackPos-(3-3)]; $this->semValue = $this->semStack[$stackPos-(3-1)];
2616
2814
  },
2617
- 589 => function ($stackPos) {
2815
+ 588 => function ($stackPos) {
2618
2816
  $this->semValue = array($this->semStack[$stackPos-(1-1)]);
2619
2817
  },
2818
+ 589 => function ($stackPos) {
2819
+ $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(1-1)], null, false, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2820
+ },
2620
2821
  590 => function ($stackPos) {
2621
- $this->semValue = new Node\ArrayItem($this->semStack[$stackPos-(1-1)], null, false, $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2822
+ $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(2-2)], null, true, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2622
2823
  },
2623
2824
  591 => function ($stackPos) {
2624
- $this->semValue = new Node\ArrayItem($this->semStack[$stackPos-(2-2)], null, true, $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2825
+ $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(1-1)], null, false, $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2625
2826
  },
2626
2827
  592 => function ($stackPos) {
2627
- $this->semValue = new Node\ArrayItem($this->semStack[$stackPos-(1-1)], null, false, $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2828
+ $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(3-3)], $this->semStack[$stackPos-(3-1)], false, $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2628
2829
  },
2629
2830
  593 => function ($stackPos) {
2630
- $this->semValue = new Node\ArrayItem($this->semStack[$stackPos-(3-3)], $this->semStack[$stackPos-(3-1)], false, $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2831
+ $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(4-4)], $this->semStack[$stackPos-(4-1)], true, $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2631
2832
  },
2632
2833
  594 => function ($stackPos) {
2633
- $this->semValue = new Node\ArrayItem($this->semStack[$stackPos-(4-4)], $this->semStack[$stackPos-(4-1)], true, $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2834
+ $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(3-3)], $this->semStack[$stackPos-(3-1)], false, $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2634
2835
  },
2635
2836
  595 => function ($stackPos) {
2636
- $this->semValue = new Node\ArrayItem($this->semStack[$stackPos-(3-3)], $this->semStack[$stackPos-(3-1)], false, $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2837
+ $this->semValue = new Expr\ArrayItem($this->semStack[$stackPos-(2-2)], null, false, $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes, true);
2637
2838
  },
2638
2839
  596 => function ($stackPos) {
2639
- $this->semValue = new Node\ArrayItem($this->semStack[$stackPos-(2-2)], null, false, $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]), true);
2840
+ $this->semValue = null;
2640
2841
  },
2641
2842
  597 => function ($stackPos) {
2642
- /* Create an Error node now to remember the position. We'll later either report an error,
2643
- or convert this into a null element, depending on whether this is a creation or destructuring context. */
2644
- $attrs = $this->createEmptyElemAttributes($this->tokenPos);
2645
- $this->semValue = new Node\ArrayItem(new Expr\Error($attrs), null, false, $attrs);
2843
+ $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
2646
2844
  },
2647
2845
  598 => function ($stackPos) {
2648
2846
  $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
2649
2847
  },
2650
2848
  599 => function ($stackPos) {
2651
- $this->semStack[$stackPos-(2-1)][] = $this->semStack[$stackPos-(2-2)]; $this->semValue = $this->semStack[$stackPos-(2-1)];
2849
+ $this->semValue = array($this->semStack[$stackPos-(1-1)]);
2652
2850
  },
2653
2851
  600 => function ($stackPos) {
2654
- $this->semValue = array($this->semStack[$stackPos-(1-1)]);
2852
+ $this->semValue = array($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)]);
2655
2853
  },
2656
2854
  601 => function ($stackPos) {
2657
- $this->semValue = array($this->semStack[$stackPos-(2-1)], $this->semStack[$stackPos-(2-2)]);
2855
+ $this->semValue = new Scalar\EncapsedStringPart($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2658
2856
  },
2659
2857
  602 => function ($stackPos) {
2660
- $attrs = $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]); $attrs['rawValue'] = $this->semStack[$stackPos-(1-1)]; $this->semValue = new Node\InterpolatedStringPart($this->semStack[$stackPos-(1-1)], $attrs);
2858
+ $this->semValue = new Expr\Variable($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2661
2859
  },
2662
2860
  603 => function ($stackPos) {
2663
- $this->semValue = new Expr\Variable($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2861
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2862
+ },
2863
+ 604 => function ($stackPos) {
2864
+ $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->startAttributeStack[$stackPos-(4-1)] + $this->endAttributes);
2664
2865
  },
2665
- 604 => null,
2666
2866
  605 => function ($stackPos) {
2667
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(4-1)], $this->semStack[$stackPos-(4-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(4-1)], $this->tokenEndStack[$stackPos]));
2867
+ $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2668
2868
  },
2669
2869
  606 => function ($stackPos) {
2670
- $this->semValue = new Expr\PropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2870
+ $this->semValue = new Expr\NullsafePropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2671
2871
  },
2672
2872
  607 => function ($stackPos) {
2673
- $this->semValue = new Expr\NullsafePropertyFetch($this->semStack[$stackPos-(3-1)], $this->semStack[$stackPos-(3-3)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2873
+ $this->semValue = new Expr\Variable($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2674
2874
  },
2675
2875
  608 => function ($stackPos) {
2676
- $this->semValue = new Expr\Variable($this->semStack[$stackPos-(3-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2876
+ $this->semValue = new Expr\Variable($this->semStack[$stackPos-(3-2)], $this->startAttributeStack[$stackPos-(3-1)] + $this->endAttributes);
2677
2877
  },
2678
2878
  609 => function ($stackPos) {
2679
- $this->semValue = new Expr\Variable($this->semStack[$stackPos-(3-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(3-1)], $this->tokenEndStack[$stackPos]));
2879
+ $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(6-2)], $this->semStack[$stackPos-(6-4)], $this->startAttributeStack[$stackPos-(6-1)] + $this->endAttributes);
2680
2880
  },
2681
2881
  610 => function ($stackPos) {
2682
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$stackPos-(6-2)], $this->semStack[$stackPos-(6-4)], $this->getAttributes($this->tokenStartStack[$stackPos-(6-1)], $this->tokenEndStack[$stackPos]));
2882
+ $this->semValue = $this->semStack[$stackPos-(3-2)];
2683
2883
  },
2684
2884
  611 => function ($stackPos) {
2685
- $this->semValue = $this->semStack[$stackPos-(3-2)];
2885
+ $this->semValue = new Scalar\String_($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2686
2886
  },
2687
2887
  612 => function ($stackPos) {
2688
- $this->semValue = new Scalar\String_($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2888
+ $this->semValue = $this->parseNumString($this->semStack[$stackPos-(1-1)], $this->startAttributeStack[$stackPos-(1-1)] + $this->endAttributes);
2689
2889
  },
2690
2890
  613 => function ($stackPos) {
2691
- $this->semValue = $this->parseNumString($this->semStack[$stackPos-(1-1)], $this->getAttributes($this->tokenStartStack[$stackPos-(1-1)], $this->tokenEndStack[$stackPos]));
2891
+ $this->semValue = $this->parseNumString('-' . $this->semStack[$stackPos-(2-2)], $this->startAttributeStack[$stackPos-(2-1)] + $this->endAttributes);
2692
2892
  },
2693
2893
  614 => function ($stackPos) {
2694
- $this->semValue = $this->parseNumString('-' . $this->semStack[$stackPos-(2-2)], $this->getAttributes($this->tokenStartStack[$stackPos-(2-1)], $this->tokenEndStack[$stackPos]));
2894
+ $this->semValue = $this->semStack[$stackPos-(1-1)];
2695
2895
  },
2696
- 615 => null,
2697
2896
  ];
2698
2897
  }
2699
2898
  }