2011-04-18 19:02:30 +02:00
|
|
|
<?php
|
|
|
|
|
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
|
|
|
*/
|
2011-06-05 18:40:04 +02:00
|
|
|
class PHPParser_Parser
|
2011-04-18 19:02:30 +02:00
|
|
|
{
|
2012-04-29 22:57:46 +02:00
|
|
|
const TOKEN_NONE = -1;
|
2012-09-07 19:24:44 +02:00
|
|
|
const TOKEN_INVALID = 151;
|
2012-04-29 22:57:46 +02:00
|
|
|
|
2012-09-07 19:24:44 +02:00
|
|
|
const TOKEN_MAP_SIZE = 386;
|
2012-04-29 22:57:46 +02:00
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
const YYLAST = 998;
|
|
|
|
const YY2TBLSTATE = 316;
|
|
|
|
const YYGLAST = 414;
|
|
|
|
const YYNLSTATES = 534;
|
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;
|
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",
|
|
|
|
"';'",
|
|
|
|
"'{'",
|
|
|
|
"'}'",
|
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(
|
2012-09-07 19:24:44 +02:00
|
|
|
0, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 48, 150, 151, 147, 47, 31, 151,
|
|
|
|
145, 146, 45, 42, 7, 43, 44, 46, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 26, 142,
|
|
|
|
36, 13, 38, 25, 60, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
2012-09-07 19:43:07 +02:00
|
|
|
151, 61, 151, 149, 30, 151, 148, 151, 151, 151,
|
2012-09-07 19:24:44 +02:00
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 143, 29, 144, 50, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
|
|
|
151, 151, 151, 151, 151, 151, 1, 2, 3, 4,
|
|
|
|
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,
|
2012-09-07 19:24:44 +02:00
|
|
|
74, 75, 151, 151, 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,
|
2012-09-07 19:24:44 +02:00
|
|
|
132, 151, 151, 151, 151, 151, 151, 133, 134, 135,
|
|
|
|
136, 137, 138, 139, 140, 141
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yyaction = array(
|
2012-09-07 19:43:07 +02:00
|
|
|
59, 60, 325, 61, 62,-32766,-32766,-32766, 351, 63,
|
|
|
|
64,-32767,-32767,-32767,-32767, 97, 98, 99, 100, 101,
|
|
|
|
57, 464,-32766, 297,-32766,-32766, 41, 105, 106, 107,
|
|
|
|
108, 109, 110, 111, 112, 113, 114, 115, 267, 360,
|
|
|
|
65, 66, 928, 497, 930, 929, 67, 538, 68, 219,
|
|
|
|
220, 69, 70, 71, 72, 73, 74, 75, 76, 31,
|
|
|
|
232, 77, 318, 326, 733, 735, 918, 840, 841, 362,
|
|
|
|
324, 897, 340, 581, 509, 363, 46, 27, 327, 852,
|
|
|
|
364, 245, 365, 456, 366, 39, 223, 328,-32766,-32766,
|
|
|
|
-32766, 36, 37, 367, 333, 280, 38, 368, 329, 425,
|
|
|
|
78, 185, 121, 278, 279,-32766, 286,-32766, 35, 369,
|
|
|
|
370, 371, 372, 373, 389, 343, 683, 330, 563, 605,
|
|
|
|
374, 375, 376, 377, 863, 846, 847, 848, 849, 843,
|
|
|
|
844, 239, 81, 82, 83, -349, 389, 850, 845, 330,
|
|
|
|
587, 507, 346, 47, 227, 259, 243, 22, 247, 40,
|
|
|
|
669, 84, 85, 86, 87, 88, 89, 90, 91, 92,
|
|
|
|
93, 94, 95, 96, 97, 98, 99, 100, 101, 102,
|
|
|
|
103, 104, 791, 233, 678,-32766,-32766,-32766, 704, 705,
|
|
|
|
706, 703, 702, 701, 633, 0,-32766,-32766,-32766, 658,
|
|
|
|
659, 214,-32766, 122,-32766,-32766,-32766,-32766,-32766,-32767,
|
|
|
|
-32767,-32767,-32767,-32766, 791, 322, 329, 319, 350, 806,
|
|
|
|
-117, 257, 127, 277,-32766,-32766,-32766, 369, 370, 891,
|
|
|
|
696, 261, 897, 221, 216,-32766, 543, 605, 374, 375,
|
|
|
|
547, 538, 344, 215, 538,-32766, 897, 376,-32766,-32766,
|
|
|
|
-32766, 578,-32766, 54,-32766, 322,-32766, 661, 263,-32766,
|
|
|
|
56, 257, 604,-32766,-32766,-32766, 791,-32766,-32766,-32766,
|
|
|
|
696, 34,-32766, 538, 348,-32766, 388,-32766, 345, 816,
|
|
|
|
-32766,-32766,-32766,-32766,-32766, 224,-32766, 579,-32766, 53,
|
|
|
|
125,-32766, 99, 100, 101,-32766,-32766,-32766, 791, 918,
|
|
|
|
-32766,-32766, 603, 268,-32766, 925, 259,-32766, 388, 226,
|
|
|
|
634, 389,-32766,-32766, 330,-32766, 322, 225, 334,-32766,
|
|
|
|
259, 238, 257, 901, 248, 538, 102, 103, 104,-32766,
|
|
|
|
233, 696,-32766,-32766,-32766, 118,-32766, 506,-32766,-32766,
|
|
|
|
-32766, 187, 119,-32766,-32766,-32766, 125,-32766,-32766,-32766,
|
|
|
|
791,-32766,-32766,-32766, 211, 188,-32766, 538, 129,-32766,
|
|
|
|
388,-32766, 454, 602,-32766,-32766,-32766,-32766,-32766, 192,
|
|
|
|
-32766, 117,-32766, 862, 186,-32766, 116, -113, 193,-32766,
|
|
|
|
-32766,-32766, 852, 519,-32766,-32766,-32766,-32766,-32766, 353,
|
|
|
|
28,-32766, 388, 357, 471, 126,-32766,-32766, 531,-32766,
|
|
|
|
523, 791, 522,-32766, 130, 287, 480, 481, 688, 538,
|
|
|
|
305, 544, 514,-32766, 529, 124,-32766,-32766,-32766, 512,
|
|
|
|
-32766, 591,-32766, 510,-32766, 128, 489,-32766,-32766,-32766,
|
|
|
|
233,-32766,-32766,-32766, 600, 329,-32766,-32766, 682, 528,
|
|
|
|
-32766, 658, 659,-32766, 388, 52, 369, 370, 55, 693,
|
|
|
|
533,-32766, 224, 51,-32766, 563, 605, 374, 375, 50,
|
|
|
|
538, 58, 49, 496,-32766, 494, 232,-32766,-32766,-32766,
|
|
|
|
485,-32766, 265,-32766, 210,-32766, 552, 414,-32766, 402,
|
|
|
|
-32766,-32766,-32766,-32766,-32766, 554,-32766,-32766,-32766, 855,
|
|
|
|
539,-32766, 538, 538,-32766, 388,-32766, 505, 400,-32766,
|
|
|
|
-32766,-32766,-32766,-32766, 482,-32766, 791,-32766, 478, 339,
|
|
|
|
-32766, 341, 415, 690,-32766,-32766,-32766, 399, 923,-32766,
|
|
|
|
-32766, 809, 401,-32766, -161, 342,-32766, 388, 918, 329,
|
|
|
|
319,-32766,-32766, 329,-32766, 266, 277, 476, 791, 338,
|
|
|
|
369, 370, 416, 229, 369, 370, -158, 474, 447, 543,
|
|
|
|
605, 374, 375, 563, 605, 374, 375, 459, 359,-32766,
|
|
|
|
258, 606, 120,-32766,-32766, 538, 851, 660, 80,-32766,
|
|
|
|
607, 263,-32766,-32766,-32766, 30,-32766, 545,-32766, 508,
|
|
|
|
-32766, 564, 256,-32766, 260, 255, 191,-32766,-32766,-32766,
|
|
|
|
791,-32766,-32766,-32766, 244, -349,-32766, 538, 246,-32766,
|
|
|
|
388,-32766, -350, 422,-32766,-32766,-32766,-32766,-32766, 42,
|
|
|
|
-32766, 465,-32766, 45, -292,-32766, 337, 789, 250,-32766,
|
|
|
|
-32766,-32766, 791, 407,-32766,-32766, -283, 502,-32766, 299,
|
|
|
|
251,-32766, 388, -291, 513, 0,-32766,-32766, 340,-32766,
|
|
|
|
590, 574, 572,-32766, 568, 582, 589, 583, 576, 538,
|
|
|
|
636, 627, 628,-32766, 566, 689,-32766,-32766,-32766, 580,
|
|
|
|
-32766, 686,-32766, 548,-32766, 577, 687,-32766, 571,-32766,
|
|
|
|
621,-32766,-32766,-32766, 44,-32766,-32766,-32766, 515, 619,
|
|
|
|
-32766, 538, 516,-32766, 388,-32766, 617, 679,-32766,-32766,
|
|
|
|
-32766,-32766,-32766, 518,-32766, 520,-32766, 525, 526,-32766,
|
|
|
|
530, 532, 123,-32766,-32766,-32766, 527, 329,-32766,-32766,
|
|
|
|
892, 902,-32766, 671, 831,-32766, 388, 894, 369, 370,
|
|
|
|
575,-32766, 321,-32766, 882, 896,-32766, 563, 605, 374,
|
|
|
|
375, 898, 538, 626, 926, 927,-32766, 625, 924,-32766,
|
|
|
|
-32766,-32766, 356,-32766,-32766,-32766, 317,-32766, 235, 234,
|
|
|
|
-32766, 222, 573,-32766,-32766,-32766,-32766, 236,-32766,-32766,
|
|
|
|
-32766, 218, 217,-32766, 538, 213,-32766, 388,-32766, 262,
|
|
|
|
212,-32766,-32766,-32766,-32766,-32766, 237,-32766, 184,-32766,
|
|
|
|
79, 48,-32766, 189, 190, 43,-32766,-32766,-32766, 33,
|
|
|
|
32,-32766,-32766, -114, 858,-32766, 662, 798,-32766, 388,
|
|
|
|
771, 795, 183,-32766,-32766, 501,-32766, 833, 329, 319,
|
|
|
|
840, 841, 475, 439,-32766, 277, 358, 354, 842, 369,
|
|
|
|
370,-32766,-32766,-32766, 306, 288, 25, 24, 543, 605,
|
|
|
|
374, 375,-32766,-32766,-32766,-32766,-32766, 23,-32766, 483,
|
|
|
|
-32766,-32766,-32766,-32766,-32766, 794, 770, 448, 907,-32766,
|
|
|
|
263,-32766,-32766,-32766,-32766, 804, 546, -113, 0, 876,
|
|
|
|
0, 0, 859, 922, 830, 893, 444, 877, 846, 847,
|
|
|
|
848, 849, 843, 844, 308, 881, 895, 815, 329, 802,
|
|
|
|
850, 845, 329, 800, 801, 799,-32766, 0,-32766, 369,
|
|
|
|
370, 0, 0, 369, 370, 329, 0, 0, 563, 605,
|
|
|
|
374, 375, 563, 605, 374, 375, 369, 370, 0, 0,
|
|
|
|
0, 329, 0, 0, 0, 563, 605, 374, 375, 0,
|
|
|
|
0, 0, 369, 370, 329, 0, 517, 0, 329, 0,
|
|
|
|
601, 563, 605, 374, 375, 369, 370, 0, 0, 369,
|
|
|
|
370, 329, 0, 694, 563, 605, 374, 375, 563, 605,
|
|
|
|
374, 375, 369, 370, 0, 0, 0, 504, 0, 594,
|
|
|
|
0, 563, 605, 374, 375, 0,-32766,-32766,-32766, 0,
|
|
|
|
329, 0, 793, 495, 0, 0, 596, 0, 0, 0,
|
|
|
|
0, 369, 370,-32766, 329,-32766,-32766,-32766, 0, 792,
|
|
|
|
563, 605, 374, 375, 0, 369, 370, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 563, 605, 374, 375
|
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,
|
2012-09-07 19:24:44 +02:00
|
|
|
12, 36, 37, 38, 39, 40, 41, 42, 43, 44,
|
|
|
|
61, 76, 25, 73, 27, 28, 13, 14, 15, 16,
|
|
|
|
17, 18, 19, 20, 21, 22, 23, 24, 61, 7,
|
|
|
|
42, 43, 71, 71, 73, 74, 48, 71, 50, 51,
|
2011-10-21 11:07:06 +02:00
|
|
|
52, 53, 54, 55, 56, 57, 58, 59, 60, 61,
|
2012-09-07 19:43:07 +02:00
|
|
|
62, 63, 64, 65, 51, 52, 76, 69, 70, 71,
|
2012-09-07 19:24:44 +02:00
|
|
|
7, 73, 141, 75, 143, 77, 78, 79, 80, 134,
|
2012-09-07 19:43:07 +02:00
|
|
|
82, 122, 84, 81, 86, 135, 136, 89, 8, 9,
|
2012-09-07 19:24:44 +02:00
|
|
|
10, 93, 94, 95, 96, 7, 98, 99, 96, 122,
|
2012-09-07 19:43:07 +02:00
|
|
|
102, 7, 143, 105, 106, 25, 7, 27, 7, 107,
|
2012-09-07 19:24:44 +02:00
|
|
|
108, 113, 114, 115, 138, 26, 144, 141, 116, 117,
|
2012-09-07 19:43:07 +02:00
|
|
|
118, 119, 124, 125, 134, 127, 128, 129, 130, 131,
|
2012-09-07 19:24:44 +02:00
|
|
|
132, 133, 8, 9, 10, 122, 138, 139, 140, 141,
|
2012-09-07 19:43:07 +02:00
|
|
|
142, 143, 7, 145, 31, 147, 148, 146, 150, 25,
|
2012-09-07 19:24:44 +02:00
|
|
|
73, 27, 28, 29, 30, 31, 32, 33, 34, 35,
|
2012-09-07 18:06:11 +02:00
|
|
|
36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
|
2012-09-07 19:24:44 +02:00
|
|
|
46, 47, 12, 49, 142, 8, 9, 10, 106, 107,
|
2012-09-07 19:43:07 +02:00
|
|
|
108, 109, 110, 111, 26, 0, 8, 9, 10, 125,
|
2012-09-07 19:24:44 +02:00
|
|
|
126, 31, 25, 7, 27, 28, 29, 30, 31, 32,
|
|
|
|
33, 34, 35, 25, 12, 97, 96, 97, 71, 146,
|
2012-09-07 19:43:07 +02:00
|
|
|
146, 103, 61, 103, 8, 9, 10, 107, 108, 73,
|
|
|
|
112, 7, 73, 31, 147, 65, 116, 117, 118, 119,
|
2012-09-07 19:24:44 +02:00
|
|
|
142, 71, 143, 7, 71, 75, 73, 124, 78, 79,
|
|
|
|
80, 142, 82, 61, 84, 97, 86, 146, 138, 89,
|
|
|
|
61, 103, 144, 93, 94, 95, 12, 65, 98, 99,
|
|
|
|
112, 7, 102, 71, 71, 105, 106, 75, 7, 106,
|
|
|
|
78, 79, 80, 113, 82, 31, 84, 142, 86, 61,
|
2012-09-07 19:43:07 +02:00
|
|
|
143, 89, 42, 43, 44, 93, 94, 95, 12, 76,
|
|
|
|
98, 99, 144, 147, 102, 144, 147, 105, 106, 7,
|
|
|
|
142, 138, 142, 143, 141, 113, 97, 31, 145, 65,
|
2012-09-07 19:24:44 +02:00
|
|
|
147, 7, 103, 71, 76, 71, 45, 46, 47, 75,
|
2012-09-07 19:43:07 +02:00
|
|
|
49, 112, 78, 79, 80, 143, 82, 71, 84, 8,
|
|
|
|
86, 13, 143, 89, 142, 143, 143, 93, 94, 95,
|
|
|
|
12, 65, 98, 99, 123, 13, 102, 71, 143, 105,
|
2012-09-07 19:24:44 +02:00
|
|
|
106, 75, 147, 144, 78, 79, 80, 113, 82, 13,
|
2012-09-07 19:43:07 +02:00
|
|
|
84, 143, 86, 150, 13, 89, 13, 146, 13, 93,
|
|
|
|
94, 95, 134, 26, 98, 99, 8, 9, 102, 66,
|
|
|
|
67, 105, 106, 66, 67, 143, 142, 143, 26, 113,
|
|
|
|
26, 12, 26, 65, 91, 92, 100, 101, 142, 71,
|
2012-09-07 19:24:44 +02:00
|
|
|
72, 142, 143, 75, 26, 26, 78, 79, 80, 26,
|
|
|
|
82, 26, 84, 26, 86, 26, 87, 89, 142, 143,
|
|
|
|
49, 93, 94, 95, 31, 96, 98, 99, 142, 143,
|
|
|
|
102, 125, 126, 105, 106, 61, 107, 108, 61, 142,
|
2012-09-07 19:43:07 +02:00
|
|
|
143, 113, 31, 61, 65, 116, 117, 118, 119, 61,
|
|
|
|
71, 61, 61, 73, 75, 71, 62, 78, 79, 80,
|
|
|
|
68, 82, 76, 84, 88, 86, 71, 71, 89, 71,
|
2012-09-07 19:24:44 +02:00
|
|
|
142, 143, 93, 94, 95, 71, 65, 98, 99, 71,
|
|
|
|
71, 102, 71, 71, 105, 106, 75, 71, 71, 78,
|
|
|
|
79, 80, 113, 82, 73, 84, 12, 86, 73, 71,
|
2012-09-07 19:43:07 +02:00
|
|
|
89, 71, 71, 71, 93, 94, 95, 71, 71, 98,
|
|
|
|
99, 73, 73, 102, 73, 80, 105, 106, 76, 96,
|
|
|
|
97, 142, 143, 96, 113, 76, 103, 103, 12, 96,
|
|
|
|
107, 108, 88, 88, 107, 108, 88, 90, 88, 116,
|
|
|
|
117, 118, 119, 116, 117, 118, 119, 90, 96, 65,
|
|
|
|
104, 117, 123, 142, 143, 71, 134, 146, 143, 75,
|
|
|
|
117, 138, 78, 79, 80, 145, 82, 144, 84, 143,
|
|
|
|
86, 144, 121, 89, 120, 120, 123, 93, 94, 95,
|
|
|
|
12, 65, 98, 99, 122, 122, 102, 71, 122, 105,
|
|
|
|
106, 75, 122, 124, 78, 79, 80, 113, 82, 123,
|
|
|
|
84, 137, 86, 142, 137, 89, 141, 148, 137, 93,
|
|
|
|
94, 95, 12, 141, 98, 99, 137, 137, 102, 137,
|
|
|
|
137, 105, 106, 137, 143, -1, 142, 143, 141, 113,
|
2012-09-07 19:24:44 +02:00
|
|
|
142, 142, 142, 65, 142, 142, 142, 142, 142, 71,
|
|
|
|
142, 142, 142, 75, 142, 142, 78, 79, 80, 142,
|
|
|
|
82, 142, 84, 142, 86, 142, 142, 89, 142, 143,
|
2012-09-07 19:43:07 +02:00
|
|
|
142, 93, 94, 95, 142, 65, 98, 99, 142, 142,
|
|
|
|
102, 71, 142, 105, 106, 75, 142, 142, 78, 79,
|
2012-09-07 19:24:44 +02:00
|
|
|
80, 113, 82, 143, 84, 143, 86, 143, 143, 89,
|
2012-09-07 19:43:07 +02:00
|
|
|
143, 143, 143, 93, 94, 95, 143, 96, 98, 99,
|
2012-09-07 19:24:44 +02:00
|
|
|
144, 144, 102, 144, 144, 105, 106, 144, 107, 108,
|
|
|
|
142, 143, 145, 113, 144, 144, 65, 116, 117, 118,
|
2012-09-07 19:43:07 +02:00
|
|
|
119, 144, 71, 144, 144, 144, 75, 144, 144, 78,
|
|
|
|
79, 80, 144, 82, 145, 84, 145, 86, 145, 145,
|
2012-09-07 19:24:44 +02:00
|
|
|
89, 145, 142, 143, 93, 94, 95, 145, 65, 98,
|
|
|
|
99, 145, 145, 102, 71, 145, 105, 106, 75, 145,
|
|
|
|
145, 78, 79, 80, 113, 82, 145, 84, 145, 86,
|
2012-09-07 19:43:07 +02:00
|
|
|
145, 145, 89, 42, 43, 145, 93, 94, 95, 145,
|
|
|
|
145, 98, 99, 146, 146, 102, 146, 146, 105, 106,
|
2012-09-07 19:24:44 +02:00
|
|
|
146, 146, 61, 142, 143, 146, 113, 146, 96, 97,
|
|
|
|
69, 70, 146, 146, 73, 103, 146, 146, 77, 107,
|
|
|
|
108, 8, 9, 10, 146, 146, 146, 146, 116, 117,
|
|
|
|
118, 119, 8, 9, 10, 142, 143, 146, 25, 149,
|
2012-09-07 19:43:07 +02:00
|
|
|
27, 28, 29, 30, 31, 146, 146, 146, 146, 25,
|
|
|
|
138, 27, 28, 29, 30, 146, 144, 146, -1, 149,
|
|
|
|
-1, -1, 149, 149, 149, 149, 125, 149, 127, 128,
|
|
|
|
129, 130, 131, 132, 133, 149, 149, 149, 96, 149,
|
|
|
|
139, 140, 96, 149, 149, 149, 145, -1, 147, 107,
|
2012-09-07 19:24:44 +02:00
|
|
|
108, -1, -1, 107, 108, 96, -1, -1, 116, 117,
|
|
|
|
118, 119, 116, 117, 118, 119, 107, 108, -1, -1,
|
|
|
|
-1, 96, -1, -1, -1, 116, 117, 118, 119, -1,
|
2012-09-07 19:43:07 +02:00
|
|
|
-1, -1, 107, 108, 96, -1, 144, -1, 96, -1,
|
2012-09-07 19:24:44 +02:00
|
|
|
144, 116, 117, 118, 119, 107, 108, -1, -1, 107,
|
2012-09-07 19:43:07 +02:00
|
|
|
108, 96, -1, 144, 116, 117, 118, 119, 116, 117,
|
|
|
|
118, 119, 107, 108, -1, -1, -1, 83, -1, 144,
|
|
|
|
-1, 116, 117, 118, 119, -1, 8, 9, 10, -1,
|
|
|
|
96, -1, 144, 85, -1, -1, 144, -1, -1, -1,
|
|
|
|
-1, 107, 108, 25, 96, 27, 28, 29, -1, 144,
|
|
|
|
116, 117, 118, 119, -1, 107, 108, -1, -1, -1,
|
|
|
|
-1, -1, -1, -1, 116, 117, 118, 119
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yybase = array(
|
2012-09-07 19:43:07 +02:00
|
|
|
0, 702, 423, 110, 427, 772, 2, 329, 878, 776,
|
|
|
|
835, 822, 818, 864, 805, 789, 601, 601, 601, 601,
|
|
|
|
601, 383, 347, 364, 362, 364, 387, -2, -2, -2,
|
2012-09-07 19:24:44 +02:00
|
|
|
411, 192, 192, 651, 192, 244, 516, 600, 568, 328,
|
|
|
|
379, 160, 276, 484, 484, 484, 484, 683, 683, 484,
|
|
|
|
484, 484, 484, 484, 484, 484, 484, 484, 484, 484,
|
|
|
|
484, 484, 484, 484, 484, 484, 484, 484, 484, 484,
|
|
|
|
484, 484, 484, 484, 484, 484, 484, 484, 484, 484,
|
|
|
|
484, 484, 484, 484, 484, 484, 484, 484, 484, 484,
|
|
|
|
484, 484, 484, 484, 484, 484, 484, 484, 484, 484,
|
|
|
|
484, 484, 484, 484, 484, 484, 484, 484, 484, 484,
|
|
|
|
484, 484, 484, 484, 484, 484, 484, 484, 484, 484,
|
2012-09-07 19:43:07 +02:00
|
|
|
484, 484, 484, 484, 484, 484, 484, 484, 484, 484,
|
|
|
|
484, 158, 493, 429, 476, 490, 489, 496, 494, 689,
|
|
|
|
376, 584, 577, 389, 571, 570, 563, 560, 559, 588,
|
|
|
|
557, 680, 556, 124, 124, 124, 124, 124, 124, 124,
|
|
|
|
124, 124, 124, 321, 368, 206, 206, 206, 206, 206,
|
|
|
|
206, 206, 206, 206, 206, 206, 206, 206, 206, 206,
|
|
|
|
178, 178, 80, 731, 731, 731, 731, 731, 731, 731,
|
|
|
|
731, 731, 731, 731, -3, 948, 814, 803, 167, 167,
|
|
|
|
167, 167, 13, -25, -25, -25, -25, 108, 148, 209,
|
|
|
|
113, 113, 469, 469, 394, 469, 549, 163, 163, 163,
|
|
|
|
163, 163, 163, 163, 163, 163, 163, 163, 441, 416,
|
|
|
|
240, 240, 589, 589, 64, 64, 64, 64, 306, 238,
|
|
|
|
-10, 213, -28, 386, 242, 242, 242, 449, 422, 442,
|
|
|
|
193, 137, 271, 271, 271, -24, -24, -24, -24, 415,
|
|
|
|
-24, -24, -24, -69, 182, -50, -50, -29, 205, 457,
|
|
|
|
583, 447, 579, 286, 467, -41, 259, 465, 77, 433,
|
|
|
|
465, 313, 317, 296, 479, 89, 77, 158, 297, 189,
|
|
|
|
507, 431, 511, 444, 88, 99, 135, -23, 218, 146,
|
|
|
|
1, 450, 691, 690, 699, 151, 470, 101, -55, 218,
|
|
|
|
221, 692, 535, 32, 63, 509, 256, 393, 634, 417,
|
|
|
|
420, 396, 417, 421, 393, 626, 626, 626, 626, 393,
|
|
|
|
412, 420, 420, 393, 394, 420, 254, 412, 393, 455,
|
|
|
|
412, 454, 626, 526, 530, 417, 439, 451, 420, 420,
|
|
|
|
420, 396, 393, 626, 424, 94, 420, 626, 424, 393,
|
|
|
|
421, 185, 385, 391, 630, 625, 567, 436, 426, 434,
|
|
|
|
443, 607, 606, 596, 398, 428, 615, 635, 472, 513,
|
|
|
|
430, 353, 388, 382, 374, 471, 377, 462, 433, 487,
|
|
|
|
371, 463, 483, 463, 726, 482, 486, 466, 435, 488,
|
|
|
|
351, 318, 481, 472, 645, 668, 459, 409, 594, 657,
|
|
|
|
463, 725, 522, 186, 332, 593, 395, 463, 602, 463,
|
|
|
|
644, 540, 610, 463, 641, 437, 581, 472, 371, 371,
|
|
|
|
371, 640, 724, 720, 718, 717, 716, 708, 706, 390,
|
|
|
|
705, 492, 661, 304, 623, 479, 464, 404, 495, 214,
|
|
|
|
704, 463, 463, 542, 415, 463, 498, 461, 681, 499,
|
|
|
|
656, 425, 453, 703, 422, 408, 660, 463, 452, 700,
|
|
|
|
214, 366, 392, 637, 500, 544, 591, 545, 346, 638,
|
|
|
|
614, 553, 355, 580, 378, 502, 671, 670, 701, 518,
|
|
|
|
547, 384, 438, 380, 621, 527, 649, 448, 480, 446,
|
|
|
|
445, 548, 432, 669, 534, 503, 514, 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,
|
2012-09-07 19:43:07 +02:00
|
|
|
0, 0, 0, 0, 0, -2, -2, -2, -2, -2,
|
2011-11-21 18:43:35 +01:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2012-09-07 19:43:07 +02:00
|
|
|
-2, 0, 0, 0, -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,
|
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2012-09-07 19:43:07 +02:00
|
|
|
-2, -2, -2, -2, -2, 124, 124, 124, 124, 124,
|
2012-09-07 18:06:11 +02:00
|
|
|
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
|
2012-09-07 19:43:07 +02:00
|
|
|
124, 124, 124, 124, 124, 124, 124, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 124, 124, 124,
|
2012-09-07 18:06:11 +02:00
|
|
|
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
|
2012-09-07 19:43:07 +02:00
|
|
|
124, 124, 124, 124, 124, 124, 124, 163, 163, 163,
|
|
|
|
163, 163, 163, 163, 163, 163, 163, 163, 124, 124,
|
|
|
|
124, 124, 124, 124, 124, 124, 0, 271, 271, 271,
|
|
|
|
271, 72, 72, 72, 163, 163, 163, 163, 163, 163,
|
|
|
|
163, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 72, 72, 271, 271, 163, 163, -24, -24,
|
|
|
|
-24, -24, -24, -50, -50, -50, -24, -50, 149, 149,
|
|
|
|
149, -50, -50, -50, 146, 146, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 149, 0, 0, 0, 412, 420, 0,
|
|
|
|
0, 0, 149, 303, 303, 303, 303, 214, 218, 0,
|
|
|
|
472, 412, 0, 439, 412, 0, 0, 0, 420, 0,
|
|
|
|
0, 0, 0, 0, 186, 594, 261, 472, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 472, 292, 292, 226, 0,
|
|
|
|
390, 0, 0, 0, 0, 226, 261, 0, 0, 214
|
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,
|
2012-09-07 19:24:44 +02:00
|
|
|
32767,32767,32767,32767,32767,32767, 106, 98, 112, 97,
|
|
|
|
108,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2012-09-07 19:43:07 +02:00
|
|
|
32767, 375, 375,32767, 333,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767, 179, 179, 179,32767,32767,32767, 365,
|
|
|
|
365, 365, 365, 365, 365, 365, 365, 365, 365,32767,
|
|
|
|
32767,32767,32767,32767, 257,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,
|
2012-09-07 19:43:07 +02:00
|
|
|
32767,32767,32767, 262, 380,32767,32767,32767,32767,32767,
|
2011-04-18 19:02:30 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2012-09-07 19:43:07 +02:00
|
|
|
32767,32767,32767, 238, 239, 241, 242, 178, 366, 131,
|
|
|
|
263, 379, 177, 205, 207, 256, 206, 183, 188, 189,
|
|
|
|
190, 191, 192, 193, 194, 195, 196, 197, 198, 182,
|
|
|
|
235, 234, 203, 330, 330, 333,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767, 204, 208, 210, 209, 225, 226,
|
|
|
|
223, 224, 181, 227, 228, 229, 230, 163, 163, 163,
|
|
|
|
32767,32767, 374, 374,32767, 374,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767, 164,32767,
|
|
|
|
217, 218, 293, 293, 122, 122, 122, 122, 122,32767,
|
|
|
|
32767,32767,32767, 301,32767,32767,32767,32767,32767, 303,
|
|
|
|
32767,32767, 212, 213, 211,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767, 338, 302,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767, 351, 289,32767,32767,32767, 282,
|
|
|
|
32767, 109, 111, 61, 319,32767,32767,32767,32767, 356,
|
|
|
|
32767,32767,32767, 17,32767,32767,32767, 387, 351,32767,
|
|
|
|
32767, 19,32767,32767,32767,32767, 233,32767,32767, 355,
|
|
|
|
349,32767,32767,32767,32767,32767,32767, 65, 298,32767,
|
|
|
|
304,32767,32767,32767, 65,32767,32767,32767,32767, 65,
|
|
|
|
32767, 354, 353, 65,32767, 283, 332,32767, 65, 76,
|
|
|
|
32767, 74,32767, 95, 95,32767,32767, 78, 327, 344,
|
|
|
|
32767,32767, 65,32767, 271, 332,32767,32767, 271, 65,
|
|
|
|
32767,32767, 4, 308,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767, 284,32767,
|
|
|
|
32767,32767, 253, 254, 340,32767, 341,32767, 282,32767,
|
|
|
|
221, 200,32767, 202,32767,32767, 287, 290,32767,32767,
|
|
|
|
32767, 140,32767, 285,32767, 186,32767,32767,32767,32767,
|
|
|
|
382,32767,32767, 180,32767,32767,32767, 136,32767, 63,
|
|
|
|
349,32767,32767, 372,32767,32767, 349, 286, 214, 215,
|
|
|
|
216,32767,32767,32767,32767,32767,32767,32767,32767, 350,
|
|
|
|
32767,32767,32767, 116,32767, 319,32767,32767,32767, 77,
|
|
|
|
32767, 184, 132,32767,32767, 381,32767,32767,32767,32767,
|
|
|
|
32767,32767, 337,32767,32767,32767,32767, 64,32767,32767,
|
|
|
|
79,32767,32767, 349,32767,32767,32767,32767, 120,32767,
|
|
|
|
32767,32767, 175,32767,32767,32767,32767,32767, 349,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767, 4,32767, 157,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767, 25, 25, 3,
|
|
|
|
25, 103, 25, 143, 3, 95, 95, 58, 143, 25,
|
|
|
|
143, 25, 25, 25, 25, 25, 25, 25, 150, 25,
|
|
|
|
25, 25, 25, 25
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yygoto = array(
|
2012-09-07 19:43:07 +02:00
|
|
|
159, 134, 134, 139, 134, 159, 135, 136, 137, 141,
|
|
|
|
143, 167, 161, 157, 157, 157, 157, 139, 139, 158,
|
|
|
|
158, 158, 158, 158, 158, 158, 158, 158, 158, 153,
|
|
|
|
154, 155, 156, 165, 133, 753, 754, 390, 756, 777,
|
|
|
|
778, 779, 780, 781, 782, 783, 785, 721, 138, 140,
|
|
|
|
142, 163, 164, 166, 182, 194, 195, 196, 197, 198,
|
|
|
|
199, 200, 201, 203, 204, 205, 206, 230, 231, 252,
|
|
|
|
253, 254, 428, 429, 430, 168, 169, 170, 171, 172,
|
|
|
|
173, 174, 175, 176, 177, 178, 179, 144, 145, 146,
|
|
|
|
160, 147, 162, 148, 180, 149, 150, 151, 181, 152,
|
|
|
|
131, 445, 445, 445, 445, 445, 445, 445, 445, 445,
|
|
|
|
445, 445, 446, 446, 446, 446, 446, 446, 446, 446,
|
|
|
|
446, 446, 446, 249, 585, 270, 405, 241, 335, 335,
|
|
|
|
335, 335, 335, 335, 335, 335, 335, 335, 335, 335,
|
|
|
|
335, 335, 335, 335, 335, 335, 542, 542, 542, 424,
|
|
|
|
817, 817, 657, 657, 657, 657, 657, 541, 541, 541,
|
|
|
|
498, 396, 396, 432, 433, 434, 435, 436, 437, 438,
|
|
|
|
440, 469, 1, 614, 614, 614, 614, 2, 609, 615,
|
|
|
|
493, 392, 392, 392, 392, 392, 392, 392, 392, 392,
|
|
|
|
392, 392, 392, 392, 392, 392, 392, 392, 392, 460,
|
|
|
|
466, 503, 911, 395, 395, 310, 488, 423, 423, 451,
|
|
|
|
423, 417, 419, 419, 391, 393, 410, 420, 426, 452,
|
|
|
|
455, 467, 473, 5, 880, 16, 208, 6, 209, 540,
|
|
|
|
540, 540, 457, 486, 7, 664, 17, 18, 8, 19,
|
|
|
|
9, 10, 11, 290, 20, 12, 13, 14, 15, 635,
|
|
|
|
620, 618, 616, 618, 511, 398, 644, 639, 854, 854,
|
|
|
|
854, 854, 854, 854, 854, 854, 854, 854, 854, 917,
|
|
|
|
917, 431, 479, 276, 404, 868, 834, 920, 917, 487,
|
|
|
|
839, 649, 649, 774, 26, 21, 285, 293, 404, 404,
|
|
|
|
293, 813, 814, 719, 920, 920, 271, 272, 700, 316,
|
|
|
|
441, 470, 273, 315, 397, 397, 888, 888, 811, 879,
|
|
|
|
811, 29, 829, 828, 311, 484, 812, 557, 675, 624,
|
|
|
|
856, 857, 870, 655, 710, 887, 887, 298, 298, 298,
|
|
|
|
904, 765, 291, 653, 303, 549, 408, 903, 903, 903,
|
|
|
|
403, 418, 298, 667, 312, 521, 555, 301, 808, 623,
|
|
|
|
427, 309, 886, 672, 865, 461, 708, 0, 0, 0,
|
|
|
|
490, 0, 491, 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,
|
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 19:43:07 +02:00
|
|
|
0, 0, 0, 409
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yygcheck = array(
|
2012-09-07 19:24:44 +02:00
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
2012-09-07 19:43:07 +02:00
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 38, 38, 38, 38, 38, 38, 38, 38, 38,
|
|
|
|
38, 38, 93, 93, 93, 93, 93, 93, 93, 93,
|
|
|
|
93, 93, 93, 99, 31, 48, 75, 99, 38, 38,
|
2012-09-07 19:24:44 +02:00
|
|
|
38, 38, 38, 38, 38, 38, 38, 38, 38, 38,
|
2012-09-07 19:43:07 +02:00
|
|
|
38, 38, 38, 38, 38, 38, 7, 7, 7, 83,
|
|
|
|
38, 38, 38, 38, 38, 38, 38, 6, 6, 6,
|
|
|
|
38, 93, 93, 84, 84, 84, 84, 84, 84, 84,
|
|
|
|
84, 84, 2, 38, 38, 38, 38, 2, 38, 38,
|
|
|
|
38, 90, 90, 90, 90, 90, 90, 90, 90, 90,
|
|
|
|
90, 90, 90, 90, 90, 90, 90, 90, 90, 40,
|
|
|
|
40, 40, 111, 90, 90, 32, 32, 32, 32, 32,
|
2012-09-07 19:24:44 +02:00
|
|
|
32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
|
2012-09-07 19:43:07 +02:00
|
|
|
32, 32, 32, 13, 57, 13, 44, 13, 44, 5,
|
|
|
|
5, 5, 21, 21, 13, 59, 13, 13, 13, 13,
|
|
|
|
13, 13, 13, 28, 13, 13, 13, 13, 13, 5,
|
|
|
|
5, 5, 5, 5, 5, 5, 5, 5, 100, 100,
|
|
|
|
100, 100, 100, 100, 100, 100, 100, 100, 100, 112,
|
|
|
|
112, 25, 101, 4, 25, 104, 15, 112, 112, 30,
|
|
|
|
57, 53, 53, 15, 15, 15, 15, 4, 25, 25,
|
|
|
|
4, 57, 57, 75, 112, 112, 48, 48, 72, 72,
|
|
|
|
15, 46, 46, 46, 96, 96, 91, 91, 57, 57,
|
|
|
|
57, 15, 98, 98, 86, 15, 57, 12, 12, 12,
|
|
|
|
12, 12, 12, 12, 12, 92, 92, 97, 97, 97,
|
|
|
|
109, 76, 39, 55, 29, 10, 39, 92, 92, 92,
|
|
|
|
4, 39, 97, 60, 9, 50, 11, 4, 88, 47,
|
|
|
|
4, 97, 92, 61, 103, 39, 74, -1, -1, -1,
|
|
|
|
82, -1, 39, -1, -1, -1, -1, -1, -1, -1,
|
2012-04-19 00:52:44 +02:00
|
|
|
-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,
|
2012-09-07 19:43:07 +02:00
|
|
|
-1, -1, -1, 75
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yygbase = array(
|
2012-09-07 19:43:07 +02:00
|
|
|
0, 0, -337, 0, 10, 228, 156, 145, 0, 22,
|
|
|
|
55, 1, 131, -285, 0, -42, 0, 0, 0, 0,
|
|
|
|
0, 188, 0, 0, -30, 241, 0, 0, 197, 116,
|
|
|
|
68, 99, -5, 0, 0, 0, 0, 0, -82, 3,
|
|
|
|
-36, 0, 0, 0, -292, 0, 45, -2, -219, 0,
|
|
|
|
58, 0, 0, 71, 0, 95, 0, -40, 0, 200,
|
|
|
|
57, 7, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 70, 0, -4, 79, 98, 0, 0, 0,
|
|
|
|
0, 0, 2, 117, 113, 0, 101, 0, 24, 0,
|
|
|
|
-29, 74, 93, -71, 0, 0, 72, 83, 67, -120,
|
|
|
|
75, 88, 0, -1, 90, 0, 0, 0, 0, 115,
|
|
|
|
0, 168, 29, 0
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yygdefault = array(
|
2012-09-07 19:43:07 +02:00
|
|
|
-32768, 361, 3, 536, 378, 560, 561, 562, 294, 292,
|
|
|
|
550, 556, 462, 4, 558, 766, 281, 565, 282, 472,
|
|
|
|
567, 412, 569, 570, 132, 379, 295, 296, 413, 302,
|
|
|
|
458, 584, 202, 300, 586, 283, 588, 593, 284, 492,
|
|
|
|
442, 380, 347, 453, 207, 421, 449, 622, 269, 630,
|
|
|
|
524, 638, 641, 381, 443, 652, 352, 810, 307, 663,
|
|
|
|
668, 673, 676, 323, 313, 468, 680, 681, 242, 685,
|
|
|
|
499, 500, 699, 228, 707, 720, 320, 784, 786, 382,
|
|
|
|
383, 406, 477, 394, 411, 803, 304, 314, 807, 384,
|
|
|
|
385, 331, 332, 825, 822, 275, 873, 274, 349, 240,
|
|
|
|
860, 463, 355, 910, 869, 264, 386, 387, 289, 905,
|
|
|
|
336, 912, 919, 450
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yylhs = array(
|
2011-09-24 16:53:40 +02:00
|
|
|
0, 1, 2, 2, 4, 4, 3, 3, 3, 3,
|
|
|
|
3, 3, 3, 3, 3, 8, 8, 10, 10, 10,
|
|
|
|
10, 9, 9, 11, 13, 13, 14, 14, 14, 14,
|
|
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
2012-09-07 19:24:44 +02:00
|
|
|
5, 5, 5, 5, 5, 5, 5, 5, 35, 35,
|
|
|
|
37, 36, 36, 29, 29, 39, 39, 6, 7, 7,
|
|
|
|
7, 41, 41, 41, 42, 42, 45, 45, 43, 43,
|
|
|
|
46, 46, 22, 22, 31, 31, 34, 34, 33, 33,
|
|
|
|
47, 23, 23, 23, 23, 48, 48, 49, 49, 50,
|
|
|
|
50, 20, 20, 16, 16, 51, 18, 18, 52, 17,
|
|
|
|
17, 19, 19, 30, 30, 30, 40, 40, 54, 54,
|
|
|
|
55, 55, 56, 56, 56, 56, 57, 57, 57, 58,
|
|
|
|
58, 59, 59, 26, 26, 60, 60, 60, 27, 27,
|
|
|
|
61, 61, 44, 44, 62, 62, 62, 62, 67, 67,
|
|
|
|
68, 68, 69, 69, 69, 69, 70, 71, 71, 66,
|
|
|
|
66, 63, 63, 65, 65, 73, 73, 72, 72, 72,
|
|
|
|
72, 72, 72, 64, 64, 74, 74, 28, 28, 21,
|
|
|
|
21, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
|
|
|
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
2012-09-07 19:43:07 +02:00
|
|
|
15, 15, 25, 25, 79, 79, 80, 80, 80, 75,
|
|
|
|
53, 82, 82, 87, 87, 88, 89, 89, 89, 89,
|
|
|
|
89, 89, 93, 93, 38, 38, 38, 76, 76, 94,
|
|
|
|
94, 90, 90, 95, 95, 95, 95, 95, 77, 77,
|
|
|
|
77, 81, 81, 81, 85, 85, 100, 100, 100, 100,
|
|
|
|
100, 100, 100, 100, 100, 100, 100, 100, 100, 100,
|
|
|
|
12, 12, 12, 12, 12, 12, 78, 78, 78, 78,
|
|
|
|
101, 101, 103, 103, 102, 102, 104, 104, 32, 32,
|
|
|
|
32, 32, 106, 106, 105, 105, 105, 105, 105, 107,
|
|
|
|
107, 92, 92, 96, 96, 91, 91, 108, 108, 108,
|
|
|
|
108, 97, 97, 97, 97, 84, 84, 98, 98, 98,
|
|
|
|
86, 86, 109, 109, 109, 83, 83, 110, 110, 111,
|
|
|
|
111, 111, 111, 99, 99, 99, 99, 112, 112, 112,
|
|
|
|
112, 112, 112, 112, 113, 113, 113
|
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,
|
|
|
|
3, 5, 4, 3, 3, 3, 1, 1, 3, 2,
|
|
|
|
4, 3, 1, 3, 2, 0, 1, 1, 1, 1,
|
2012-09-07 19:24:44 +02:00
|
|
|
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, 2,
|
|
|
|
8, 0, 4, 1, 3, 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,
|
|
|
|
3, 5, 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, 3, 3, 3,
|
|
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 2,
|
|
|
|
2, 2, 2, 3, 3, 3, 3, 3, 3, 3,
|
|
|
|
3, 3, 1, 3, 5, 4, 4, 4, 2, 2,
|
2012-09-07 18:06:11 +02:00
|
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
2012-09-07 19:43:07 +02:00
|
|
|
2, 2, 1, 1, 1, 3, 2, 1, 9, 10,
|
|
|
|
3, 3, 2, 4, 4, 3, 4, 4, 4, 3,
|
|
|
|
4, 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,
|
|
|
|
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,
|
|
|
|
3, 1, 1, 4, 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
|
|
|
*
|
2011-06-12 17:12:47 +02:00
|
|
|
* @param PHPParser_Lexer $lexer A lexer
|
2012-04-25 20:04:46 +02:00
|
|
|
*/
|
|
|
|
public function __construct(PHPParser_Lexer $lexer) {
|
|
|
|
$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
|
|
|
*
|
|
|
|
* @return array 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) {
|
|
|
|
// fetch the next token id from the lexer and fetch additional info by-ref
|
2012-05-05 17:34:27 +02:00
|
|
|
$origTokenId = $this->lexer->getNextToken($tokenValue, $startAttributes, $endAttributes);
|
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) {
|
|
|
|
throw new RangeException(sprintf(
|
|
|
|
'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-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
|
|
|
);
|
2011-06-05 18:52:41 +02:00
|
|
|
} catch (PHPParser_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 */
|
2011-06-27 19:14:37 +02:00
|
|
|
throw new PHPParser_Error(
|
2012-04-29 22:57:46 +02:00
|
|
|
'Unexpected token ' . self::$terminals[$tokenId],
|
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) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = PHPParser_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) {
|
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 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) {
|
|
|
|
$this->yyval = new PHPParser_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 yyn10($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Namespace(new PHPParser_Node_Name($this->yyastk[$this->stackPos-(3-2)], $attributes), null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn11($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Namespace(new PHPParser_Node_Name($this->yyastk[$this->stackPos-(5-2)], $attributes), $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 yyn12($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn13($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn14($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn15($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 yyn16($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 yyn17($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($this->yyastk[$this->stackPos-(1-1)], $attributes), null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn18($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($this->yyastk[$this->stackPos-(3-1)], $attributes), $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 yyn19($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($this->yyastk[$this->stackPos-(2-2)], $attributes), null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn20($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($this->yyastk[$this->stackPos-(4-2)], $attributes), $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 yyn21($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 yyn22($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 yyn23($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn24($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 yyn25($attributes) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn26($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 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) {
|
2011-09-24 16:53:40 +02:00
|
|
|
throw new PHPParser_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 yyn30($attributes) {
|
2012-05-05 17:34:27 +02: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 yyn31($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn32($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn33($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn34($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn35($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn36($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn37($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Break(null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn38($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn39($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Continue(null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn40($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn41($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Return(null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn42($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn43($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn44($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn45($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn46($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn47($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn48($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn49($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn50($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn51($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn52($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn53($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn54($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn55($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn56($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn57($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn58($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn59($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn60($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn61($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn62($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn63($attributes) {
|
2012-09-07 19:24:44 +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 yyn64($attributes) {
|
2012-09-07 19:24:44 +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 yyn65($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = false;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn66($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = true;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn67($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn68($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn69($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn70($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn71($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = 0;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn72($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_ABSTRACT;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn73($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_FINAL;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn74($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn75($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn76($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn77($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn78($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn79($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn80($attributes) {
|
2012-09-07 19:24:44 +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 yyn81($attributes) {
|
2012-09-07 19:24:44 +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 yyn82($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn83($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn84($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn85($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn86($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn87($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn88($attributes) {
|
2012-09-07 19:24:44 +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 yyn89($attributes) {
|
2012-09-07 19:24:44 +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 yyn90($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn91($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn92($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn93($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn94($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(5-3)];
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn95($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = array();
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 18:06:11 +02:00
|
|
|
protected function yyn96($attributes) {
|
2012-09-07 19:24:44 +02: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-09-07 18:06:11 +02:00
|
|
|
protected function yyn97($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Case($this->yyastk[$this->stackPos-(4-2)], $this->yyastk[$this->stackPos-(4-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:24:44 +02:00
|
|
|
protected function yyn98($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Case(null, $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 18:06:11 +02:00
|
|
|
protected function yyn99() {
|
|
|
|
$this->yyval = $this->yyastk[$this->stackPos];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:24:44 +02:00
|
|
|
protected function yyn100() {
|
|
|
|
$this->yyval = $this->yyastk[$this->stackPos];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn101($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn102($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn103($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn104($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn105($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn106($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn107($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn108($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_ElseIf($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 yyn109($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn110($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn111($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn112($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Else($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 yyn113($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
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn114($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(2-2)], true);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn115($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
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn116($attributes) {
|
2012-09-07 19:24:44 +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 yyn117($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn118($attributes) {
|
2012-09-07 19:24:44 +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 yyn119($attributes) {
|
2012-09-07 19:24:44 +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 yyn120($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Param(substr($this->yyastk[$this->stackPos-(3-3)], 1), null, $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 yyn121($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Param(substr($this->yyastk[$this->stackPos-(5-3)], 1), $this->yyastk[$this->stackPos-(5-5)], $this->yyastk[$this->stackPos-(5-1)], $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 yyn122($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn123($attributes) {
|
2012-09-07 19:24:44 +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 yyn124($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = 'array';
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn125($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = 'callable';
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn126($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn127($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn128($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = array(new PHPParser_Node_Arg($this->yyastk[$this->stackPos-(3-2)], false, $attributes));
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn129($attributes) {
|
2012-09-07 19:24:44 +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 yyn130($attributes) {
|
2012-09-07 19:24:44 +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 yyn131($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Arg($this->yyastk[$this->stackPos-(1-1)], false, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn132($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Arg($this->yyastk[$this->stackPos-(2-2)], true, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn133($attributes) {
|
2012-09-07 19:24:44 +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 yyn134($attributes) {
|
2012-09-07 19:24:44 +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 yyn135($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->stackPos-(1-1)], 1), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn136($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($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 yyn137($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($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 yyn138($attributes) {
|
2012-09-07 19:24:44 +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 yyn139($attributes) {
|
2012-09-07 19:24:44 +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 yyn140($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn141($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn142($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn143($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn144($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn145($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn146($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn147($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn148($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn149($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn150($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn151($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn152($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn153($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn154($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn155($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn156($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn157($attributes) {
|
2012-09-07 19:24:44 +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 yyn158($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn159($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn160($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn161($attributes) {
|
2012-09-07 19:24:44 +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 yyn162($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_PUBLIC;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn163($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_PUBLIC;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn164($attributes) {
|
2012-09-07 19:24:44 +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 yyn165($attributes) {
|
2012-09-07 19:24:44 +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 yyn166($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
PHPParser_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 yyn167($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_PUBLIC;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn168($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_PROTECTED;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn169($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_PRIVATE;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn170($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_STATIC;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn171($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_ABSTRACT;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn172($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_FINAL;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn173($attributes) {
|
2012-09-07 19:24:44 +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 yyn174($attributes) {
|
2012-09-07 19:24:44 +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 yyn175($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn176($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn177($attributes) {
|
2012-09-07 19:24:44 +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 yyn178($attributes) {
|
2012-09-07 19:24:44 +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 yyn179($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn180($attributes) {
|
2012-09-07 19:24:44 +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 yyn181($attributes) {
|
2012-09-07 19:24:44 +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 yyn182($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn183($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn184($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn185($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn186($attributes) {
|
2012-09-07 19:24:44 +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 yyn187($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn188($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignPlus($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 yyn189($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignMinus($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 yyn190($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignMul($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 yyn191($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignDiv($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) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignConcat($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) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignMod($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) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignBitwiseAnd($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) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignBitwiseOr($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) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignBitwiseXor($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) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignShiftLeft($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) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignShiftRight($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) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn200($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn201($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn202($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn203($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn204($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn205($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn206($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn207($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn208($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn209($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn210($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn211($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn212($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn213($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn214($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn215($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn216($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn217($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn218($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn219($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn220($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn221($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn222($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn223($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn224($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn225($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn226($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn227($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn228($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn229($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn230($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_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 yyn231($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn232($attributes) {
|
2012-09-07 19:24:44 +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 yyn233($attributes) {
|
2012-09-07 19:24:44 +02: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 yyn234($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn235($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn236($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Isset($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 yyn237($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Empty($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 yyn238($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Include($this->yyastk[$this->stackPos-(2-2)], PHPParser_Node_Expr_Include::TYPE_INCLUDE, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn239($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Include($this->yyastk[$this->stackPos-(2-2)], PHPParser_Node_Expr_Include::TYPE_INCLUDE_ONCE, $attributes);
|
2011-10-21 11:07:06 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn240($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Eval($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-10-21 14:09:41 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn241($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Include($this->yyastk[$this->stackPos-(2-2)], PHPParser_Node_Expr_Include::TYPE_REQUIRE, $attributes);
|
2011-10-29 00:16:29 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn242($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Include($this->yyastk[$this->stackPos-(2-2)], PHPParser_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 yyn243($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn244($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn245($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn246($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn247($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn248($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn249($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn250($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn251($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn252($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn253($attributes) {
|
2012-09-07 19:43:07 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn254($attributes) {
|
2012-09-07 19:43:07 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(1-1)];
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn255($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ShellExec($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn256($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn257($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Yield(null, null, $attributes);
|
2012-04-19 00:52:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn258($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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-04-19 00:52:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn259($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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-04-19 00:52:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn260($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(3-2)];
|
2012-04-19 00:52:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn261($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(3-2)];
|
2012-05-12 14:02:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn262($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Yield($this->yyastk[$this->stackPos-(2-2)], null, $attributes);
|
2012-09-07 17:22:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn263($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Yield($this->yyastk[$this->stackPos-(4-2)], $this->yyastk[$this->stackPos-(4-4)], $attributes);
|
2012-09-07 17:22:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn264($attributes) {
|
2012-09-07 19:43:07 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Array($this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2012-09-07 17:22:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn265($attributes) {
|
2012-09-07 19:43:07 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Array($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2012-09-07 18:06:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn266($attributes) {
|
2012-09-07 19:43:07 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2012-09-07 18:06:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn267($attributes) {
|
2012-09-07 19:43:07 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(PHPParser_Node_Scalar_String::create($this->yyastk[$this->stackPos-(4-1)], $attributes), $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2012-09-07 19:24:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn268($attributes) {
|
2012-09-07 19:43:07 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn269($attributes) {
|
2012-09-07 19:43:07 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_New($this->yyastk[$this->stackPos-(3-2)], $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2012-09-07 19:24:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn270($attributes) {
|
2012-09-07 19:43:07 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_List($this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2012-09-07 19:24:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn271($attributes) {
|
2012-09-07 19:43:07 +02:00
|
|
|
$this->yyval = array();
|
2012-09-07 19:24:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn272($attributes) {
|
2012-09-07 19:43:07 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(4-3)];
|
2012-09-07 19:24:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn273($attributes) {
|
2012-09-07 19:43:07 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2012-09-07 19:24:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn274($attributes) {
|
2012-09-07 19:43:07 +02:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn275($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ClosureUse(substr($this->yyastk[$this->stackPos-(2-2)], 1), $this->yyastk[$this->stackPos-(2-1)], $attributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn276($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_FuncCall($this->yyastk[$this->stackPos-(2-1)], $this->yyastk[$this->stackPos-(2-2)], $attributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn277($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_StaticCall($this->yyastk[$this->stackPos-(4-1)], $this->yyastk[$this->stackPos-(4-3)], $this->yyastk[$this->stackPos-(4-4)], $attributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn278($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_StaticCall($this->yyastk[$this->stackPos-(6-1)], $this->yyastk[$this->stackPos-(6-4)], $this->yyastk[$this->stackPos-(6-6)], $attributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn279($attributes) {
|
2011-06-02 16:29:28 +02:00
|
|
|
|
2012-09-07 19:24:44 +02:00
|
|
|
if ($this->yyastk[$this->stackPos-(2-1)] instanceof PHPParser_Node_Expr_StaticPropertyFetch) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_StaticCall($this->yyastk[$this->stackPos-(2-1)]->class, new PHPParser_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 PHPParser_Node_Expr_ArrayDimFetch) {
|
|
|
|
$tmp = $this->yyastk[$this->stackPos-(2-1)];
|
2011-08-04 12:16:31 +02:00
|
|
|
while ($tmp->var instanceof PHPParser_Node_Expr_ArrayDimFetch) {
|
|
|
|
$tmp = $tmp->var;
|
2011-06-02 16:29:28 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_StaticCall($tmp->var->class, $this->yyastk[$this->stackPos-(2-1)], $this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2012-04-29 23:32:09 +02:00
|
|
|
$tmp->var = new PHPParser_Node_Expr_Variable($tmp->var->name, $attributes);
|
2011-06-02 16:29:28 +02:00
|
|
|
} else {
|
|
|
|
throw new Exception;
|
|
|
|
}
|
|
|
|
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn280($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn281($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn282($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Name('static', $attributes);
|
2011-10-21 11:50:03 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn283($attributes) {
|
2012-05-12 14:02:35 +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 yyn284($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Name($this->yyastk[$this->stackPos-(1-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn285($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Name_FullyQualified($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 yyn286($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Name_Relative($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 yyn287($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-09-07 19:43:07 +02:00
|
|
|
protected function yyn288($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-09-07 19:43:07 +02: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
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02: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
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02: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
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn292($attributes) {
|
2012-05-12 14:02:35 +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 yyn293() {
|
2012-05-12 14:02:35 +02: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 yyn294($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn295($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn296($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn297($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn298($attributes) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn299($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn300($attributes) {
|
2012-09-07 19:24:44 +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 yyn301($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn302($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = array(PHPParser_Node_Scalar_String::parseEscapeSequences($this->yyastk[$this->stackPos-(1-1)], '`'));
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn303($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
foreach ($this->yyastk[$this->stackPos-(1-1)] as &$s) { if (is_string($s)) { $s = PHPParser_Node_Scalar_String::parseEscapeSequences($s, '`'); } }; $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 yyn304($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn305($attributes) {
|
2012-09-07 19:24:44 +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 yyn306($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_LNumber(PHPParser_Node_Scalar_LNumber::parse($this->yyastk[$this->stackPos-(1-1)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn307($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_DNumber(PHPParser_Node_Scalar_DNumber::parse($this->yyastk[$this->stackPos-(1-1)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn308($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = PHPParser_Node_Scalar_String::create($this->yyastk[$this->stackPos-(1-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn309($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_LineConst($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn310($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_FileConst($attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn311($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_DirConst($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn312($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_ClassConst($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn313($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_TraitConst($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn314($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_MethodConst($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn315($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_FuncConst($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn316($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_NSConst($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn317($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_String(PHPParser_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
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn318($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_String('', $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn319($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ConstFetch($this->yyastk[$this->stackPos-(1-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn320($attributes) {
|
2012-05-12 14:02:35 +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 yyn321($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ClassConstFetch($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 yyn322($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_UnaryPlus($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn323($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_UnaryMinus($this->yyastk[$this->stackPos-(2-2)], $attributes);
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn324($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Array($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 yyn325($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Array($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn326($attributes) {
|
2012-05-12 14:02:35 +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 yyn327($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ClassConstFetch($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 yyn328($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
foreach ($this->yyastk[$this->stackPos-(3-2)] as &$s) { if (is_string($s)) { $s = PHPParser_Node_Scalar_String::parseEscapeSequences($s, '"'); } }; $this->yyval = new PHPParser_Node_Scalar_Encapsed($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn329($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
foreach ($this->yyastk[$this->stackPos-(3-2)] as &$s) { if (is_string($s)) { $s = PHPParser_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 PHPParser_Node_Scalar_Encapsed($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn330($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn331($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn332() {
|
2012-05-05 17:34:27 +02: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 yyn333() {
|
2012-05-12 14:02:35 +02: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 yyn334($attributes) {
|
2012-09-07 18:06:11 +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-09-07 19:43:07 +02:00
|
|
|
protected function yyn335($attributes) {
|
2012-09-07 18:06:11 +02: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 yyn336($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn337($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn338($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-09-07 19:43:07 +02:00
|
|
|
protected function yyn339($attributes) {
|
2012-05-12 14:02:35 +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 yyn340($attributes) {
|
2012-09-07 18:06:11 +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 yyn341($attributes) {
|
2012-09-07 18:06:11 +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 yyn342($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn343($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn344($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn345($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn346($attributes) {
|
2012-09-07 19:24:44 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn347($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_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) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn349($attributes) {
|
2012-05-12 14:02:35 +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 yyn350($attributes) {
|
2012-09-07 18:06:11 +02: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 yyn351($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-09-07 19:43:07 +02:00
|
|
|
protected function yyn352($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn353($attributes) {
|
2012-09-07 18:06:11 +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 yyn354($attributes) {
|
2012-05-12 14:02:35 +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 yyn355($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn356($attributes) {
|
2012-09-07 18:06:11 +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 yyn357($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn358($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn359($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn360($attributes) {
|
2012-05-12 14:02:35 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn361($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn362($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn363($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn364($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_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 yyn365($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn366($attributes) {
|
2012-09-07 18:06:11 +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 yyn367($attributes) {
|
2012-05-12 14:02:35 +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 yyn368($attributes) {
|
2012-09-07 18:06:11 +02: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 yyn369($attributes) {
|
2012-09-07 18:06:11 +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 yyn370($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyastk[$this->stackPos-(3-1)][] = $this->yyastk[$this->stackPos-(3-3)]; $this->yyval = $this->yyastk[$this->stackPos-(3-1)];
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn371($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = array($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) {
|
2012-09-07 18:06:11 +02: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 yyn373($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(4-3)];
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn374($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = null;
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn375($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = array();
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn376($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn377($attributes) {
|
2012-09-07 18:06:11 +02: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 yyn378($attributes) {
|
2012-09-07 18:06:11 +02: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 yyn379($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->stackPos-(3-3)], $this->yyastk[$this->stackPos-(3-1)], false, $attributes);
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn380($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->stackPos-(1-1)], null, false, $attributes);
|
2011-05-31 17:24:01 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn381($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->stackPos-(4-4)], $this->yyastk[$this->stackPos-(4-1)], true, $attributes);
|
2011-05-31 17:24:01 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn382($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->stackPos-(2-2)], null, true, $attributes);
|
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) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyastk[$this->stackPos-(2-1)][] = $this->yyastk[$this->stackPos-(2-2)]; $this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-10-21 11:07:06 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn384($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyastk[$this->stackPos-(2-1)][] = $this->yyastk[$this->stackPos-(2-2)]; $this->yyval = $this->yyastk[$this->stackPos-(2-1)];
|
2011-10-21 14:09:41 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn385($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(1-1)]);
|
2011-10-29 00:16:29 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn386($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->stackPos-(2-1)], $this->yyastk[$this->stackPos-(2-2)]);
|
2011-11-04 07:40:48 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn387($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->stackPos-(1-1)], 1), $attributes);
|
2011-11-04 07:40:48 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn388($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->stackPos-(4-1)], 1), $attributes), $this->yyastk[$this->stackPos-(4-3)], $attributes);
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn389($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_PropertyFetch(new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->stackPos-(3-1)], 1), $attributes), $this->yyastk[$this->stackPos-(3-3)], $attributes);
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn390($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn391($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($this->yyastk[$this->stackPos-(3-2)], $attributes);
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn392($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(new PHPParser_Node_Expr_Variable($this->yyastk[$this->stackPos-(6-2)], $attributes), $this->yyastk[$this->stackPos-(6-4)], $attributes);
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn393($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->stackPos-(3-2)];
|
2012-05-12 14:02:35 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn394($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_String($this->yyastk[$this->stackPos-(1-1)], $attributes);
|
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn395($attributes) {
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_String($this->yyastk[$this->stackPos-(1-1)], $attributes);
|
|
|
|
}
|
|
|
|
|
2012-09-07 19:43:07 +02:00
|
|
|
protected function yyn396($attributes) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->yyval = new PHPParser_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
|
|
|
}
|