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;
|
|
|
|
const TOKEN_INVALID = 149;
|
|
|
|
|
|
|
|
const TOKEN_MAP_SIZE = 384;
|
|
|
|
|
2011-12-04 16:52:43 +01:00
|
|
|
const YYLAST = 913;
|
2012-04-19 00:52:44 +02:00
|
|
|
const YY2TBLSTATE = 327;
|
|
|
|
const YYGLAST = 414;
|
|
|
|
const YYNLSTATES = 543;
|
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;
|
|
|
|
const T_PLUS_EQUAL = 266;
|
|
|
|
const T_MINUS_EQUAL = 267;
|
|
|
|
const T_MUL_EQUAL = 268;
|
|
|
|
const T_DIV_EQUAL = 269;
|
|
|
|
const T_CONCAT_EQUAL = 270;
|
|
|
|
const T_MOD_EQUAL = 271;
|
|
|
|
const T_AND_EQUAL = 272;
|
|
|
|
const T_OR_EQUAL = 273;
|
|
|
|
const T_XOR_EQUAL = 274;
|
|
|
|
const T_SL_EQUAL = 275;
|
|
|
|
const T_SR_EQUAL = 276;
|
|
|
|
const T_BOOLEAN_OR = 277;
|
|
|
|
const T_BOOLEAN_AND = 278;
|
|
|
|
const T_IS_EQUAL = 279;
|
|
|
|
const T_IS_NOT_EQUAL = 280;
|
|
|
|
const T_IS_IDENTICAL = 281;
|
|
|
|
const T_IS_NOT_IDENTICAL = 282;
|
|
|
|
const T_IS_SMALLER_OR_EQUAL = 283;
|
|
|
|
const T_IS_GREATER_OR_EQUAL = 284;
|
|
|
|
const T_SL = 285;
|
|
|
|
const T_SR = 286;
|
|
|
|
const T_INSTANCEOF = 287;
|
|
|
|
const T_INC = 288;
|
|
|
|
const T_DEC = 289;
|
|
|
|
const T_INT_CAST = 290;
|
|
|
|
const T_DOUBLE_CAST = 291;
|
|
|
|
const T_STRING_CAST = 292;
|
|
|
|
const T_ARRAY_CAST = 293;
|
|
|
|
const T_OBJECT_CAST = 294;
|
|
|
|
const T_BOOL_CAST = 295;
|
|
|
|
const T_UNSET_CAST = 296;
|
|
|
|
const T_NEW = 297;
|
|
|
|
const T_CLONE = 298;
|
|
|
|
const T_EXIT = 299;
|
|
|
|
const T_IF = 300;
|
|
|
|
const T_ELSEIF = 301;
|
|
|
|
const T_ELSE = 302;
|
|
|
|
const T_ENDIF = 303;
|
|
|
|
const T_LNUMBER = 304;
|
|
|
|
const T_DNUMBER = 305;
|
|
|
|
const T_STRING = 306;
|
|
|
|
const T_STRING_VARNAME = 307;
|
|
|
|
const T_VARIABLE = 308;
|
|
|
|
const T_NUM_STRING = 309;
|
|
|
|
const T_INLINE_HTML = 310;
|
|
|
|
const T_CHARACTER = 311;
|
|
|
|
const T_BAD_CHARACTER = 312;
|
|
|
|
const T_ENCAPSED_AND_WHITESPACE = 313;
|
|
|
|
const T_CONSTANT_ENCAPSED_STRING = 314;
|
|
|
|
const T_ECHO = 315;
|
|
|
|
const T_DO = 316;
|
|
|
|
const T_WHILE = 317;
|
|
|
|
const T_ENDWHILE = 318;
|
|
|
|
const T_FOR = 319;
|
|
|
|
const T_ENDFOR = 320;
|
|
|
|
const T_FOREACH = 321;
|
|
|
|
const T_ENDFOREACH = 322;
|
|
|
|
const T_DECLARE = 323;
|
|
|
|
const T_ENDDECLARE = 324;
|
|
|
|
const T_AS = 325;
|
|
|
|
const T_SWITCH = 326;
|
|
|
|
const T_ENDSWITCH = 327;
|
|
|
|
const T_CASE = 328;
|
|
|
|
const T_DEFAULT = 329;
|
|
|
|
const T_BREAK = 330;
|
|
|
|
const T_CONTINUE = 331;
|
|
|
|
const T_GOTO = 332;
|
|
|
|
const T_FUNCTION = 333;
|
|
|
|
const T_CONST = 334;
|
|
|
|
const T_RETURN = 335;
|
|
|
|
const T_TRY = 336;
|
|
|
|
const T_CATCH = 337;
|
|
|
|
const T_THROW = 338;
|
|
|
|
const T_USE = 339;
|
2011-10-30 12:03:29 +01:00
|
|
|
const T_INSTEADOF = 340;
|
|
|
|
const T_GLOBAL = 341;
|
|
|
|
const T_STATIC = 342;
|
|
|
|
const T_ABSTRACT = 343;
|
|
|
|
const T_FINAL = 344;
|
|
|
|
const T_PRIVATE = 345;
|
|
|
|
const T_PROTECTED = 346;
|
|
|
|
const T_PUBLIC = 347;
|
|
|
|
const T_VAR = 348;
|
|
|
|
const T_UNSET = 349;
|
|
|
|
const T_ISSET = 350;
|
|
|
|
const T_EMPTY = 351;
|
|
|
|
const T_HALT_COMPILER = 352;
|
|
|
|
const T_CLASS = 353;
|
|
|
|
const T_TRAIT = 354;
|
|
|
|
const T_INTERFACE = 355;
|
|
|
|
const T_EXTENDS = 356;
|
|
|
|
const T_IMPLEMENTS = 357;
|
|
|
|
const T_OBJECT_OPERATOR = 358;
|
|
|
|
const T_DOUBLE_ARROW = 359;
|
|
|
|
const T_LIST = 360;
|
|
|
|
const T_ARRAY = 361;
|
|
|
|
const T_CALLABLE = 362;
|
|
|
|
const T_CLASS_C = 363;
|
|
|
|
const T_TRAIT_C = 364;
|
|
|
|
const T_METHOD_C = 365;
|
|
|
|
const T_FUNC_C = 366;
|
|
|
|
const T_LINE = 367;
|
|
|
|
const T_FILE = 368;
|
|
|
|
const T_COMMENT = 369;
|
|
|
|
const T_DOC_COMMENT = 370;
|
|
|
|
const T_OPEN_TAG = 371;
|
|
|
|
const T_OPEN_TAG_WITH_ECHO = 372;
|
|
|
|
const T_CLOSE_TAG = 373;
|
|
|
|
const T_WHITESPACE = 374;
|
|
|
|
const T_START_HEREDOC = 375;
|
|
|
|
const T_END_HEREDOC = 376;
|
|
|
|
const T_DOLLAR_OPEN_CURLY_BRACES = 377;
|
|
|
|
const T_CURLY_OPEN = 378;
|
|
|
|
const T_PAAMAYIM_NEKUDOTAYIM = 379;
|
|
|
|
const T_NAMESPACE = 380;
|
|
|
|
const T_NS_C = 381;
|
|
|
|
const T_DIR = 382;
|
|
|
|
const T_NS_SEPARATOR = 383;
|
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",
|
|
|
|
"'='",
|
|
|
|
"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",
|
|
|
|
"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-05-27 21:15:38 +02:00
|
|
|
"']'",
|
2011-10-21 11:07:06 +02:00
|
|
|
"'`'",
|
2011-05-27 21:15:38 +02:00
|
|
|
"'\"'"
|
2011-04-18 19:02:30 +02:00
|
|
|
, "???"
|
|
|
|
);
|
|
|
|
|
2012-04-29 22:57:46 +02:00
|
|
|
/* @var Map which translates lexer tokens to internal tokens */
|
|
|
|
protected static $translate = array(
|
2011-10-30 12:03:29 +01:00
|
|
|
0, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 47, 148, 149, 145, 46, 30, 149,
|
|
|
|
143, 144, 44, 41, 7, 42, 43, 45, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 25, 140,
|
|
|
|
35, 12, 37, 24, 59, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 60, 149, 146, 29, 149, 147, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 141, 28, 142, 49, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
|
|
|
|
149, 149, 149, 149, 149, 149, 1, 2, 3, 4,
|
2011-04-18 19:02:30 +02:00
|
|
|
5, 6, 8, 9, 10, 11, 13, 14, 15, 16,
|
|
|
|
17, 18, 19, 20, 21, 22, 23, 26, 27, 31,
|
|
|
|
32, 33, 34, 36, 38, 39, 40, 48, 50, 51,
|
|
|
|
52, 53, 54, 55, 56, 57, 58, 61, 62, 63,
|
|
|
|
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
|
2011-10-30 12:03:29 +01:00
|
|
|
74, 149, 149, 75, 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,
|
|
|
|
122, 123, 124, 125, 126, 127, 128, 129, 130, 149,
|
|
|
|
149, 149, 149, 149, 149, 131, 132, 133, 134, 135,
|
|
|
|
136, 137, 138, 139
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yyaction = array(
|
2012-04-19 00:52:44 +02:00
|
|
|
61, 62, 362, 63, 64,-32766,-32766,-32766, 508, 65,
|
|
|
|
707, 708, 709, 706, 705, 704,-32766,-32766,-32766,-32766,
|
2011-12-04 17:07:17 +01:00
|
|
|
-32766,-32766, 132,-32766,-32766,-32766,-32766,-32766,-32767,-32767,
|
2012-04-19 00:52:44 +02:00
|
|
|
-32767,-32767,-32766, 350,-32766,-32766,-32766,-32766,-32766, 66,
|
|
|
|
67, 334, 662, 663, 275, 68, 547, 69, 232, 233,
|
|
|
|
70, 71, 72, 73, 74, 75, 76, 77, 30, 246,
|
|
|
|
78, 335, 363, -112, 0, 468, 831, 832, 364, 640,
|
|
|
|
888, 445, 589, 126, 833, 53, 27, 365, 294, 366,
|
|
|
|
686, 367, 919, 368, 921, 920, 369,-32766,-32766,-32766,
|
|
|
|
42, 43, 370, 338, 41, 44, 371, 336, 79, 360,
|
|
|
|
297, 292, 293,-32766, 916,-32766,-32766, 372, 373, 374,
|
|
|
|
375, 376, 390, 227, 348, 337, 572, 612, 377, 378,
|
|
|
|
379, 380, 843, 837, 838, 839, 840, 834, 835, 253,
|
|
|
|
-32766, 87, 88, 89, 390, 841, 836, 337, 596, 518,
|
|
|
|
128, 80, 129, 273, 697, 257, 261, 47, 888, 90,
|
2011-11-21 18:43:35 +01:00
|
|
|
91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
|
|
|
|
101, 102, 103, 104, 105, 106, 107, 108, 109, 110,
|
2012-04-19 00:52:44 +02:00
|
|
|
21, 247, 882, 108, 109, 110, 238, 247, 797,-32766,
|
|
|
|
310,-32766,-32766,-32766, 641, 547,-32766,-32766,-32766,-32766,
|
|
|
|
56, 352,-32766,-32766,-32766, 58,-32766,-32766,-32766,-32766,
|
2011-12-04 16:52:43 +01:00
|
|
|
-32766, 55,-32766,-32766,-32766,-32766,-32766,-32766,-32766,-32766,
|
2012-04-19 00:52:44 +02:00
|
|
|
-32766, 556,-32766,-32766, 517,-32766, 547, 672,-32766, 389,
|
|
|
|
-32766, 273, 199,-32766,-32766,-32766,-32766,-32766, 40,-32766,
|
|
|
|
234,-32766, 681, 586,-32766,-32766,-32766,-32766,-32766,-32766,
|
|
|
|
-32766, 46, 236,-32766,-32766, 281,-32766, 587, 347,-32766,
|
|
|
|
389,-32766, 345, 332, 520,-32766,-32766,-32766, 271, 909,
|
|
|
|
262, 237, 892, 909,-32766, 436, 59, 699, 357, 206,
|
|
|
|
547, 123, 600, 35,-32766, 332, 124,-32766,-32766,-32766,
|
|
|
|
271,-32766, 122,-32766, 691,-32766,-32766,-32766,-32766, 699,
|
|
|
|
228, 22,-32766,-32766,-32766,-32766, 239,-32766,-32766, 610,
|
|
|
|
-32766, 547, 134,-32766, 389,-32766, 461, 353,-32766,-32766,
|
|
|
|
-32766,-32766,-32766, 252,-32766, 226,-32766, 843, 541,-32766,
|
|
|
|
854, 611, 202,-32766,-32766,-32766, 259, 280,-32766,-32766,
|
|
|
|
135,-32766, 853, 130,-32766, 389, 129, 200, 332, 201,
|
|
|
|
-32766,-32766,-32766, 271,-32766,-32766,-32766, 125, 526,-32766,
|
|
|
|
136, 299, 699, 497, 498, 547, 105, 106, 107,-32766,
|
|
|
|
488, 28,-32766,-32766,-32766, 207,-32766, 524,-32766, 537,
|
|
|
|
-32766,-32766,-32766,-32766, 662, 663, 538,-32766,-32766,-32766,
|
|
|
|
-32766, 531,-32766,-32766, 609,-32766, 547, 426,-32766, 389,
|
|
|
|
-32766, 527, 133,-32766,-32766,-32766,-32766,-32766, 607,-32766,
|
|
|
|
247,-32766, 685, 534,-32766, 696, 542, 240,-32766,-32766,
|
|
|
|
-32766, 553, 522,-32766,-32766, 54,-32766, 60, 57,-32766,
|
|
|
|
389, 246, 800, 279, 563,-32766,-32766,-32766, 505, 914,
|
|
|
|
417, 470, 561, 548,-32766, 846, 403, 272, 501, 693,
|
|
|
|
547, 318, 547, 516,-32766, 504, 416,-32766,-32766,-32766,
|
|
|
|
415,-32766, 404,-32766, 402,-32766,-32766,-32766,-32766, 401,
|
|
|
|
824, 346,-32766,-32766,-32766,-32766, 344,-32766,-32766, -155,
|
|
|
|
-32766, 547, 484,-32766, 389,-32766, 486, 503,-32766,-32766,
|
|
|
|
-32766,-32766,-32766, 909,-32766, 278,-32766, 492, 491,-32766,
|
|
|
|
412, 482, 274,-32766,-32766,-32766, 453, 336,-32766,-32766,
|
|
|
|
243,-32766, 229, -152,-32766, 389, 269, 372, 373, 359,
|
|
|
|
-32766,-32766,-32766, 343, 614,-32766, 572, 612, 377, 378,
|
|
|
|
265, 547, 613, 258, 842,-32766, -331, 585,-32766,-32766,
|
|
|
|
-32766, 270,-32766, 342,-32766, 682,-32766, 260, 0,-32766,
|
|
|
|
205, 582,-32766,-32766,-32766,-32766,-32766, 49,-32766,-32766,
|
|
|
|
423,-32766, 547, 0,-32766, 389,-32766, -265, 512,-32766,
|
|
|
|
-32766,-32766,-32766,-32766, 469,-32766, -274,-32766, -273, 312,
|
|
|
|
-32766, 264, 583, 36,-32766,-32766,-32766, 408, 336,-32766,
|
|
|
|
-32766, 345,-32766, 51, 581,-32766, 389, 590, 372, 373,
|
|
|
|
52,-32766,-32766,-32766, 557, 530,-32766, 572, 612, 377,
|
|
|
|
378, 599, 547, 591, 689, 577,-32766, 598, 643,-32766,
|
|
|
|
-32766,-32766, 628,-32766, 634,-32766, 529,-32766, 203, 204,
|
|
|
|
-32766, 690, 580,-32766,-32766,-32766,-32766, 692, 635,-32766,
|
|
|
|
-32766, 575,-32766, 626, 588,-32766, 389, 197, 624, 883,
|
|
|
|
533, 86, 521,-32766, 127, 831, 832, 540, 536,-32766,
|
|
|
|
532, 528, 523, 833, 48, 111, 112, 113, 114, 115,
|
|
|
|
116, 117, 118, 119, 120, 121, 519, 34, 893, 336,
|
|
|
|
329, 674, 584,-32766, 33, 291, 336, 329, 822, 372,
|
|
|
|
373, 918, 291, 917, 632, 633, 372, 373, 552, 612,
|
|
|
|
377, 378, 736, 738, 885, 552, 612, 377, 378, 873,
|
|
|
|
450, 887, 837, 838, 839, 840, 834, 835, 319, 889,
|
|
|
|
277, 915, 477, 791, 841, 836, 555, 277, 336, 329,
|
|
|
|
-32766, 32,-32766, 554, 291, 31, 330, 137, 372, 373,
|
|
|
|
328, 138, 276, 251, 250, 249, 248, 552, 612, 377,
|
2011-12-04 17:07:17 +01:00
|
|
|
378,-32767,-32767,-32767,-32767, 103, 104, 105, 106, 107,
|
2012-04-19 00:52:44 +02:00
|
|
|
336, 235, 198,-32766, 336, 131, 85, 84, 83, 277,
|
|
|
|
372, 373, -331, 224, 372, 373, 772, 336, 82, 572,
|
|
|
|
612, 377, 378, 572, 612, 377, 378, 372, 373, 225,
|
|
|
|
231, 37, 38, 336, 81, 0, 572, 612, 377, 378,
|
|
|
|
50, 45, 230, 372, 373, 39, 336, 794, 489, 884,
|
|
|
|
336, 793, 572, 612, 377, 378, 372, 373, 454, 898,
|
|
|
|
372, 373, 456, 336, 608, 572, 612, 377, 378, 572,
|
|
|
|
612, 377, 378, 372, 373, 515, 825, 776, 769, 514,
|
|
|
|
573, 506, 572, 612, 377, 378, 479, 547, 336, 888,
|
|
|
|
803, 849, 336, 331, 870, 821, 802, 603, 372, 373,
|
|
|
|
913, 830, 372, 373,-32766,-32766,-32766, 572, 612, 377,
|
|
|
|
378, 572, 612, 377, 378, 871, 805, 804, 801, 789,
|
|
|
|
-32766, 807,-32766,-32766,-32766,-32766, 773, 507, 481, 429,
|
|
|
|
358, 354, 300, 25, 24, 23, 20, 0, 26, 29,
|
|
|
|
298, 0, 0, 0, 850, 867, 487, 868, 872, 886,
|
|
|
|
806, 790, 0, 390, 0, 0, 337, 0, 0, 0,
|
|
|
|
339, 0, 273
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yycheck = array(
|
2011-11-21 18:43:35 +01:00
|
|
|
2, 3, 4, 5, 6, 8, 9, 10, 70, 11,
|
|
|
|
104, 105, 106, 107, 108, 109, 8, 9, 10, 8,
|
|
|
|
9, 24, 60, 26, 27, 28, 29, 30, 31, 32,
|
|
|
|
33, 34, 24, 7, 26, 27, 28, 29, 30, 41,
|
|
|
|
42, 7, 123, 124, 7, 47, 70, 49, 50, 51,
|
2011-10-21 11:07:06 +02:00
|
|
|
52, 53, 54, 55, 56, 57, 58, 59, 60, 61,
|
2011-11-21 18:43:35 +01:00
|
|
|
62, 63, 64, 144, 0, 75, 68, 69, 70, 25,
|
|
|
|
72, 70, 74, 7, 76, 77, 78, 79, 7, 81,
|
|
|
|
142, 83, 70, 85, 72, 73, 88, 8, 9, 10,
|
|
|
|
92, 93, 94, 95, 7, 97, 98, 95, 100, 7,
|
|
|
|
7, 103, 104, 24, 142, 26, 27, 105, 106, 111,
|
|
|
|
112, 113, 136, 7, 7, 139, 114, 115, 116, 117,
|
|
|
|
122, 123, 132, 125, 126, 127, 128, 129, 130, 131,
|
|
|
|
8, 8, 9, 10, 136, 137, 138, 139, 140, 141,
|
2011-12-04 17:07:17 +01:00
|
|
|
25, 143, 141, 145, 142, 147, 148, 24, 72, 26,
|
2011-10-30 12:03:29 +01:00
|
|
|
27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
|
|
|
|
37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
|
2011-11-21 18:43:35 +01:00
|
|
|
144, 48, 72, 44, 45, 46, 30, 48, 144, 64,
|
|
|
|
72, 8, 9, 10, 140, 70, 8, 9, 10, 74,
|
|
|
|
60, 25, 77, 78, 79, 60, 81, 24, 83, 26,
|
2011-10-30 12:03:29 +01:00
|
|
|
85, 60, 24, 88, 26, 27, 28, 92, 93, 94,
|
2011-11-21 18:43:35 +01:00
|
|
|
64, 140, 97, 98, 70, 100, 70, 72, 103, 104,
|
2011-12-04 17:07:17 +01:00
|
|
|
74, 145, 7, 77, 78, 79, 111, 81, 7, 83,
|
2011-11-21 18:43:35 +01:00
|
|
|
30, 85, 140, 140, 88, 8, 9, 10, 92, 93,
|
|
|
|
94, 133, 134, 97, 98, 145, 100, 140, 7, 103,
|
2011-12-04 17:07:17 +01:00
|
|
|
104, 24, 139, 96, 141, 140, 141, 111, 101, 75,
|
2011-12-04 16:52:43 +01:00
|
|
|
75, 30, 70, 75, 64, 70, 60, 110, 121, 12,
|
2011-12-04 17:07:17 +01:00
|
|
|
70, 141, 25, 143, 74, 96, 141, 77, 78, 79,
|
2011-11-21 18:43:35 +01:00
|
|
|
101, 81, 141, 83, 140, 85, 140, 141, 88, 110,
|
2011-12-04 16:52:43 +01:00
|
|
|
145, 144, 92, 93, 94, 64, 7, 97, 98, 142,
|
2011-12-04 17:07:17 +01:00
|
|
|
100, 70, 141, 103, 104, 74, 145, 141, 77, 78,
|
|
|
|
79, 111, 81, 7, 83, 30, 85, 132, 25, 88,
|
|
|
|
132, 142, 12, 92, 93, 94, 120, 60, 97, 98,
|
|
|
|
12, 100, 148, 141, 103, 104, 141, 12, 96, 12,
|
2011-12-04 16:52:43 +01:00
|
|
|
140, 141, 111, 101, 8, 9, 10, 141, 25, 64,
|
2011-12-04 17:07:17 +01:00
|
|
|
90, 91, 110, 65, 66, 70, 41, 42, 43, 74,
|
2012-04-19 00:52:44 +02:00
|
|
|
65, 66, 77, 78, 79, 12, 81, 25, 83, 25,
|
2011-12-04 17:07:17 +01:00
|
|
|
85, 140, 141, 88, 123, 124, 25, 92, 93, 94,
|
|
|
|
64, 25, 97, 98, 142, 100, 70, 120, 103, 104,
|
2012-04-19 00:52:44 +02:00
|
|
|
74, 25, 25, 77, 78, 79, 111, 81, 30, 83,
|
2011-12-04 17:07:17 +01:00
|
|
|
48, 85, 140, 141, 88, 140, 141, 30, 92, 93,
|
2012-04-19 00:52:44 +02:00
|
|
|
94, 140, 141, 97, 98, 60, 100, 60, 60, 103,
|
|
|
|
104, 61, 72, 75, 70, 140, 141, 111, 67, 70,
|
|
|
|
87, 99, 70, 70, 64, 70, 72, 102, 89, 70,
|
|
|
|
70, 71, 70, 70, 74, 70, 70, 77, 78, 79,
|
2011-12-04 17:07:17 +01:00
|
|
|
70, 81, 70, 83, 70, 85, 140, 141, 88, 70,
|
2012-04-19 00:52:44 +02:00
|
|
|
144, 70, 92, 93, 94, 64, 70, 97, 98, 72,
|
|
|
|
100, 70, 72, 103, 104, 74, 72, 72, 77, 78,
|
|
|
|
79, 111, 81, 75, 83, 75, 85, 89, 86, 88,
|
|
|
|
79, 101, 118, 92, 93, 94, 87, 95, 97, 98,
|
|
|
|
87, 100, 87, 87, 103, 104, 118, 105, 106, 95,
|
|
|
|
140, 141, 111, 95, 115, 64, 114, 115, 116, 117,
|
|
|
|
135, 70, 115, 120, 132, 74, 120, 140, 77, 78,
|
|
|
|
79, 119, 81, 139, 83, 140, 85, 120, -1, 88,
|
|
|
|
121, 140, 141, 92, 93, 94, 64, 121, 97, 98,
|
|
|
|
122, 100, 70, -1, 103, 104, 74, 135, 135, 77,
|
|
|
|
78, 79, 111, 81, 135, 83, 135, 85, 135, 135,
|
|
|
|
88, 135, 140, 143, 92, 93, 94, 139, 95, 97,
|
|
|
|
98, 139, 100, 140, 140, 103, 104, 140, 105, 106,
|
|
|
|
140, 140, 141, 111, 140, 140, 64, 114, 115, 116,
|
2011-12-04 16:52:43 +01:00
|
|
|
117, 140, 70, 140, 140, 140, 74, 140, 140, 77,
|
|
|
|
78, 79, 140, 81, 140, 83, 140, 85, 41, 42,
|
|
|
|
88, 140, 140, 141, 92, 93, 94, 140, 140, 97,
|
2012-04-19 00:52:44 +02:00
|
|
|
98, 140, 100, 140, 140, 103, 104, 60, 140, 142,
|
|
|
|
141, 141, 141, 111, 141, 68, 69, 141, 141, 72,
|
2011-12-04 16:52:43 +01:00
|
|
|
141, 141, 141, 76, 12, 13, 14, 15, 16, 17,
|
2012-04-19 00:52:44 +02:00
|
|
|
18, 19, 20, 21, 22, 23, 141, 143, 142, 95,
|
2011-12-04 17:07:17 +01:00
|
|
|
96, 142, 140, 141, 143, 101, 95, 96, 142, 105,
|
2011-12-04 16:52:43 +01:00
|
|
|
106, 142, 101, 142, 142, 142, 105, 106, 114, 115,
|
|
|
|
116, 117, 50, 51, 142, 114, 115, 116, 117, 142,
|
|
|
|
123, 142, 125, 126, 127, 128, 129, 130, 131, 142,
|
2012-04-19 00:52:44 +02:00
|
|
|
136, 142, 142, 147, 137, 138, 142, 136, 95, 96,
|
2011-12-04 17:07:17 +01:00
|
|
|
143, 143, 145, 142, 101, 143, 143, 143, 105, 106,
|
2011-12-04 16:52:43 +01:00
|
|
|
143, 143, 143, 143, 143, 143, 143, 114, 115, 116,
|
|
|
|
117, 35, 36, 37, 38, 39, 40, 41, 42, 43,
|
|
|
|
95, 143, 143, 143, 95, 143, 143, 143, 143, 136,
|
|
|
|
105, 106, 120, 143, 105, 106, 144, 95, 143, 114,
|
|
|
|
115, 116, 117, 114, 115, 116, 117, 105, 106, 143,
|
|
|
|
143, 143, 143, 95, 143, -1, 114, 115, 116, 117,
|
2012-04-19 00:52:44 +02:00
|
|
|
143, 143, 143, 105, 106, 143, 95, 142, 80, 146,
|
2011-12-04 17:07:17 +01:00
|
|
|
95, 142, 114, 115, 116, 117, 105, 106, 144, 144,
|
|
|
|
105, 106, 144, 95, 142, 114, 115, 116, 117, 114,
|
|
|
|
115, 116, 117, 105, 106, 82, 144, 144, 144, 144,
|
2011-12-04 16:52:43 +01:00
|
|
|
142, 84, 114, 115, 116, 117, 144, 70, 95, 72,
|
|
|
|
144, 144, 95, 142, 144, 146, 144, 142, 105, 106,
|
|
|
|
146, 144, 105, 106, 8, 9, 10, 114, 115, 116,
|
|
|
|
117, 114, 115, 116, 117, 144, 144, 144, 144, 144,
|
|
|
|
24, 104, 26, 27, 28, 29, 144, 144, 144, 144,
|
|
|
|
144, 144, 144, 144, 144, 144, 144, -1, 144, 144,
|
2012-04-19 00:52:44 +02:00
|
|
|
144, -1, -1, -1, 146, 146, 146, 146, 146, 146,
|
|
|
|
146, 146, -1, 136, -1, -1, 139, -1, -1, -1,
|
2011-12-04 16:52:43 +01:00
|
|
|
143, -1, 145
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yybase = array(
|
2011-12-04 16:52:43 +01:00
|
|
|
0, 574, 581, 623, 688, 701, 718, 402, 747, 672,
|
|
|
|
659, 655, 743, 705, 2, 483, 483, 483, 483, 483,
|
2012-04-19 00:52:44 +02:00
|
|
|
323, 366, 356, 356, 351, 356, 342, -2, -2, -2,
|
2011-12-04 16:52:43 +01:00
|
|
|
200, 200, 231, 231, 231, 231, 231, 231, 231, 231,
|
|
|
|
200, 231, 482, 401, 532, 316, 370, 115, 285, 146,
|
|
|
|
451, 451, 451, 451, 451, 451, 451, 451, 451, 451,
|
|
|
|
451, 451, 451, 451, 451, 451, 451, 451, 451, 451,
|
|
|
|
451, 451, 451, 451, 451, 451, 451, 451, 451, 451,
|
|
|
|
451, 451, 451, 451, 451, 451, 451, 451, 451, 451,
|
|
|
|
451, 451, 451, 451, 451, 451, 451, 451, 451, 451,
|
|
|
|
451, 451, 451, 451, 451, 451, 451, 451, 451, 451,
|
|
|
|
451, 451, 451, 451, 451, 451, 451, 451, 451, 451,
|
|
|
|
451, 451, 451, 451, 451, 451, 451, 451, 451, 451,
|
2011-12-04 17:07:17 +01:00
|
|
|
451, 451, 451, 451, 451, 451, 451, 451, 451, 44,
|
2012-04-19 00:52:44 +02:00
|
|
|
447, 426, 444, 432, 387, 467, 684, 683, 682, 744,
|
|
|
|
742, 415, 746, 569, 567, 367, 559, 557, 552, 536,
|
|
|
|
529, 570, 526, 692, 750, 497, 745, 685, 123, 123,
|
2011-12-04 17:07:17 +01:00
|
|
|
123, 123, 123, 123, 123, 123, 123, 122, 11, 336,
|
|
|
|
336, 336, 336, 336, 336, 336, 336, 336, 336, 336,
|
|
|
|
336, 336, 336, 336, 227, 227, 173, 577, 577, 577,
|
2012-04-19 00:52:44 +02:00
|
|
|
577, 577, 577, 577, 577, 577, 577, 577, 79, 178,
|
|
|
|
846, 8, -3, -3, -3, -3, 642, 706, 706, 706,
|
|
|
|
706, 179, 157, 242, 428, 428, 360, 428, 503, 377,
|
|
|
|
767, 767, 767, 767, 767, 767, 767, 767, 767, 767,
|
|
|
|
767, 767, 397, 373, 315, 315, 610, 610, -81, -81,
|
|
|
|
-81, -81, 251, 185, 188, 184, -62, 410, 192, 192,
|
|
|
|
192, 348, 392, 408, 195, 1, 129, 129, 129, -24,
|
|
|
|
-24, -24, -24, 500, -24, -24, -24, 113, 108, 108,
|
|
|
|
12, 161, 398, 542, 262, 349, 543, 431, 130, 206,
|
|
|
|
271, 394, 145, 418, 394, 295, 288, 145, 166, 44,
|
|
|
|
265, 422, 135, 494, 376, 454, 343, 71, 93, 107,
|
|
|
|
267, 141, 100, 26, 409, 664, 622, 668, -38, -10,
|
|
|
|
141, 147, 665, 395, 92, 34, 464, 144, 368, 384,
|
|
|
|
380, 332, 384, 404, 368, 648, 368, 372, 368, 360,
|
|
|
|
221, 430, 372, 368, 388, 372, 374, 384, 364, 412,
|
|
|
|
380, 368, 476, 455, 390, 215, 332, 368, 390, 368,
|
|
|
|
404, 64, 641, 625, 247, 615, 647, 614, 583, 613,
|
|
|
|
389, 525, 407, 399, 649, 637, 608, 382, 396, 620,
|
|
|
|
582, 438, 391, 355, 436, 531, 524, 358, 403, 418,
|
|
|
|
442, 352, 406, 578, 385, 406, 755, 434, 433, 417,
|
|
|
|
411, 461, 325, 327, 501, 438, 735, 566, 363, 593,
|
|
|
|
735, 406, 612, 443, 66, 310, 592, 362, 406, 591,
|
|
|
|
406, 732, 511, 636, 406, 725, 359, 539, 438, 357,
|
|
|
|
352, 352, 352, 724, 87, 754, 638, 723, 722, 753,
|
|
|
|
752, 721, 751, 639, 653, 638, 707, 699, 737, 306,
|
|
|
|
609, 422, 429, 354, 463, 37, 318, 704, 406, 406,
|
|
|
|
510, 500, 406, 450, 734, 400, 419, 748, 392, 365,
|
|
|
|
589, 736, 406, 414, 749, 37, 702, 652, 700, 465,
|
|
|
|
741, 509, 587, 499, 257, 697, 353, 541, 584, 468,
|
|
|
|
740, 472, 474, 405, 507, 375, 696, 588, 344, 361,
|
|
|
|
739, 488, 350, 733, 590, 491, 493, 506, 416, 423,
|
|
|
|
335, 413, 369, 738, 293, 498, 487, 481, 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,
|
|
|
|
0, 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,
|
2011-11-21 18:43:35 +01:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2012-04-19 00:52:44 +02:00
|
|
|
0, 0, 0, -2, -2, -2, -2, -2, -2, -2,
|
2011-11-21 18:43:35 +01:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2011-04-18 19:02:30 +02:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2011-06-02 16:29:28 +02:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2011-06-03 22:02:02 +02:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2011-10-16 14:27:03 +02:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2011-10-21 14:09:41 +02:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
|
2012-04-19 00:52:44 +02:00
|
|
|
-2, -2, 123, 123, 123, 123, 123, 123, 123, 123,
|
|
|
|
123, 123, 123, 123, 123, 123, 123, 123, 123, 123,
|
2011-10-30 12:03:29 +01:00
|
|
|
123, 123, 123, 123, 123, 123, 123, 123, 123, 123,
|
2012-04-19 00:52:44 +02:00
|
|
|
123, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
2011-10-30 12:03:29 +01:00
|
|
|
123, 123, 123, 123, 123, 123, 123, 123, 123, 123,
|
|
|
|
123, 123, 123, 123, 123, 123, 123, 123, 123, 123,
|
2012-04-19 00:52:44 +02:00
|
|
|
767, 767, 767, 767, 767, 767, 767, 767, 767, 767,
|
|
|
|
767, 123, 123, 123, 123, 123, 123, 123, 123, 0,
|
|
|
|
129, 129, 129, 129, -94, -94, -94, 767, 767, 767,
|
|
|
|
767, 767, 767, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, -94, -94, 129, 129, 767,
|
|
|
|
767, -24, -24, -24, -24, -24, 108, 108, 108, -24,
|
|
|
|
108, 76, 76, 76, 108, 108, 108, 100, 100, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 76, 0, 0, 0,
|
|
|
|
372, 0, 0, 0, 76, 260, 260, 37, 260, 260,
|
|
|
|
141, 0, 0, 438, 372, 0, 364, 372, 0, 0,
|
|
|
|
0, 0, 0, 0, 578, 0, 66, 593, 241, 438,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 438, 289, 289,
|
|
|
|
106, 0, 0, 0, 0, 106, 241, 0, 0, 37
|
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-04-19 00:52:44 +02:00
|
|
|
32767,32767,32767,32767,32767, 104, 96, 110, 95, 106,
|
2011-10-21 14:09:41 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2012-04-19 00:52:44 +02:00
|
|
|
357, 357, 122, 122, 122, 122, 122, 122, 122, 122,
|
|
|
|
315,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
173, 173, 173,32767, 347, 347, 347, 347, 347, 347,
|
|
|
|
347,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,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2012-04-19 00:52:44 +02:00
|
|
|
32767, 362,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-04-19 00:52:44 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767, 231, 232,
|
|
|
|
234, 235, 172, 125, 348, 361, 171, 199, 201, 249,
|
|
|
|
200, 177, 182, 183, 184, 185, 186, 187, 188, 189,
|
|
|
|
190, 191, 192, 176, 228, 227, 197, 312, 312, 315,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767, 198, 202,
|
|
|
|
204, 203, 219, 220, 217, 218, 175, 221, 222, 223,
|
|
|
|
224, 157, 157, 157, 356, 356,32767, 356,32767,32767,
|
2011-04-18 19:02:30 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2012-04-19 00:52:44 +02:00
|
|
|
32767,32767, 158,32767, 211, 212, 275, 275, 117, 117,
|
|
|
|
117, 117, 117,32767,32767,32767,32767, 283,32767,32767,
|
|
|
|
32767,32767,32767, 285,32767,32767, 206, 207, 205,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767, 284,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767, 333, 320, 271,
|
|
|
|
32767,32767,32767, 264,32767, 107, 109,32767,32767,32767,
|
|
|
|
32767, 301, 338,32767,32767,32767, 17,32767,32767,32767,
|
|
|
|
369, 333,32767,32767, 19,32767,32767,32767,32767,32767,
|
|
|
|
337, 331,32767,32767,32767,32767,32767,32767, 63,32767,
|
|
|
|
32767,32767,32767,32767, 63, 280, 63,32767, 63,32767,
|
|
|
|
314, 286,32767, 63, 74,32767, 72,32767,32767, 76,
|
|
|
|
32767, 63, 93, 93, 253, 314, 54, 63, 253, 63,
|
|
|
|
32767,32767,32767,32767, 4,32767,32767,32767,32767,32767,
|
2011-04-18 19:02:30 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2012-04-19 00:52:44 +02:00
|
|
|
32767, 266,32767, 322,32767, 336, 335, 323,32767, 264,
|
|
|
|
32767, 215, 194, 265,32767, 196,32767,32767, 269, 272,
|
|
|
|
32767,32767,32767, 134,32767, 267, 180,32767,32767,32767,
|
|
|
|
32767, 364,32767,32767, 174,32767,32767,32767, 130,32767,
|
|
|
|
61, 331,32767,32767, 354,32767,32767, 331, 268, 332,
|
|
|
|
208, 209, 210,32767, 121,32767, 309,32767,32767,32767,
|
|
|
|
32767,32767,32767, 326,32767,32767,32767,32767,32767, 111,
|
|
|
|
32767, 301,32767,32767,32767, 75,32767,32767, 178, 126,
|
|
|
|
32767,32767, 363,32767,32767,32767, 319,32767,32767,32767,
|
|
|
|
32767,32767, 62,32767,32767, 77,32767,32767,32767,32767,
|
|
|
|
331,32767,32767,32767, 115,32767, 169,32767,32767,32767,
|
2011-04-18 19:02:30 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2012-04-19 00:52:44 +02:00
|
|
|
331,32767,32767,32767,32767,32767,32767,32767, 4,32767,
|
|
|
|
151,32767,32767,32767,32767,32767,32767,32767, 25, 25,
|
|
|
|
3, 137, 3, 137, 25, 101, 25, 25, 137, 93,
|
|
|
|
93, 25, 25, 25, 144, 25, 25, 25, 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(
|
2011-12-04 17:07:17 +01:00
|
|
|
141, 141, 173, 173, 173, 173, 173, 173, 173, 173,
|
|
|
|
141, 173, 142, 143, 144, 148, 153, 155, 181, 175,
|
|
|
|
172, 172, 172, 172, 174, 174, 174, 174, 174, 174,
|
2012-04-19 00:52:44 +02:00
|
|
|
174, 168, 169, 170, 171, 179, 756, 757, 391, 759,
|
|
|
|
779, 780, 781, 782, 783, 784, 785, 787, 724, 145,
|
2011-12-04 17:07:17 +01:00
|
|
|
146, 147, 149, 150, 151, 152, 154, 177, 178, 180,
|
2012-04-19 00:52:44 +02:00
|
|
|
196, 208, 209, 210, 211, 212, 213, 214, 215, 217,
|
|
|
|
218, 219, 220, 244, 245, 266, 267, 268, 430, 431,
|
2011-12-04 17:07:17 +01:00
|
|
|
432, 182, 183, 184, 185, 186, 187, 188, 189, 190,
|
|
|
|
191, 192, 156, 157, 158, 159, 176, 160, 194, 161,
|
2012-04-19 00:52:44 +02:00
|
|
|
162, 163, 164, 195, 165, 193, 139, 166, 167, 451,
|
|
|
|
451, 451, 451, 451, 451, 451, 451, 451, 451, 451,
|
2011-12-04 17:07:17 +01:00
|
|
|
452, 452, 452, 452, 452, 452, 452, 452, 452, 452,
|
2012-04-19 00:52:44 +02:00
|
|
|
452, 551, 551, 551, 463, 490, 393, 393, 393, 393,
|
2011-12-04 17:07:17 +01:00
|
|
|
393, 393, 393, 393, 393, 393, 393, 393, 393, 393,
|
2012-04-19 00:52:44 +02:00
|
|
|
393, 393, 393, 393, 406, 550, 550, 550, 808, 808,
|
|
|
|
661, 661, 661, 661, 661, 283, 703, 327, 509, 398,
|
|
|
|
398, 566, 678, 631, 847, 848, 861, 659, 713, 425,
|
|
|
|
222, 621, 621, 621, 621, 223, 616, 622, 493, 394,
|
2011-12-04 17:07:17 +01:00
|
|
|
394, 394, 394, 394, 394, 394, 394, 394, 394, 394,
|
2012-04-19 00:52:44 +02:00
|
|
|
394, 394, 394, 394, 394, 394, 394, 464, 471, 513,
|
|
|
|
902, 397, 397, 424, 424, 458, 424, 418, 321, 420,
|
|
|
|
420, 392, 395, 411, 421, 427, 459, 462, 472, 480,
|
|
|
|
500, 5, 475, 284, 326, 593, 15, 594, 6, 7,
|
|
|
|
549, 549, 549, 8, 9, 10, 667, 16, 11, 17,
|
|
|
|
12, 18, 13, 19, 14, 1, 303, 2, 485, 642,
|
|
|
|
627, 625, 625, 623, 625, 525, 400, 651, 646, 845,
|
|
|
|
845, 845, 845, 845, 845, 845, 845, 845, 845, 845,
|
|
|
|
437, 438, 441, 446, 476, 478, 496, 290, 908, 908,
|
|
|
|
399, 399, 859, 878, 878, 263, 911, 908, 322, 255,
|
|
|
|
722, 306, 879, 879, 306, 894, 894, 894, 304, 895,
|
|
|
|
409, 316, 911, 911, 657, 419, 820, 819, 768, 558,
|
|
|
|
877, 670, 535, 465, 323, 311, 311, 311, 799, 241,
|
|
|
|
564, 495, 439, 440, 442, 444, 447, 474, 675, 856,
|
|
|
|
311, 285, 286, 630, 602, 494, 711, 405, 320, 0,
|
|
|
|
0, 0, 314, 0, 0, 428, 0, 0, 0, 0,
|
|
|
|
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-04-19 00:52:44 +02:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 410
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yygcheck = array(
|
2011-09-24 16:53:40 +02:00
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
2011-12-04 17:07:17 +01:00
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 35,
|
2011-10-21 11:07:06 +02:00
|
|
|
35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
|
2012-04-19 00:52:44 +02:00
|
|
|
86, 86, 86, 86, 86, 86, 86, 86, 86, 86,
|
|
|
|
86, 7, 7, 7, 21, 21, 35, 35, 35, 35,
|
2011-11-04 07:40:48 +01:00
|
|
|
35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
|
2012-04-19 00:52:44 +02:00
|
|
|
35, 35, 35, 35, 71, 6, 6, 6, 35, 35,
|
|
|
|
35, 35, 35, 35, 35, 44, 67, 67, 35, 86,
|
|
|
|
86, 12, 12, 12, 12, 12, 12, 12, 12, 75,
|
|
|
|
40, 35, 35, 35, 35, 40, 35, 35, 35, 82,
|
|
|
|
82, 82, 82, 82, 82, 82, 82, 82, 82, 82,
|
|
|
|
82, 82, 82, 82, 82, 82, 82, 36, 36, 36,
|
|
|
|
104, 82, 82, 28, 28, 28, 28, 28, 28, 28,
|
2011-11-21 18:43:35 +01:00
|
|
|
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
|
2012-04-19 00:52:44 +02:00
|
|
|
28, 13, 42, 42, 42, 29, 13, 29, 13, 13,
|
|
|
|
5, 5, 5, 13, 13, 13, 54, 13, 13, 13,
|
|
|
|
13, 13, 13, 13, 13, 2, 26, 2, 94, 5,
|
|
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 93,
|
|
|
|
93, 93, 93, 93, 93, 93, 93, 93, 93, 93,
|
|
|
|
52, 52, 52, 52, 52, 52, 52, 4, 105, 105,
|
|
|
|
89, 89, 97, 84, 84, 92, 105, 105, 70, 92,
|
|
|
|
71, 4, 83, 83, 4, 84, 84, 84, 30, 102,
|
|
|
|
30, 27, 105, 105, 50, 30, 91, 91, 72, 10,
|
|
|
|
84, 55, 46, 30, 9, 90, 90, 90, 80, 30,
|
|
|
|
11, 30, 85, 85, 85, 85, 85, 85, 56, 96,
|
|
|
|
90, 44, 44, 43, 34, 77, 69, 4, 90, -1,
|
|
|
|
-1, -1, 4, -1, -1, 4, -1, -1, -1, -1,
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
2011-11-21 18:43:35 +01:00
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
2011-12-04 16:52:43 +01:00
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
2012-04-19 00:52:44 +02:00
|
|
|
-1, -1, -1, 71
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yygbase = array(
|
2012-04-19 00:52:44 +02:00
|
|
|
0, 0, -265, 0, 10, 239, 154, 130, 0, -8,
|
|
|
|
25, -17, -29, -288, 0, -30, 0, 0, 0, 0,
|
|
|
|
0, 83, 0, 0, 0, 0, 203, 80, -11, 212,
|
|
|
|
-28, 0, 0, 0, -12, -88, -42, 0, 0, 0,
|
|
|
|
-343, 0, -38, -7, -188, 0, 23, 0, 0, 0,
|
|
|
|
62, 0, 247, 0, 205, 24, -10, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, -76, 0, -14,
|
|
|
|
73, 74, 71, 0, 0, 148, 0, -13, 0, 0,
|
|
|
|
-6, 0, -35, 56, 47, 277, -77, 0, 0, 44,
|
|
|
|
67, 57, 38, 72, 60, 0, -16, 93, 0, 0,
|
|
|
|
0, 0, 82, 0, 170, 34, 0
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yygdefault = array(
|
2012-04-19 00:52:44 +02:00
|
|
|
-32768, 361, 3, 545, 381, 569, 570, 571, 307, 305,
|
|
|
|
559, 565, 466, 4, 567, 140, 295, 574, 296, 499,
|
|
|
|
576, 413, 578, 579, 308, 309, 414, 315, 216, 592,
|
|
|
|
502, 313, 595, 356, 601, 301, 448, 382, 349, 460,
|
|
|
|
221, 422, 455, 629, 282, 637, 539, 645, 648, 449,
|
|
|
|
656, 351, 433, 434, 666, 671, 676, 679, 333, 324,
|
|
|
|
473, 683, 684, 256, 688, 510, 511, 702, 242, 710,
|
|
|
|
317, 723, 341, 786, 788, 396, 407, 483, 795, 325,
|
|
|
|
798, 383, 384, 385, 386, 435, 816, 813, 289, 864,
|
|
|
|
287, 443, 254, 851, 467, 355, 901, 860, 288, 387,
|
|
|
|
388, 302, 896, 340, 903, 910, 457
|
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,
|
|
|
|
5, 5, 5, 5, 5, 5, 5, 5, 33, 33,
|
2011-10-30 12:03:29 +01:00
|
|
|
34, 27, 27, 30, 30, 6, 7, 7, 7, 37,
|
|
|
|
37, 37, 38, 38, 41, 41, 39, 39, 42, 42,
|
2012-04-19 00:52:44 +02:00
|
|
|
22, 22, 29, 29, 32, 32, 31, 31, 43, 23,
|
|
|
|
23, 23, 23, 44, 44, 45, 45, 46, 46, 20,
|
|
|
|
20, 16, 16, 47, 18, 18, 48, 17, 17, 19,
|
|
|
|
19, 36, 36, 49, 49, 50, 50, 51, 51, 51,
|
|
|
|
51, 52, 52, 53, 53, 54, 54, 24, 24, 55,
|
|
|
|
55, 55, 25, 25, 56, 56, 40, 40, 57, 57,
|
|
|
|
57, 57, 62, 62, 63, 63, 64, 64, 64, 64,
|
|
|
|
65, 66, 66, 61, 61, 58, 58, 60, 60, 68,
|
|
|
|
68, 67, 67, 67, 67, 67, 67, 59, 59, 69,
|
|
|
|
69, 26, 26, 21, 21, 15, 15, 15, 15, 15,
|
2011-09-24 16:53:40 +02:00
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
2012-04-19 00:52:44 +02:00
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 71, 77, 77, 79, 79, 80, 81, 81,
|
|
|
|
81, 81, 81, 81, 86, 86, 35, 35, 35, 72,
|
|
|
|
72, 87, 87, 82, 82, 88, 88, 88, 88, 88,
|
|
|
|
73, 73, 73, 76, 76, 76, 78, 78, 93, 93,
|
|
|
|
93, 93, 93, 93, 93, 93, 93, 93, 93, 93,
|
|
|
|
93, 93, 12, 12, 12, 12, 12, 12, 74, 74,
|
|
|
|
74, 74, 94, 94, 96, 96, 95, 95, 97, 97,
|
|
|
|
28, 28, 28, 28, 99, 99, 98, 98, 98, 98,
|
|
|
|
98, 100, 100, 84, 84, 89, 89, 83, 83, 101,
|
|
|
|
101, 101, 101, 90, 90, 90, 90, 85, 85, 91,
|
|
|
|
91, 91, 70, 70, 102, 102, 102, 75, 75, 103,
|
|
|
|
103, 104, 104, 104, 104, 92, 92, 92, 92, 105,
|
|
|
|
105, 105, 105, 105, 105, 105, 106, 106, 106
|
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,
|
|
|
|
3, 7, 10, 5, 7, 9, 5, 2, 3, 2,
|
|
|
|
3, 2, 3, 3, 3, 3, 1, 2, 5, 7,
|
|
|
|
8, 10, 5, 1, 5, 3, 3, 2, 1, 2,
|
2011-10-30 12:03:29 +01:00
|
|
|
8, 1, 3, 0, 1, 9, 7, 6, 5, 1,
|
|
|
|
2, 2, 0, 2, 0, 2, 0, 2, 1, 3,
|
2012-04-19 00:52:44 +02:00
|
|
|
1, 4, 1, 4, 1, 4, 1, 3, 3, 3,
|
|
|
|
4, 4, 5, 0, 2, 4, 3, 1, 1, 1,
|
|
|
|
4, 0, 2, 5, 0, 2, 6, 0, 2, 0,
|
|
|
|
3, 1, 0, 1, 3, 3, 5, 0, 1, 1,
|
|
|
|
1, 1, 0, 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, 6, 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, 3, 5, 4, 4,
|
|
|
|
4, 2, 2, 4, 2, 2, 2, 2, 2, 2,
|
|
|
|
2, 2, 2, 2, 2, 1, 4, 3, 3, 2,
|
|
|
|
9, 10, 3, 0, 4, 1, 3, 2, 4, 6,
|
|
|
|
8, 4, 4, 4, 1, 1, 1, 2, 3, 1,
|
|
|
|
1, 1, 1, 1, 1, 0, 3, 3, 4, 4,
|
|
|
|
0, 2, 3, 0, 1, 1, 0, 3, 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, 6, 4, 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;
|
|
|
|
protected $yysp;
|
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
|
|
|
|
2011-06-28 14:11:12 +02:00
|
|
|
$this->yysp = 0; // Stack pos
|
2012-04-29 22:57:46 +02:00
|
|
|
$stateStack = array($state = 0); // State stack
|
2011-06-28 14:11:12 +02:00
|
|
|
$this->yyastk = array(); // AST stack (?)
|
|
|
|
$yylstk = array($yyline = 1); // Line stack
|
2011-07-03 16:35:45 +02:00
|
|
|
$yydstk = array($yyDC = null); // Doc comment stack
|
2011-04-18 19:02:30 +02:00
|
|
|
|
2012-04-29 22:57:46 +02:00
|
|
|
$tokenId = self::TOKEN_NONE;
|
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
|
|
|
|
$origTokenId = $this->lexer->getNextToken($tokenValue, $yyline, $yyDC);
|
|
|
|
|
|
|
|
// 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
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2011-06-28 14:11:12 +02:00
|
|
|
$yylstk[$this->yysp] = $yyline;
|
2011-07-03 16:35:45 +02:00
|
|
|
$yydstk[$this->yysp] = $yyDC;
|
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 */
|
2011-04-20 13:40:29 +02:00
|
|
|
++$this->yysp;
|
2011-04-18 19:02:30 +02:00
|
|
|
|
2012-04-29 22:57:46 +02:00
|
|
|
$stateStack[$this->yysp] = $state = $yyn;
|
|
|
|
$this->yyastk[$this->yysp] = $tokenValue;
|
2011-06-28 14:11:12 +02:00
|
|
|
$yylstk[$this->yysp] = $yyline;
|
2011-07-03 16:35:45 +02:00
|
|
|
$yydstk[$this->yysp] = $yyDC;
|
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-04-29 23:32:09 +02:00
|
|
|
array(
|
|
|
|
'line' => $yylstk[$this->yysp - self::$yylen[$yyn]],
|
|
|
|
'docComment' => $yydstk[$this->yysp - self::$yylen[$yyn]]
|
|
|
|
)
|
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()) {
|
|
|
|
$e->setRawLine($yyline);
|
|
|
|
}
|
2011-06-03 17:44:23 +02:00
|
|
|
|
|
|
|
throw $e;
|
|
|
|
}
|
2011-04-20 13:40:29 +02:00
|
|
|
|
|
|
|
/* Goto - shift nonterminal */
|
|
|
|
$this->yysp -= self::$yylen[$yyn];
|
|
|
|
$yyn = self::$yylhs[$yyn];
|
2012-04-29 22:57:46 +02:00
|
|
|
if (($yyp = self::$yygbase[$yyn] + $stateStack[$this->yysp]) >= 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
|
|
|
|
2011-04-20 13:40:29 +02:00
|
|
|
++$this->yysp;
|
2011-04-18 19:02:30 +02:00
|
|
|
|
2012-04-29 22:57:46 +02:00
|
|
|
$stateStack[$this->yysp] = $state;
|
2011-04-20 13:40:29 +02:00
|
|
|
$this->yyastk[$this->yysp] = $this->yyval;
|
2011-06-28 14:11:12 +02:00
|
|
|
$yylstk[$this->yysp] = $yyline;
|
2011-07-03 16:35:45 +02:00
|
|
|
$yydstk[$this->yysp] = $yyDC;
|
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],
|
2011-06-28 14:11:12 +02:00
|
|
|
$yyline
|
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() {
|
2011-04-20 13:40:29 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp];
|
|
|
|
}
|
2011-04-18 19:02:30 +02:00
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn1($attributes) {
|
2011-06-26 18:40:23 +02:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Namespace::postprocess($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn2($attributes) {
|
2011-05-27 18:20:44 +02:00
|
|
|
if (is_array($this->yyastk[$this->yysp-(2-2)])) { $this->yyval = array_merge($this->yyastk[$this->yysp-(2-1)], $this->yyastk[$this->yysp-(2-2)]); } else { $this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(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) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn5($attributes) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn6($attributes) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn7($attributes) {
|
2011-05-27 18:20:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn8($attributes) {
|
2011-05-27 18:20:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(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) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Namespace(new PHPParser_Node_Name($this->yyastk[$this->yysp-(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) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Namespace(new PHPParser_Node_Name($this->yyastk[$this->yysp-(5-2)], $attributes), $this->yyastk[$this->yysp-(5-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn12($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Namespace(null, $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn13($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Use($this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn14($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Const($this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn15($attributes) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn16($attributes) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn17($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($this->yyastk[$this->yysp-(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) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($this->yyastk[$this->yysp-(3-1)], $attributes), $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn19($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($this->yyastk[$this->yysp-(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) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($this->yyastk[$this->yysp-(4-2)], $attributes), $this->yyastk[$this->yysp-(4-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn21($attributes) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn22($attributes) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn23($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Const($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn24($attributes) {
|
2011-09-24 16:53:40 +02:00
|
|
|
if (is_array($this->yyastk[$this->yysp-(2-2)])) { $this->yyval = array_merge($this->yyastk[$this->yysp-(2-1)], $this->yyastk[$this->yysp-(2-2)]); } else { $this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(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) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn27($attributes) {
|
2011-05-27 18:20:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn28($attributes) {
|
2011-05-27 18:20:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(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) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn31($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_If($this->yyastk[$this->yysp-(7-3)], array('stmts' => is_array($this->yyastk[$this->yysp-(7-5)]) ? $this->yyastk[$this->yysp-(7-5)] : array($this->yyastk[$this->yysp-(7-5)]), 'elseifs' => $this->yyastk[$this->yysp-(7-6)], 'else' => $this->yyastk[$this->yysp-(7-7)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn32($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_If($this->yyastk[$this->yysp-(10-3)], array('stmts' => $this->yyastk[$this->yysp-(10-6)], 'elseifs' => $this->yyastk[$this->yysp-(10-7)], 'else' => $this->yyastk[$this->yysp-(10-8)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn33($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_While($this->yyastk[$this->yysp-(5-3)], $this->yyastk[$this->yysp-(5-5)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn34($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Do($this->yyastk[$this->yysp-(7-5)], is_array($this->yyastk[$this->yysp-(7-2)]) ? $this->yyastk[$this->yysp-(7-2)] : array($this->yyastk[$this->yysp-(7-2)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn35($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_For(array('init' => $this->yyastk[$this->yysp-(9-3)], 'cond' => $this->yyastk[$this->yysp-(9-5)], 'loop' => $this->yyastk[$this->yysp-(9-7)], 'stmts' => $this->yyastk[$this->yysp-(9-9)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn36($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Switch($this->yyastk[$this->yysp-(5-3)], $this->yyastk[$this->yysp-(5-5)], $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) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Break($this->yyastk[$this->yysp-(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) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Continue($this->yyastk[$this->yysp-(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) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Return($this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn43($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Global($this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn44($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Static($this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn45($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Echo($this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn46($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_InlineHTML($this->yyastk[$this->yysp-(1-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn47($attributes) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn48($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Unset($this->yyastk[$this->yysp-(5-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn49($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Foreach($this->yyastk[$this->yysp-(7-3)], $this->yyastk[$this->yysp-(7-5)], array('keyVar' => null, 'byRef' => false, 'stmts' => $this->yyastk[$this->yysp-(7-7)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn50($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Foreach($this->yyastk[$this->yysp-(8-3)], $this->yyastk[$this->yysp-(8-6)], array('keyVar' => null, 'byRef' => true, 'stmts' => $this->yyastk[$this->yysp-(8-8)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn51($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Foreach($this->yyastk[$this->yysp-(10-3)], $this->yyastk[$this->yysp-(10-8)], array('keyVar' => $this->yyastk[$this->yysp-(10-5)], 'byRef' => $this->yyastk[$this->yysp-(10-7)], 'stmts' => $this->yyastk[$this->yysp-(10-10)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn52($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Declare($this->yyastk[$this->yysp-(5-3)], $this->yyastk[$this->yysp-(5-5)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn53($attributes) {
|
2011-09-24 16:53:40 +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) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_TryCatch($this->yyastk[$this->yysp-(5-3)], $this->yyastk[$this->yysp-(5-5)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn55($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Throw($this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn56($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Goto($this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn57($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Label($this->yyastk[$this->yysp-(2-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn58($attributes) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn59($attributes) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn60($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Catch($this->yyastk[$this->yysp-(8-3)], substr($this->yyastk[$this->yysp-(8-4)], 1), $this->yyastk[$this->yysp-(8-7)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn61($attributes) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn62($attributes) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn63($attributes) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = false;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn64($attributes) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = true;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn65($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Function($this->yyastk[$this->yysp-(9-3)], array('byRef' => $this->yyastk[$this->yysp-(9-2)], 'params' => $this->yyastk[$this->yysp-(9-5)], 'stmts' => $this->yyastk[$this->yysp-(9-8)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn66($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Class($this->yyastk[$this->yysp-(7-2)], array('type' => $this->yyastk[$this->yysp-(7-1)], 'extends' => $this->yyastk[$this->yysp-(7-3)], 'implements' => $this->yyastk[$this->yysp-(7-4)], 'stmts' => $this->yyastk[$this->yysp-(7-6)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn67($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Interface($this->yyastk[$this->yysp-(6-2)], array('extends' => $this->yyastk[$this->yysp-(6-3)], 'stmts' => $this->yyastk[$this->yysp-(6-5)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn68($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Trait($this->yyastk[$this->yysp-(5-2)], $this->yyastk[$this->yysp-(5-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn69($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = 0;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn70($attributes) {
|
2011-10-30 12:03:29 +01: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 yyn71($attributes) {
|
2011-10-30 12:03:29 +01: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 yyn72($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn73($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(2-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn74($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn75($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(2-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn76($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn77($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(2-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn78($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn79($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn80($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = is_array($this->yyastk[$this->yysp-(1-1)]) ? $this->yyastk[$this->yysp-(1-1)] : array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn81($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn82($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = is_array($this->yyastk[$this->yysp-(1-1)]) ? $this->yyastk[$this->yysp-(1-1)] : array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn83($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn84($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = is_array($this->yyastk[$this->yysp-(1-1)]) ? $this->yyastk[$this->yysp-(1-1)] : array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn85($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn86($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn87($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn88($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_DeclareDeclare($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn89($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn90($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-3)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn91($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn92($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(5-3)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn93($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn94($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn95($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Case($this->yyastk[$this->yysp-(4-2)], $this->yyastk[$this->yysp-(4-4)], $attributes);
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn96($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Case(null, $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-19 00:52:44 +02:00
|
|
|
protected function yyn97() {
|
|
|
|
$this->yyval = $this->yyastk[$this->yysp];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-19 00:52:44 +02:00
|
|
|
protected function yyn98() {
|
|
|
|
$this->yyval = $this->yyastk[$this->yysp];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn99($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = is_array($this->yyastk[$this->yysp-(1-1)]) ? $this->yyastk[$this->yysp-(1-1)] : array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn100($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn101($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn102($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn103($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_ElseIf($this->yyastk[$this->yysp-(5-3)], is_array($this->yyastk[$this->yysp-(5-5)]) ? $this->yyastk[$this->yysp-(5-5)] : array($this->yyastk[$this->yysp-(5-5)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn104($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn105($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn106($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_ElseIf($this->yyastk[$this->yysp-(6-3)], $this->yyastk[$this->yysp-(6-6)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn107($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn108($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Else(is_array($this->yyastk[$this->yysp-(2-2)]) ? $this->yyastk[$this->yysp-(2-2)] : array($this->yyastk[$this->yysp-(2-2)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn109($attributes) {
|
2012-04-19 00:52: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) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Else($this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn111($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn112($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn113($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn114($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn115($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Param(substr($this->yyastk[$this->yysp-(3-3)], 1), null, $this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn116($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Param(substr($this->yyastk[$this->yysp-(5-3)], 1), $this->yyastk[$this->yysp-(5-5)], $this->yyastk[$this->yysp-(5-1)], $this->yyastk[$this->yysp-(5-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn117($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn118($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn119($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = 'array';
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn120($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = 'callable';
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn121($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn122($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn123($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn124($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn125($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Arg($this->yyastk[$this->yysp-(1-1)], false, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn126($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Arg($this->yyastk[$this->yysp-(2-2)], true, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn127($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn128($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn129($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->yysp-(1-1)], 1), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn130($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn131($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn132($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn133($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn134($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_StaticVar(substr($this->yyastk[$this->yysp-(1-1)], 1), null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn135($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_StaticVar(substr($this->yyastk[$this->yysp-(3-1)], 1), $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn136($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn137($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn138($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Property($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn139($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_ClassConst($this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn140($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_ClassMethod($this->yyastk[$this->yysp-(8-4)], array('type' => $this->yyastk[$this->yysp-(8-1)], 'byRef' => $this->yyastk[$this->yysp-(8-3)], 'params' => $this->yyastk[$this->yysp-(8-6)], 'stmts' => $this->yyastk[$this->yysp-(8-8)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn141($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_TraitUse($this->yyastk[$this->yysp-(3-2)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn142($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn143($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn144($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn145($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn146($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_TraitUseAdaptation_Precedence($this->yyastk[$this->yysp-(4-1)][0], $this->yyastk[$this->yysp-(4-1)][1], $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn147($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_TraitUseAdaptation_Alias($this->yyastk[$this->yysp-(5-1)][0], $this->yyastk[$this->yysp-(5-1)][1], $this->yyastk[$this->yysp-(5-3)], $this->yyastk[$this->yysp-(5-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn148($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_TraitUseAdaptation_Alias($this->yyastk[$this->yysp-(4-1)][0], $this->yyastk[$this->yysp-(4-1)][1], $this->yyastk[$this->yysp-(4-3)], null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn149($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_TraitUseAdaptation_Alias($this->yyastk[$this->yysp-(4-1)][0], $this->yyastk[$this->yysp-(4-1)][1], null, $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn150($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn151($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn152($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array(null, $this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn153($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn154($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn155($attributes) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn156($attributes) {
|
2012-04-19 00:52: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 yyn157($attributes) {
|
2011-10-30 12:03:29 +01: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 yyn158($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn159($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn160($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
PHPParser_Node_Stmt_Class::verifyModifier($this->yyastk[$this->yysp-(2-1)], $this->yyastk[$this->yysp-(2-2)]); $this->yyval = $this->yyastk[$this->yysp-(2-1)] | $this->yyastk[$this->yysp-(2-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn161($attributes) {
|
2012-04-19 00:52: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 yyn162($attributes) {
|
2012-04-19 00:52: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 yyn163($attributes) {
|
2012-04-19 00:52: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 yyn164($attributes) {
|
2012-04-19 00:52: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 yyn165($attributes) {
|
2012-04-19 00:52: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 yyn166($attributes) {
|
2012-04-19 00:52: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 yyn167($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn168($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn169($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_PropertyProperty(substr($this->yyastk[$this->yysp-(1-1)], 1), null, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn170($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Stmt_PropertyProperty(substr($this->yyastk[$this->yysp-(3-1)], 1), $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn171($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn172($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn173($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn174($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn175($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn176($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignList($this->yyastk[$this->yysp-(6-3)], $this->yyastk[$this->yysp-(6-6)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn177($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Assign($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn178($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignRef($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn179($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Assign($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn180($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn181($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Clone($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn182($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignPlus($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn183($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignMinus($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn184($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignMul($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn185($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignDiv($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn186($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignConcat($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn187($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignMod($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn188($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignBitwiseAnd($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn189($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignBitwiseOr($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn190($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignBitwiseXor($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn191($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignShiftLeft($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn192($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignShiftRight($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn193($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_PostInc($this->yyastk[$this->yysp-(2-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn194($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_PreInc($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn195($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_PostDec($this->yyastk[$this->yysp-(2-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn196($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_PreDec($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn197($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_BooleanOr($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn198($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_BooleanAnd($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn199($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_LogicalOr($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn200($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_LogicalAnd($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn201($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_LogicalXor($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn202($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_BitwiseOr($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn203($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_BitwiseAnd($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn204($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_BitwiseXor($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn205($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Concat($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn206($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Plus($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn207($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Minus($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn208($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Mul($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn209($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Div($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn210($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Mod($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn211($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ShiftLeft($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn212($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ShiftRight($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn213($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_UnaryPlus($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn214($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_UnaryMinus($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn215($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_BooleanNot($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn216($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_BitwiseNot($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn217($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Identical($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn218($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_NotIdentical($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn219($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Equal($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn220($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_NotEqual($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn221($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Smaller($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn222($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_SmallerOrEqual($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn223($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Greater($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn224($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_GreaterOrEqual($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn225($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Instanceof($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn226($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn227($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Ternary($this->yyastk[$this->yysp-(5-1)], $this->yyastk[$this->yysp-(5-3)], $this->yyastk[$this->yysp-(5-5)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn228($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Ternary($this->yyastk[$this->yysp-(4-1)], null, $this->yyastk[$this->yysp-(4-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn229($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Isset($this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn230($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Empty($this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn231($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Include($this->yyastk[$this->yysp-(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 yyn232($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Include($this->yyastk[$this->yysp-(2-2)], PHPParser_Node_Expr_Include::TYPE_INCLUDE_ONCE, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn233($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Eval($this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn234($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Include($this->yyastk[$this->yysp-(2-2)], PHPParser_Node_Expr_Include::TYPE_REQUIRE, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn235($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Include($this->yyastk[$this->yysp-(2-2)], PHPParser_Node_Expr_Include::TYPE_REQUIRE_ONCE, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn236($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Cast_Int($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn237($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Cast_Double($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn238($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Cast_String($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn239($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Cast_Array($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-10-21 11:07:06 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn240($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Cast_Object($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-10-21 14:09:41 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn241($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Cast_Bool($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-10-29 00:16:29 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn242($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Cast_Unset($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn243($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Exit($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn244($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ErrorSuppress($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn245($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn246($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Array($this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn247($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Array($this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn248($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ShellExec($this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn249($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Print($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn250($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Closure(array('static' => false, 'byRef' => $this->yyastk[$this->yysp-(9-2)], 'params' => $this->yyastk[$this->yysp-(9-4)], 'uses' => $this->yyastk[$this->yysp-(9-6)], 'stmts' => $this->yyastk[$this->yysp-(9-8)]), $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn251($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Closure(array('static' => true, 'byRef' => $this->yyastk[$this->yysp-(10-3)], 'params' => $this->yyastk[$this->yysp-(10-5)], 'uses' => $this->yyastk[$this->yysp-(10-7)], 'stmts' => $this->yyastk[$this->yysp-(10-9)]), $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn252($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_New($this->yyastk[$this->yysp-(3-2)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn253($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array();
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn254($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-3)];
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn255($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn256($attributes) {
|
2012-04-19 00:52:44 +02:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn257($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ClosureUse(substr($this->yyastk[$this->yysp-(2-2)], 1), $this->yyastk[$this->yysp-(2-1)], $attributes);
|
2012-04-19 00:52:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn258($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_FuncCall($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2012-04-19 00:52:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn259($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_StaticCall($this->yyastk[$this->yysp-(6-1)], $this->yyastk[$this->yysp-(6-3)], $this->yyastk[$this->yysp-(6-5)], $attributes);
|
2012-04-19 00:52:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn260($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_StaticCall($this->yyastk[$this->yysp-(8-1)], $this->yyastk[$this->yysp-(8-4)], $this->yyastk[$this->yysp-(8-7)], $attributes);
|
2012-04-19 00:52:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn261($attributes) {
|
2011-06-02 16:29:28 +02:00
|
|
|
|
2011-06-05 18:40:04 +02:00
|
|
|
if ($this->yyastk[$this->yysp-(4-1)] instanceof PHPParser_Node_Expr_StaticPropertyFetch) {
|
2012-04-29 23:32:09 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_StaticCall($this->yyastk[$this->yysp-(4-1)]->class, new PHPParser_Node_Expr_Variable($this->yyastk[$this->yysp-(4-1)]->name, $attributes), $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-06-05 18:40:04 +02:00
|
|
|
} elseif ($this->yyastk[$this->yysp-(4-1)] instanceof PHPParser_Node_Expr_ArrayDimFetch) {
|
2011-08-04 12:16:31 +02:00
|
|
|
$tmp = $this->yyastk[$this->yysp-(4-1)];
|
|
|
|
while ($tmp->var instanceof PHPParser_Node_Expr_ArrayDimFetch) {
|
|
|
|
$tmp = $tmp->var;
|
2011-06-02 16:29:28 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_StaticCall($tmp->var->class, $this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $attributes);
|
|
|
|
$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-04-29 23:32:09 +02:00
|
|
|
protected function yyn262($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_FuncCall($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn263($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn264($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Name('static', $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn265($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-10-21 11:50:03 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn266($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Name($this->yyastk[$this->yysp-(1-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn267($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Name_FullyQualified($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn268($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Name_Relative($this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn269($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn270($attributes) {
|
2011-10-21 11:50:03 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn271($attributes) {
|
2011-10-21 14:09:41 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn272($attributes) {
|
2011-10-29 00:16:29 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn273($attributes) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn274($attributes) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-19 00:52:44 +02:00
|
|
|
protected function yyn275() {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn276($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_PropertyFetch($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn277($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_PropertyFetch($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn278($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn279($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn280($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn281($attributes) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn282($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn283($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn284($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = array(PHPParser_Node_Scalar_String::parseEscapeSequences($this->yyastk[$this->yysp-(1-1)], '`'));
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn285($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
foreach ($this->yyastk[$this->yysp-(1-1)] as &$s) { if (is_string($s)) { $s = PHPParser_Node_Scalar_String::parseEscapeSequences($s, '`'); } }; $this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn286($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn287($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn288($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Scalar_LNumber(PHPParser_Node_Scalar_LNumber::parse($this->yyastk[$this->yysp-(1-1)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn289($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Scalar_DNumber(PHPParser_Node_Scalar_DNumber::parse($this->yyastk[$this->yysp-(1-1)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn290($attributes) {
|
|
|
|
$this->yyval = PHPParser_Node_Scalar_String::create($this->yyastk[$this->yysp-(1-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn291($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Scalar_LineConst($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn292($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Scalar_FileConst($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn293($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Scalar_DirConst($attributes);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn294($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Scalar_ClassConst($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn295($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Scalar_TraitConst($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn296($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Scalar_MethodConst($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn297($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Scalar_FuncConst($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn298($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Scalar_NSConst($attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn299($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Scalar_String(PHPParser_Node_Scalar_String::parseDocString($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-2)]), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn300($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Scalar_String('', $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn301($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ConstFetch($this->yyastk[$this->yysp-(1-1)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn302($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn303($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ClassConstFetch($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn304($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_UnaryPlus($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn305($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_UnaryMinus($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn306($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Array($this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn307($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Array($this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn308($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn309($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ClassConstFetch($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn310($attributes) {
|
|
|
|
foreach ($this->yyastk[$this->yysp-(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->yysp-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn311($attributes) {
|
|
|
|
foreach ($this->yyastk[$this->yysp-(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->yysp-(3-2)]);; $this->yyval = new PHPParser_Node_Scalar_Encapsed($this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn312($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn313($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-19 00:52:44 +02:00
|
|
|
protected function yyn314() {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-19 00:52:44 +02:00
|
|
|
protected function yyn315() {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn316($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn317($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn318($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->yysp-(3-3)], $this->yyastk[$this->yysp-(3-1)], false, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn319($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->yysp-(1-1)], null, false, $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn320($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn321($attributes) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn322($attributes) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn323($attributes) {
|
2011-11-21 18:43:35 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn324($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(6-2)], $this->yyastk[$this->yysp-(6-5)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn325($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn326($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_PropertyFetch($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn327($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_MethodCall($this->yyastk[$this->yysp-(6-1)], $this->yyastk[$this->yysp-(6-3)], $this->yyastk[$this->yysp-(6-5)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn328($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_FuncCall($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn329($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn330($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn331($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn332($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn333($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn334($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($this->yyastk[$this->yysp-(2-2)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn335($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn336($attributes) {
|
2011-11-21 18:43:35 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn337($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_StaticPropertyFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-4)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn338($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn339($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_StaticPropertyFetch($this->yyastk[$this->yysp-(3-1)], substr($this->yyastk[$this->yysp-(3-3)], 1), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn340($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_StaticPropertyFetch($this->yyastk[$this->yysp-(6-1)], $this->yyastk[$this->yysp-(6-5)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn341($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn342($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn343($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn344($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn345($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->yysp-(1-1)], 1), $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn346($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn347($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn348($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn349($attributes) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn350($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn351($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn352($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn353($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn354($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn355($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-3)];
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn356($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = null;
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn357($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = array();
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn358($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn359($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn360($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn361($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->yysp-(3-3)], $this->yyastk[$this->yysp-(3-1)], false, $attributes);
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn362($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->yysp-(1-1)], null, false, $attributes);
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn363($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->yysp-(4-4)], $this->yyastk[$this->yysp-(4-1)], true, $attributes);
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn364($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->yysp-(2-2)], null, true, $attributes);
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn365($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-05-31 17:24:01 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn366($attributes) {
|
2011-11-21 18:43:35 +01:00
|
|
|
$this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-05-31 17:24:01 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn367($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
2011-10-20 22:29:34 +02:00
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn368($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(2-1)], $this->yyastk[$this->yysp-(2-2)]);
|
2011-10-21 11:07:06 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn369($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->yysp-(1-1)], 1), $attributes);
|
2011-10-21 14:09:41 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn370($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->yysp-(4-1)], 1), $attributes), $this->yyastk[$this->yysp-(4-3)], $attributes);
|
2011-10-29 00:16:29 +02:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn371($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_PropertyFetch(new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->yysp-(3-1)], 1), $attributes), $this->yyastk[$this->yysp-(3-3)], $attributes);
|
2011-11-04 07:40:48 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn372($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-11-04 07:40:48 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn373($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($this->yyastk[$this->yysp-(3-2)], $attributes);
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn374($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(new PHPParser_Node_Expr_Variable($this->yyastk[$this->yysp-(6-2)], $attributes), $this->yyastk[$this->yysp-(6-4)], $attributes);
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn375($attributes) {
|
2011-12-04 17:07:17 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn376($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Scalar_String($this->yyastk[$this->yysp-(1-1)], $attributes);
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn377($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Scalar_String($this->yyastk[$this->yysp-(1-1)], $attributes);
|
2011-11-21 18:43:35 +01:00
|
|
|
}
|
|
|
|
|
2012-04-29 23:32:09 +02:00
|
|
|
protected function yyn378($attributes) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->yysp-(1-1)], 1), $attributes);
|
2011-10-21 11:07:06 +02:00
|
|
|
}
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|