2011-04-18 19:02:30 +02:00
|
|
|
<?php
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
/* Prototype file of an object oriented PHP parser.
|
2011-05-27 18:20:44 +02:00
|
|
|
* Written by Moriyoshi Koizumi, based on the work by Masato Bito.
|
|
|
|
* This file is PUBLIC DOMAIN.
|
|
|
|
*/
|
2011-06-05 18:40:04 +02:00
|
|
|
class PHPParser_Parser
|
2011-04-18 19:02:30 +02:00
|
|
|
{
|
2011-10-30 12:03:29 +01:00
|
|
|
const YYBADCH = 149;
|
|
|
|
const YYMAXLEX = 384;
|
|
|
|
const YYTERMS = 149;
|
|
|
|
const YYNONTERMS = 95;
|
2011-11-04 07:40:48 +01:00
|
|
|
const YYLAST = 944;
|
|
|
|
const YY2TBLSTATE = 339;
|
|
|
|
const YYGLAST = 373;
|
|
|
|
const YYSTATES = 784;
|
|
|
|
const YYNLSTATES = 551;
|
2011-04-18 19:02:30 +02:00
|
|
|
const YYINTERRTOK = 1;
|
|
|
|
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
|
|
|
// }}}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yyterminals = 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
|
|
|
, "???"
|
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yytranslate = 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(
|
2011-11-04 07:40:48 +01:00
|
|
|
59, 60, 372, 61, 62,-32766,-32766,-32766, 269, 63,
|
|
|
|
-32767,-32767,-32767,-32767, 101, 102, 103, 104, 105,-32766,
|
|
|
|
-32766,-32766,-32766,-32766,-32766, 47, 109, 110, 111, 112,
|
|
|
|
113, 114, 115, 116, 117, 118, 119, 473, 319, 64,
|
|
|
|
65, 666, 667, 440, 0, 66, 555, 67, 241, 242,
|
|
|
|
68, 69, 70, 71, 72, 73, 74, 75, 30, 243,
|
|
|
|
76, 344, 373, 740, 742, 846, 834, 835, 374, 907,
|
|
|
|
886, 354, 597, 528, 836, 53, 27, 375, 425, 376,
|
|
|
|
810, 377, 917, 378, 919, 918, 379,-32766,-32766,-32766,
|
|
|
|
41, 42, 380, 347, 846, 43, 381, 345, 77, 45,
|
|
|
|
246, 300, 302,-32766, 500,-32766, 252, 382, 383, 384,
|
|
|
|
385, 386, 397, 125, 129, 346, 580, 620, 387, 388,
|
|
|
|
389, 390, 886, 840, 841, 842, 843, 837, 838, 260,
|
|
|
|
646, 85, 86, 87, 397, 844, 839, 346, 604, 526,
|
|
|
|
127, 78, 856, 280, 798, 264, 268, 46, 886, 88,
|
|
|
|
89, 90, 91, 92, 93, 94, 95, 96, 97, 98,
|
|
|
|
99, 100, 101, 102, 103, 104, 105, 106, 107, 108,
|
|
|
|
450, 247, 428, 106, 107, 108, 244, 247, 907,-32766,
|
|
|
|
515,-32766,-32766,-32766, 303, 555,-32766,-32766,-32766,-32766,
|
|
|
|
56, 58,-32766,-32766,-32766, 280,-32766,-32766,-32766, 370,
|
|
|
|
-32766, 55,-32766,-32766,-32766,-32766,-32766,-32766,-32766,-32766,
|
|
|
|
-32766, 595,-32766,-32766,-32766,-32766, 555, 301,-32766, 396,
|
|
|
|
-32766, 280,-32766,-32766,-32766,-32766,-32766,-32766, 359,-32766,
|
|
|
|
233,-32766, 54, 886,-32766, 857, 251, 685,-32766,-32766,
|
|
|
|
-32766, 666, 667,-32766,-32766, 647,-32766, 886, 131,-32766,
|
|
|
|
396, 266, 690, 342, 886,-32766,-32766,-32766, 278, 676,
|
|
|
|
282, 253, -108, 525,-32766, 133, 57, 703, 447, 465,
|
|
|
|
555, 122, 124, 35,-32766, 342, 40,-32766,-32766,-32766,
|
|
|
|
278,-32766, 121,-32766,-32766,-32766,-32766,-32766,-32766, 703,
|
|
|
|
890, 356,-32766,-32766,-32766,-32766, 880,-32766,-32766, 619,
|
|
|
|
-32766, 555, 126,-32766, 396,-32766, 280, 21,-32766,-32766,
|
|
|
|
-32766,-32766,-32766, 120,-32766, 249,-32766, 594, 231,-32766,
|
|
|
|
280, 618, 366,-32766,-32766,-32766, 259, 280,-32766,-32766,
|
|
|
|
914,-32766, 232, 695,-32766, 396, 800, 200, 342, 129,
|
|
|
|
-32766,-32766,-32766, 278, 360, 22, 248, 123, 250,-32766,
|
|
|
|
564, 287, 703, 503, 504, 555,-32766,-32766,-32766,-32766,
|
|
|
|
49, 128,-32766,-32766,-32766, 132,-32766, 207,-32766, 288,
|
|
|
|
-32766,-32766,-32766,-32766, 103, 104, 105,-32766,-32766,-32766,
|
|
|
|
-32766, 206,-32766,-32766, 617,-32766, 555, 203,-32766, 396,
|
|
|
|
-32766, 492, 28,-32766,-32766,-32766,-32766,-32766, 202,-32766,
|
|
|
|
201,-32766, 211, 495,-32766, 135, 307, 210,-32766,-32766,
|
|
|
|
-32766, 431, 345,-32766,-32766, 212,-32766, 700, 550,-32766,
|
|
|
|
396, 209, 382, 383, 134,-32766,-32766,-32766, 247, 532,
|
|
|
|
-32766, 580, 620, 387, 388, 534, 555, 689, 542, 535,
|
|
|
|
-32766, 561, 530,-32766,-32766,-32766, 539,-32766, 546,-32766,
|
|
|
|
545,-32766, 549, 608,-32766, 468,-32766,-32766,-32766,-32766,
|
|
|
|
-32766,-32766, 615,-32766,-32766, 457,-32766, 555, 328,-32766,
|
|
|
|
396,-32766, 512, 510,-32766,-32766,-32766,-32766,-32766, 509,
|
|
|
|
-32766, 556,-32766, 555, 352,-32766, 511, 569, 421,-32766,
|
|
|
|
-32766,-32766, 420, 345,-32766,-32766, 524,-32766, 417, 912,
|
|
|
|
-32766, 396, 802, 382, 383, 411,-32766,-32766,-32766, 409,
|
|
|
|
827,-32766, 580, 620, 387, 388, 408, 555, 355, 353,
|
|
|
|
571,-32766, 849, 697,-32766,-32766,-32766, 801,-32766, 508,
|
|
|
|
-32766, 489,-32766, 487, 410,-32766, -151,-32766,-32766,-32766,
|
|
|
|
-32766,-32766,-32766, 907,-32766,-32766, 286,-32766, 555, 285,
|
|
|
|
-32766, 396,-32766, 234, -148,-32766,-32766,-32766,-32766,-32766,
|
|
|
|
456,-32766, 422,-32766, 236, 496,-32766, 369, 506, 475,
|
|
|
|
-32766,-32766,-32766,-32766, 281,-32766,-32766, 277,-32766, 271,
|
|
|
|
621,-32766, 396, 485, 208, 279, 845, 588,-32766,-32766,
|
|
|
|
414, 490,-32766, 0, 0, 622, 0, 0, 555, 276,
|
|
|
|
686, 0,-32766, 0, 265,-32766,-32766,-32766, 267,-32766,
|
|
|
|
48,-32766, 0,-32766, 0, 0,-32766, 0, 592,-32766,
|
|
|
|
-32766,-32766,-32766,-32766, 351,-32766,-32766, -268,-32766, 555,
|
|
|
|
-260,-32766, 396,-32766, 321, -269,-32766,-32766,-32766,-32766,
|
|
|
|
-32766, 272,-32766, 520,-32766, 204, 205,-32766, 474, 354,
|
|
|
|
536,-32766,-32766,-32766, 565, 693,-32766,-32766, 596,-32766,
|
|
|
|
598, 694,-32766, 396, 198,-32766,-32766,-32766,-32766,-32766,
|
|
|
|
-32766, 696, 834, 835, 711, 712, 713, 710, 709, 708,
|
|
|
|
836,-32766, 632,-32766,-32766,-32766,-32766,-32766,-32767,-32767,
|
|
|
|
-32767,-32767, 634, 583, 642, 641, 345, 340, 636, 590,
|
|
|
|
-32766, 649, 299, 345, 340, 585, 382, 383, 599, 299,
|
|
|
|
531, 607, 538, 382, 383, 560, 620, 387, 388, 537,
|
|
|
|
52, 51, 560, 620, 387, 388, 589, 453, 591, 840,
|
|
|
|
841, 842, 843, 837, 838, 330, 593, 284, 345, 606,
|
|
|
|
915, 844, 839, 563, 284, 345, 340, 529, 382, 383,
|
|
|
|
562, 299,-32766,-32766,-32766, 382, 383, 580, 620, 387,
|
|
|
|
388, 527, 84, 540, 560, 620, 387, 388,-32766, 345,
|
|
|
|
-32766,-32766,-32766,-32766,-32766, 541, 544, 548, 853, 382,
|
|
|
|
383, 639, 345, 916, 640, 341, 284, 345, 580, 620,
|
|
|
|
387, 388, 382, 383, 881, 891, 678, 382, 383, 38,
|
|
|
|
345, 580, 620, 387, 388, 482, 580, 620, 387, 388,
|
|
|
|
382, 383, 913, 887, 809, 493, 581, 345, 885, 580,
|
|
|
|
620, 387, 388, 873, 883, 825, 911, 382, 383, 797,
|
|
|
|
345, 37, 36, 523, 616, 776, 580, 620, 387, 388,
|
|
|
|
382, 383,-32766,-32766,-32766, 39, 345, 701, 513, 580,
|
|
|
|
620, 387, 388, 44, 50, 350, 382, 383,-32766, 345,
|
|
|
|
-32766,-32766,-32766,-32766, 611, 580, 620, 387, 388, 382,
|
|
|
|
383, 34, 79, 80, 343, 283, 258, 257, 580, 620,
|
|
|
|
387, 388, 256, 81, 31, 82, 83, 0, 130, 136,
|
|
|
|
245, 240, 239, 33, 0, 230, 229, 32, 255, 199,
|
|
|
|
137, 0, 458, 896, 460, 777, 25, 23, 0, 24,
|
|
|
|
20, 26, 828, 780, 773, 522, 483, 304, 29, 805,
|
|
|
|
852, 804, 870, 833, 871, 807, 806, 803, 793, 514,
|
|
|
|
484, 368, 361, 308, 0, 0, 824, 882, 872, 884,
|
|
|
|
808, 794, 0, 795
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yycheck = array(
|
2011-10-30 12:03:29 +01:00
|
|
|
2, 3, 4, 5, 6, 8, 9, 10, 75, 11,
|
|
|
|
35, 36, 37, 38, 39, 40, 41, 42, 43, 8,
|
|
|
|
9, 24, 104, 26, 27, 12, 13, 14, 15, 16,
|
|
|
|
17, 18, 19, 20, 21, 22, 23, 75, 72, 41,
|
|
|
|
42, 123, 124, 70, 0, 47, 70, 49, 50, 51,
|
2011-10-21 11:07:06 +02:00
|
|
|
52, 53, 54, 55, 56, 57, 58, 59, 60, 61,
|
2011-10-30 12:03:29 +01:00
|
|
|
62, 63, 64, 50, 51, 132, 68, 69, 70, 75,
|
|
|
|
72, 139, 74, 141, 76, 77, 78, 79, 7, 81,
|
|
|
|
104, 83, 70, 85, 72, 73, 88, 8, 9, 10,
|
|
|
|
92, 93, 94, 95, 132, 97, 98, 95, 100, 133,
|
|
|
|
134, 103, 104, 24, 7, 26, 30, 105, 106, 111,
|
|
|
|
112, 113, 136, 7, 141, 139, 114, 115, 116, 117,
|
|
|
|
122, 123, 72, 125, 126, 127, 128, 129, 130, 131,
|
|
|
|
25, 8, 9, 10, 136, 137, 138, 139, 140, 141,
|
|
|
|
25, 143, 148, 145, 142, 147, 148, 24, 72, 26,
|
|
|
|
27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
|
|
|
|
37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
|
|
|
|
7, 48, 122, 44, 45, 46, 30, 48, 75, 64,
|
|
|
|
70, 8, 9, 10, 7, 70, 8, 9, 10, 74,
|
|
|
|
60, 60, 77, 78, 79, 145, 81, 24, 83, 7,
|
|
|
|
85, 60, 24, 88, 26, 27, 28, 92, 93, 94,
|
|
|
|
64, 140, 97, 98, 104, 100, 70, 7, 103, 104,
|
|
|
|
74, 145, 104, 77, 78, 79, 111, 81, 25, 83,
|
|
|
|
30, 85, 60, 72, 88, 132, 61, 140, 92, 93,
|
|
|
|
94, 123, 124, 97, 98, 140, 100, 72, 60, 103,
|
|
|
|
104, 120, 142, 96, 72, 140, 141, 111, 101, 72,
|
2011-11-04 07:40:48 +01:00
|
|
|
7, 30, 144, 70, 64, 141, 60, 110, 70, 145,
|
|
|
|
70, 141, 141, 143, 74, 96, 7, 77, 78, 79,
|
2011-10-30 12:03:29 +01:00
|
|
|
101, 81, 141, 83, 8, 85, 140, 141, 88, 110,
|
2011-11-04 07:40:48 +01:00
|
|
|
70, 7, 92, 93, 94, 64, 72, 97, 98, 142,
|
2011-10-30 12:03:29 +01:00
|
|
|
100, 70, 141, 103, 104, 74, 145, 144, 77, 78,
|
|
|
|
79, 111, 81, 141, 83, 30, 85, 140, 7, 88,
|
2011-11-04 07:40:48 +01:00
|
|
|
145, 142, 121, 92, 93, 94, 7, 145, 97, 98,
|
|
|
|
142, 100, 145, 140, 103, 104, 144, 7, 96, 141,
|
|
|
|
140, 141, 111, 101, 141, 144, 30, 141, 7, 64,
|
2011-10-30 12:03:29 +01:00
|
|
|
140, 60, 110, 65, 66, 70, 8, 9, 10, 74,
|
2011-11-04 07:40:48 +01:00
|
|
|
7, 141, 77, 78, 79, 25, 81, 12, 83, 145,
|
2011-10-30 12:03:29 +01:00
|
|
|
85, 140, 141, 88, 41, 42, 43, 92, 93, 94,
|
|
|
|
64, 12, 97, 98, 142, 100, 70, 12, 103, 104,
|
|
|
|
74, 65, 66, 77, 78, 79, 111, 81, 12, 83,
|
|
|
|
12, 85, 12, 86, 88, 90, 91, 12, 92, 93,
|
|
|
|
94, 120, 95, 97, 98, 12, 100, 140, 141, 103,
|
2011-11-04 07:40:48 +01:00
|
|
|
104, 12, 105, 106, 12, 140, 141, 111, 48, 25,
|
2011-10-30 12:03:29 +01:00
|
|
|
64, 114, 115, 116, 117, 25, 70, 140, 141, 25,
|
|
|
|
74, 140, 141, 77, 78, 79, 25, 81, 25, 83,
|
2011-11-04 07:40:48 +01:00
|
|
|
25, 85, 25, 25, 88, 70, 140, 141, 92, 93,
|
|
|
|
94, 64, 30, 97, 98, 72, 100, 70, 71, 103,
|
|
|
|
104, 74, 67, 72, 77, 78, 79, 111, 81, 72,
|
|
|
|
83, 70, 85, 70, 95, 88, 70, 70, 70, 92,
|
|
|
|
93, 94, 70, 95, 97, 98, 70, 100, 79, 70,
|
|
|
|
103, 104, 72, 105, 106, 70, 140, 141, 111, 70,
|
|
|
|
144, 64, 114, 115, 116, 117, 70, 70, 70, 70,
|
|
|
|
70, 74, 70, 70, 77, 78, 79, 72, 81, 72,
|
|
|
|
83, 72, 85, 72, 72, 88, 72, 140, 141, 92,
|
|
|
|
93, 94, 64, 75, 97, 98, 75, 100, 70, 75,
|
|
|
|
103, 104, 74, 87, 87, 77, 78, 79, 111, 81,
|
|
|
|
87, 83, 87, 85, 87, 89, 88, 95, 89, 99,
|
|
|
|
92, 93, 94, 104, 118, 97, 98, 119, 100, 135,
|
|
|
|
115, 103, 104, 101, 121, 102, 132, 140, 141, 111,
|
|
|
|
139, 146, 64, -1, -1, 115, -1, -1, 70, 118,
|
|
|
|
140, -1, 74, -1, 120, 77, 78, 79, 120, 81,
|
|
|
|
121, 83, -1, 85, -1, -1, 88, -1, 140, 141,
|
|
|
|
92, 93, 94, 64, 139, 97, 98, 135, 100, 70,
|
2011-10-30 12:03:29 +01:00
|
|
|
135, 103, 104, 74, 135, 135, 77, 78, 79, 111,
|
2011-11-04 07:40:48 +01:00
|
|
|
81, 135, 83, 135, 85, 41, 42, 88, 135, 139,
|
|
|
|
141, 92, 93, 94, 140, 140, 97, 98, 140, 100,
|
2011-10-30 12:03:29 +01:00
|
|
|
140, 140, 103, 104, 60, 8, 9, 10, 140, 141,
|
|
|
|
111, 140, 68, 69, 104, 105, 106, 107, 108, 109,
|
|
|
|
76, 24, 140, 26, 27, 28, 29, 30, 31, 32,
|
|
|
|
33, 34, 140, 140, 140, 140, 95, 96, 140, 140,
|
|
|
|
141, 140, 101, 95, 96, 140, 105, 106, 140, 101,
|
|
|
|
141, 140, 140, 105, 106, 114, 115, 116, 117, 140,
|
|
|
|
140, 140, 114, 115, 116, 117, 140, 123, 140, 125,
|
2011-11-04 07:40:48 +01:00
|
|
|
126, 127, 128, 129, 130, 131, 140, 136, 95, 140,
|
|
|
|
142, 137, 138, 142, 136, 95, 96, 141, 105, 106,
|
2011-10-30 12:03:29 +01:00
|
|
|
142, 101, 8, 9, 10, 105, 106, 114, 115, 116,
|
|
|
|
117, 141, 141, 141, 114, 115, 116, 117, 24, 95,
|
2011-11-04 07:40:48 +01:00
|
|
|
26, 27, 28, 29, 30, 141, 141, 141, 146, 105,
|
2011-10-30 12:03:29 +01:00
|
|
|
106, 142, 95, 142, 142, 142, 136, 95, 114, 115,
|
|
|
|
116, 117, 105, 106, 142, 142, 142, 105, 106, 143,
|
|
|
|
95, 114, 115, 116, 117, 142, 114, 115, 116, 117,
|
|
|
|
105, 106, 142, 142, 142, 80, 142, 95, 142, 114,
|
2011-11-04 07:40:48 +01:00
|
|
|
115, 116, 117, 142, 142, 142, 146, 105, 106, 142,
|
2011-10-30 12:03:29 +01:00
|
|
|
95, 143, 143, 82, 142, 144, 114, 115, 116, 117,
|
|
|
|
105, 106, 8, 9, 10, 143, 95, 142, 84, 114,
|
|
|
|
115, 116, 117, 143, 143, 143, 105, 106, 24, 95,
|
|
|
|
26, 27, 28, 29, 142, 114, 115, 116, 117, 105,
|
|
|
|
106, 143, 143, 143, 143, 143, 143, 143, 114, 115,
|
|
|
|
116, 117, 143, 143, 143, 143, 143, -1, 143, 143,
|
2011-11-04 07:40:48 +01:00
|
|
|
143, 143, 143, 143, -1, 143, 143, 143, 143, 143,
|
|
|
|
143, -1, 144, 144, 144, 144, 144, 144, -1, 144,
|
2011-10-30 12:03:29 +01:00
|
|
|
144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
|
2011-11-04 07:40:48 +01:00
|
|
|
144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
|
|
|
|
144, 144, 144, 144, -1, -1, 146, 146, 146, 146,
|
|
|
|
146, 146, -1, 147
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yybase = array(
|
2011-11-04 07:40:48 +01:00
|
|
|
0, 601, 608, 650, 674, 643, 735, 317, 764, 692,
|
|
|
|
687, 2, 751, 722, 705, 398, 398, 398, 398, 398,
|
|
|
|
410, 414, 421, 421, 423, 421, 404, -2, -2, -2,
|
|
|
|
146, 146, 316, 316, 316, 316, 316, 316, 316, 316,
|
|
|
|
146, 447, 559, 478, 366, 397, 115, 200, 285, 231,
|
|
|
|
528, 528, 528, 528, 528, 528, 528, 528, 528, 528,
|
|
|
|
528, 528, 528, 528, 528, 528, 528, 528, 528, 528,
|
|
|
|
528, 528, 528, 528, 528, 528, 528, 528, 528, 528,
|
|
|
|
528, 528, 528, 528, 528, 528, 528, 528, 528, 528,
|
|
|
|
528, 528, 528, 528, 528, 528, 528, 528, 528, 528,
|
|
|
|
528, 528, 528, 528, 528, 528, 528, 528, 528, 528,
|
|
|
|
528, 528, 528, 528, 528, 528, 528, 528, 528, 528,
|
|
|
|
528, 528, 528, 528, 528, 528, 528, 528, 528, 528,
|
|
|
|
528, 528, 528, 528, 528, 528, 528, 528, 105, 520,
|
|
|
|
489, 586, 588, 596, 599, 770, 769, 768, 767, 766,
|
|
|
|
466, 773, 670, 671, 340, 672, 676, 681, 682, 683,
|
|
|
|
654, 653, 663, 772, 445, 652, 774, 771, 123, 123,
|
|
|
|
123, 123, 123, 123, 123, 123, 123, 123, 276, 11,
|
2011-10-30 12:03:29 +01:00
|
|
|
348, 348, 348, 348, 348, 348, 348, 348, 348, 348,
|
2011-11-04 07:40:48 +01:00
|
|
|
348, 348, 348, 348, 348, 173, 173, 79, 604, 604,
|
2011-10-30 12:03:29 +01:00
|
|
|
604, 604, 604, 604, 604, 604, 604, 604, 604, 604,
|
2011-11-04 07:40:48 +01:00
|
|
|
604, 604, 604, -3, 178, 834, 744, 657, 657, 657,
|
|
|
|
657, 13, -25, -25, -25, -25, 157, 179, 242, 50,
|
|
|
|
50, 50, 161, 175, 76, 464, 426, 333, 333, 182,
|
2011-10-30 12:03:29 +01:00
|
|
|
182, 182, 182, 182, 182, 182, 182, 182, 182, 182,
|
2011-11-04 07:40:48 +01:00
|
|
|
182, 182, 182, 182, 182, 118, 118, 118, 118, -82,
|
|
|
|
-67, 103, -6, 110, 474, 220, 220, 220, 471, 454,
|
|
|
|
468, -27, 198, 129, 129, 129, 469, 469, 469, 469,
|
|
|
|
621, 469, 469, 469, -68, -34, -34, 12, 124, 297,
|
|
|
|
500, 130, 131, 301, 201, 476, 639, 479, 642, 485,
|
|
|
|
187, 485, 462, 187, 203, 326, 288, 105, 277, 495,
|
|
|
|
172, 206, 518, 418, 514, 475, 210, 177, 71, 291,
|
|
|
|
141, 224, 163, 473, 758, 691, 761, 760, 188, 641,
|
|
|
|
-38, 141, 759, 763, 460, 97, 762, 192, 515, 193,
|
|
|
|
439, 470, 439, 432, 710, 432, 413, 432, 269, 689,
|
|
|
|
422, 413, 432, 481, 413, 456, 439, 458, 432, 579,
|
|
|
|
572, 482, 330, 470, 459, 689, 432, 432, 482, 432,
|
|
|
|
432, 44, 729, 730, 428, 740, 711, 742, 712, 743,
|
|
|
|
446, 620, 465, 480, 749, 748, 747, 435, 449, 753,
|
|
|
|
741, 451, 448, 444, 750, 728, 389, 510, 380, 484,
|
|
|
|
754, 506, 484, 795, 499, 492, 488, 419, 571, 388,
|
|
|
|
386, 606, 451, 796, 411, 755, 484, 745, 581, 106,
|
|
|
|
375, 739, 417, 484, 734, 393, 484, 569, 752, 484,
|
|
|
|
784, 429, 451, 380, 380, 380, 688, 783, 353, 794,
|
|
|
|
656, 782, 781, 793, 792, 780, 791, 656, 779, 790,
|
|
|
|
385, 788, 319, 756, 495, 513, 450, 369, 568, 253,
|
|
|
|
412, 680, 484, 484, 509, 621, 484, 580, 355, 786,
|
|
|
|
461, 463, 632, 454, 452, 732, 787, 484, 472, 778,
|
|
|
|
253, 777, 702, 565, 622, 731, 634, 409, 776, 395,
|
|
|
|
598, 484, 746, 561, 765, 558, 555, 457, 407, 635,
|
|
|
|
401, 416, 775, 757, 425, 405, 554, 430, 390, 785,
|
|
|
|
403, 733, 553, 552, 636, 467, 508, 483, 477, 455,
|
|
|
|
453, 789, 427, 542, 531, 521, 0, 0, 0, 0,
|
2011-05-31 17:24:01 +02:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
2011-11-04 07:40:48 +01:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, -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,
|
2011-11-04 07:40:48 +01:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, 0, 0,
|
|
|
|
0, -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,
|
2011-11-04 07:40:48 +01:00
|
|
|
-2, -2, -2, -2, -2, -2, -2, -2, -2, 123,
|
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,
|
2011-11-04 07:40:48 +01:00
|
|
|
123, 123, 123, 123, 123, 123, 123, 123, 123, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 123,
|
2011-10-30 12:03:29 +01:00
|
|
|
123, 123, 123, 123, 123, 123, 123, 123, 123, 123,
|
2011-11-04 07:40:48 +01:00
|
|
|
123, 123, 123, 123, 123, 123, 123, 123, 123, -24,
|
2011-10-30 12:03:29 +01:00
|
|
|
-24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
|
2011-11-04 07:40:48 +01:00
|
|
|
-24, -24, -24, -24, 123, 123, 123, 123, 123, 123,
|
|
|
|
123, 123, 484, 129, 129, 129, 129, 570, 570, 570,
|
|
|
|
-24, -24, -24, -24, -24, -24, 570, 570, 129, 129,
|
|
|
|
-24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
|
|
|
|
-24, -24, -24, -24, -24, -24, -24, -24, -24, -24,
|
|
|
|
-24, -34, -34, -34, -24, -34, 182, 182, 182, -34,
|
|
|
|
-34, -34, 224, 224, 0, 0, 0, -24, -24, -24,
|
|
|
|
-24, 182, -24, -24, -24, 413, 0, 0, 0, 182,
|
|
|
|
253, 141, 0, 0, 451, 484, 315, 315, 315, 315,
|
|
|
|
413, 0, 413, 389, 0, 0, 0, 0, 0, 0,
|
|
|
|
754, 0, 0, 106, 755, 284, 451, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 451, 341, 341, 484, 311, 0,
|
|
|
|
484, 0, 0, 311, 484, 284, 0, 484, 0, 253
|
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,
|
2011-10-30 12:03:29 +01:00
|
|
|
32767,32767,32767,32767,32767, 101, 94, 106, 93, 102,
|
2011-10-21 14:09:41 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2011-11-04 07:40:48 +01:00
|
|
|
347, 347, 118, 118, 118, 118, 118, 118, 118, 118,
|
|
|
|
310,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
169, 169, 169,32767, 337, 337, 337, 337, 337,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,
|
|
|
|
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,
|
2011-11-04 07:40:48 +01:00
|
|
|
352,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,
|
2011-11-04 07:40:48 +01:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767, 227, 228,
|
|
|
|
230, 231, 168, 119, 338, 351, 167, 121, 195, 197,
|
|
|
|
245, 196, 173, 178, 179, 180, 181, 182, 183, 184,
|
|
|
|
185, 186, 187, 188, 172, 224, 223, 193, 307, 307,
|
|
|
|
310,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767, 194, 198, 200, 199, 215, 216, 213,
|
|
|
|
214, 171, 217, 218, 219, 220, 153, 153, 153, 346,
|
|
|
|
346, 346,32767,32767,32767, 154,32767, 207, 208,32767,
|
|
|
|
32767,32767,32767, 270,32767,32767,32767, 270,32767,32767,
|
|
|
|
32767, 270,32767,32767,32767, 113, 113, 113, 113, 113,
|
|
|
|
32767,32767,32767,32767, 278,32767,32767,32767,32767,32767,
|
|
|
|
280,32767,32767, 202, 203, 201,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767, 279,32767,32767,32767,32767,
|
|
|
|
323, 315, 266,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767, 259,32767,32767, 103, 105,32767,32767, 296,
|
|
|
|
317, 328,32767,32767,32767, 17,32767,32767,32767, 359,
|
|
|
|
323,32767,32767, 19,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767, 327,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767, 63, 275, 63,32767, 63, 309, 281,
|
|
|
|
32767,32767, 63, 74,32767, 72,32767, 76, 63, 92,
|
|
|
|
92, 248, 309, 54,32767, 281, 63, 63, 248, 63,
|
|
|
|
63,32767,32767,32767, 4,32767,32767,32767,32767,32767,
|
2011-10-30 12:03:29 +01:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2011-11-04 07:40:48 +01:00
|
|
|
32767, 261,32767,32767, 326, 325, 259,32767, 211, 190,
|
|
|
|
260,32767, 192,32767,32767, 264, 267,32767,32767,32767,
|
|
|
|
130,32767, 262,32767,32767,32767, 354,32767,32767, 170,
|
|
|
|
32767,32767,32767, 126,32767,32767, 61,32767,32767, 344,
|
|
|
|
32767,32767, 263, 204, 205, 206, 318,32767, 117,32767,
|
|
|
|
304,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767, 107,32767, 296,32767,32767, 128,32767, 75,
|
|
|
|
32767,32767, 174, 120,32767,32767, 353,32767,32767,32767,
|
|
|
|
32767, 314,32767,32767,32767,32767,32767, 62,32767,32767,
|
|
|
|
77,32767,32767,32767,32767,32767,32767, 109,32767, 165,
|
|
|
|
32767, 122,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767, 111,32767,
|
|
|
|
163,32767,32767,32767,32767, 4,32767, 147,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767, 25, 25, 3, 133,
|
|
|
|
3, 133, 25, 99, 25, 25, 133, 92, 92, 25,
|
|
|
|
25, 25, 140, 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-11-04 07:40:48 +01:00
|
|
|
140, 140, 173, 173, 173, 173, 173, 173, 173, 173,
|
|
|
|
140, 141, 142, 143, 147, 152, 154, 182, 175, 177,
|
|
|
|
172, 172, 172, 172, 174, 174, 174, 174, 174, 168,
|
|
|
|
169, 170, 171, 180, 760, 761, 398, 763, 783, 784,
|
|
|
|
785, 786, 787, 788, 789, 791, 728, 144, 145, 146,
|
|
|
|
148, 149, 150, 151, 153, 178, 179, 181, 197, 213,
|
|
|
|
214, 215, 216, 217, 218, 219, 220, 222, 223, 224,
|
|
|
|
225, 237, 238, 273, 274, 275, 433, 434, 435, 183,
|
|
|
|
184, 185, 186, 187, 188, 189, 190, 191, 192, 193,
|
|
|
|
155, 156, 157, 158, 159, 176, 160, 195, 161, 162,
|
|
|
|
163, 164, 196, 165, 194, 138, 166, 167, 454, 454,
|
|
|
|
454, 454, 454, 454, 454, 454, 454, 454, 454, 454,
|
|
|
|
454, 454, 454, 848, 848, 848, 848, 848, 848, 848,
|
|
|
|
848, 848, 848, 848, 848, 848, 848, 848, 430, 400,
|
|
|
|
400, 400, 400, 400, 400, 443, 444, 446, 449, 400,
|
|
|
|
400, 400, 400, 811, 400, 400, 400, 811, 400, 400,
|
|
|
|
400, 811, 400, 400, 400, 665, 665, 665, 665, 665,
|
|
|
|
296, 467, 494, 516, 574, 682, 637, 850, 851, 680,
|
|
|
|
638, 864, 661, 717, 663, 715, 629, 629, 629, 629,
|
|
|
|
900, 624, 630, 498, 401, 401, 401, 401, 401, 401,
|
|
|
|
559, 559, 559, 488, 401, 401, 401, 401, 404, 401,
|
|
|
|
401, 401, 404, 401, 401, 401, 404, 401, 401, 401,
|
|
|
|
429, 429, 429, 423, 462, 294, 558, 558, 558, 227,
|
|
|
|
426, 426, 399, 402, 228, 416, 326, 329, 270, 463,
|
|
|
|
466, 477, 262, 333, 491, 336, 455, 455, 455, 455,
|
|
|
|
455, 455, 455, 455, 455, 455, 455, 455, 455, 455,
|
|
|
|
455, 5, 601, 877, 602, 312, 15, 877, 6, 7,
|
|
|
|
862, 877, 772, 8, 9, 10, 365, 16, 11, 17,
|
|
|
|
12, 18, 13, 19, 14, 557, 557, 557, 406, 707,
|
|
|
|
339, 405, 406, 823, 822, 405, 406, 893, 332, 405,
|
|
|
|
293, 480, 289, 338, 648, 635, 633, 633, 631, 633,
|
|
|
|
533, 407, 655, 651, 313, 315, 415, 315, 876, 325,
|
|
|
|
367, 424, 876, 469, 476, 521, 876, 470, 441, 442,
|
|
|
|
445, 448, 479, 481, 502, 254, 497, 566, 501, 519,
|
|
|
|
892, 892, 892, 674, 906, 906, 543, 297, 298, 320,
|
|
|
|
320, 320, 909, 906, 1, 875, 2, 334, 572, 859,
|
|
|
|
726, 610, 412, 0, 320, 0, 0, 323, 909, 909,
|
|
|
|
432, 499, 331
|
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-11-04 07:40:48 +01:00
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 35, 35,
|
2011-10-21 14:09:41 +02:00
|
|
|
35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
|
2011-11-04 07:40:48 +01:00
|
|
|
35, 35, 35, 83, 83, 83, 83, 83, 83, 83,
|
|
|
|
83, 83, 83, 83, 83, 83, 83, 83, 67, 35,
|
|
|
|
35, 35, 35, 35, 35, 75, 75, 75, 75, 35,
|
2011-10-21 11:07:06 +02:00
|
|
|
35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
|
2011-11-04 07:40:48 +01:00
|
|
|
35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
|
|
|
|
43, 21, 21, 35, 12, 12, 12, 12, 12, 12,
|
|
|
|
12, 12, 12, 12, 12, 12, 35, 35, 35, 35,
|
|
|
|
92, 35, 35, 35, 72, 72, 72, 72, 72, 72,
|
|
|
|
7, 7, 7, 84, 72, 72, 72, 72, 72, 72,
|
|
|
|
72, 72, 72, 72, 72, 72, 72, 72, 72, 72,
|
|
|
|
28, 28, 28, 28, 28, 28, 6, 6, 6, 40,
|
|
|
|
28, 28, 28, 28, 40, 28, 28, 28, 82, 28,
|
|
|
|
28, 28, 82, 28, 28, 28, 76, 76, 76, 76,
|
|
|
|
76, 76, 76, 76, 76, 76, 76, 76, 76, 76,
|
|
|
|
76, 13, 29, 73, 29, 26, 13, 73, 13, 13,
|
|
|
|
87, 73, 63, 13, 13, 13, 63, 13, 13, 13,
|
|
|
|
13, 13, 13, 13, 13, 5, 5, 5, 79, 60,
|
|
|
|
60, 76, 79, 81, 81, 76, 79, 90, 62, 76,
|
|
|
|
4, 42, 42, 42, 5, 5, 5, 5, 5, 5,
|
|
|
|
5, 5, 5, 5, 30, 4, 30, 4, 74, 27,
|
|
|
|
46, 30, 74, 36, 36, 36, 74, 30, 47, 47,
|
|
|
|
47, 47, 47, 47, 47, 30, 30, 10, 30, 30,
|
|
|
|
74, 74, 74, 49, 93, 93, 44, 43, 43, 80,
|
|
|
|
80, 80, 93, 93, 2, 74, 2, 9, 11, 86,
|
|
|
|
64, 34, 4, -1, 80, -1, -1, 4, 93, 93,
|
|
|
|
4, 69, 80
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yygbase = array(
|
2011-11-04 07:40:48 +01:00
|
|
|
0, 0, -174, 0, 16, 284, 225, 199, 0, 15,
|
|
|
|
36, 2, -27, -266, 0, -30, 0, 0, 0, 0,
|
|
|
|
0, 120, 0, 0, 0, 0, 212, 79, -9, 239,
|
|
|
|
-31, 0, 0, 0, -2, -90, 67, 0, 0, 0,
|
|
|
|
-302, 0, 24, -190, 39, 0, 61, 295, 0, 40,
|
2011-10-30 12:03:29 +01:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
2011-11-04 07:40:48 +01:00
|
|
|
54, 0, 68, 25, -5, 0, 0, 107, 0, 3,
|
|
|
|
0, 0, -35, 20, 75, 90, 48, 0, 0, 45,
|
|
|
|
84, 27, -26, -75, 4, 0, -3, 70, 0, 0,
|
|
|
|
66, 0, 150, 83, 0
|
2011-04-18 19:02:30 +02:00
|
|
|
);
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected static $yygdefault = array(
|
2011-11-04 07:40:48 +01:00
|
|
|
-32768, 371, 3, 553, 391, 577, 578, 579, 316, 314,
|
|
|
|
567, 573, 471, 4, 575, 139, 305, 582, 306, 505,
|
|
|
|
584, 418, 586, 587, 317, 318, 419, 324, 221, 600,
|
|
|
|
507, 322, 603, 363, 609, 309, 451, 392, 357, 464,
|
|
|
|
226, 427, 459, 295, 547, 452, 358, 437, 438, 675,
|
|
|
|
683, 364, 335, 478, 687, 688, 263, 692, 517, 518,
|
|
|
|
706, 235, 327, 349, 727, 790, 792, 403, 413, 486,
|
|
|
|
337, 310, 393, 394, 395, 439, 819, 816, 292, 867,
|
|
|
|
290, 436, 261, 854, 472, 362, 899, 863, 291, 311,
|
|
|
|
894, 348, 901, 908, 461
|
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,
|
|
|
|
22, 22, 29, 29, 32, 32, 31, 31, 23, 23,
|
|
|
|
23, 23, 43, 43, 43, 44, 44, 20, 20, 16,
|
|
|
|
16, 18, 18, 17, 17, 19, 19, 36, 36, 45,
|
|
|
|
45, 45, 45, 46, 46, 46, 46, 47, 47, 48,
|
|
|
|
48, 48, 48, 24, 24, 49, 49, 49, 25, 25,
|
|
|
|
25, 25, 40, 40, 50, 50, 50, 50, 55, 55,
|
|
|
|
56, 56, 57, 57, 57, 57, 58, 59, 59, 54,
|
|
|
|
54, 51, 51, 53, 53, 61, 61, 60, 60, 60,
|
|
|
|
60, 60, 60, 52, 52, 52, 52, 26, 26, 21,
|
|
|
|
21, 15, 15, 15, 15, 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,
|
2011-10-30 12:03:29 +01:00
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 69, 69,
|
2011-11-04 07:40:48 +01:00
|
|
|
70, 70, 71, 71, 71, 71, 71, 71, 71, 76,
|
|
|
|
76, 35, 35, 35, 63, 63, 77, 77, 72, 72,
|
|
|
|
78, 78, 78, 78, 78, 65, 65, 65, 68, 68,
|
|
|
|
68, 64, 64, 83, 83, 83, 83, 83, 83, 83,
|
|
|
|
83, 83, 83, 83, 83, 83, 83, 12, 12, 12,
|
|
|
|
12, 12, 12, 66, 66, 66, 66, 84, 84, 86,
|
|
|
|
86, 85, 85, 87, 87, 28, 28, 28, 88, 88,
|
|
|
|
88, 88, 88, 74, 74, 79, 79, 73, 73, 89,
|
|
|
|
89, 89, 89, 80, 80, 80, 80, 75, 75, 81,
|
|
|
|
81, 81, 62, 62, 90, 90, 90, 67, 67, 91,
|
|
|
|
91, 92, 92, 92, 92, 82, 82, 82, 82, 93,
|
|
|
|
93, 93, 93, 93, 93, 93, 94, 94, 94
|
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,
|
|
|
|
1, 4, 1, 4, 1, 4, 3, 5, 3, 4,
|
|
|
|
4, 5, 0, 5, 4, 1, 1, 1, 4, 0,
|
|
|
|
6, 0, 7, 0, 2, 0, 3, 1, 0, 3,
|
|
|
|
5, 5, 7, 0, 1, 1, 1, 1, 0, 1,
|
|
|
|
2, 3, 4, 3, 1, 1, 2, 4, 3, 5,
|
|
|
|
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, 3, 5, 1, 3, 3, 1, 0,
|
|
|
|
1, 1, 6, 3, 4, 6, 3, 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, 0, 4,
|
2011-11-04 07:40:48 +01:00
|
|
|
4, 2, 4, 6, 8, 4, 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, 3, 6,
|
|
|
|
4, 4, 4, 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
|
|
|
|
|
|
|
/**
|
2011-05-31 16:33:11 +02:00
|
|
|
* Parses PHP code into a node tree.
|
|
|
|
*
|
2011-06-12 17:12:47 +02:00
|
|
|
* @param PHPParser_Lexer $lexer A lexer
|
2011-05-31 16:33:11 +02:00
|
|
|
*
|
|
|
|
* @return array Array of statements
|
2011-04-18 19:02:30 +02:00
|
|
|
*/
|
2011-06-12 17:12:47 +02:00
|
|
|
public function parse(PHPParser_Lexer $lexer) {
|
2011-06-28 14:11:12 +02:00
|
|
|
$this->lexer = $lexer;
|
2011-06-12 17:19:12 +02:00
|
|
|
|
2011-06-28 14:11:12 +02:00
|
|
|
$this->yysp = 0; // Stack pos
|
|
|
|
$yysstk = array($yystate = 0); // State stack
|
|
|
|
$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
|
|
|
|
2011-06-28 14:11:12 +02:00
|
|
|
$yychar = -1;
|
2011-04-18 19:02:30 +02:00
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
if (self::$yybase[$yystate] == 0) {
|
|
|
|
$yyn = self::$yydefault[$yystate];
|
|
|
|
} else {
|
|
|
|
if ($yychar < 0) {
|
2011-07-03 16:35:45 +02:00
|
|
|
if (($yychar = $lexer->lex($yylval, $yyline, $yyDC)) < 0)
|
2011-04-18 19:02:30 +02:00
|
|
|
$yychar = 0;
|
|
|
|
$yychar = $yychar < self::YYMAXLEX ?
|
|
|
|
self::$yytranslate[$yychar] : self::YYBADCH;
|
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
|
|
|
}
|
|
|
|
if ((($yyn = self::$yybase[$yystate] + $yychar) >= 0
|
|
|
|
&& $yyn < self::YYLAST && self::$yycheck[$yyn] == $yychar
|
|
|
|
|| ($yystate < self::YY2TBLSTATE
|
|
|
|
&& ($yyn = self::$yybase[$yystate + self::YYNLSTATES]
|
|
|
|
+ $yychar) >= 0
|
|
|
|
&& $yyn < self::YYLAST
|
|
|
|
&& self::$yycheck[$yyn] == $yychar))
|
|
|
|
&& ($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
|
|
|
|
2011-06-28 14:11:12 +02:00
|
|
|
$yysstk[$this->yysp] = $yystate = $yyn;
|
2011-04-18 19:02:30 +02:00
|
|
|
$this->yyastk[$this->yysp] = $yylval;
|
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
|
|
|
$yychar = -1;
|
|
|
|
|
|
|
|
if ($yyn < self::YYNLSTATES)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* $yyn >= YYNLSTATES means shift-and-reduce */
|
|
|
|
$yyn -= self::YYNLSTATES;
|
|
|
|
} else {
|
|
|
|
$yyn = -$yyn;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$yyn = self::$yydefault[$yystate];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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}(
|
|
|
|
$yylstk[$this->yysp - self::$yylen[$yyn]],
|
|
|
|
$yydstk[$this->yysp - self::$yylen[$yyn]]
|
|
|
|
);
|
2011-06-05 18:52:41 +02:00
|
|
|
} catch (PHPParser_Error $e) {
|
2011-06-28 14:11:12 +02:00
|
|
|
$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];
|
|
|
|
if (($yyp = self::$yygbase[$yyn] + $yysstk[$this->yysp]) >= 0
|
|
|
|
&& $yyp < self::YYGLAST
|
|
|
|
&& self::$yygcheck[$yyp] == $yyn) {
|
|
|
|
$yystate = self::$yygoto[$yyp];
|
2011-04-18 19:02:30 +02:00
|
|
|
} else {
|
2011-04-20 13:40:29 +02:00
|
|
|
$yystate = self::$yygdefault[$yyn];
|
|
|
|
}
|
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
|
|
|
|
2011-04-20 13:40:29 +02:00
|
|
|
$yysstk[$this->yysp] = $yystate;
|
|
|
|
$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(
|
|
|
|
'Unexpected token ' . self::$yyterminals[$yychar],
|
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
|
|
|
}
|
|
|
|
|
|
|
|
if ($yystate < self::YYNLSTATES)
|
|
|
|
break;
|
|
|
|
/* >= YYNLSTATES means shift-and-reduce */
|
|
|
|
$yyn = $yystate - self::YYNLSTATES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn1($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn2($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn3($line, $docComment) {
|
2011-05-27 18:20:44 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn4($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn5($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn6($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn7($line, $docComment) {
|
2011-05-27 18:20:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn8($line, $docComment) {
|
2011-05-27 18:20:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn9($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_HaltCompiler($this->lexer->handleHaltCompiler(), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn10($line, $docComment) {
|
2011-10-21 16:51:37 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Namespace(new PHPParser_Node_Name($this->yyastk[$this->yysp-(3-2)], $line, $docComment), null, $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn11($line, $docComment) {
|
2011-10-21 16:51:37 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Namespace(new PHPParser_Node_Name($this->yyastk[$this->yysp-(5-2)], $line, $docComment), $this->yyastk[$this->yysp-(5-4)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn12($line, $docComment) {
|
2011-10-21 16:51:37 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Namespace(null, $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn13($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Use($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn14($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Const($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn15($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn16($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn17($line, $docComment) {
|
2011-10-15 19:28:15 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($this->yyastk[$this->yysp-(1-1)], $line, $docComment), null, $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn18($line, $docComment) {
|
2011-10-15 19:28:15 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($this->yyastk[$this->yysp-(3-1)], $line, $docComment), $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn19($line, $docComment) {
|
2011-10-15 19:28:15 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($this->yyastk[$this->yysp-(2-2)], $line, $docComment), null, $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn20($line, $docComment) {
|
2011-10-15 19:28:15 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_UseUse(new PHPParser_Node_Name($this->yyastk[$this->yysp-(4-2)], $line, $docComment), $this->yyastk[$this->yysp-(4-4)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn21($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn22($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn23($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Const($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn24($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn25($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn26($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn27($line, $docComment) {
|
2011-05-27 18:20:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn28($line, $docComment) {
|
2011-05-27 18:20:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn29($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn30($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn31($line, $docComment) {
|
2011-10-28 19:06:24 +02:00
|
|
|
$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)]), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn32($line, $docComment) {
|
2011-10-28 19:06:24 +02:00
|
|
|
$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)]), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn33($line, $docComment) {
|
2011-10-28 23:59:00 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_While($this->yyastk[$this->yysp-(5-3)], $this->yyastk[$this->yysp-(5-5)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn34($line, $docComment) {
|
2011-10-21 16:51:37 +02:00
|
|
|
$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)]), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn35($line, $docComment) {
|
2011-10-28 23:59:00 +02:00
|
|
|
$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)]), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn36($line, $docComment) {
|
2011-10-15 19:28:15 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Switch($this->yyastk[$this->yysp-(5-3)], $this->yyastk[$this->yysp-(5-5)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn37($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Break(null, $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn38($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Break($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn39($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Continue(null, $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn40($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Continue($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn41($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Return(null, $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn42($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Return($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn43($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Global($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn44($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Static($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn45($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Echo($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn46($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_InlineHTML($this->yyastk[$this->yysp-(1-1)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn47($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn48($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Unset($this->yyastk[$this->yysp-(5-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn49($line, $docComment) {
|
2011-10-28 23:59:00 +02:00
|
|
|
$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)]), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn50($line, $docComment) {
|
2011-10-28 23:59:00 +02:00
|
|
|
$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)]), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn51($line, $docComment) {
|
2011-10-28 23:59:00 +02:00
|
|
|
$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)]), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn52($line, $docComment) {
|
2011-10-28 23:59:00 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Declare($this->yyastk[$this->yysp-(5-3)], $this->yyastk[$this->yysp-(5-5)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn53($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = array(); /* means: no statement */
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn54($line, $docComment) {
|
2011-10-15 19:28:15 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_TryCatch($this->yyastk[$this->yysp-(5-3)], $this->yyastk[$this->yysp-(5-5)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn55($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Throw($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn56($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Goto($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn57($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Label($this->yyastk[$this->yysp-(2-1)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn58($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn59($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn60($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$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)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn61($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn62($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn63($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = false;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn64($line, $docComment) {
|
2011-09-24 16:53:40 +02:00
|
|
|
$this->yyval = true;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn65($line, $docComment) {
|
2011-10-28 19:14:06 +02:00
|
|
|
$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)]), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn66($line, $docComment) {
|
2011-10-28 19:06:24 +02:00
|
|
|
$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)]), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn67($line, $docComment) {
|
2011-10-28 19:06:24 +02:00
|
|
|
$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)]), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn68($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Trait($this->yyastk[$this->yysp-(5-2)], $this->yyastk[$this->yysp-(5-4)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn69($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = 0;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn70($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_ABSTRACT;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn71($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_FINAL;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn72($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn73($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(2-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn74($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn75($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(2-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn76($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn77($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(2-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn78($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn79($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn80($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn81($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn82($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn83($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn84($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn85($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn86($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array(new PHPParser_Node_Stmt_DeclareDeclare($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment));
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn87($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyastk[$this->yysp-(5-1)][] = new PHPParser_Node_Stmt_DeclareDeclare($this->yyastk[$this->yysp-(5-3)], $this->yyastk[$this->yysp-(5-5)], $line, $docComment); $this->yyval = $this->yyastk[$this->yysp-(5-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn88($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn89($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-3)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn90($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn91($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(5-3)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn92($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn93($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyastk[$this->yysp-(5-1)][] = new PHPParser_Node_Stmt_Case($this->yyastk[$this->yysp-(5-3)], $this->yyastk[$this->yysp-(5-5)], $line, $docComment); $this->yyval = $this->yyastk[$this->yysp-(5-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn94($line, $docComment) {
|
|
|
|
$this->yyastk[$this->yysp-(4-1)][] = new PHPParser_Node_Stmt_Case(null, $this->yyastk[$this->yysp-(4-4)], $line, $docComment); $this->yyval = $this->yyastk[$this->yysp-(4-1)];
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn95() {
|
2011-05-27 18:20:44 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp];
|
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn96() {
|
|
|
|
$this->yyval = $this->yyastk[$this->yysp];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn97($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn98($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn99($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn100($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyastk[$this->yysp-(6-1)][] = new PHPParser_Node_Stmt_ElseIf($this->yyastk[$this->yysp-(6-4)], is_array($this->yyastk[$this->yysp-(6-6)]) ? $this->yyastk[$this->yysp-(6-6)] : array($this->yyastk[$this->yysp-(6-6)]), $line, $docComment); $this->yyval = $this->yyastk[$this->yysp-(6-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn101($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn102($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyastk[$this->yysp-(7-1)][] = new PHPParser_Node_Stmt_ElseIf($this->yyastk[$this->yysp-(7-4)], $this->yyastk[$this->yysp-(7-7)], $line, $docComment); $this->yyval = $this->yyastk[$this->yysp-(7-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn103($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn104($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$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)]), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn105($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn106($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Else($this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn107($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn108($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn109($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array(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)], $line, $docComment));
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn110($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array(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)], $line, $docComment));
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn111($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyastk[$this->yysp-(5-1)][] = new PHPParser_Node_Param(substr($this->yyastk[$this->yysp-(5-5)], 1), null, $this->yyastk[$this->yysp-(5-3)], $this->yyastk[$this->yysp-(5-4)], $line, $docComment); $this->yyval = $this->yyastk[$this->yysp-(5-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn112($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyastk[$this->yysp-(7-1)][] = new PHPParser_Node_Param(substr($this->yyastk[$this->yysp-(7-5)], 1), $this->yyastk[$this->yysp-(7-7)], $this->yyastk[$this->yysp-(7-3)], $this->yyastk[$this->yysp-(7-4)], $line, $docComment); $this->yyval = $this->yyastk[$this->yysp-(7-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn113($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn114($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn115($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = 'array';
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn116($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = 'callable';
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn117($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn118($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn119($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array(new PHPParser_Node_Arg($this->yyastk[$this->yysp-(1-1)], false, $line, $docComment));
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn120($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array(new PHPParser_Node_Arg($this->yyastk[$this->yysp-(2-2)], true, $line, $docComment));
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn121($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = new PHPParser_Node_Arg($this->yyastk[$this->yysp-(3-3)], false, $line, $docComment); $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn122($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyastk[$this->yysp-(4-1)][] = new PHPParser_Node_Arg($this->yyastk[$this->yysp-(4-4)], true, $line, $docComment); $this->yyval = $this->yyastk[$this->yysp-(4-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn123($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn124($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn125($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->yysp-(1-1)], 1), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn126($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn127($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn128($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = new PHPParser_Node_Stmt_StaticVar(substr($this->yyastk[$this->yysp-(3-3)], 1), null, $line, $docComment); $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn129($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyastk[$this->yysp-(5-1)][] = new PHPParser_Node_Stmt_StaticVar(substr($this->yyastk[$this->yysp-(5-3)], 1), $this->yyastk[$this->yysp-(5-5)], $line, $docComment); $this->yyval = $this->yyastk[$this->yysp-(5-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn130($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array(new PHPParser_Node_Stmt_StaticVar(substr($this->yyastk[$this->yysp-(1-1)], 1), null, $line, $docComment));
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn131($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array(new PHPParser_Node_Stmt_StaticVar(substr($this->yyastk[$this->yysp-(3-1)], 1), $this->yyastk[$this->yysp-(3-3)], $line, $docComment));
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn132($line, $docComment) {
|
2011-10-30 12:03:29 +01: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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn133($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn134($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_Property($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn135($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_ClassConst($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn136($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$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)]), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn137($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Stmt_TraitUse($this->yyastk[$this->yysp-(3-2)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn138($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn139($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn140($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn141($line, $docComment) {
|
2011-10-30 12:03:29 +01: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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn142($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$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)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn143($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$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)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn144($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$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, $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn145($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$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)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn146($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn147($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn148($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array(null, $this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn149($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn150($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn151($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn152($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_PUBLIC;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn153($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_PUBLIC;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn154($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn155($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn156($line, $docComment) {
|
2011-10-30 12:03:29 +01: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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn157($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_PUBLIC;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn158($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_PROTECTED;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn159($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_PRIVATE;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn160($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_STATIC;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn161($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_ABSTRACT;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn162($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_FINAL;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn163($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyastk[$this->yysp-(3-1)][] = new PHPParser_Node_Stmt_PropertyProperty(substr($this->yyastk[$this->yysp-(3-3)], 1), null, $line, $docComment); $this->yyval = $this->yyastk[$this->yysp-(3-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn164($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyastk[$this->yysp-(5-1)][] = new PHPParser_Node_Stmt_PropertyProperty(substr($this->yyastk[$this->yysp-(5-3)], 1), $this->yyastk[$this->yysp-(5-5)], $line, $docComment); $this->yyval = $this->yyastk[$this->yysp-(5-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn165($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array(new PHPParser_Node_Stmt_PropertyProperty(substr($this->yyastk[$this->yysp-(1-1)], 1), null, $line, $docComment));
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn166($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array(new PHPParser_Node_Stmt_PropertyProperty(substr($this->yyastk[$this->yysp-(3-1)], 1), $this->yyastk[$this->yysp-(3-3)], $line, $docComment));
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn167($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn168($line, $docComment) {
|
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
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn169($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn170($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn171($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn172($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignList($this->yyastk[$this->yysp-(6-3)], $this->yyastk[$this->yysp-(6-6)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn173($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Assign($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn174($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignRef($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-4)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn175($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Assign($this->yyastk[$this->yysp-(6-1)], new PHPParser_Node_Expr_New($this->yyastk[$this->yysp-(6-5)], $this->yyastk[$this->yysp-(6-6)], $line, $docComment), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn176($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_New($this->yyastk[$this->yysp-(3-2)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn177($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Clone($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn178($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignPlus($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn179($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignMinus($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn180($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignMul($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn181($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignDiv($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn182($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignConcat($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn183($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignMod($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn184($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignBitwiseAnd($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn185($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignBitwiseOr($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn186($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignBitwiseXor($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn187($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignShiftLeft($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn188($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_AssignShiftRight($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn189($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_PostInc($this->yyastk[$this->yysp-(2-1)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn190($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_PreInc($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn191($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_PostDec($this->yyastk[$this->yysp-(2-1)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn192($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_PreDec($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn193($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_BooleanOr($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn194($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_BooleanAnd($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn195($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_LogicalOr($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn196($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_LogicalAnd($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn197($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_LogicalXor($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn198($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_BitwiseOr($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn199($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_BitwiseAnd($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn200($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_BitwiseXor($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn201($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Concat($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn202($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Plus($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn203($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Minus($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn204($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Mul($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn205($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Div($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn206($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Mod($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn207($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ShiftLeft($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn208($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ShiftRight($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn209($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_UnaryPlus($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn210($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_UnaryMinus($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn211($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_BooleanNot($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn212($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_BitwiseNot($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn213($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Identical($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn214($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_NotIdentical($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn215($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Equal($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn216($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_NotEqual($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn217($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Smaller($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn218($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_SmallerOrEqual($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn219($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Greater($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn220($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_GreaterOrEqual($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn221($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Instanceof($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn222($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn223($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$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)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn224($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Ternary($this->yyastk[$this->yysp-(4-1)], null, $this->yyastk[$this->yysp-(4-4)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn225($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Isset($this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn226($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Empty($this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn227($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Include($this->yyastk[$this->yysp-(2-2)], PHPParser_Node_Expr_Include::TYPE_INCLUDE, $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn228($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Include($this->yyastk[$this->yysp-(2-2)], PHPParser_Node_Expr_Include::TYPE_INCLUDE_ONCE, $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn229($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Eval($this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn230($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Include($this->yyastk[$this->yysp-(2-2)], PHPParser_Node_Expr_Include::TYPE_REQUIRE, $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn231($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Include($this->yyastk[$this->yysp-(2-2)], PHPParser_Node_Expr_Include::TYPE_REQUIRE_ONCE, $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn232($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Cast_Int($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn233($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Cast_Double($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn234($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Cast_String($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn235($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Cast_Array($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn236($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Cast_Object($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn237($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Cast_Bool($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn238($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Cast_Unset($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-08-14 15:36:15 +02:00
|
|
|
protected function yyn239($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Exit($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-10-21 11:07:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn240($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ErrorSuppress($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-10-21 14:09:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn241($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-10-29 00:16:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn242($line, $docComment) {
|
2011-10-30 12:03:29 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Array($this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn243($line, $docComment) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Array($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn244($line, $docComment) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_ShellExec($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn245($line, $docComment) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_Print($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn246($line, $docComment) {
|
|
|
|
$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)]), $line, $docComment);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn247($line, $docComment) {
|
|
|
|
$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)]), $line, $docComment);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn248($line, $docComment) {
|
|
|
|
$this->yyval = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn249($line, $docComment) {
|
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-3)];
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn250($line, $docComment) {
|
|
|
|
$this->yyastk[$this->yysp-(4-1)][] = new PHPParser_Node_Expr_ClosureUse(substr($this->yyastk[$this->yysp-(4-4)], 1), $this->yyastk[$this->yysp-(4-3)], $line, $docComment); $this->yyval = $this->yyastk[$this->yysp-(4-1)];
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn251($line, $docComment) {
|
|
|
|
$this->yyval = array(new PHPParser_Node_Expr_ClosureUse(substr($this->yyastk[$this->yysp-(2-2)], 1), $this->yyastk[$this->yysp-(2-1)], $line, $docComment));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn252($line, $docComment) {
|
|
|
|
$this->yyval = new PHPParser_Node_Expr_FuncCall($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn253($line, $docComment) {
|
|
|
|
$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)], $line, $docComment);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn254($line, $docComment) {
|
|
|
|
$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)], $line, $docComment);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn255($line, $docComment) {
|
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) {
|
2011-10-20 22:16:25 +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, $line, $docComment), $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
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
|
|
|
}
|
|
|
|
|
2011-08-11 10:25:51 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_StaticCall($tmp->var->class, $this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-08-14 18:44:24 +02:00
|
|
|
$tmp->var = new PHPParser_Node_Expr_Variable($tmp->var->name, $line, $docComment);
|
2011-06-02 16:29:28 +02:00
|
|
|
} else {
|
|
|
|
throw new Exception;
|
|
|
|
}
|
|
|
|
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn256($line, $docComment) {
|
2011-10-29 00:16:29 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_FuncCall($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn257($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn258($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn259($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Name('static', $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn260($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-10-21 11:50:03 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn261($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Name($this->yyastk[$this->yysp-(1-1)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn262($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Name_FullyQualified($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn263($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Name_Relative($this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn264($line, $docComment) {
|
2011-10-21 11:30:27 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn265($line, $docComment) {
|
2011-10-21 11:50:03 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn266($line, $docComment) {
|
2011-10-21 14:09:41 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn267($line, $docComment) {
|
2011-10-29 00:16:29 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-11-04 07:40:48 +01:00
|
|
|
protected function yyn268($line, $docComment) {
|
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn269($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-11-04 07:40:48 +01:00
|
|
|
protected function yyn270() {
|
|
|
|
$this->yyval = $this->yyastk[$this->yysp];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn271($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_PropertyFetch($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn272($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_PropertyFetch($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn273($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn274($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn275($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn276($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn277($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn278($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn279($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = array(PHPParser_Node_Scalar_String::parseEscapeSequences($this->yyastk[$this->yysp-(1-1)], '`'));
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn280($line, $docComment) {
|
2011-11-04 07:40:48 +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
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn281($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn282($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn283($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_LNumber((int) $this->yyastk[$this->yysp-(1-1)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn284($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_DNumber((double) $this->yyastk[$this->yysp-(1-1)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn285($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = PHPParser_Node_Scalar_String::create($this->yyastk[$this->yysp-(1-1)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn286($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_LineConst($line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn287($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_FileConst($line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn288($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_DirConst($line, $docComment);
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn289($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_ClassConst($line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn290($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_TraitConst($line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn291($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_MethodConst($line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn292($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_FuncConst($line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn293($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_NSConst($line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn294($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_String(PHPParser_Node_Scalar_String::parseEscapeSequences($this->yyastk[$this->yysp-(3-2)], null), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn295($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_String('', $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn296($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ConstFetch($this->yyastk[$this->yysp-(1-1)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn297($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn298($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ClassConstFetch($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn299($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_UnaryPlus($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn300($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_UnaryMinus($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn301($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Array($this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn302($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Array($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn303($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn304($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ClassConstFetch($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn305($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
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)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn306($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
foreach ($this->yyastk[$this->yysp-(3-2)] as &$s) { if (is_string($s)) { $s = PHPParser_Node_Scalar_String::parseEscapeSequences($s, null); } }; $this->yyval = new PHPParser_Node_Scalar_Encapsed($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-11-04 07:40:48 +01:00
|
|
|
protected function yyn307($line, $docComment) {
|
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-11-04 07:40:48 +01:00
|
|
|
protected function yyn308($line, $docComment) {
|
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-11-04 07:40:48 +01:00
|
|
|
protected function yyn309() {
|
|
|
|
$this->yyval = $this->yyastk[$this->yysp];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-11-04 07:40:48 +01:00
|
|
|
protected function yyn310() {
|
|
|
|
$this->yyval = $this->yyastk[$this->yysp];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn311($line, $docComment) {
|
2011-11-04 07:40:48 +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
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn312($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn313($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->yysp-(3-3)], $this->yyastk[$this->yysp-(3-1)], false, $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn314($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->yysp-(1-1)], null, false, $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn315($line, $docComment) {
|
2011-10-29 00:16:29 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn316($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn317($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn318($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_PropertyFetch($this->yyastk[$this->yysp-(3-1)], $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn319($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$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)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn320($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_FuncCall($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn321($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn322($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn323($line, $docComment) {
|
2011-10-21 14:09:41 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn324($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($this->yyastk[$this->yysp-(2-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn325($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn326($line, $docComment) {
|
2011-10-29 00:16:29 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn327($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_StaticPropertyFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-4)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn328($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn329($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_StaticPropertyFetch($this->yyastk[$this->yysp-(3-1)], substr($this->yyastk[$this->yysp-(3-3)], 1), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn330($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_StaticPropertyFetch($this->yyastk[$this->yysp-(6-1)], $this->yyastk[$this->yysp-(6-5)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn331($line, $docComment) {
|
2011-10-21 14:09:41 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn332($line, $docComment) {
|
2011-10-29 00:16:29 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn333($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn334($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch($this->yyastk[$this->yysp-(4-1)], $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn335($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->yysp-(1-1)], 1), $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn336($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn337($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn338($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn339($line, $docComment) {
|
2011-10-29 00:16:29 +02:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn340($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn341($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn342($line, $docComment) {
|
2011-11-04 07:40:48 +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
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn343($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn344($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn345($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(4-3)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn346($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = null;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn347($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = array();
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn348($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn349($line, $docComment) {
|
2011-11-04 07:40:48 +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
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn350($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn351($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->yysp-(3-3)], $this->yyastk[$this->yysp-(3-1)], false, $line, $docComment);
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn352($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->yysp-(1-1)], null, false, $line, $docComment);
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn353($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->yysp-(4-4)], $this->yyastk[$this->yysp-(4-1)], true, $line, $docComment);
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn354($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayItem($this->yyastk[$this->yysp-(2-2)], null, true, $line, $docComment);
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn355($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn356($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(2-1)];
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn357($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn358($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = array($this->yyastk[$this->yysp-(2-1)], $this->yyastk[$this->yysp-(2-2)]);
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn359($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->yysp-(1-1)], 1), $line, $docComment);
|
2011-05-27 21:15:38 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn360($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->yysp-(4-1)], 1), $line, $docComment), $this->yyastk[$this->yysp-(4-3)], $line, $docComment);
|
2011-05-31 17:24:01 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn361($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_PropertyFetch(new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->yysp-(3-1)], 1), $line, $docComment), $this->yyastk[$this->yysp-(3-3)], $line, $docComment);
|
2011-05-31 17:24:01 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn362($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
2011-10-20 22:29:34 +02:00
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn363($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable($this->yyastk[$this->yysp-(3-2)], $line, $docComment);
|
2011-10-21 11:07:06 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn364($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(new PHPParser_Node_Expr_Variable($this->yyastk[$this->yysp-(6-2)], $line, $docComment), $this->yyastk[$this->yysp-(6-4)], $line, $docComment);
|
2011-10-21 14:09:41 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn365($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
|
2011-10-29 00:16:29 +02:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
protected function yyn366($line, $docComment) {
|
2011-11-04 07:40:48 +01:00
|
|
|
$this->yyval = new PHPParser_Node_Scalar_String($this->yyastk[$this->yysp-(1-1)], $line, $docComment);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn367($line, $docComment) {
|
|
|
|
$this->yyval = new PHPParser_Node_Scalar_LNumber((int) $this->yyastk[$this->yysp-(1-1)], $line, $docComment);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function yyn368($line, $docComment) {
|
2011-10-21 11:30:27 +02:00
|
|
|
$this->yyval = new PHPParser_Node_Expr_Variable(substr($this->yyastk[$this->yysp-(1-1)], 1), $line, $docComment);
|
2011-10-21 11:07:06 +02:00
|
|
|
}
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|