2011-04-18 19:02:30 +02:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser;
|
|
|
|
|
2012-03-02 00:43:34 +01:00
|
|
|
/* This is an automatically GENERATED file, which should not be manually edited.
|
|
|
|
* Instead edit one of the following:
|
|
|
|
* * the grammar file grammar/zend_language_parser.phpy
|
2012-04-04 15:51:56 +02:00
|
|
|
* * the parser skeleton grammar/kymacc.php.parser
|
2012-03-02 00:43:34 +01:00
|
|
|
* * the preprocessing script grammar/rebuildParser.php
|
|
|
|
*
|
2012-04-04 15:51:56 +02:00
|
|
|
* The skeleton for this parser was written by Moriyoshi Koizumi and is based on
|
2012-03-02 00:43:34 +01:00
|
|
|
* the work by Masato Bito and is in the PUBLIC DOMAIN.
|
2011-05-27 18:20:44 +02:00
|
|
|
*/
|
2014-02-06 14:44:16 +01:00
|
|
|
class Parser
|
2011-04-18 19:02:30 +02:00
|
|
|
{
|
2012-04-29 22:57:46 +02:00
|
|
|
const TOKEN_NONE = -1;
|
2014-03-26 18:23:30 +01:00
|
|
|
const TOKEN_INVALID = 152;
|
2012-04-29 22:57:46 +02:00
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
const TOKEN_MAP_SIZE = 387;
|
2012-04-29 22:57:46 +02:00
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
const YYLAST = 994;
|
2014-03-09 13:27:39 +01:00
|
|
|
const YY2TBLSTATE = 314;
|
2014-03-26 18:23:30 +01:00
|
|
|
const YYGLAST = 444;
|
|
|
|
const YYNLSTATES = 533;
|
2011-04-18 19:02:30 +02:00
|
|
|
const YYUNEXPECTED = 32767;
|
|
|
|
const YYDEFAULT = -32766;
|
|
|
|
|
|
|
|
// {{{ Tokens
|
|
|
|
const YYERRTOK = 256;
|
|
|
|
const T_INCLUDE = 257;
|
|
|
|
const T_INCLUDE_ONCE = 258;
|
|
|
|
const T_EVAL = 259;
|
|
|
|
const T_REQUIRE = 260;
|
|
|
|
const T_REQUIRE_ONCE = 261;
|
|
|
|
const T_LOGICAL_OR = 262;
|
|
|
|
const T_LOGICAL_XOR = 263;
|
|
|
|
const T_LOGICAL_AND = 264;
|
|
|
|
const T_PRINT = 265;
|
2012-09-07 19:24:44 +02:00
|
|
|
const T_YIELD = 266;
|
|
|
|
const T_PLUS_EQUAL = 267;
|
|
|
|
const T_MINUS_EQUAL = 268;
|
|
|
|
const T_MUL_EQUAL = 269;
|
|
|
|
const T_DIV_EQUAL = 270;
|
|
|
|
const T_CONCAT_EQUAL = 271;
|
|
|
|
const T_MOD_EQUAL = 272;
|
|
|
|
const T_AND_EQUAL = 273;
|
|
|
|
const T_OR_EQUAL = 274;
|
|
|
|
const T_XOR_EQUAL = 275;
|
|
|
|
const T_SL_EQUAL = 276;
|
|
|
|
const T_SR_EQUAL = 277;
|
|
|
|
const T_BOOLEAN_OR = 278;
|
|
|
|
const T_BOOLEAN_AND = 279;
|
|
|
|
const T_IS_EQUAL = 280;
|
|
|
|
const T_IS_NOT_EQUAL = 281;
|
|
|
|
const T_IS_IDENTICAL = 282;
|
|
|
|
const T_IS_NOT_IDENTICAL = 283;
|
|
|
|
const T_IS_SMALLER_OR_EQUAL = 284;
|
|
|
|
const T_IS_GREATER_OR_EQUAL = 285;
|
|
|
|
const T_SL = 286;
|
|
|
|
const T_SR = 287;
|
|
|
|
const T_INSTANCEOF = 288;
|
|
|
|
const T_INC = 289;
|
|
|
|
const T_DEC = 290;
|
|
|
|
const T_INT_CAST = 291;
|
|
|
|
const T_DOUBLE_CAST = 292;
|
|
|
|
const T_STRING_CAST = 293;
|
|
|
|
const T_ARRAY_CAST = 294;
|
|
|
|
const T_OBJECT_CAST = 295;
|
|
|
|
const T_BOOL_CAST = 296;
|
|
|
|
const T_UNSET_CAST = 297;
|
|
|
|
const T_NEW = 298;
|
|
|
|
const T_CLONE = 299;
|
|
|
|
const T_EXIT = 300;
|
|
|
|
const T_IF = 301;
|
|
|
|
const T_ELSEIF = 302;
|
|
|
|
const T_ELSE = 303;
|
|
|
|
const T_ENDIF = 304;
|
|
|
|
const T_LNUMBER = 305;
|
|
|
|
const T_DNUMBER = 306;
|
|
|
|
const T_STRING = 307;
|
|
|
|
const T_STRING_VARNAME = 308;
|
|
|
|
const T_VARIABLE = 309;
|
|
|
|
const T_NUM_STRING = 310;
|
|
|
|
const T_INLINE_HTML = 311;
|
|
|
|
const T_CHARACTER = 312;
|
|
|
|
const T_BAD_CHARACTER = 313;
|
|
|
|
const T_ENCAPSED_AND_WHITESPACE = 314;
|
|
|
|
const T_CONSTANT_ENCAPSED_STRING = 315;
|
|
|
|
const T_ECHO = 316;
|
|
|
|
const T_DO = 317;
|
|
|
|
const T_WHILE = 318;
|
|
|
|
const T_ENDWHILE = 319;
|
|
|
|
const T_FOR = 320;
|
|
|
|
const T_ENDFOR = 321;
|
|
|
|
const T_FOREACH = 322;
|
|
|
|
const T_ENDFOREACH = 323;
|
|
|
|
const T_DECLARE = 324;
|
|
|
|
const T_ENDDECLARE = 325;
|
|
|
|
const T_AS = 326;
|
|
|
|
const T_SWITCH = 327;
|
|
|
|
const T_ENDSWITCH = 328;
|
|
|
|
const T_CASE = 329;
|
|
|
|
const T_DEFAULT = 330;
|
|
|
|
const T_BREAK = 331;
|
|
|
|
const T_CONTINUE = 332;
|
|
|
|
const T_GOTO = 333;
|
|
|
|
const T_FUNCTION = 334;
|
|
|
|
const T_CONST = 335;
|
|
|
|
const T_RETURN = 336;
|
|
|
|
const T_TRY = 337;
|
|
|
|
const T_CATCH = 338;
|
|
|
|
const T_FINALLY = 339;
|
|
|
|
const T_THROW = 340;
|
|
|
|
const T_USE = 341;
|
|
|
|
const T_INSTEADOF = 342;
|
|
|
|
const T_GLOBAL = 343;
|
|
|
|
const T_STATIC = 344;
|
|
|
|
const T_ABSTRACT = 345;
|
|
|
|
const T_FINAL = 346;
|
|
|
|
const T_PRIVATE = 347;
|
|
|
|
const T_PROTECTED = 348;
|
|
|
|
const T_PUBLIC = 349;
|
|
|
|
const T_VAR = 350;
|
|
|
|
const T_UNSET = 351;
|
|
|
|
const T_ISSET = 352;
|
|
|
|
const T_EMPTY = 353;
|
|
|
|
const T_HALT_COMPILER = 354;
|
|
|
|
const T_CLASS = 355;
|
|
|
|
const T_TRAIT = 356;
|
|
|
|
const T_INTERFACE = 357;
|
|
|
|
const T_EXTENDS = 358;
|
|
|
|
const T_IMPLEMENTS = 359;
|
|
|
|
const T_OBJECT_OPERATOR = 360;
|
|
|
|
const T_DOUBLE_ARROW = 361;
|
|
|
|
const T_LIST = 362;
|
|
|
|
const T_ARRAY = 363;
|
|
|
|
const T_CALLABLE = 364;
|
|
|
|
const T_CLASS_C = 365;
|
|
|
|
const T_TRAIT_C = 366;
|
|
|
|
const T_METHOD_C = 367;
|
|
|
|
const T_FUNC_C = 368;
|
|
|
|
const T_LINE = 369;
|
|
|
|
const T_FILE = 370;
|
|
|
|
const T_COMMENT = 371;
|
|
|
|
const T_DOC_COMMENT = 372;
|
|
|
|
const T_OPEN_TAG = 373;
|
|
|
|
const T_OPEN_TAG_WITH_ECHO = 374;
|
|
|
|
const T_CLOSE_TAG = 375;
|
|
|
|
const T_WHITESPACE = 376;
|
|
|
|
const T_START_HEREDOC = 377;
|
|
|
|
const T_END_HEREDOC = 378;
|
|
|
|
const T_DOLLAR_OPEN_CURLY_BRACES = 379;
|
|
|
|
const T_CURLY_OPEN = 380;
|
|
|
|
const T_PAAMAYIM_NEKUDOTAYIM = 381;
|
|
|
|
const T_NAMESPACE = 382;
|
|
|
|
const T_NS_C = 383;
|
|
|
|
const T_DIR = 384;
|
|
|
|
const T_NS_SEPARATOR = 385;
|
2014-03-26 18:23:30 +01:00
|
|
|
const T_ELLIPSIS = 386;
|
2011-04-18 19:02:30 +02:00
|
|
|
// }}}
|
|
|
|
|
2012-04-29 22:57:46 +02:00
|
|
|
/* @var array Map of token ids to their respective names */
|
|
|
|
protected static $terminals = array(
|
2011-08-14 14:52:24 +02:00
|
|
|
"EOF",
|
2011-04-18 19:02:30 +02:00
|
|
|
"error",
|
|
|
|
"T_INCLUDE",
|
|
|
|
"T_INCLUDE_ONCE",
|
|
|
|
"T_EVAL",
|
|
|
|
"T_REQUIRE",
|
|
|
|
"T_REQUIRE_ONCE",
|
|
|
|
"','",
|
|
|
|
"T_LOGICAL_OR",
|
|
|
|
"T_LOGICAL_XOR",
|
|
|
|
"T_LOGICAL_AND",
|
|
|
|
"T_PRINT",
|
2012-09-07 19:24:44 +02:00
|
|
|
"T_YIELD",
|
2011-04-18 19:02:30 +02:00
|
|
|
"'='",
|
|
|
|
"T_PLUS_EQUAL",
|
|
|
|
"T_MINUS_EQUAL",
|
|
|
|
"T_MUL_EQUAL",
|
|
|
|
"T_DIV_EQUAL",
|
|
|
|
"T_CONCAT_EQUAL",
|
|
|
|
"T_MOD_EQUAL",
|
|
|
|
"T_AND_EQUAL",
|
|
|
|
"T_OR_EQUAL",
|
|
|
|
"T_XOR_EQUAL",
|
|
|
|
"T_SL_EQUAL",
|
|
|
|
"T_SR_EQUAL",
|
|
|
|
"'?'",
|
|
|
|
"':'",
|
|
|
|
"T_BOOLEAN_OR",
|
|
|
|
"T_BOOLEAN_AND",
|
|
|
|
"'|'",
|
|
|
|
"'^'",
|
|
|
|
"'&'",
|
|
|
|
"T_IS_EQUAL",
|
|
|
|
"T_IS_NOT_EQUAL",
|
|
|
|
"T_IS_IDENTICAL",
|
|
|
|
"T_IS_NOT_IDENTICAL",
|
|
|
|
"'<'",
|
|
|
|
"T_IS_SMALLER_OR_EQUAL",
|
|
|
|
"'>'",
|
|
|
|
"T_IS_GREATER_OR_EQUAL",
|
|
|
|
"T_SL",
|
|
|
|
"T_SR",
|
|
|
|
"'+'",
|
|
|
|
"'-'",
|
|
|
|
"'.'",
|
|
|
|
"'*'",
|
|
|
|
"'/'",
|
|
|
|
"'%'",
|
|
|
|
"'!'",
|
|
|
|
"T_INSTANCEOF",
|
|
|
|
"'~'",
|
|
|
|
"T_INC",
|
|
|
|
"T_DEC",
|
|
|
|
"T_INT_CAST",
|
|
|
|
"T_DOUBLE_CAST",
|
|
|
|
"T_STRING_CAST",
|
|
|
|
"T_ARRAY_CAST",
|
|
|
|
"T_OBJECT_CAST",
|
|
|
|
"T_BOOL_CAST",
|
|
|
|
"T_UNSET_CAST",
|
|
|
|
"'@'",
|
|
|
|
"'['",
|
|
|
|
"T_NEW",
|
|
|
|
"T_CLONE",
|
|
|
|
"T_EXIT",
|
|
|
|
"T_IF",
|
|
|
|
"T_ELSEIF",
|
|
|
|
"T_ELSE",
|
|
|
|
"T_ENDIF",
|
|
|
|
"T_LNUMBER",
|
|
|
|
"T_DNUMBER",
|
|
|
|
"T_STRING",
|
|
|
|
"T_STRING_VARNAME",
|
|
|
|
"T_VARIABLE",
|
|
|
|
"T_NUM_STRING",
|
|
|
|
"T_INLINE_HTML",
|
|
|
|
"T_ENCAPSED_AND_WHITESPACE",
|
|
|
|
"T_CONSTANT_ENCAPSED_STRING",
|
|
|
|
"T_ECHO",
|
|
|
|
"T_DO",
|
|
|
|
"T_WHILE",
|
|
|
|
"T_ENDWHILE",
|
|
|
|
"T_FOR",
|
|
|
|
"T_ENDFOR",
|
|
|
|
"T_FOREACH",
|
|
|
|
"T_ENDFOREACH",
|
|
|
|
"T_DECLARE",
|
|
|
|
"T_ENDDECLARE",
|
|
|
|
"T_AS",
|
|
|
|
"T_SWITCH",
|
|
|
|
"T_ENDSWITCH",
|
|
|
|
"T_CASE",
|
|
|
|
"T_DEFAULT",
|
|
|
|
"T_BREAK",
|
|
|
|
"T_CONTINUE",
|
|
|
|
"T_GOTO",
|
|
|
|
"T_FUNCTION",
|
|
|
|
"T_CONST",
|
|
|
|
"T_RETURN",
|
|
|
|
"T_TRY",
|
|
|
|
"T_CATCH",
|
2012-09-07 18:06:11 +02:00
|
|
|
"T_FINALLY",
|
2011-04-18 19:02:30 +02:00
|
|
|
"T_THROW",
|
|
|
|
"T_USE",
|
2011-10-30 12:03:29 +01:00
|
|
|
"T_INSTEADOF",
|
2011-04-18 19:02:30 +02:00
|
|
|
"T_GLOBAL",
|
|
|
|
"T_STATIC",
|
|
|
|
"T_ABSTRACT",
|
|
|
|
"T_FINAL",
|
|
|
|
"T_PRIVATE",
|
|
|
|
"T_PROTECTED",
|
|
|
|
"T_PUBLIC",
|
|
|
|
"T_VAR",
|
|
|
|
"T_UNSET",
|
|
|
|
"T_ISSET",
|
|
|
|
"T_EMPTY",
|
|
|
|
"T_HALT_COMPILER",
|
|
|
|
"T_CLASS",
|
2011-10-30 12:03:29 +01:00
|
|
|
"T_TRAIT",
|
2011-04-18 19:02:30 +02:00
|
|
|
"T_INTERFACE",
|
|
|
|
"T_EXTENDS",
|
|
|
|
"T_IMPLEMENTS",
|
|
|
|
"T_OBJECT_OPERATOR",
|
|
|
|
"T_DOUBLE_ARROW",
|
|
|
|
"T_LIST",
|
|
|
|
"T_ARRAY",
|
2011-10-21 11:30:27 +02:00
|
|
|
"T_CALLABLE",
|
2011-04-18 19:02:30 +02:00
|
|
|
"T_CLASS_C",
|
2011-10-30 12:03:29 +01:00
|
|
|
"T_TRAIT_C",
|
2011-04-18 19:02:30 +02:00
|
|
|
"T_METHOD_C",
|
|
|
|
"T_FUNC_C",
|
|
|
|
"T_LINE",
|
|
|
|
"T_FILE",
|
|
|
|
"T_START_HEREDOC",
|
|
|
|
"T_END_HEREDOC",
|
|
|
|
"T_DOLLAR_OPEN_CURLY_BRACES",
|
|
|
|
"T_CURLY_OPEN",
|
|
|
|
"T_PAAMAYIM_NEKUDOTAYIM",
|
|
|
|
"T_NAMESPACE",
|
|
|
|
"T_NS_C",
|
|
|
|
"T_DIR",
|
|
|
|
"T_NS_SEPARATOR",
|
2014-03-26 18:23:30 +01:00
|
|
|
"T_ELLIPSIS",
|
2011-04-18 19:02:30 +02:00
|
|
|
"';'",
|
|
|
|
"'{'",
|
|
|
|
"'}'",
|
2011-06-03 22:02:02 +02:00
|
|
|
"'('",
|
|
|
|
"')'",
|
2011-04-18 19:02:30 +02:00
|
|
|
"'$'",
|
2011-10-21 11:07:06 +02:00
|
|
|
"'`'",
|
2012-09-07 19:43:07 +02:00
|
|
|
"']'",
|
2011-05-27 21:15:38 +02:00
|
|
|
"'\"'"
|
2011-04-18 19:02:30 +02:00
|
|
|
, "???"
|
|
|
|
);
|
|
|
|
|
2012-08-02 17:01:33 +02:00
|
|
|
/* @var array Map which translates lexer tokens to internal tokens */
|
2012-04-29 22:57:46 +02:00
|
|
|
protected static $translate = array(
|
2014-03-26 18:23:30 +01:00
|
|
|
0, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 48, 151, 152, 148, 47, 31, 152,
|
|
|
|
146, 147, 45, 42, 7, 43, 44, 46, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 26, 143,
|
|
|
|
36, 13, 38, 25, 60, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 61, 152, 150, 30, 152, 149, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 144, 29, 145, 50, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 1, 2, 3, 4,
|
2012-09-07 19:24:44 +02:00
|
|
|
5, 6, 8, 9, 10, 11, 12, 14, 15, 16,
|
|
|
|
17, 18, 19, 20, 21, 22, 23, 24, 27, 28,
|
|
|
|
32, 33, 34, 35, 37, 39, 40, 41, 49, 51,
|
|
|
|
52, 53, 54, 55, 56, 57, 58, 59, 62, 63,
|
2011-04-18 19:02:30 +02:00
|
|
|
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
|
2014-03-26 18:23:30 +01:00
|
|
|
74, 75, 152, 152, 76, 77, 78, 79, 80, 81,
|
2011-04-18 19:02:30 +02:00
|
|
|
82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
|
|
|
|
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
|
|
|
|
102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
|
2011-10-30 12:03:29 +01:00
|
|
|
112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
|
2012-09-07 18:06:11 +02:00
|
|
|
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
|
2014-03-26 18:23:30 +01:00
|
|
|
132, 152, 152, 152, 152, 152, 152, 133, 134, 135,
|
|
|
|
136, 137, 138, 139, 140, 141, 142
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yyaction = array(
|
2014-03-26 18:23:30 +01:00
|
|
|
59, 60, 324, 61, 62,-32766,-32766,-32766, 262, 63,
|
|
|
|
64, 103, 104, 105, 341, 233,-32766,-32766,-32766, 0,
|
|
|
|
660, 661,-32766, 900,-32766,-32766,-32766,-32766,-32766,-32767,
|
|
|
|
-32767,-32767,-32767,-32766, 496,-32766,-32766,-32766,-32766,-32766,
|
|
|
|
65, 66, -120,-32766,-32766,-32766, 67, 296, 68, 220,
|
2012-09-07 23:31:36 +02:00
|
|
|
221, 69, 70, 71, 72, 73, 74, 75, 76, 31,
|
2014-03-26 18:23:30 +01:00
|
|
|
232, 77, 316, 325,-32766,-32766,-32766, 841, 842, 361,
|
|
|
|
34, 900, 215, 581, 635, 362, 46, 27, 326, 187,
|
|
|
|
363,-32766, 364,-32766, 365, 35, 487, 327,-32766,-32766,
|
|
|
|
-32766, 36, 37, 366, 332, 328, 38, 367, 260, 238,
|
|
|
|
78, 359, 346, 278, 279,-32766, 368, 369, 685, 39,
|
|
|
|
223, 370, 371, 372, 349, 563, 607, 373, 374, 463,
|
|
|
|
793, 57, 375, 376, 123, 847, 848, 849, 850, 844,
|
|
|
|
845, 239, 342, 82, 83, 84, 388, 851, 846, 329,
|
|
|
|
128, 587, 506,-32766, 47, 56, 260, 244, 866, 248,
|
|
|
|
40, 189, 85, 86, 87, 88, 89, 90, 91, 92,
|
|
|
|
93, 94, 95, 96, 97, 98, 99, 100, 101, 102,
|
|
|
|
103, 104, 105,-32766, 233, 126, 793, 853, 321, 537,
|
|
|
|
304, 323, 246,-32766, 257, 54,-32766,-32766,-32766, 277,
|
|
|
|
-32766, 636,-32766, 698,-32766, 216, 456,-32766,-32766,-32766,
|
|
|
|
-32766,-32766,-32766,-32766, 122, 53,-32766,-32766, 793, 894,
|
|
|
|
-32766, 328, 907,-32766, 387,-32766, 537,-32766,-32766,-32766,
|
|
|
|
-32766,-32766, 368, 369, 929, 663, 605, 222, 120,-32766,
|
|
|
|
190, 563, 607, 373, 374, 537, 285, 680, 932,-32766,
|
|
|
|
934, 933,-32766,-32766,-32766, 344,-32766, 922,-32766, 321,
|
|
|
|
-32766,-32766,-32766,-32766, 22, 257, 227,-32766,-32766,-32766,
|
|
|
|
793,-32766,-32766,-32766, 698, 348,-32766, 537, 119,-32766,
|
|
|
|
387,-32766, 194, 671,-32766,-32766,-32766,-32766,-32766, 224,
|
|
|
|
-32766, 321,-32766, 388, 268,-32766, 329, 257, 118,-32766,
|
|
|
|
-32766,-32766, 793, 505,-32766,-32766, 698, 606,-32766, 922,
|
|
|
|
213,-32766, 387, 100, 101, 102, 125,-32766,-32766,-32766,
|
|
|
|
904, 338, 249,-32766, 508, 267,-32766,-32766,-32766, 537,
|
|
|
|
343, 807, 863,-32766, -116, 547,-32766,-32766,-32766, 604,
|
|
|
|
-32766, 865,-32766,-32766,-32766,-32766,-32766,-32766, 126,-32766,
|
|
|
|
-32766,-32766,-32766,-32766, 793,-32766,-32766,-32766, 217, 375,
|
|
|
|
-32766, 537, 130,-32766, 387,-32766, 454, 864,-32766,-32766,
|
|
|
|
-32766,-32766,-32766, 225,-32766, 690,-32766,-32766,-32766,-32766,
|
|
|
|
853, 195, 578,-32766,-32766,-32766, 425, 866,-32766,-32766,
|
|
|
|
226, 579,-32766, 127, 188,-32766, 387, 351, 28, 356,
|
|
|
|
469,-32766,-32766,-32766, 117, 224, 522,-32766, 131, 286,
|
|
|
|
478, 479, 521, 537, 660, 661, 528,-32766, 684, 527,
|
|
|
|
-32766,-32766,-32766, 591,-32766, 518,-32766, 129,-32766, 793,
|
|
|
|
509,-32766, 530,-32766,-32766,-32766,-32766,-32766, 511,-32766,
|
|
|
|
-32766,-32766, 544, 513,-32766, 537, 600,-32766, 387,-32766,
|
|
|
|
695, 532,-32766,-32766,-32766,-32766,-32766, 233,-32766, 52,
|
|
|
|
-32766, 793, 232,-32766, 51, 416, 55,-32766,-32766,-32766,
|
|
|
|
49, 58,-32766,-32766, 50, 483,-32766, 212, 265,-32766,
|
|
|
|
387, 418,-32766, 229, 495,-32766,-32766,-32766, 537, 552,
|
|
|
|
554, 692,-32766, 504, 415,-32766,-32766,-32766, 538,-32766,
|
|
|
|
403,-32766, 337,-32766, 793, 339,-32766, 537, 493, 398,
|
|
|
|
-32766,-32766,-32766, 399,-32766,-32766,-32766,-32766,-32766,-32766,
|
|
|
|
537, 662,-32766, 387,-32766, 927, 488,-32766,-32766,-32766,
|
|
|
|
-32766,-32766, 480,-32766, 810,-32766, 793, 402,-32766, -164,
|
|
|
|
340, 922,-32766,-32766,-32766, 266, -161,-32766,-32766, 474,
|
|
|
|
447,-32766, 336, 459,-32766, 387, 258,-32766, 472, 255,
|
|
|
|
573,-32766,-32766, 537, 609, 608, 358,-32766, 121, 852,
|
|
|
|
-32766,-32766,-32766, -354,-32766, 261,-32766, -285,-32766, -353,
|
|
|
|
251,-32766, 320, 481, 0,-32766,-32766,-32766, 256,-32766,
|
|
|
|
-32766,-32766, 571,-32766,-32766, 537, 245,-32766, 387,-32766,
|
|
|
|
247, 375,-32766,-32766,-32766,-32766,-32766, 42,-32766, 193,
|
|
|
|
-32766, 0, 501,-32766, 408, 45, -294,-32766,-32766,-32766,
|
|
|
|
242, 338,-32766,-32766, 287, -293,-32766, 299, 44,-32766,
|
|
|
|
387, 602,-32766, 0, 514, 575,-32766,-32766, 537, 574,
|
|
|
|
572, 576,-32766, 589, 577,-32766,-32766,-32766, 590,-32766,
|
|
|
|
568,-32766, 583,-32766, 638, 629,-32766, 630, 566, 580,
|
|
|
|
-32766,-32766,-32766, 623,-32766,-32766,-32766,-32766,-32766,-32766,
|
|
|
|
537, 621,-32766, 387,-32766, 582, 619,-32766,-32766,-32766,
|
|
|
|
-32766,-32766, 688,-32766, 691,-32766, 548, 689,-32766, 191,
|
|
|
|
192, 515,-32766,-32766,-32766, 681, 895,-32766,-32766, 81,
|
|
|
|
507,-32766, 512, 517,-32766, 387, 519, 524, 185, 525,
|
|
|
|
-32766,-32766,-32766, 526, 834, 531, 841, 842, 124, 529,
|
|
|
|
-32766, 905, 673, 832, 843, 41, 106, 107, 108, 109,
|
|
|
|
110, 111, 112, 113, 114, 115, 116, 897, 885, 328,
|
|
|
|
317, 899,-32766,-32766, 80, 328, 276, 930, 931, 628,
|
|
|
|
368, 369, 627, 901, 355, 928, 368, 369,-32766, 543,
|
|
|
|
607, 373, 374, 735, 737, 563, 607, 373, 374, 236,
|
|
|
|
235, 234, 444, 237, 847, 848, 849, 850, 844, 845,
|
|
|
|
307, 259, 219, 218, 214, 263, 851, 846, 545, 328,
|
|
|
|
317, 319, 186,-32766, 516,-32766, 276, 315, 79, 48,
|
|
|
|
368, 369,-32766,-32766,-32766, 43, 328, 317, 33, 543,
|
|
|
|
607, 373, 374, 276, 32, 30, 791, 368, 369,-32766,
|
|
|
|
773,-32766,-32766,-32766, 664, 800, 543, 607, 373, 374,
|
|
|
|
797, 259, 500, 473, -353, 439, 357, 352, 546,-32767,
|
|
|
|
-32767,-32767,-32767, 98, 99, 100, 101, 102, 259, 328,
|
|
|
|
305, 288, 25, 328, 706, 707, 708, 705, 704, 703,
|
|
|
|
368, 369, 24, 23, 368, 369, 328, -116, 796, 563,
|
|
|
|
607, 373, 374, 563, 607, 373, 374, 368, 369, -117,
|
|
|
|
772, 859, 448, 328, 0, 0, 563, 607, 373, 374,
|
|
|
|
879, 860, 926, 831, 368, 369, 328, 896, 794, 880,
|
|
|
|
328, 884, 696, 563, 607, 373, 374, 368, 369, 898,
|
|
|
|
816, 368, 369, 328, 804, 594, 563, 607, 373, 374,
|
|
|
|
563, 607, 373, 374, 368, 369, 537, 802, 900, 803,
|
|
|
|
503, 801, 795, 563, 607, 373, 374, 494, 0, 0,
|
|
|
|
0, 0, 0, 328, 0, 596, 0, 0, 328, 564,
|
|
|
|
0, 0, 0, 0, 368, 369, 0, 0, 0, 368,
|
|
|
|
369, 817, 603, 563, 607, 373, 374, 328, 563, 607,
|
|
|
|
373, 374, 0, 0, 0, 0, 0, 0, 368, 369,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 563, 607, 373,
|
|
|
|
374, 0, 0, 388, 0, 0, 329, 0, 0, 0,
|
|
|
|
0, 333, 0, 260
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yycheck = array(
|
2012-09-07 19:43:07 +02:00
|
|
|
2, 3, 4, 5, 6, 8, 9, 10, 7, 11,
|
2014-03-26 18:23:30 +01:00
|
|
|
12, 45, 46, 47, 26, 49, 8, 9, 10, 0,
|
|
|
|
125, 126, 25, 73, 27, 28, 29, 30, 31, 32,
|
|
|
|
33, 34, 35, 25, 71, 27, 28, 29, 30, 31,
|
|
|
|
42, 43, 147, 8, 9, 10, 48, 73, 50, 51,
|
2011-10-21 11:07:06 +02:00
|
|
|
52, 53, 54, 55, 56, 57, 58, 59, 60, 61,
|
2014-03-26 18:23:30 +01:00
|
|
|
62, 63, 64, 65, 8, 9, 10, 69, 70, 71,
|
|
|
|
7, 73, 7, 75, 26, 77, 78, 79, 80, 7,
|
|
|
|
82, 25, 84, 27, 86, 7, 87, 89, 8, 9,
|
|
|
|
10, 93, 94, 95, 96, 96, 98, 99, 148, 7,
|
|
|
|
102, 7, 71, 105, 106, 25, 107, 108, 145, 135,
|
|
|
|
136, 113, 114, 115, 7, 116, 117, 118, 119, 76,
|
|
|
|
12, 61, 124, 125, 7, 127, 128, 129, 130, 131,
|
|
|
|
132, 133, 144, 8, 9, 10, 138, 139, 140, 141,
|
|
|
|
61, 143, 144, 8, 146, 61, 148, 149, 117, 151,
|
|
|
|
25, 13, 27, 28, 29, 30, 31, 32, 33, 34,
|
|
|
|
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
|
|
|
|
45, 46, 47, 65, 49, 144, 12, 134, 97, 71,
|
|
|
|
72, 7, 122, 75, 103, 61, 78, 79, 80, 7,
|
|
|
|
82, 143, 84, 112, 86, 31, 81, 89, 8, 9,
|
|
|
|
10, 93, 94, 95, 144, 61, 98, 99, 12, 73,
|
|
|
|
102, 96, 147, 105, 106, 25, 71, 27, 28, 29,
|
|
|
|
30, 113, 107, 108, 145, 147, 145, 31, 144, 65,
|
|
|
|
13, 116, 117, 118, 119, 71, 7, 143, 71, 75,
|
|
|
|
73, 74, 78, 79, 80, 7, 82, 76, 84, 97,
|
|
|
|
86, 143, 144, 89, 147, 103, 31, 93, 94, 95,
|
|
|
|
12, 65, 98, 99, 112, 71, 102, 71, 144, 105,
|
|
|
|
106, 75, 13, 73, 78, 79, 80, 113, 82, 31,
|
|
|
|
84, 97, 86, 138, 148, 89, 141, 103, 144, 93,
|
|
|
|
94, 95, 12, 71, 98, 99, 112, 145, 102, 76,
|
|
|
|
123, 105, 106, 42, 43, 44, 26, 143, 144, 113,
|
|
|
|
71, 141, 76, 65, 144, 61, 8, 9, 10, 71,
|
|
|
|
7, 147, 151, 75, 147, 143, 78, 79, 80, 145,
|
|
|
|
82, 71, 84, 25, 86, 27, 28, 89, 144, 143,
|
|
|
|
144, 93, 94, 95, 12, 65, 98, 99, 148, 124,
|
|
|
|
102, 71, 144, 105, 106, 75, 148, 134, 78, 79,
|
|
|
|
80, 113, 82, 31, 84, 143, 86, 8, 9, 89,
|
|
|
|
134, 13, 143, 93, 94, 95, 122, 117, 98, 99,
|
|
|
|
7, 143, 102, 144, 13, 105, 106, 66, 67, 66,
|
|
|
|
67, 143, 144, 113, 13, 31, 26, 65, 91, 92,
|
|
|
|
100, 101, 26, 71, 125, 126, 26, 75, 143, 144,
|
|
|
|
78, 79, 80, 26, 82, 26, 84, 26, 86, 12,
|
|
|
|
26, 89, 26, 143, 144, 93, 94, 95, 26, 65,
|
|
|
|
98, 99, 143, 144, 102, 71, 31, 105, 106, 75,
|
|
|
|
143, 144, 78, 79, 80, 113, 82, 49, 84, 61,
|
|
|
|
86, 12, 62, 89, 61, 71, 61, 93, 94, 95,
|
|
|
|
61, 61, 98, 99, 61, 68, 102, 88, 76, 105,
|
|
|
|
106, 88, 65, 88, 73, 143, 144, 113, 71, 71,
|
|
|
|
71, 71, 75, 71, 71, 78, 79, 80, 71, 82,
|
|
|
|
71, 84, 71, 86, 12, 71, 89, 71, 71, 71,
|
|
|
|
93, 94, 95, 71, 65, 98, 99, 143, 144, 102,
|
|
|
|
71, 147, 105, 106, 75, 71, 73, 78, 79, 80,
|
|
|
|
113, 82, 73, 84, 73, 86, 12, 73, 89, 73,
|
|
|
|
80, 76, 93, 94, 95, 76, 88, 98, 99, 103,
|
|
|
|
88, 102, 96, 90, 105, 106, 104, 65, 90, 120,
|
|
|
|
143, 144, 113, 71, 117, 117, 96, 75, 123, 134,
|
|
|
|
78, 79, 80, 122, 82, 120, 84, 137, 86, 122,
|
|
|
|
137, 89, 141, 150, -1, 93, 94, 95, 121, 65,
|
|
|
|
98, 99, 143, 144, 102, 71, 122, 105, 106, 75,
|
|
|
|
122, 124, 78, 79, 80, 113, 82, 123, 84, 123,
|
|
|
|
86, -1, 137, 89, 141, 143, 137, 93, 94, 95,
|
|
|
|
137, 141, 98, 99, 137, 137, 102, 137, 143, 105,
|
|
|
|
106, 142, 65, -1, 143, 143, 144, 113, 71, 143,
|
|
|
|
143, 143, 75, 143, 143, 78, 79, 80, 143, 82,
|
|
|
|
143, 84, 143, 86, 143, 143, 89, 143, 143, 143,
|
|
|
|
93, 94, 95, 143, 65, 98, 99, 143, 144, 102,
|
|
|
|
71, 143, 105, 106, 75, 143, 143, 78, 79, 80,
|
|
|
|
113, 82, 143, 84, 143, 86, 143, 143, 89, 42,
|
|
|
|
43, 143, 93, 94, 95, 143, 145, 98, 99, 144,
|
|
|
|
144, 102, 144, 144, 105, 106, 144, 144, 61, 144,
|
|
|
|
143, 144, 113, 144, 147, 144, 69, 70, 144, 144,
|
|
|
|
73, 145, 145, 145, 77, 13, 14, 15, 16, 17,
|
|
|
|
18, 19, 20, 21, 22, 23, 24, 145, 145, 96,
|
|
|
|
97, 145, 143, 144, 146, 96, 103, 145, 145, 145,
|
|
|
|
107, 108, 145, 145, 145, 145, 107, 108, 146, 116,
|
|
|
|
117, 118, 119, 51, 52, 116, 117, 118, 119, 146,
|
|
|
|
146, 146, 125, 146, 127, 128, 129, 130, 131, 132,
|
|
|
|
133, 138, 146, 146, 146, 146, 139, 140, 145, 96,
|
|
|
|
97, 146, 146, 146, 145, 148, 103, 146, 146, 146,
|
|
|
|
107, 108, 8, 9, 10, 146, 96, 97, 146, 116,
|
|
|
|
117, 118, 119, 103, 146, 146, 149, 107, 108, 25,
|
|
|
|
147, 27, 28, 29, 147, 147, 116, 117, 118, 119,
|
|
|
|
147, 138, 147, 147, 122, 147, 147, 147, 145, 36,
|
|
|
|
37, 38, 39, 40, 41, 42, 43, 44, 138, 96,
|
|
|
|
147, 147, 147, 96, 106, 107, 108, 109, 110, 111,
|
|
|
|
107, 108, 147, 147, 107, 108, 96, 147, 147, 116,
|
|
|
|
117, 118, 119, 116, 117, 118, 119, 107, 108, 147,
|
|
|
|
147, 147, 147, 96, -1, -1, 116, 117, 118, 119,
|
|
|
|
150, 150, 150, 150, 107, 108, 96, 150, 145, 150,
|
|
|
|
96, 150, 145, 116, 117, 118, 119, 107, 108, 150,
|
|
|
|
150, 107, 108, 96, 150, 145, 116, 117, 118, 119,
|
|
|
|
116, 117, 118, 119, 107, 108, 71, 150, 73, 150,
|
|
|
|
83, 150, 145, 116, 117, 118, 119, 85, -1, -1,
|
|
|
|
-1, -1, -1, 96, -1, 145, -1, -1, 96, 145,
|
|
|
|
-1, -1, -1, -1, 107, 108, -1, -1, -1, 107,
|
|
|
|
108, 106, 145, 116, 117, 118, 119, 96, 116, 117,
|
|
|
|
118, 119, -1, -1, -1, -1, -1, -1, 107, 108,
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, 116, 117, 118,
|
|
|
|
119, -1, -1, 138, -1, -1, 141, -1, -1, -1,
|
|
|
|
-1, 146, -1, 148
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yybase = array(
|
2014-03-26 18:23:30 +01:00
|
|
|
0, 683, 633, 700, 794, 639, 115, -1, 842, 807,
|
|
|
|
743, 790, 777, 837, 760, 747, 861, 861, 861, 861,
|
|
|
|
861, 402, 389, 370, 396, 370, 394, -2, -2, -2,
|
|
|
|
364, 196, 196, 557, 196, 248, 439, 407, 482, 108,
|
|
|
|
280, 164, 332, 514, 514, 514, 514, 589, 589, 514,
|
|
|
|
514, 514, 514, 514, 514, 514, 514, 514, 514, 514,
|
|
|
|
514, 514, 514, 514, 514, 514, 514, 514, 514, 514,
|
|
|
|
514, 514, 514, 514, 514, 514, 514, 514, 514, 514,
|
|
|
|
514, 514, 514, 514, 514, 514, 514, 514, 514, 514,
|
|
|
|
514, 514, 514, 514, 514, 514, 514, 514, 514, 514,
|
|
|
|
514, 514, 514, 514, 514, 514, 514, 514, 514, 514,
|
|
|
|
514, 514, 514, 514, 514, 514, 514, 514, 514, 514,
|
|
|
|
514, 514, 514, 514, 514, 514, 514, 514, 514, 514,
|
|
|
|
514, 514, 48, 522, 435, 474, 487, 486, 488, 490,
|
|
|
|
711, 379, 663, 600, 598, 391, 586, 583, 582, 568,
|
|
|
|
567, 599, 566, 423, 541, 125, 125, 125, 125, 125,
|
|
|
|
125, 125, 125, 125, 125, 135, 359, 35, 35, 35,
|
|
|
|
35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
|
|
|
|
35, 35, 80, 80, 56, 637, 637, 637, 637, 637,
|
|
|
|
637, 637, 637, 637, 637, 637, 308, 784, 190, 8,
|
|
|
|
-3, -3, -3, -3, 702, 793, 793, 793, 793, 152,
|
|
|
|
81, 184, 225, 225, 467, 467, 390, 564, 845, 845,
|
|
|
|
845, 845, 845, 845, 845, 845, 845, 845, 456, 412,
|
|
|
|
261, 261, 602, 602, -105, -105, -105, -105, 279, 236,
|
|
|
|
223, 171, 31, -37, 392, 239, 239, 239, 459, 425,
|
|
|
|
455, 194, -34, -34, -34, 145, 145, 145, 145, 170,
|
|
|
|
545, 145, 145, 145, 124, -26, -26, 167, 208, 453,
|
|
|
|
597, 458, 594, 265, 469, 60, 431, 431, 200, 446,
|
|
|
|
321, 323, 300, 430, -12, 200, 48, 260, 297, 84,
|
|
|
|
506, 384, 533, 182, 229, 238, 254, 289, 144, 136,
|
|
|
|
107, 725, 723, 65, 79, 441, 78, 43, 144, 177,
|
|
|
|
542, 94, 174, 529, 222, 405, 652, 432, 659, 413,
|
|
|
|
426, 432, 449, 405, 643, 643, 643, 643, 405, 426,
|
|
|
|
659, 659, 405, 390, 659, 63, 405, 429, 426, 445,
|
|
|
|
643, 481, 538, 432, 454, 457, 659, 659, 659, 413,
|
|
|
|
405, 643, 436, 479, 72, 659, 643, 436, 405, 449,
|
|
|
|
19, 387, 399, 649, 642, 635, 428, 546, 438, 437,
|
|
|
|
627, 626, 588, 419, 421, 628, 658, 463, 491, 424,
|
|
|
|
381, 403, 393, 388, 473, 395, 464, 446, 470, 398,
|
|
|
|
447, 433, 447, 771, 480, 478, 468, 450, 495, 371,
|
|
|
|
463, 383, 138, 548, 463, 673, 693, 657, 417, 615,
|
|
|
|
678, 447, 769, 475, 117, 217, 614, 452, 408, 447,
|
|
|
|
613, 447, 549, 447, 668, 444, 593, 463, 398, 398,
|
|
|
|
398, 667, 767, 754, 750, 749, 741, 739, 737, 400,
|
|
|
|
733, 497, 680, 92, 636, 430, 477, 409, 499, 1,
|
|
|
|
732, 447, 447, 552, 545, 447, 501, 462, 706, 502,
|
|
|
|
676, 476, 731, 425, 679, 447, 460, 730, 1, 376,
|
|
|
|
397, 722, 504, 553, 641, 555, 443, 724, 629, 559,
|
|
|
|
259, 592, 380, 505, 705, 695, 710, 510, 358, 565,
|
|
|
|
427, 451, 401, 617, 518, 675, 448, 465, 442, 385,
|
|
|
|
561, 410, 694, 523, 531, 534, 0, 0, 0, 0,
|
2011-11-04 07:40:48 +01:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
2012-04-19 00:52:44 +02:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
2014-03-26 18:23:30 +01:00
|
|
|
0, 0, 0, 0, -2, -2, -2, -2, -2, -2,
|
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2011-11-21 18:43:35 +01:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2014-03-26 18:23:30 +01:00
|
|
|
0, 0, 0, -2, -2, -2, -2, -2, -2, -2,
|
2011-11-21 18:43:35 +01:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2011-04-18 19:02:30 +02:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2011-06-02 16:29:28 +02:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2011-06-03 22:02:02 +02:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2011-10-16 14:27:03 +02:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2011-10-21 14:09:41 +02:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2014-03-26 18:23:30 +01:00
|
|
|
-2, -2, -2, -2, -2, 125, 125, 125, 125, 125,
|
|
|
|
125, 125, 125, 125, 125, 125, 125, 125, 125, 125,
|
|
|
|
125, 125, 125, 125, 125, 125, 125, 125, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 125, 125,
|
|
|
|
125, 125, 125, 125, 125, 125, 125, 125, 125, 125,
|
|
|
|
125, 125, 125, 125, 125, 125, 125, 125, 845, 845,
|
|
|
|
845, 845, 845, 845, 845, 845, 845, 845, 845, 125,
|
|
|
|
125, 125, 125, 125, 125, 125, 125, 0, -34, -34,
|
|
|
|
-34, -34, 738, 738, 738, 845, 845, 845, 845, 845,
|
|
|
|
845, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 738, 738, -34, -34, 845, 845, 145, 145, 145,
|
|
|
|
145, 145, -26, -26, -26, 136, 145, -26, -50, -50,
|
|
|
|
-50, -26, -26, -26, 136, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 426, -50, 0, 0, 0, 659, 0, 0,
|
|
|
|
0, -50, 307, 307, 307, 307, 1, 144, 0, 426,
|
|
|
|
426, 0, 454, 0, 0, 0, 659, 0, 0, 0,
|
|
|
|
0, 0, 0, 117, 615, 313, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 373, 373, 0, 0, 400, 0,
|
|
|
|
0, 0, 0, 313, 0, 0, 1
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yydefault = array(
|
2011-04-18 19:02:30 +02:00
|
|
|
3,32767,32767, 1,32767,32767,32767,32767,32767,32767,
|
2014-03-26 18:23:30 +01:00
|
|
|
32767,32767,32767,32767,32767,32767, 109, 101, 115, 100,
|
|
|
|
111,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767, 380, 380,32767, 337,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767, 182, 182, 182,32767,32767,32767, 369,
|
|
|
|
369, 369, 369, 369, 369, 369, 369, 369, 369,32767,
|
|
|
|
32767,32767,32767,32767, 260,32767,32767,32767,32767,32767,
|
2011-10-21 14:09:41 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2011-12-04 17:07:17 +01:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2011-11-21 18:43:35 +01:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2011-06-02 17:01:22 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2011-05-27 21:15:38 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2011-04-18 19:02:30 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2014-03-26 18:23:30 +01:00
|
|
|
32767,32767,32767,32767, 265, 385,32767,32767,32767,32767,
|
2011-04-18 19:02:30 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2014-03-26 18:23:30 +01:00
|
|
|
32767,32767,32767,32767,32767, 241, 242, 244, 245, 181,
|
|
|
|
370, 134, 266, 384, 180, 208, 210, 259, 209, 186,
|
|
|
|
191, 192, 193, 194, 195, 196, 197, 198, 199, 200,
|
|
|
|
201, 185, 238, 237, 206, 334, 334, 337,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767, 207, 211, 213, 212,
|
|
|
|
228, 229, 226, 227, 184, 230, 231, 232, 233, 166,
|
|
|
|
166, 166,32767,32767, 379, 379,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767, 167,32767,
|
|
|
|
220, 221, 295, 295, 125, 125, 125, 125, 125,32767,
|
|
|
|
32767,32767,32767,32767, 303,32767,32767,32767,32767,32767,
|
|
|
|
305,32767, 215, 216, 214,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767, 342, 304,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767, 355, 291,32767,32767,32767, 284,
|
|
|
|
112, 114, 62, 321,32767,32767,32767,32767,32767, 360,
|
|
|
|
32767,32767,32767,32767,32767,32767, 392,32767, 355,32767,
|
|
|
|
32767,32767,32767,32767,32767, 236,32767,32767, 359, 353,
|
|
|
|
32767,32767,32767,32767,32767, 66, 300,32767, 306,32767,
|
2014-03-09 13:27:39 +01:00
|
|
|
32767,32767,32767, 66,32767,32767,32767,32767, 66,32767,
|
2014-03-26 18:23:30 +01:00
|
|
|
358, 357, 66,32767, 285, 336, 66, 79,32767, 77,
|
|
|
|
32767, 98, 98,32767,32767, 81, 332, 348,32767,32767,
|
|
|
|
66,32767, 273, 68, 336,32767,32767, 273, 66,32767,
|
|
|
|
32767, 4, 310,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767, 286,32767,32767,
|
|
|
|
32767, 256, 257, 344,32767, 345,32767, 284,32767, 224,
|
|
|
|
203,32767, 205,32767,32767, 289, 292,32767,32767,32767,
|
|
|
|
6, 18, 143,32767, 287,32767, 189,32767,32767,32767,
|
|
|
|
32767, 387,32767,32767, 183,32767,32767, 20,32767, 139,
|
|
|
|
32767, 64,32767, 377,32767,32767, 353, 288, 217, 218,
|
|
|
|
219,32767,32767,32767,32767,32767,32767,32767,32767, 354,
|
|
|
|
32767,32767,32767, 119,32767, 321,32767,32767,32767, 80,
|
|
|
|
32767, 187, 135,32767,32767, 386,32767,32767,32767,32767,
|
|
|
|
32767, 341,32767,32767,32767, 65,32767,32767, 82,32767,
|
|
|
|
32767, 353,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
178,32767,32767,32767,32767,32767, 353,32767, 123,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767, 4,32767, 160,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767, 26, 26, 3, 26,
|
|
|
|
106, 26, 146, 3, 98, 98, 59, 146, 26, 146,
|
|
|
|
26, 26, 26, 26, 26, 26, 26, 153, 26, 26,
|
|
|
|
26, 26, 26
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yygoto = array(
|
2012-09-07 23:31:36 +02:00
|
|
|
161, 135, 135, 140, 135, 161, 136, 137, 138, 143,
|
|
|
|
145, 169, 163, 159, 159, 159, 159, 140, 140, 160,
|
|
|
|
160, 160, 160, 160, 160, 160, 160, 160, 160, 155,
|
2014-03-26 18:23:30 +01:00
|
|
|
156, 157, 158, 167, 134, 755, 756, 389, 758, 779,
|
|
|
|
780, 781, 782, 783, 784, 785, 787, 723, 139, 141,
|
2012-09-07 23:31:36 +02:00
|
|
|
142, 144, 165, 166, 168, 184, 196, 197, 198, 199,
|
|
|
|
200, 201, 202, 203, 205, 206, 207, 208, 230, 231,
|
2014-03-26 18:23:30 +01:00
|
|
|
252, 253, 254, 428, 429, 430, 170, 171, 172, 173,
|
2012-09-07 23:31:36 +02:00
|
|
|
174, 175, 176, 177, 178, 179, 180, 181, 146, 147,
|
|
|
|
148, 162, 149, 164, 150, 182, 151, 152, 153, 183,
|
2014-03-26 18:23:30 +01:00
|
|
|
154, 132, 445, 445, 445, 445, 445, 445, 445, 445,
|
|
|
|
445, 445, 445, 309, 486, 423, 423, 451, 419, 421,
|
|
|
|
421, 390, 392, 411, 426, 452, 455, 465, 471, 334,
|
2014-03-09 13:27:39 +01:00
|
|
|
334, 334, 334, 334, 334, 334, 334, 334, 334, 334,
|
2014-03-26 18:23:30 +01:00
|
|
|
334, 334, 334, 334, 334, 651, 651, 911, 911, 818,
|
|
|
|
818, 659, 659, 659, 659, 659, 210, 406, 211, 585,
|
|
|
|
497, 446, 446, 446, 446, 446, 446, 446, 446, 446,
|
|
|
|
446, 446, 616, 616, 616, 616, 270, 424, 611, 617,
|
|
|
|
492, 391, 391, 391, 391, 391, 391, 391, 391, 391,
|
|
|
|
391, 391, 391, 391, 391, 391, 391, 541, 541, 541,
|
|
|
|
250, 394, 394, 5, 241, 16, 883, 6, 395, 395,
|
|
|
|
540, 540, 540, 915, 7, 666, 17, 18, 8, 19,
|
|
|
|
9, 10, 11, 290, 20, 12, 13, 14, 15, 477,
|
|
|
|
637, 622, 620, 618, 620, 510, 397, 646, 641, 855,
|
|
|
|
855, 855, 855, 855, 855, 855, 855, 855, 855, 855,
|
|
|
|
432, 433, 434, 435, 436, 437, 438, 440, 467, 835,
|
|
|
|
840, 542, 542, 542, 460, 464, 502, 776, 26, 21,
|
|
|
|
284, 297, 814, 815, 557, 677, 626, 857, 858, 873,
|
|
|
|
712, 657, 871, 441, 400, 485, 921, 921, 812, 882,
|
|
|
|
812, 890, 890, 1, 29, 924, 921, 813, 2, 482,
|
|
|
|
908, 400, 400, 302, 906, 906, 906, 431, 767, 291,
|
|
|
|
405, 924, 924, 409, 298, 298, 298, 420, 655, 889,
|
|
|
|
468, 273, 313, 669, 405, 405, 721, 457, 484, 298,
|
|
|
|
549, 353, 417, 702, 314, 891, 891, 308, 520, 490,
|
|
|
|
396, 396, 830, 829, 856, 400, 809, 310, 271, 272,
|
|
|
|
555, 625, 674, 868, 404, 489, 710, 0, 0, 0,
|
|
|
|
0, 0, 0, 427, 0, 0, 0, 0, 0, 0,
|
2011-12-04 16:52:43 +01:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
2011-11-21 18:43:35 +01:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
2012-09-07 23:31:36 +02:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
2014-03-26 18:23:30 +01:00
|
|
|
0, 0, 0, 410
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yygcheck = array(
|
2014-03-09 13:27:39 +01:00
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 39, 39, 39, 39, 39, 39, 39, 39,
|
|
|
|
39, 39, 39, 33, 33, 33, 33, 33, 33, 33,
|
|
|
|
33, 33, 33, 33, 33, 33, 33, 33, 33, 39,
|
|
|
|
39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
|
2014-03-26 18:23:30 +01:00
|
|
|
39, 39, 39, 39, 39, 55, 55, 55, 55, 39,
|
|
|
|
39, 39, 39, 39, 39, 39, 46, 77, 46, 32,
|
|
|
|
39, 94, 94, 94, 94, 94, 94, 94, 94, 94,
|
|
|
|
94, 94, 39, 39, 39, 39, 50, 85, 39, 39,
|
|
|
|
39, 91, 91, 91, 91, 91, 91, 91, 91, 91,
|
|
|
|
91, 91, 91, 91, 91, 91, 91, 7, 7, 7,
|
|
|
|
100, 91, 91, 14, 100, 14, 59, 14, 94, 94,
|
|
|
|
6, 6, 6, 114, 14, 61, 14, 14, 14, 14,
|
|
|
|
14, 14, 14, 29, 14, 14, 14, 14, 14, 103,
|
|
|
|
6, 6, 6, 6, 6, 6, 6, 6, 6, 101,
|
|
|
|
101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
|
|
|
|
86, 86, 86, 86, 86, 86, 86, 86, 86, 16,
|
|
|
|
59, 8, 8, 8, 42, 42, 42, 16, 16, 16,
|
|
|
|
16, 5, 59, 59, 13, 13, 13, 13, 13, 13,
|
|
|
|
13, 13, 106, 16, 4, 31, 115, 115, 59, 59,
|
|
|
|
59, 93, 93, 2, 16, 115, 115, 59, 2, 16,
|
|
|
|
112, 4, 4, 30, 93, 93, 93, 26, 78, 40,
|
|
|
|
26, 115, 115, 40, 98, 98, 98, 40, 57, 93,
|
|
|
|
48, 48, 48, 62, 26, 26, 77, 22, 22, 98,
|
|
|
|
11, 40, 5, 74, 74, 92, 92, 98, 52, 40,
|
|
|
|
97, 97, 99, 99, 102, 4, 89, 10, 50, 50,
|
|
|
|
12, 49, 63, 105, 4, 84, 76, -1, -1, -1,
|
|
|
|
-1, -1, -1, 4, -1, -1, -1, -1, -1, -1,
|
2012-09-07 23:31:36 +02:00
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
2011-11-21 18:43:35 +01:00
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
2011-12-04 16:52:43 +01:00
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
2014-03-26 18:23:30 +01:00
|
|
|
-1, -1, -1, 77
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yygbase = array(
|
2014-03-26 18:23:30 +01:00
|
|
|
0, 0, -215, 0, 25, 12, 209, 196, 260, 0,
|
|
|
|
26, 53, 7, 86, -304, 0, -57, 0, 0, 0,
|
|
|
|
0, 0, 283, 0, 0, -30, 277, 0, 0, 177,
|
|
|
|
84, 72, 134, -99, 0, 0, 0, 0, 0, -83,
|
|
|
|
-19, 0, 29, 0, 0, 0, -361, 0, 64, 2,
|
|
|
|
-166, 0, 52, 0, 0, -67, 0, 80, 0, -58,
|
|
|
|
0, 180, 38, 8, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 105, 0, -3, 110, 75, 0,
|
|
|
|
0, 0, 0, 0, -2, 145, 200, 0, 0, 23,
|
|
|
|
0, -31, 103, 59, -24, 0, 0, 108, 69, 96,
|
|
|
|
-44, 54, 57, 43, 0, -1, 95, 0, 0, 0,
|
|
|
|
0, 0, 85, 0, 179, 46, 0
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yygdefault = array(
|
2014-03-26 18:23:30 +01:00
|
|
|
-32768, 360, 3, 535, 377, 401, 560, 561, 562, 293,
|
|
|
|
292, 550, 556, 461, 4, 558, 768, 280, 565, 281,
|
|
|
|
470, 567, 413, 569, 570, 133, 378, 294, 295, 414,
|
|
|
|
301, 458, 584, 204, 300, 586, 282, 588, 593, 283,
|
|
|
|
491, 476, 442, 379, 345, 453, 209, 422, 449, 624,
|
|
|
|
269, 632, 523, 640, 643, 380, 443, 654, 350, 811,
|
|
|
|
306, 665, 670, 675, 678, 322, 311, 466, 682, 683,
|
|
|
|
243, 687, 498, 499, 701, 228, 709, 722, 318, 786,
|
|
|
|
788, 381, 382, 407, 475, 393, 412, 805, 312, 808,
|
|
|
|
383, 384, 330, 331, 826, 823, 275, 876, 274, 347,
|
|
|
|
240, 861, 862, 462, 354, 914, 872, 264, 385, 386,
|
|
|
|
289, 303, 909, 335, 916, 923, 450
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yylhs = array(
|
2014-03-09 13:27:39 +01:00
|
|
|
0, 1, 2, 2, 4, 4, 5, 3, 3, 3,
|
|
|
|
3, 3, 3, 3, 3, 3, 9, 9, 11, 11,
|
|
|
|
11, 11, 10, 10, 12, 14, 14, 15, 15, 15,
|
|
|
|
15, 6, 6, 6, 6, 6, 6, 6, 6, 6,
|
|
|
|
6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
|
|
|
|
6, 6, 6, 6, 6, 6, 6, 6, 6, 36,
|
2014-03-26 18:23:30 +01:00
|
|
|
36, 38, 37, 37, 30, 30, 40, 40, 41, 41,
|
|
|
|
7, 8, 8, 8, 43, 43, 43, 44, 44, 47,
|
|
|
|
47, 45, 45, 48, 48, 23, 23, 32, 32, 35,
|
|
|
|
35, 34, 34, 49, 24, 24, 24, 24, 50, 50,
|
|
|
|
51, 51, 52, 52, 21, 21, 17, 17, 53, 19,
|
|
|
|
19, 54, 18, 18, 20, 20, 31, 31, 31, 42,
|
|
|
|
42, 56, 56, 57, 57, 58, 58, 58, 58, 59,
|
|
|
|
59, 59, 60, 60, 61, 61, 27, 27, 62, 62,
|
|
|
|
62, 28, 28, 63, 63, 46, 46, 64, 64, 64,
|
|
|
|
64, 69, 69, 70, 70, 71, 71, 71, 71, 72,
|
|
|
|
73, 73, 68, 68, 65, 65, 67, 67, 75, 75,
|
|
|
|
74, 74, 74, 74, 74, 74, 66, 66, 76, 76,
|
|
|
|
29, 29, 22, 22, 25, 25, 25, 25, 25, 25,
|
2014-03-09 13:27:39 +01:00
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
2014-03-26 18:23:30 +01:00
|
|
|
25, 25, 25, 16, 16, 26, 26, 81, 81, 82,
|
|
|
|
82, 82, 77, 84, 84, 88, 88, 89, 90, 90,
|
|
|
|
90, 90, 90, 90, 94, 94, 39, 39, 39, 78,
|
|
|
|
78, 95, 95, 91, 91, 96, 96, 96, 96, 96,
|
|
|
|
79, 79, 79, 83, 83, 83, 87, 87, 101, 101,
|
|
|
|
101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
|
|
|
|
101, 101, 13, 13, 13, 13, 13, 13, 80, 80,
|
|
|
|
80, 80, 102, 102, 103, 103, 105, 105, 104, 104,
|
|
|
|
106, 106, 33, 33, 33, 33, 108, 108, 107, 107,
|
|
|
|
107, 107, 107, 109, 109, 93, 93, 97, 97, 92,
|
|
|
|
92, 110, 110, 110, 110, 98, 98, 98, 98, 86,
|
|
|
|
86, 99, 99, 99, 55, 111, 111, 112, 112, 112,
|
|
|
|
85, 85, 113, 113, 114, 114, 114, 114, 100, 100,
|
|
|
|
100, 100, 115, 115, 115, 115, 115, 115, 115, 116,
|
|
|
|
116, 116
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yylen = array(
|
2011-09-24 16:53:40 +02:00
|
|
|
1, 1, 2, 0, 1, 3, 1, 1, 1, 1,
|
2014-03-09 13:27:39 +01:00
|
|
|
1, 3, 5, 4, 3, 3, 3, 1, 1, 3,
|
|
|
|
2, 4, 3, 1, 3, 2, 0, 1, 1, 1,
|
|
|
|
1, 3, 5, 8, 3, 5, 9, 3, 2, 3,
|
|
|
|
2, 3, 2, 3, 2, 3, 3, 3, 1, 2,
|
|
|
|
5, 7, 9, 5, 1, 6, 3, 3, 2, 0,
|
2014-03-26 18:23:30 +01:00
|
|
|
2, 8, 0, 4, 1, 3, 0, 1, 0, 1,
|
|
|
|
9, 7, 6, 5, 1, 2, 2, 0, 2, 0,
|
|
|
|
2, 0, 2, 1, 3, 1, 4, 1, 4, 1,
|
|
|
|
4, 1, 3, 3, 3, 4, 4, 5, 0, 2,
|
|
|
|
4, 3, 1, 1, 1, 4, 0, 2, 3, 0,
|
|
|
|
2, 4, 0, 2, 0, 3, 1, 2, 1, 1,
|
|
|
|
0, 1, 3, 4, 6, 0, 1, 1, 1, 2,
|
|
|
|
3, 3, 1, 3, 1, 2, 3, 1, 1, 2,
|
|
|
|
4, 3, 1, 1, 3, 2, 0, 3, 3, 8,
|
|
|
|
3, 1, 3, 0, 2, 4, 5, 4, 4, 3,
|
|
|
|
1, 1, 1, 3, 1, 1, 0, 1, 1, 2,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 3, 1, 3,
|
|
|
|
3, 1, 0, 1, 1, 3, 3, 4, 4, 1,
|
|
|
|
2, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
|
|
3, 3, 2, 2, 2, 2, 3, 3, 3, 3,
|
2014-03-09 13:27:39 +01:00
|
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
2014-03-26 18:23:30 +01:00
|
|
|
3, 3, 2, 2, 2, 2, 3, 3, 3, 3,
|
|
|
|
3, 3, 3, 3, 3, 1, 3, 5, 4, 4,
|
|
|
|
4, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
|
|
2, 2, 2, 2, 2, 1, 1, 1, 3, 2,
|
|
|
|
1, 9, 10, 3, 3, 2, 4, 4, 3, 4,
|
|
|
|
4, 4, 3, 0, 4, 1, 3, 2, 2, 4,
|
|
|
|
6, 2, 2, 4, 1, 1, 1, 2, 3, 1,
|
|
|
|
1, 1, 1, 1, 1, 0, 3, 3, 4, 4,
|
|
|
|
0, 2, 1, 0, 1, 1, 0, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 3,
|
|
|
|
2, 1, 1, 3, 2, 2, 4, 3, 1, 3,
|
|
|
|
3, 3, 1, 1, 0, 2, 0, 1, 3, 1,
|
|
|
|
3, 1, 1, 1, 1, 1, 6, 4, 3, 4,
|
|
|
|
2, 4, 4, 1, 3, 1, 2, 1, 1, 4,
|
|
|
|
1, 3, 6, 4, 4, 4, 4, 1, 4, 0,
|
|
|
|
1, 1, 3, 1, 4, 3, 1, 1, 1, 0,
|
|
|
|
0, 2, 3, 1, 3, 1, 4, 2, 2, 2,
|
|
|
|
1, 2, 1, 4, 3, 3, 3, 6, 3, 1,
|
|
|
|
1, 1
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-05-31 16:33:11 +02:00
|
|
|
protected $yyval;
|
|
|
|
protected $yyastk;
|
2012-05-05 17:34:27 +02:00
|
|
|
protected $stackPos;
|
2011-06-12 17:12:47 +02:00
|
|
|
protected $lexer;
|
2011-04-18 19:02:30 +02:00
|
|
|
|
|
|
|
/**
|
2012-04-25 20:04:46 +02:00
|
|
|
* Creates a parser instance.
|
2011-05-31 16:33:11 +02:00
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @param Lexer $lexer A lexer
|
2012-04-25 20:04:46 +02:00
|
|
|
*/
|
2014-02-06 14:44:16 +01:00
|
|
|
public function __construct(Lexer $lexer) {
|
2012-04-25 20:04:46 +02:00
|
|
|
$this->lexer = $lexer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parses PHP code into a node tree.
|
|
|
|
*
|
|
|
|
* @param string $code The source code to parse
|
2011-05-31 16:33:11 +02:00
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return Node[] Array of statements
|
2011-04-18 19:02:30 +02:00
|
|
|
*/
|
2012-04-25 20:04:46 +02:00
|
|
|
public function parse($code) {
|
|
|
|
$this->lexer->startLexing($code);
|
2011-06-12 17:19:12 +02:00
|
|
|
|
2012-05-05 17:34:27 +02:00
|
|
|
// We start off with no lookahead-token
|
2012-04-29 22:57:46 +02:00
|
|
|
$tokenId = self::TOKEN_NONE;
|
2011-04-18 19:02:30 +02:00
|
|
|
|
2012-05-05 17:34:27 +02:00
|
|
|
// The attributes for a node are taken from the first and last token of the node.
|
|
|
|
// From the first token only the startAttributes are taken and from the last only
|
|
|
|
// the endAttributes. Both are merged using the array union operator (+).
|
|
|
|
$startAttributes = array('startLine' => 1);
|
|
|
|
$endAttributes = array();
|
|
|
|
|
2012-05-12 14:02:35 +02:00
|
|
|
// In order to figure out the attributes for the starting token, we have to keep
|
2012-05-05 17:34:27 +02:00
|
|
|
// them in a stack
|
|
|
|
$attributeStack = array($startAttributes);
|
|
|
|
|
|
|
|
// Start off in the initial state and keep a stack of previous states
|
|
|
|
$state = 0;
|
|
|
|
$stateStack = array($state);
|
|
|
|
|
|
|
|
// AST stack (?)
|
|
|
|
$this->yyastk = array();
|
|
|
|
|
|
|
|
// Current position in the stack(s)
|
|
|
|
$this->stackPos = 0;
|
|
|
|
|
2011-04-18 19:02:30 +02:00
|
|
|
for (;;) {
|
2012-04-29 22:57:46 +02:00
|
|
|
if (self::$yybase[$state] == 0) {
|
|
|
|
$yyn = self::$yydefault[$state];
|
2011-04-18 19:02:30 +02:00
|
|
|
} else {
|
2012-04-29 22:57:46 +02:00
|
|
|
if ($tokenId === self::TOKEN_NONE) {
|
2012-11-20 16:04:24 +01:00
|
|
|
// Fetch the next token id from the lexer and fetch additional info by-ref.
|
|
|
|
// The end attributes are fetched into a temporary variable and only set once the token is really
|
|
|
|
// shifted (not during read). Otherwise you would sometimes get off-by-one errors, when a rule is
|
|
|
|
// reduced after a token was read but not yet shifted.
|
|
|
|
$origTokenId = $this->lexer->getNextToken($tokenValue, $startAttributes, $nextEndAttributes);
|
2012-04-29 22:57:46 +02:00
|
|
|
|
|
|
|
// map the lexer token id to the internally used token id's
|
|
|
|
$tokenId = $origTokenId >= 0 && $origTokenId < self::TOKEN_MAP_SIZE
|
|
|
|
? self::$translate[$origTokenId]
|
|
|
|
: self::TOKEN_INVALID;
|
|
|
|
|
|
|
|
if ($tokenId === self::TOKEN_INVALID) {
|
2014-02-06 14:44:16 +01:00
|
|
|
throw new \RangeException(sprintf(
|
2012-04-29 22:57:46 +02:00
|
|
|
'The lexer returned an invalid token (id=%d, value=%s)',
|
|
|
|
$origTokenId, $tokenValue
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2012-05-05 17:34:27 +02:00
|
|
|
$attributeStack[$this->stackPos] = $startAttributes;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
2012-04-29 22:57:46 +02:00
|
|
|
|
|
|
|
if ((($yyn = self::$yybase[$state] + $tokenId) >= 0
|
|
|
|
&& $yyn < self::YYLAST && self::$yycheck[$yyn] == $tokenId
|
|
|
|
|| ($state < self::YY2TBLSTATE
|
|
|
|
&& ($yyn = self::$yybase[$state + self::YYNLSTATES] + $tokenId) >= 0
|
2011-04-18 19:02:30 +02:00
|
|
|
&& $yyn < self::YYLAST
|
2012-04-29 22:57:46 +02:00
|
|
|
&& self::$yycheck[$yyn] == $tokenId))
|
2011-04-18 19:02:30 +02:00
|
|
|
&& ($yyn = self::$yyaction[$yyn]) != self::YYDEFAULT) {
|
|
|
|
/*
|
|
|
|
* >= YYNLSTATE: shift and reduce
|
|
|
|
* > 0: shift
|
|
|
|
* = 0: accept
|
|
|
|
* < 0: reduce
|
|
|
|
* = -YYUNEXPECTED: error
|
|
|
|
*/
|
|
|
|
if ($yyn > 0) {
|
|
|
|
/* shift */
|
2012-05-05 17:34:27 +02:00
|
|
|
++$this->stackPos;
|
2011-04-18 19:02:30 +02:00
|
|
|
|
2012-05-05 17:34:27 +02:00
|
|
|
$stateStack[$this->stackPos] = $state = $yyn;
|
|
|
|
$this->yyastk[$this->stackPos] = $tokenValue;
|
|
|
|
$attributeStack[$this->stackPos] = $startAttributes;
|
2012-11-20 16:04:24 +01:00
|
|
|
$endAttributes = $nextEndAttributes;
|
2012-04-29 22:57:46 +02:00
|
|
|
$tokenId = self::TOKEN_NONE;
|
2011-04-18 19:02:30 +02:00
|
|
|
|
|
|
|
if ($yyn < self::YYNLSTATES)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* $yyn >= YYNLSTATES means shift-and-reduce */
|
|
|
|
$yyn -= self::YYNLSTATES;
|
|
|
|
} else {
|
|
|
|
$yyn = -$yyn;
|
|
|
|
}
|
|
|
|
} else {
|
2012-04-29 22:57:46 +02:00
|
|
|
$yyn = self::$yydefault[$state];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (;;) {
|
2011-05-27 18:20:44 +02:00
|
|
|
/* reduce/error */
|
2011-04-18 19:02:30 +02:00
|
|
|
if ($yyn == 0) {
|
|
|
|
/* accept */
|
2011-04-20 13:40:29 +02:00
|
|
|
return $this->yyval;
|
2011-04-18 19:02:30 +02:00
|
|
|
} elseif ($yyn != self::YYUNEXPECTED) {
|
|
|
|
/* reduce */
|
2011-06-03 17:44:23 +02:00
|
|
|
try {
|
2011-07-03 16:35:45 +02:00
|
|
|
$this->{'yyn' . $yyn}(
|
2012-05-05 17:34:27 +02:00
|
|
|
$attributeStack[$this->stackPos - self::$yylen[$yyn]]
|
|
|
|
+ $endAttributes
|
2011-07-03 16:35:45 +02:00
|
|
|
);
|
2014-02-06 14:44:16 +01:00
|
|
|
} catch (Error $e) {
|
2011-11-27 12:53:48 +01:00
|
|
|
if (-1 === $e->getRawLine()) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$e->setRawLine($startAttributes['startLine']);
|
2011-11-27 12:53:48 +01:00
|
|
|
}
|
2011-06-03 17:44:23 +02:00
|
|
|
|
|
|
|
throw $e;
|
|
|
|
}
|
2011-04-20 13:40:29 +02:00
|
|
|
|
|
|
|
/* Goto - shift nonterminal */
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->stackPos -= self::$yylen[$yyn];
|
2011-04-20 13:40:29 +02:00
|
|
|
$yyn = self::$yylhs[$yyn];
|
2012-05-05 17:34:27 +02:00
|
|
|
if (($yyp = self::$yygbase[$yyn] + $stateStack[$this->stackPos]) >= 0
|
2011-04-20 13:40:29 +02:00
|
|
|
&& $yyp < self::YYGLAST
|
|
|
|
&& self::$yygcheck[$yyp] == $yyn) {
|
2012-04-29 22:57:46 +02:00
|
|
|
$state = self::$yygoto[$yyp];
|
2011-04-18 19:02:30 +02:00
|
|
|
} else {
|
2012-04-29 22:57:46 +02:00
|
|
|
$state = self::$yygdefault[$yyn];
|
2011-04-20 13:40:29 +02:00
|
|
|
}
|
2011-04-18 19:02:30 +02:00
|
|
|
|
2012-05-05 17:34:27 +02:00
|
|
|
++$this->stackPos;
|
2011-04-18 19:02:30 +02:00
|
|
|
|
2012-05-05 17:34:27 +02:00
|
|
|
$stateStack[$this->stackPos] = $state;
|
|
|
|
$this->yyastk[$this->stackPos] = $this->yyval;
|
|
|
|
$attributeStack[$this->stackPos] = $startAttributes;
|
2011-04-18 19:02:30 +02:00
|
|
|
} else {
|
|
|
|
/* error */
|
2013-01-15 17:26:20 +01:00
|
|
|
$expected = array();
|
|
|
|
|
|
|
|
$base = self::$yybase[$state];
|
|
|
|
for ($i = 0; $i < self::TOKEN_MAP_SIZE; ++$i) {
|
|
|
|
$n = $base + $i;
|
|
|
|
if ($n >= 0 && $n < self::YYLAST && self::$yycheck[$n] == $i
|
|
|
|
|| $state < self::YY2TBLSTATE
|
2013-07-27 18:50:08 +02:00
|
|
|
&& ($n = self::$yybase[$state + self::YYNLSTATES] + $i) >= 0
|
2013-01-15 17:26:20 +01:00
|
|
|
&& $n < self::YYLAST && self::$yycheck[$n] == $i
|
|
|
|
) {
|
|
|
|
if (self::$yyaction[$n] != self::YYUNEXPECTED) {
|
|
|
|
if (count($expected) == 4) {
|
|
|
|
/* Too many expected tokens */
|
|
|
|
$expected = array();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$expected[] = self::$terminals[$i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$expectedString = '';
|
|
|
|
if ($expected) {
|
|
|
|
$expectedString = ', expecting ' . implode(' or ', $expected);
|
|
|
|
}
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
throw new Error(
|
2013-01-15 17:26:20 +01:00
|
|
|
'Syntax error, unexpected ' . self::$terminals[$tokenId] . $expectedString,
|
2012-05-05 17:34:27 +02:00
|
|
|
$startAttributes['startLine']
|
2011-06-27 19:14:37 +02:00
|
|
|
);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 22:57:46 +02:00
|
|
|
if ($state < self::YYNLSTATES)
|
2011-04-18 19:02:30 +02:00
|
|
|
break;
|
|
|
|
/* >= YYNLSTATES means shift-and-reduce */
|
2012-04-29 22:57:46 +02:00
|
|
|
$yyn = $state - self::YYNLSTATES;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-04-20 13:40:29 +02:00
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn0() {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos];
|
2011-04-20 13:40:29 +02:00
|
|
|
}
|
2011-04-18 19:02:30 +02:00
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn1($attributes) {
|
2014-02-06 14:44:16 +01:00
|
|
|
$this->yyval = Node\Stmt\Namespace_::postprocess($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn2($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
if (is_array($this->yyastk[$this->stackPos-(2-2)])) { $this->yyval = array_merge($this->yyastk[$this->stackPos-(2-1)], $this->yyastk[$this->stackPos-(2-2)]); } else { $this->yyastk[$this->stackPos-(2-1)][] = $this->yyastk[$this->stackPos-(2-2)]; $this->yyval = $this->yyastk[$this->stackPos-(2-1)]; };
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn3($attributes) {
|
2011-05-27 18:20:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn4($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn5($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn6($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Name($this->yyastk[$this->stackPos-(1-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn7($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn8($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn9($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn10($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\HaltCompiler($this->lexer->handleHaltCompiler(), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn11($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Namespace_($this->yyastk[$this->stackPos-(3-2)], null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn12($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Namespace_($this->yyastk[$this->stackPos-(5-2)], $this->yyastk[$this->stackPos-(5-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn13($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Namespace_(null, $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn14($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Use_($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn15($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Const_($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn16($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn17($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn18($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\UseUse($this->yyastk[$this->stackPos-(1-1)], null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn19($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\UseUse($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn20($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\UseUse($this->yyastk[$this->stackPos-(2-2)], null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn21($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\UseUse($this->yyastk[$this->stackPos-(4-2)], $this->yyastk[$this->stackPos-(4-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn22($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn23($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn24($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Const_($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn25($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
if (is_array($this->yyastk[$this->stackPos-(2-2)])) { $this->yyval = array_merge($this->yyastk[$this->stackPos-(2-1)], $this->yyastk[$this->stackPos-(2-2)]); } else { $this->yyastk[$this->stackPos-(2-1)][] = $this->yyastk[$this->stackPos-(2-2)]; $this->yyval = $this->yyastk[$this->stackPos-(2-1)]; };
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn26($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn27($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn28($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn29($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn30($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
throw new Error('__HALT_COMPILER() can only be used from the outermost scope');
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn31($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn32($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\If_($this->yyastk[$this->stackPos-(5-2)], array('stmts' => is_array($this->yyastk[$this->stackPos-(5-3)]) ? $this->yyastk[$this->stackPos-(5-3)] : array($this->yyastk[$this->stackPos-(5-3)]), 'elseifs' => $this->yyastk[$this->stackPos-(5-4)], 'else' => $this->yyastk[$this->stackPos-(5-5)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn33($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\If_($this->yyastk[$this->stackPos-(8-2)], array('stmts' => $this->yyastk[$this->stackPos-(8-4)], 'elseifs' => $this->yyastk[$this->stackPos-(8-5)], 'else' => $this->yyastk[$this->stackPos-(8-6)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn34($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\While_($this->yyastk[$this->stackPos-(3-2)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn35($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Do_($this->yyastk[$this->stackPos-(5-4)], is_array($this->yyastk[$this->stackPos-(5-2)]) ? $this->yyastk[$this->stackPos-(5-2)] : array($this->yyastk[$this->stackPos-(5-2)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn36($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\For_(array('init' => $this->yyastk[$this->stackPos-(9-3)], 'cond' => $this->yyastk[$this->stackPos-(9-5)], 'loop' => $this->yyastk[$this->stackPos-(9-7)], 'stmts' => $this->yyastk[$this->stackPos-(9-9)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn37($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Switch_($this->yyastk[$this->stackPos-(3-2)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn38($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Break_(null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn39($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Break_($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn40($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Continue_(null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn41($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Continue_($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn42($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Return_(null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn43($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Return_($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn44($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn45($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Global_($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn46($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Static_($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn47($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Echo_($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn48($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\InlineHTML($this->yyastk[$this->stackPos-(1-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn49($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn50($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Unset_($this->yyastk[$this->stackPos-(5-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn51($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Foreach_($this->yyastk[$this->stackPos-(7-3)], $this->yyastk[$this->stackPos-(7-5)][0], array('keyVar' => null, 'byRef' => $this->yyastk[$this->stackPos-(7-5)][1], 'stmts' => $this->yyastk[$this->stackPos-(7-7)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn52($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Foreach_($this->yyastk[$this->stackPos-(9-3)], $this->yyastk[$this->stackPos-(9-7)][0], array('keyVar' => $this->yyastk[$this->stackPos-(9-5)], 'byRef' => $this->yyastk[$this->stackPos-(9-7)][1], 'stmts' => $this->yyastk[$this->stackPos-(9-9)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn53($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Declare_($this->yyastk[$this->stackPos-(5-3)], $this->yyastk[$this->stackPos-(5-5)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn54($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = array(); /* means: no statement */
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn55($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\TryCatch($this->yyastk[$this->stackPos-(6-3)], $this->yyastk[$this->stackPos-(6-5)], $this->yyastk[$this->stackPos-(6-6)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn56($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Throw_($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn57($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Goto_($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn58($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Label($this->yyastk[$this->stackPos-(2-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn59($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn60($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyastk[$this->stackPos-(2-1)][] = $this->yyastk[$this->stackPos-(2-2)]; $this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn61($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Stmt\Catch_($this->yyastk[$this->stackPos-(8-3)], substr($this->yyastk[$this->stackPos-(8-4)], 1), $this->yyastk[$this->stackPos-(8-7)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn62($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn63($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(4-3)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn64($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn65($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn66($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = false;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn67($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = true;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn68($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = false;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn69($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = true;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn70($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\Function_($this->yyastk[$this->stackPos-(9-3)], array('byRef' => $this->yyastk[$this->stackPos-(9-2)], 'params' => $this->yyastk[$this->stackPos-(9-5)], 'stmts' => $this->yyastk[$this->stackPos-(9-8)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn71($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\Class_($this->yyastk[$this->stackPos-(7-2)], array('type' => $this->yyastk[$this->stackPos-(7-1)], 'extends' => $this->yyastk[$this->stackPos-(7-3)], 'implements' => $this->yyastk[$this->stackPos-(7-4)], 'stmts' => $this->yyastk[$this->stackPos-(7-6)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn72($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\Interface_($this->yyastk[$this->stackPos-(6-2)], array('extends' => $this->yyastk[$this->stackPos-(6-3)], 'stmts' => $this->yyastk[$this->stackPos-(6-5)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn73($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\Trait_($this->yyastk[$this->stackPos-(5-2)], $this->yyastk[$this->stackPos-(5-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn74($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = 0;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn75($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = Node\Stmt\Class_::MODIFIER_ABSTRACT;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn76($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = Node\Stmt\Class_::MODIFIER_FINAL;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn77($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn78($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(2-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn79($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn80($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(2-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn81($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn82($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(2-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn83($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn84($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn85($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = is_array($this->yyastk[$this->stackPos-(1-1)]) ? $this->yyastk[$this->stackPos-(1-1)] : array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn86($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(4-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn87($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = is_array($this->yyastk[$this->stackPos-(1-1)]) ? $this->yyastk[$this->stackPos-(1-1)] : array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn88($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(4-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn89($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = is_array($this->yyastk[$this->stackPos-(1-1)]) ? $this->yyastk[$this->stackPos-(1-1)] : array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn90($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(4-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn91($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn92($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn93($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\DeclareDeclare($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn94($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(3-2)];
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn95($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(4-3)];
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 18:06:11 +02:00
|
|
|
protected function yyn96($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(4-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 18:06:11 +02:00
|
|
|
protected function yyn97($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(5-3)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:24:44 +02:00
|
|
|
protected function yyn98($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array();
|
2014-03-09 13:27:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn99($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(2-1)][] = $this->yyastk[$this->stackPos-(2-2)]; $this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn100($attributes) {
|
|
|
|
$this->yyval = new Node\Stmt\Case_($this->yyastk[$this->stackPos-(4-2)], $this->yyastk[$this->stackPos-(4-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn101($attributes) {
|
|
|
|
$this->yyval = new Node\Stmt\Case_(null, $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn102() {
|
|
|
|
$this->yyval = $this->yyastk[$this->stackPos];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn103() {
|
|
|
|
$this->yyval = $this->yyastk[$this->stackPos];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn104($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = is_array($this->yyastk[$this->stackPos-(1-1)]) ? $this->yyastk[$this->stackPos-(1-1)] : array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn105($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(4-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn106($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn107($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(2-1)][] = $this->yyastk[$this->stackPos-(2-2)]; $this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn108($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\ElseIf_($this->yyastk[$this->stackPos-(3-2)], is_array($this->yyastk[$this->stackPos-(3-3)]) ? $this->yyastk[$this->stackPos-(3-3)] : array($this->yyastk[$this->stackPos-(3-3)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn109($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn110($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(2-1)][] = $this->yyastk[$this->stackPos-(2-2)]; $this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn111($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\ElseIf_($this->yyastk[$this->stackPos-(4-2)], $this->yyastk[$this->stackPos-(4-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn112($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn113($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\Else_(is_array($this->yyastk[$this->stackPos-(2-2)]) ? $this->yyastk[$this->stackPos-(2-2)] : array($this->yyastk[$this->stackPos-(2-2)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn114($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn115($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\Else_($this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn116($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)], false);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn117($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(2-2)], true);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn118($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)], false);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn119($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn120($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn121($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn122($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn123($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Param(substr($this->yyastk[$this->stackPos-(4-4)], 1), null, $this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-2)], $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn124($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Param(substr($this->yyastk[$this->stackPos-(6-4)], 1), $this->yyastk[$this->stackPos-(6-6)], $this->yyastk[$this->stackPos-(6-1)], $this->yyastk[$this->stackPos-(6-2)], $this->yyastk[$this->stackPos-(6-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn125($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn126($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn127($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = 'array';
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn128($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = 'callable';
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn129($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn130($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn131($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array(new Node\Arg($this->yyastk[$this->stackPos-(3-2)], false, $attributes));
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn132($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn133($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn134($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Arg($this->yyastk[$this->stackPos-(1-1)], false, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn135($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Arg($this->yyastk[$this->stackPos-(2-2)], true, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn136($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn137($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn138($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Variable(substr($this->yyastk[$this->stackPos-(1-1)], 1), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn139($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Variable($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn140($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Variable($this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn141($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn142($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:27:39 +01:00
|
|
|
protected function yyn143($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\StaticVar(substr($this->yyastk[$this->stackPos-(1-1)], 1), null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn144($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\StaticVar(substr($this->yyastk[$this->stackPos-(3-1)], 1), $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn145($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(2-1)][] = $this->yyastk[$this->stackPos-(2-2)]; $this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn146($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn147($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\Property($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn148($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\ClassConst($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn149($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\ClassMethod($this->yyastk[$this->stackPos-(8-4)], array('type' => $this->yyastk[$this->stackPos-(8-1)], 'byRef' => $this->yyastk[$this->stackPos-(8-3)], 'params' => $this->yyastk[$this->stackPos-(8-6)], 'stmts' => $this->yyastk[$this->stackPos-(8-8)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn150($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\TraitUse($this->yyastk[$this->stackPos-(3-2)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn151($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn152($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn153($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn154($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(2-1)][] = $this->yyastk[$this->stackPos-(2-2)]; $this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn155($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\TraitUseAdaptation\Precedence($this->yyastk[$this->stackPos-(4-1)][0], $this->yyastk[$this->stackPos-(4-1)][1], $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn156($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\TraitUseAdaptation\Alias($this->yyastk[$this->stackPos-(5-1)][0], $this->yyastk[$this->stackPos-(5-1)][1], $this->yyastk[$this->stackPos-(5-3)], $this->yyastk[$this->stackPos-(5-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn157($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\TraitUseAdaptation\Alias($this->yyastk[$this->stackPos-(4-1)][0], $this->yyastk[$this->stackPos-(4-1)][1], $this->yyastk[$this->stackPos-(4-3)], null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn158($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\TraitUseAdaptation\Alias($this->yyastk[$this->stackPos-(4-1)][0], $this->yyastk[$this->stackPos-(4-1)][1], null, $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn159($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn160($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn161($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array(null, $this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn162($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn163($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn164($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn165($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = Node\Stmt\Class_::MODIFIER_PUBLIC;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn166($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = Node\Stmt\Class_::MODIFIER_PUBLIC;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn167($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn168($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn169($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
Node\Stmt\Class_::verifyModifier($this->yyastk[$this->stackPos-(2-1)], $this->yyastk[$this->stackPos-(2-2)]); $this->yyval = $this->yyastk[$this->stackPos-(2-1)] | $this->yyastk[$this->stackPos-(2-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn170($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = Node\Stmt\Class_::MODIFIER_PUBLIC;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn171($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = Node\Stmt\Class_::MODIFIER_PROTECTED;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn172($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = Node\Stmt\Class_::MODIFIER_PRIVATE;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn173($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = Node\Stmt\Class_::MODIFIER_STATIC;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn174($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = Node\Stmt\Class_::MODIFIER_ABSTRACT;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn175($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = Node\Stmt\Class_::MODIFIER_FINAL;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn176($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn177($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn178($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\PropertyProperty(substr($this->yyastk[$this->stackPos-(1-1)], 1), null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn179($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Stmt\PropertyProperty(substr($this->yyastk[$this->stackPos-(3-1)], 1), $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn180($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn181($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn182($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn183($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn184($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn185($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Assign($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn186($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Assign($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn187($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\AssignRef($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn188($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\AssignRef($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn189($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn190($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Clone_($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn191($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\AssignOp\Plus($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn192($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\AssignOp\Minus($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn193($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\AssignOp\Mul($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn194($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\AssignOp\Div($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn195($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\AssignOp\Concat($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn196($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\AssignOp\Mod($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn197($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\AssignOp\BitwiseAnd($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn198($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\AssignOp\BitwiseOr($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn199($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\AssignOp\BitwiseXor($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn200($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\AssignOp\ShiftLeft($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn201($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\AssignOp\ShiftRight($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn202($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\PostInc($this->yyastk[$this->stackPos-(2-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn203($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\PreInc($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn204($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\PostDec($this->yyastk[$this->stackPos-(2-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn205($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\PreDec($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn206($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\BooleanOr($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn207($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\BooleanAnd($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn208($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\LogicalOr($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn209($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\LogicalAnd($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn210($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\LogicalXor($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn211($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\BitwiseOr($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn212($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\BitwiseAnd($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn213($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\BitwiseXor($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn214($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\Concat($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn215($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\Plus($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn216($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\Minus($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn217($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\Mul($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn218($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\Div($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn219($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\Mod($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn220($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\ShiftLeft($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn221($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\ShiftRight($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn222($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\UnaryPlus($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn223($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\UnaryMinus($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn224($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BooleanNot($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn225($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BitwiseNot($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn226($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\Identical($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn227($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\NotIdentical($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn228($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\Equal($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn229($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\NotEqual($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn230($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\Smaller($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn231($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\SmallerOrEqual($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn232($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\Greater($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn233($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\BinaryOp\GreaterOrEqual($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn234($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Instanceof_($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn235($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn236($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn237($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Ternary($this->yyastk[$this->stackPos-(5-1)], $this->yyastk[$this->stackPos-(5-3)], $this->yyastk[$this->stackPos-(5-5)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn238($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Ternary($this->yyastk[$this->stackPos-(4-1)], null, $this->yyastk[$this->stackPos-(4-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn239($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Isset_($this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-10-21 11:07:06 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn240($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Empty_($this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-10-21 14:09:41 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn241($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Include_($this->yyastk[$this->stackPos-(2-2)], Node\Expr\Include_::TYPE_INCLUDE, $attributes);
|
2011-10-29 00:16:29 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn242($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Include_($this->yyastk[$this->stackPos-(2-2)], Node\Expr\Include_::TYPE_INCLUDE_ONCE, $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn243($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Eval_($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn244($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Include_($this->yyastk[$this->stackPos-(2-2)], Node\Expr\Include_::TYPE_REQUIRE, $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn245($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Include_($this->yyastk[$this->stackPos-(2-2)], Node\Expr\Include_::TYPE_REQUIRE_ONCE, $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn246($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Cast\Int($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn247($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Cast\Double($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn248($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Cast\String($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn249($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Cast\Array_($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn250($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Cast\Object($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn251($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Cast\Bool($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn252($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Cast\Unset_($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn253($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Exit_($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn254($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ErrorSuppress($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn255($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn256($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2012-04-19 00:52:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn257($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2012-04-19 00:52:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn258($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ShellExec($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2012-04-19 00:52:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn259($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Print_($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2012-04-19 00:52:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn260($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Yield_(null, null, $attributes);
|
2012-04-19 00:52:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn261($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Closure(array('static' => false, 'byRef' => $this->yyastk[$this->stackPos-(9-2)], 'params' => $this->yyastk[$this->stackPos-(9-4)], 'uses' => $this->yyastk[$this->stackPos-(9-6)], 'stmts' => $this->yyastk[$this->stackPos-(9-8)]), $attributes);
|
2012-05-12 14:02:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn262($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Closure(array('static' => true, 'byRef' => $this->yyastk[$this->stackPos-(10-3)], 'params' => $this->yyastk[$this->stackPos-(10-5)], 'uses' => $this->yyastk[$this->stackPos-(10-7)], 'stmts' => $this->yyastk[$this->stackPos-(10-9)]), $attributes);
|
2012-09-07 17:22:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn263($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(3-2)];
|
2012-09-07 17:22:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn264($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(3-2)];
|
2012-09-07 17:22:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn265($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Yield_($this->yyastk[$this->stackPos-(2-2)], null, $attributes);
|
2012-09-07 18:06:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn266($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Yield_($this->yyastk[$this->stackPos-(4-4)], $this->yyastk[$this->stackPos-(4-2)], $attributes);
|
2012-09-07 18:06:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn267($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Array_($this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2012-09-07 19:24:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn268($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Array_($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2012-09-07 19:24:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn269($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2012-09-07 19:24:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn270($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch(new Node\Scalar\String(Node\Scalar\String::parse($this->yyastk[$this->stackPos-(4-1)]), $attributes), $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2012-09-07 19:24:44 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 23:21:23 +02:00
|
|
|
protected function yyn271($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2012-09-07 19:24:44 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 23:21:23 +02:00
|
|
|
protected function yyn272($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\New_($this->yyastk[$this->stackPos-(3-2)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2012-09-07 19:24:44 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 23:21:23 +02:00
|
|
|
protected function yyn273($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array();
|
2012-09-07 19:43:07 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 23:21:23 +02:00
|
|
|
protected function yyn274($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(4-3)];
|
2012-09-07 19:43:07 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 23:21:23 +02:00
|
|
|
protected function yyn275($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2012-09-07 19:43:07 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 23:21:23 +02:00
|
|
|
protected function yyn276($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2012-09-07 19:43:07 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 23:21:23 +02:00
|
|
|
protected function yyn277($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ClosureUse(substr($this->yyastk[$this->stackPos-(2-2)], 1), $this->yyastk[$this->stackPos-(2-1)], $attributes);
|
2012-09-07 19:43:07 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 23:21:23 +02:00
|
|
|
protected function yyn278($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\FuncCall($this->yyastk[$this->stackPos-(2-1)], $this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2014-03-09 13:27:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn279($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\StaticCall($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $this->yyastk[$this->stackPos-(4-4)], $attributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn280($attributes) {
|
|
|
|
$this->yyval = new Node\Expr\StaticCall($this->yyastk[$this->stackPos-(6-1)], $this->yyastk[$this->stackPos-(6-4)], $this->yyastk[$this->stackPos-(6-6)], $attributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn281($attributes) {
|
2011-06-02 16:29:28 +02:00
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
if ($this->yyastk[$this->stackPos-(2-1)] instanceof Node\Expr\StaticPropertyFetch) {
|
|
|
|
$this->yyval = new Node\Expr\StaticCall($this->yyastk[$this->stackPos-(2-1)]->class, new Node\Expr\Variable($this->yyastk[$this->stackPos-(2-1)]->name, $attributes), $this->yyastk[$this->stackPos-(2-2)], $attributes);
|
|
|
|
} elseif ($this->yyastk[$this->stackPos-(2-1)] instanceof Node\Expr\ArrayDimFetch) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$tmp = $this->yyastk[$this->stackPos-(2-1)];
|
2014-02-06 14:44:16 +01:00
|
|
|
while ($tmp->var instanceof Node\Expr\ArrayDimFetch) {
|
2011-08-04 12:16:31 +02:00
|
|
|
$tmp = $tmp->var;
|
2011-06-02 16:29:28 +02:00
|
|
|
}
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
$this->yyval = new Node\Expr\StaticCall($tmp->var->class, $this->yyastk[$this->stackPos-(2-1)], $this->yyastk[$this->stackPos-(2-2)], $attributes);
|
|
|
|
$tmp->var = new Node\Expr\Variable($tmp->var->name, $attributes);
|
2011-06-02 16:29:28 +02:00
|
|
|
} else {
|
2014-02-06 14:44:16 +01:00
|
|
|
throw new \Exception;
|
2011-06-02 16:29:28 +02:00
|
|
|
}
|
|
|
|
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn282($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Expr\FuncCall($this->yyastk[$this->stackPos-(2-1)], $this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn283($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-10-21 11:50:03 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn284($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Name('static', $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn285($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn286($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Name($this->yyastk[$this->stackPos-(1-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn287($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Name\FullyQualified($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn288($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Name\Relative($this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2012-09-07 23:21:23 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn289($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn290($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn291($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn292($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn293($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn294($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn295() {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn296($attributes) {
|
2014-02-06 14:44:16 +01:00
|
|
|
$this->yyval = new Node\Expr\PropertyFetch($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn297($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Expr\PropertyFetch($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn298($attributes) {
|
2014-02-06 14:44:16 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn299($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn300($attributes) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn301($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn302($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn303($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn304($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = array(Node\Scalar\String::parseEscapeSequences($this->yyastk[$this->stackPos-(1-1)], '`'));
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn305($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
foreach ($this->yyastk[$this->stackPos-(1-1)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String::parseEscapeSequences($s, '`'); } }; $this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn306($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn307($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn308($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Scalar\LNumber(Node\Scalar\LNumber::parse($this->yyastk[$this->stackPos-(1-1)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn309($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Scalar\DNumber(Node\Scalar\DNumber::parse($this->yyastk[$this->stackPos-(1-1)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn310($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Scalar\String(Node\Scalar\String::parse($this->yyastk[$this->stackPos-(1-1)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn311($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Scalar\MagicConst\Line($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn312($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Scalar\MagicConst\File($attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn313($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Scalar\MagicConst\Dir($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn314($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Scalar\MagicConst\Class_($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn315($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Scalar\MagicConst\Trait_($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn316($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Scalar\MagicConst\Method($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn317($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Scalar\MagicConst\Function_($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn318($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Scalar\MagicConst\Namespace_($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn319($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Scalar\String(Node\Scalar\String::parseDocString($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-2)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn320($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Scalar\String('', $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn321($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Expr\ConstFetch($this->yyastk[$this->stackPos-(1-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn322($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn323($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Expr\ClassConstFetch($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn324($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Expr\UnaryPlus($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn325($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Expr\UnaryMinus($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn326($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Expr\Array_($this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn327($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Expr\Array_($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn328($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn329($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Expr\ClassConstFetch($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn330($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
foreach ($this->yyastk[$this->stackPos-(3-2)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String::parseEscapeSequences($s, '"'); } }; $this->yyval = new Node\Scalar\Encapsed($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn331($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
foreach ($this->yyastk[$this->stackPos-(3-2)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String::parseEscapeSequences($s, null); } } $s = preg_replace('~(\r\n|\n|\r)$~', '', $s); if ('' === $s) array_pop($this->yyastk[$this->stackPos-(3-2)]);; $this->yyval = new Node\Scalar\Encapsed($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn332($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn333($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = 'class';
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn334($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn335($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn336() {
|
2013-02-14 21:49:08 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
protected function yyn337() {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn338($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn339($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn340($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayItem($this->yyastk[$this->stackPos-(3-3)], $this->yyastk[$this->stackPos-(3-1)], false, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn341($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayItem($this->yyastk[$this->stackPos-(1-1)], null, false, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn342($attributes) {
|
2013-02-14 21:49:08 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn343($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn344($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn345($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn346($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch($this->yyastk[$this->stackPos-(6-2)], $this->yyastk[$this->stackPos-(6-5)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn347($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn348($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\PropertyFetch($this->yyastk[$this->stackPos-(3-1)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn349($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\MethodCall($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $this->yyastk[$this->stackPos-(4-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn350($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\FuncCall($this->yyastk[$this->stackPos-(2-1)], $this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn351($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn352($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn353($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn354($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn355($attributes) {
|
2012-09-07 23:21:23 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn356($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Variable($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn357($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn358($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn359($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\StaticPropertyFetch($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn360($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn361($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\StaticPropertyFetch($this->yyastk[$this->stackPos-(3-1)], substr($this->yyastk[$this->stackPos-(3-3)], 1), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn362($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\StaticPropertyFetch($this->yyastk[$this->stackPos-(6-1)], $this->yyastk[$this->stackPos-(6-5)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn363($attributes) {
|
2014-02-06 14:44:16 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn364($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn365($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn366($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn367($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Variable(substr($this->yyastk[$this->stackPos-(1-1)], 1), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn368($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Variable($this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn369($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn370($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn371($attributes) {
|
2014-03-09 13:27:39 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn372($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(3-2)];
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn373($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn374($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\List_($this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn375($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn376($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn377($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn378($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn379($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = null;
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn380($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array();
|
2011-05-31 17:24:01 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn381($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-05-31 17:24:01 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn382($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
2011-10-20 22:29:34 +02:00
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn383($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-10-21 11:07:06 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn384($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayItem($this->yyastk[$this->stackPos-(3-3)], $this->yyastk[$this->stackPos-(3-1)], false, $attributes);
|
2011-10-21 14:09:41 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn385($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayItem($this->yyastk[$this->stackPos-(1-1)], null, false, $attributes);
|
2011-10-29 00:16:29 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn386($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayItem($this->yyastk[$this->stackPos-(4-4)], $this->yyastk[$this->stackPos-(4-1)], true, $attributes);
|
2011-11-04 07:40:48 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn387($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayItem($this->yyastk[$this->stackPos-(2-2)], null, true, $attributes);
|
2011-11-04 07:40:48 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn388($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(2-1)][] = $this->yyastk[$this->stackPos-(2-2)]; $this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn389($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyastk[$this->stackPos-(2-1)][] = $this->yyastk[$this->stackPos-(2-2)]; $this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn390($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn391($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(2-1)], $this->yyastk[$this->stackPos-(2-2)]);
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn392($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Variable(substr($this->yyastk[$this->stackPos-(1-1)], 1), $attributes);
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn393($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch(new Node\Expr\Variable(substr($this->yyastk[$this->stackPos-(4-1)], 1), $attributes), $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2012-05-12 14:02:35 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn394($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\PropertyFetch(new Node\Expr\Variable(substr($this->yyastk[$this->stackPos-(3-1)], 1), $attributes), $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2012-09-07 18:06:11 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn395($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Variable($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2012-09-07 18:06:11 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn396($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\Variable($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2013-02-14 21:49:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn397($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Expr\ArrayDimFetch(new Node\Expr\Variable($this->yyastk[$this->stackPos-(6-2)], $attributes), $this->yyastk[$this->stackPos-(6-4)], $attributes);
|
2013-02-14 21:49:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn398($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(3-2)];
|
2014-03-09 13:27:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn399($attributes) {
|
2014-03-26 18:23:30 +01:00
|
|
|
$this->yyval = new Node\Scalar\String($this->yyastk[$this->stackPos-(1-1)], $attributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn400($attributes) {
|
|
|
|
$this->yyval = new Node\Scalar\String($this->yyastk[$this->stackPos-(1-1)], $attributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn401($attributes) {
|
2014-02-06 14:44:16 +01:00
|
|
|
$this->yyval = new Node\Expr\Variable(substr($this->yyastk[$this->stackPos-(1-1)], 1), $attributes);
|
2011-10-21 11:07:06 +02:00
|
|
|
}
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|