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