php-parser/lib/PhpParser/Parser.php

2769 lines
128 KiB
PHP

<?php
namespace PhpParser;
/* This is an automatically GENERATED file, which should not be manually edited.
* Instead edit one of the following:
* * the grammar file grammar/zend_language_parser.phpy
* * the skeleton file grammar/kymacc.php.parser
* * the preprocessing script grammar/rebuildParser.php
*/
class Parser extends ParserAbstract
{
protected $tokenToSymbolMapSize = 389;
protected $actionTableSize = 1091;
protected $gotoTableSize = 570;
protected $invalidToken = 154;
protected $defaultAction = -32766;
protected $unexpectedTokenRule = 32767;
protected $YY2TBLSTATE = 400;
protected $YYNLSTATES = 626;
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_YIELD = 266;
const T_PLUS_EQUAL = 267;
const T_MINUS_EQUAL = 268;
const T_MUL_EQUAL = 269;
const T_DIV_EQUAL = 270;
const T_CONCAT_EQUAL = 271;
const T_MOD_EQUAL = 272;
const T_AND_EQUAL = 273;
const T_OR_EQUAL = 274;
const T_XOR_EQUAL = 275;
const T_SL_EQUAL = 276;
const T_SR_EQUAL = 277;
const T_POW_EQUAL = 278;
const T_BOOLEAN_OR = 279;
const T_BOOLEAN_AND = 280;
const T_IS_EQUAL = 281;
const T_IS_NOT_EQUAL = 282;
const T_IS_IDENTICAL = 283;
const T_IS_NOT_IDENTICAL = 284;
const T_IS_SMALLER_OR_EQUAL = 285;
const T_IS_GREATER_OR_EQUAL = 286;
const T_SL = 287;
const T_SR = 288;
const T_INSTANCEOF = 289;
const T_INC = 290;
const T_DEC = 291;
const T_INT_CAST = 292;
const T_DOUBLE_CAST = 293;
const T_STRING_CAST = 294;
const T_ARRAY_CAST = 295;
const T_OBJECT_CAST = 296;
const T_BOOL_CAST = 297;
const T_UNSET_CAST = 298;
const T_POW = 299;
const T_NEW = 300;
const T_CLONE = 301;
const T_EXIT = 302;
const T_IF = 303;
const T_ELSEIF = 304;
const T_ELSE = 305;
const T_ENDIF = 306;
const T_LNUMBER = 307;
const T_DNUMBER = 308;
const T_STRING = 309;
const T_STRING_VARNAME = 310;
const T_VARIABLE = 311;
const T_NUM_STRING = 312;
const T_INLINE_HTML = 313;
const T_CHARACTER = 314;
const T_BAD_CHARACTER = 315;
const T_ENCAPSED_AND_WHITESPACE = 316;
const T_CONSTANT_ENCAPSED_STRING = 317;
const T_ECHO = 318;
const T_DO = 319;
const T_WHILE = 320;
const T_ENDWHILE = 321;
const T_FOR = 322;
const T_ENDFOR = 323;
const T_FOREACH = 324;
const T_ENDFOREACH = 325;
const T_DECLARE = 326;
const T_ENDDECLARE = 327;
const T_AS = 328;
const T_SWITCH = 329;
const T_ENDSWITCH = 330;
const T_CASE = 331;
const T_DEFAULT = 332;
const T_BREAK = 333;
const T_CONTINUE = 334;
const T_GOTO = 335;
const T_FUNCTION = 336;
const T_CONST = 337;
const T_RETURN = 338;
const T_TRY = 339;
const T_CATCH = 340;
const T_FINALLY = 341;
const T_THROW = 342;
const T_USE = 343;
const T_INSTEADOF = 344;
const T_GLOBAL = 345;
const T_STATIC = 346;
const T_ABSTRACT = 347;
const T_FINAL = 348;
const T_PRIVATE = 349;
const T_PROTECTED = 350;
const T_PUBLIC = 351;
const T_VAR = 352;
const T_UNSET = 353;
const T_ISSET = 354;
const T_EMPTY = 355;
const T_HALT_COMPILER = 356;
const T_CLASS = 357;
const T_TRAIT = 358;
const T_INTERFACE = 359;
const T_EXTENDS = 360;
const T_IMPLEMENTS = 361;
const T_OBJECT_OPERATOR = 362;
const T_DOUBLE_ARROW = 363;
const T_LIST = 364;
const T_ARRAY = 365;
const T_CALLABLE = 366;
const T_CLASS_C = 367;
const T_TRAIT_C = 368;
const T_METHOD_C = 369;
const T_FUNC_C = 370;
const T_LINE = 371;
const T_FILE = 372;
const T_COMMENT = 373;
const T_DOC_COMMENT = 374;
const T_OPEN_TAG = 375;
const T_OPEN_TAG_WITH_ECHO = 376;
const T_CLOSE_TAG = 377;
const T_WHITESPACE = 378;
const T_START_HEREDOC = 379;
const T_END_HEREDOC = 380;
const T_DOLLAR_OPEN_CURLY_BRACES = 381;
const T_CURLY_OPEN = 382;
const T_PAAMAYIM_NEKUDOTAYIM = 383;
const T_NAMESPACE = 384;
const T_NS_C = 385;
const T_DIR = 386;
const T_NS_SEPARATOR = 387;
const T_ELLIPSIS = 388;
protected $symbolToName = array(
"EOF",
"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_YIELD",
"'='",
"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_POW_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_POW",
"'['",
"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_FINALLY",
"T_THROW",
"T_USE",
"T_INSTEADOF",
"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",
"T_TRAIT",
"T_INTERFACE",
"T_EXTENDS",
"T_IMPLEMENTS",
"T_OBJECT_OPERATOR",
"T_DOUBLE_ARROW",
"T_LIST",
"T_ARRAY",
"T_CALLABLE",
"T_CLASS_C",
"T_TRAIT_C",
"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",
"T_ELLIPSIS",
"';'",
"'{'",
"'}'",
"'('",
"')'",
"'$'",
"'`'",
"']'",
"'\"'"
);
protected $tokenToSymbol = array(
0, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 49, 153, 154, 150, 48, 32, 154,
148, 149, 46, 43, 7, 44, 45, 47, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 27, 145,
37, 13, 39, 26, 61, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 63, 154, 152, 31, 154, 151, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 146, 30, 147, 51, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
154, 154, 154, 154, 154, 154, 1, 2, 3, 4,
5, 6, 8, 9, 10, 11, 12, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 28,
29, 33, 34, 35, 36, 38, 40, 41, 42, 50,
52, 53, 54, 55, 56, 57, 58, 59, 60, 62,
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
74, 75, 76, 77, 154, 154, 78, 79, 80, 81,
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,
112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, 154, 154, 154, 154, 154, 154, 135,
136, 137, 138, 139, 140, 141, 142, 143, 144
);
protected $action = array(
59, 60, 410, 61, 62,-32766,-32766,-32766,-32766, 63,
64, 215, 216, 217, 218, 219, 220, 221, 222, 223,
224, 225, 226, 227, 228, 229, 230, 231, 232, 233,
234, 235,-32766,-32766,-32766,-32766,-32766,-32767,-32767,-32767,
-32767, 65, 66, 57, 445, 236, 237, 67, 369, 68,
289, 290, 69, 70, 71, 72, 73, 74, 75, 76,
730, 32, 299, 77, 402, 411, 435, 409, 407, 939,
940, 447, 1030, 1030, 328, 676, 427, 448, 46, 27,
412, 598, 449, 794, 450, 0, 451, 214, 580, 413,
755, 756, 53, 36, 37, 452, 418, 414, 38, 453,
347, 348, 78, 183, 320, 350, 351, 305, 454, 455,
39, 292, -122, 456, 457, 458, 699, 658, 702, 459,
460, 280, 891, 31, 461, 462, 124, 945, 946, 947,
948, 942, 943, 306, 82, 83, 84, 125, 474, 949,
944, 415, 293, 682, 599, 406, 47, 331, 331, 318,
35, 322, 40, 786, 85, 86, 87, 88, 89, 90,
91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
101, 102, 103, 104, 105, 120, 300,-32766, 731,-32766,
-32766,-32766, 776, 630, 212, 213, 214,-32766, 106, 296,
-32766,-32766,-32766, 203,-32766, 428,-32766,-32766,-32766,-32766,
-32766,-32766, 183, 1024, 333,-32766,-32766,-32766, 22, 905,
-32766,-32766, 293, 432,-32766, 349, 430,-32766, 473,-32766,
-32766,-32766,-32766,-32766, 891,-32766, 131, 212, 213, 214,
41, 107, 108, 109, 110, 111, 112, 113, 114, 115,
116, 117, 118, 589, 281, 183, 1052,-32766, 630, 212,
213, 214, 429, 630, 128,-32766,-32766,-32766, 357, 996,
-32766,-32766,-32766, 1037,-32766, 758,-32766, 183,-32766, 832,
834,-32766, 212, 213, 214,-32766,-32766,-32766, 339,-32766,
-32766,-32766, 295, 461,-32766, 630, 129,-32766, 473,-32766,
183, 891,-32766,-32766,-32766,-32766,-32766,-32766,-32766, 407,
-32766, 238, 54,-32766, 205, 328, 56,-32766,-32766,-32766,
1059, 291,-32766,-32766, 794, 474,-32766, 781, 415,-32766,
473, 993, 414, 891, 128,-32766,-32766,-32766, 414, 757,
-32766,-32766,-32766, 454, 455,-32766,-32766,-32766, 127, 454,
455, -390, 658, 702, 459, 460,-32766, 700, 658, 702,
459, 460, 630,-32766, 674,-32766,-32766,-32766,-32766,-32766,
-32766,-32766, 338,-32766, 183,-32766, 407,-32766, 990, 767,
-32766, 893, 328, 206,-32766,-32766,-32766, 691,-32766,-32766,
-32766, 794, 241,-32766, 630, 121,-32766, 473,-32766, 122,
891,-32766,-32766,-32766,-32766,-32766, 673,-32766, 242,-32766,
213, 214,-32766,-32766,-32766,-32766,-32766,-32766,-32766, 556,
294,-32766,-32766, 119, 701,-32766, 989, 183,-32766, 473,
204,-32766, 891, 521,-32766,-32766,-32766,-32766,-32766,-32766,
-32766,-32766,-32766,-32766,-32766,-32766,-32767,-32767,-32767,-32767,
1062, 1052, 1064, 1063, 282,-32766,-32766,-32766,-32766, 434,
323, 630, 212, 213, 214,-32766,-32766,-32766,-32766,-32766,
-32766, 615,-32766, 1034,-32766, 891,-32766, 951, 686,-32766,
183, 240, 611,-32766,-32766,-32766, 278,-32766,-32766,-32766,
-32766,-32766,-32766, 630, 379,-32766, 473,-32766,-32766,-32766,
-32766,-32766,-32766,-32766,-32766, 604,-32766, 891,-32766, 994,
-118,-32766, 230, 231, 232,-32766,-32766,-32766, 951, 602,
-32766,-32766, 133, 995,-32766,-32766, 548,-32766, 473, 132,
-32766, 695, 129,-32766,-32766,-32766, 630, 103, 104, 105,
-32766, 300, 621,-32766,-32766,-32766, 130,-32766, 614,-32766,
891,-32766, 106, 106,-32766, 100, 101, 102,-32766,-32766,
-32766, 623,-32766,-32766,-32766,-32766,-32766,-32766, 630, 996,
-32766, 473,-32766, 236, 237,-32766,-32766,-32766,-32766,-32766,
300,-32766, 891,-32766, 424, 58,-32766, 601, 442, 562,
-32766,-32766,-32766, 437, 28,-32766,-32766, 134, 358,-32766,
571, 572,-32766, 473, 55,-32766, 755, 756, 666,-32766,
-32766, 630, 791, 625, 52,-32766, 780, 620,-32766,-32766,
-32766, 51,-32766, 49,-32766, 50,-32766, 299, 788,-32766,
637, 606, 630,-32766,-32766,-32766, 576,-32766,-32766,-32766,
-32766,-32766,-32766, 630, 586,-32766, 473,-32766, 512, 511,
-32766,-32766,-32766,-32766,-32766, 499,-32766, 495,-32766, 494,
649,-32766, 631, 425, 647,-32766,-32766,-32766, 423, 1057,
-32766,-32766, 597, 239,-32766, 573, -167,-32766, 473, 588,
-32766,-32766,-32766, 670,-32766,-32766, 581, 908, 498, 207,
208, 426,-32766,-32766,-32766, 209, 1052, 210,-32766, 336,
-32766,-32766,-32766,-32766,-32766,-32767,-32767,-32767,-32767, 201,
-32766, 337,-32766,-32766,-32766, 668,-32766, 939, 940, 277,
-32766,-32766, 541, 207, 208, 941, 630, 514, 298, 209,
-32766, 210, -164,-32766,-32766,-32766, 553,-32766, 422,-32766,
565,-32766, 329, 201,-32766, 444, 567, 703,-32766,-32766,
-32766, 939, 940,-32766,-32766,-32766, 332,-32766, 704, 941,
-32766, 473, 802, 803, 804, 801, 800, 799,-32766, 319,
359, 326, 607, 538, 327, 945, 946, 947, 948, 942,
943, 385, 321,-32766,-32766,-32766, -391, 949, 944, -390,
461, 123, 42, 950, 211, 372,-32766, 608,-32766,-32766,
594,-32766, 932,-32766,-32766,-32766,-32766, 538, 325, 945,
946, 947, 948, 942, 943, 385, 309, -290, -299,-32766,
-298, 949, 944, 441, 955, 630, 424, 672, 211,-32766,
-32766, 504,-32766,-32766,-32766, 406,-32766, 697,-32766, 663,
-32766, 44, 678,-32766, 785, 724, 777,-32766,-32766,-32766,
685, 725,-32766,-32766, 414, 403,-32766, 661, 718,-32766,
473, 317, 643, 642, 716, 454, 455,-32766, 233, 234,
235, 414, 403, 641, 636, 702, 459, 460, 317, 640,
784, 675, 454, 455, 236, 237, 714, 45, 414, 403,
787, 636, 702, 459, 460, 317, 330,-32766,-32766, 454,
455, 610, 733, 638,-32766,-32766,-32766, 684, 636, 702,
459, 460, 671, 330, 669, 667, 677, 759, 81, 0,
639, 1058,-32766, 617,-32766,-32766,-32766,-32766,-32766, 414,
330,-32767,-32767,-32767,-32767, 98, 99, 100, 101, 102,
454, 455, 414, 618, 619, 622, 414, 600, 605, 658,
702, 459, 460, 454, 455, 624, 126, 454, 455, 414,
612, 302, 658, 702, 459, 460, 658, 702, 459, 460,
454, 455, 1031, 1029, 1060, 1061, 414, 723, 892, 658,
702, 459, 460, 1015, 1027, 930, 769, 454, 455, 414,
1025, 698, 550, 1035, 722, 659, 658, 702, 459, 460,
454, 455, 301, 303, 630, 304, 1030, 414, 609, 658,
702, 459, 460, 334,-32766, 288, 287, 401, 454, 455,
596, 405, 279, 202, 80, 689, 587, 658, 702, 459,
460, 79, 48, 414, 43, 34, 33, 414, 792, 915,
30, 889, 898, 0, 454, 455, 895, 593, 454, 455,
566, 533, 443, 658, 702, 459, 460, 658, 702, 459,
460, 438, 380, 360, 414, 25, 24, 23, -119, 870,
542, 474, 894, 871, 415, 454, 455, -118, 574, 419,
0, 331, 1009, 0, 658, 702, 459, 460, 956, 1056,
929, 0, 1026, 1010, 1014, 1028, 914, 902, 900, 901,
899
);
protected $actionCheck = array(
2, 3, 4, 5, 6, 28, 29, 30, 31, 11,
12, 28, 29, 30, 31, 32, 33, 34, 35, 36,
37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
47, 48, 28, 29, 30, 31, 32, 33, 34, 35,
36, 43, 44, 63, 7, 62, 63, 49, 75, 51,
52, 53, 54, 55, 56, 57, 58, 59, 60, 61,
27, 63, 64, 65, 66, 67, 7, 7, 99, 71,
72, 73, 75, 75, 105, 77, 27, 79, 80, 81,
82, 73, 84, 114, 86, 0, 88, 10, 89, 91,
127, 128, 63, 95, 96, 97, 98, 98, 100, 101,
98, 99, 104, 26, 124, 107, 108, 7, 109, 110,
137, 138, 149, 115, 116, 117, 147, 118, 119, 120,
121, 7, 12, 7, 126, 127, 146, 129, 130, 131,
132, 133, 134, 135, 8, 9, 10, 7, 140, 141,
142, 143, 32, 145, 146, 143, 148, 150, 150, 151,
7, 153, 26, 145, 28, 29, 30, 31, 32, 33,
34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
44, 45, 46, 47, 48, 146, 50, 67, 145, 8,
9, 10, 145, 73, 8, 9, 10, 77, 62, 32,
80, 81, 82, 7, 84, 146, 86, 26, 88, 28,
29, 91, 26, 75, 7, 95, 96, 97, 149, 149,
100, 101, 32, 73, 104, 7, 7, 107, 108, 28,
29, 30, 31, 32, 12, 115, 63, 8, 9, 10,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 73, 32, 26, 78, 67, 73, 8,
9, 10, 7, 73, 144, 145, 146, 77, 7, 119,
80, 81, 82, 149, 84, 149, 86, 26, 88, 52,
53, 91, 8, 9, 10, 95, 96, 97, 150, 67,
100, 101, 7, 126, 104, 73, 146, 107, 108, 77,
26, 12, 80, 81, 82, 115, 84, 8, 86, 99,
88, 125, 63, 91, 13, 105, 63, 95, 96, 97,
147, 32, 100, 101, 114, 140, 104, 147, 143, 107,
108, 153, 98, 12, 144, 145, 146, 115, 98, 149,
8, 9, 10, 109, 110, 8, 9, 10, 27, 109,
110, 124, 118, 119, 120, 121, 67, 147, 118, 119,
120, 121, 73, 26, 145, 28, 77, 145, 146, 80,
81, 82, 63, 84, 26, 86, 99, 88, 149, 75,
91, 147, 105, 13, 95, 96, 97, 147, 67, 100,
101, 114, 13, 104, 73, 146, 107, 108, 77, 146,
12, 80, 81, 82, 115, 84, 145, 86, 13, 88,
9, 10, 91, 8, 9, 10, 95, 96, 97, 78,
32, 100, 101, 13, 147, 104, 152, 26, 107, 108,
13, 26, 12, 124, 145, 146, 115, 28, 29, 30,
31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
73, 78, 75, 76, 150, 67, 28, 29, 30, 73,
78, 73, 8, 9, 10, 77, 145, 146, 80, 81,
82, 27, 84, 73, 86, 12, 88, 136, 27, 91,
26, 27, 27, 95, 96, 97, 125, 67, 100, 101,
8, 9, 104, 73, 74, 107, 108, 77, 28, 29,
80, 81, 82, 115, 84, 27, 86, 12, 88, 136,
149, 91, 43, 44, 45, 95, 96, 97, 136, 27,
100, 101, 146, 73, 104, 28, 150, 107, 108, 27,
67, 32, 146, 145, 146, 115, 73, 46, 47, 48,
77, 50, 27, 80, 81, 82, 146, 84, 27, 86,
12, 88, 62, 62, 91, 43, 44, 45, 95, 96,
97, 27, 67, 100, 101, 145, 146, 104, 73, 119,
107, 108, 77, 62, 63, 80, 81, 82, 115, 84,
50, 86, 12, 88, 143, 63, 91, 146, 68, 69,
95, 96, 97, 68, 69, 100, 101, 93, 94, 104,
102, 103, 107, 108, 63, 67, 127, 128, 145, 146,
115, 73, 145, 146, 63, 77, 145, 146, 80, 81,
82, 63, 84, 63, 86, 63, 88, 64, 73, 91,
145, 146, 73, 95, 96, 97, 70, 67, 100, 101,
145, 146, 104, 73, 73, 107, 108, 77, 73, 73,
80, 81, 82, 115, 84, 73, 86, 73, 88, 73,
73, 91, 73, 73, 73, 95, 96, 97, 73, 73,
100, 101, 73, 27, 104, 75, 75, 107, 108, 75,
8, 9, 10, 145, 146, 115, 75, 75, 75, 43,
44, 82, 8, 9, 10, 49, 78, 51, 26, 78,
28, 29, 30, 31, 32, 33, 34, 35, 36, 63,
26, 78, 28, 29, 30, 145, 146, 71, 72, 90,
67, 75, 90, 43, 44, 79, 73, 90, 90, 49,
77, 51, 90, 80, 81, 82, 92, 84, 98, 86,
92, 88, 106, 63, 91, 98, 105, 119, 95, 96,
97, 71, 72, 100, 101, 75, 122, 104, 119, 79,
107, 108, 108, 109, 110, 111, 112, 113, 115, 124,
139, 122, 145, 127, 123, 129, 130, 131, 132, 133,
134, 135, 124, 8, 9, 10, 124, 141, 142, 124,
126, 125, 125, 136, 148, 139, 150, 145, 145, 146,
139, 26, 149, 28, 29, 30, 31, 127, 139, 129,
130, 131, 132, 133, 134, 135, 139, 139, 139, 67,
139, 141, 142, 147, 149, 73, 143, 145, 148, 77,
150, 143, 80, 81, 82, 143, 84, 144, 86, 145,
88, 145, 145, 91, 145, 145, 145, 95, 96, 97,
145, 145, 100, 101, 98, 99, 104, 145, 145, 107,
108, 105, 145, 145, 145, 109, 110, 115, 46, 47,
48, 98, 99, 145, 118, 119, 120, 121, 105, 145,
145, 145, 109, 110, 62, 63, 145, 145, 98, 99,
145, 118, 119, 120, 121, 105, 140, 145, 146, 109,
110, 146, 145, 147, 8, 9, 10, 145, 118, 119,
120, 121, 145, 140, 145, 145, 145, 149, 146, -1,
147, 147, 26, 146, 28, 29, 30, 31, 32, 98,
140, 37, 38, 39, 40, 41, 42, 43, 44, 45,
109, 110, 98, 146, 146, 146, 98, 146, 146, 118,
119, 120, 121, 109, 110, 146, 146, 109, 110, 98,
146, 148, 118, 119, 120, 121, 118, 119, 120, 121,
109, 110, 147, 147, 147, 147, 98, 147, 147, 118,
119, 120, 121, 147, 147, 147, 147, 109, 110, 98,
147, 147, 83, 147, 147, 147, 118, 119, 120, 121,
109, 110, 148, 148, 73, 148, 75, 98, 147, 118,
119, 120, 121, 148, 148, 148, 148, 148, 109, 110,
85, 148, 148, 148, 148, 147, 87, 118, 119, 120,
121, 148, 148, 98, 148, 148, 148, 98, 147, 108,
148, 151, 149, -1, 109, 110, 149, 149, 109, 110,
149, 149, 149, 118, 119, 120, 121, 118, 119, 120,
121, 149, 149, 149, 98, 149, 149, 149, 149, 149,
149, 140, 149, 149, 143, 109, 110, 149, 152, 148,
-1, 150, 152, -1, 118, 119, 120, 121, 152, 152,
152, -1, 152, 152, 152, 152, 152, 152, 152, 152,
152
);
protected $actionBase = array(
0, 763, 746, 780, 838, 851, 899, -1, 929, 834,
821, 230, 224, 925, 868, 881, 956, 956, 956, 956,
956, 468, 445, 434, 524, 434, 482, -2, -2, -2,
180, 110, 279, 279, 643, 279, 453, 560, 528, 410,
311, 212, 378, 485, 485, 485, 485, 742, 742, 485,
485, 485, 485, 485, 485, 485, 485, 485, 485, 485,
485, 485, 485, 485, 485, 485, 485, 485, 485, 485,
485, 485, 485, 485, 485, 485, 485, 485, 485, 485,
485, 485, 485, 485, 485, 485, 485, 485, 485, 485,
485, 485, 485, 485, 485, 485, 485, 485, 485, 485,
485, 485, 485, 485, 485, 485, 485, 485, 485, 485,
485, 485, 485, 485, 485, 485, 485, 485, 485, 485,
485, 485, 485, 485, 485, 485, 485, 485, 485, 485,
485, 485, 485, 485, 485, 33, 761, 656, 657, 760,
759, 757, 752, 913, 619, 914, 764, 815, 492, 816,
826, 827, 828, 829, 666, 836, 176, 219, 916, 833,
444, 264, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 241, 241, 126, 241, 241, 241, 241, 289,
391, 472, 77, 636, 322, 322, 322, 322, 322, 322,
322, 322, 322, 322, 322, 322, 322, 322, 322, 322,
338, 670, 670, 670, 670, 670, 670, 670, 670, 670,
670, 670, 670, 670, 670, 670, 670, 670, 670, 670,
670, 670, 670, 670, 670, 670, 670, 670, 670, 670,
670, 670, 670, 670, 670, 670, 670, 670, 670, 670,
670, 670, 670, 395, 395, -17, -17, 327, 487, 171,
460, 674, 418, 765, -23, 886, 662, 662, 662, 662,
191, 4, 4, 4, 4, 217, 884, 884, 884, 884,
399, 399, 399, 399, 267, 200, -31, 157, 157, 654,
654, 553, 800, 502, 502, 459, 459, 921, 921, 921,
921, 921, 921, 921, 921, 921, 921, 591, 589, 856,
856, -37, -37, -37, -37, 469, 372, 363, 168, 140,
481, 481, 481, 812, 812, 812, 170, 2, 611, 390,
390, 390, 623, 647, 608, 376, 175, 175, 175, 175,
431, 762, 175, 175, 175, 239, -27, -27, 367, 366,
634, 837, 638, 820, 461, 669, -20, 682, 682, 682,
294, 630, 515, 510, 488, 668, 49, 294, 33, 440,
457, 243, 520, 726, 565, 707, 724, 251, 209, 299,
475, 29, 128, 59, 718, 708, 911, 910, 114, 163,
652, 520, 520, 520, 116, 331, 29, 351, 501, 501,
501, 501, 501, 501, 501, 501, 691, 37, 60, 725,
8, 489, 877, 574, 882, 566, 549, 574, 590, 489,
874, 874, 874, 874, 489, 549, 882, 882, 489, 553,
882, 143, 489, 639, 549, 624, 874, 617, 642, 574,
603, 641, 882, 882, 882, 566, 489, 874, 631, 683,
186, 882, 874, 631, 489, 590, 85, 441, 550, 876,
873, 863, 576, 791, 618, 629, 858, 857, 866, 572,
585, 864, 878, 678, 672, 580, 400, 552, 548, 541,
667, 531, 635, 630, 673, 480, 480, 480, 655, 659,
655, 480, 480, 480, 480, 480, 480, 480, 480, 938,
646, 671, 648, 599, 695, 407, 678, 627, 291, 792,
678, 887, 903, 880, 579, 844, 892, 655, 937, 686,
130, 360, 803, 622, 581, 655, 845, 655, 745, 655,
883, 586, 818, 678, 480, 758, 936, 935, 934, 933,
932, 931, 930, 512, 928, 684, 902, 100, 865, 668,
621, 577, 687, 197, 927, 655, 655, 804, 762, 655,
747, 732, 908, 690, 891, 926, 647, 893, 655, 637,
920, 197, 511, 556, 909, 696, 767, 859, 787, 601,
665, 855, 788, 369, 817, 505, 702, 907, 906, 918,
703, 385, 789, 561, 602, 594, 847, 709, 888, 632,
651, 626, 628, 799, 545, 904, 731, 735, 689, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, -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, 0, 0, 0, -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, -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, -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, -2, -2, -2, -2,
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
-2, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, -17, -17, 126, 126, -17, -17, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, -17, -17,
0, -17, -17, -17, -17, 126, -17, 126, -17, 921,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, 126, -17, 921, 921, 921,
921, 921, 921, 921, 921, 921, 921, 921, 921, 921,
921, 921, 921, 921, 921, 921, 921, 921, 921, 921,
921, 921, 921, 921, 921, 921, 921, 921, 921, 921,
921, 921, 921, 921, 921, 921, 921, 921, 921, 126,
126, 0, 0, 126, -17, 126, -17, 126, -17, 126,
-17, 126, 126, 126, 126, 126, -17, -17, -17, -17,
-17, 0, 481, 481, 481, 481, -17, -17, -17, -17,
644, 644, 644, 921, 921, 921, 921, 921, 921, 481,
481, 812, 812, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 644, 644, 921, 921, 175, 175, 175,
175, 175, -27, -27, -27, 128, 0, 0, 0, 0,
0, 0, 175, 549, -27, -3, -3, -3, -27, -27,
-27, 128, 0, 0, 0, 0, 549, -3, 0, 0,
0, 882, 0, 0, 0, -3, 494, 494, 494, 494,
197, 29, 0, 549, 549, 549, 0, 603, 0, 0,
0, 882, 0, 0, 0, 0, 0, 0, 480, 130,
844, 245, 208, 0, 0, 0, 0, 0, 0, 0,
208, 208, 275, 275, 0, 0, 512, 480, 480, 480,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 245, 0, 0, 197
);
protected $actionDefault = array(
3,32767,32767, 1,32767,32767,32767,32767,32767,32767,
32767,32767,32767,32767,32767,32767, 111, 103, 117, 102,
113,32767,32767,32767,32767,32767,32767,32767,32767,32767,
32767,32767, 417, 417,32767, 374,32767,32767,32767,32767,
32767,32767,32767, 185, 185, 185,32767,32767,32767, 406,
406, 406, 406, 406, 406, 406, 406, 406, 406,32767,
32767,32767,32767,32767, 265,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,32767,32767,32767,32767,32767,
32767,32767,32767,32767,32767,32767,32767, 270, 422,32767,
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
32767,32767,32767,32767,32767,32767, 378,32767,32767,32767,
32767,32767, 246, 247, 249, 250, 184, 407, 136, 271,
421, 183, 26, 147, 138, 95, 377, 182, 126, 212,
334, 214, 336,32767, 264, 213, 189, 194, 195, 196,
197, 198, 199, 200, 201, 202, 203, 204, 205, 188,
335, 371, 371, 374,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, 243, 242, 362, 361, 210, 332, 211,
333, 215, 337, 217, 339, 216, 233, 234, 231, 232,
338, 355, 356, 353, 354, 187, 235, 236, 237, 238,
357, 358, 359, 360, 169, 169, 169,32767,32767, 416,
416,32767,32767, 224, 225, 346, 347,32767,32767,32767,
32767,32767,32767,32767,32767,32767,32767, 170,32767, 300,
300, 127, 127, 127, 127, 127,32767,32767,32767,32767,
219, 220, 218, 341, 342, 340,32767,32767, 308,32767,
32767,32767,32767,32767, 310,32767,32767,32767,32767,32767,
32767,32767,32767,32767,32767, 379, 309,32767,32767,32767,
32767,32767,32767,32767,32767, 392, 296,32767,32767,32767,
32767, 289, 114, 116, 64, 326,32767,32767,32767,32767,
32767, 397, 229,32767,32767,32767,32767,32767,32767, 429,
32767, 392,32767,32767,32767,32767,32767,32767,32767,32767,
241, 221, 222, 223,32767,32767, 396, 390, 349, 350,
351, 352, 343, 344, 345, 348,32767,32767,32767,32767,
32767, 68, 305,32767, 311,32767,32767,32767,32767, 68,
32767,32767,32767,32767, 68,32767, 395, 394, 68,32767,
290, 373, 68, 81,32767, 79,32767, 100, 100,32767,
32767, 83, 369, 385,32767,32767, 68,32767, 278, 70,
373,32767,32767, 278, 68,32767,32767, 4, 315,32767,
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
32767,32767,32767, 291,32767,32767,32767, 261, 262, 381,
32767, 382,32767, 289,32767, 227, 228, 230, 207,32767,
209, 251, 252, 253, 254, 255, 256, 257, 259,32767,
32767, 294, 297,32767,32767,32767, 6, 20, 146,32767,
292,32767, 192,32767,32767,32767,32767, 424,32767,32767,
186,32767,32767, 22,32767, 142,32767, 66,32767, 414,
32767,32767, 390, 293, 226,32767,32767,32767,32767,32767,
32767,32767,32767, 391,32767,32767,32767, 121,32767, 326,
32767,32767,32767, 82,32767, 190, 137,32767,32767, 423,
32767,32767,32767,32767,32767,32767,32767,32767, 67,32767,
32767, 84,32767,32767, 390,32767,32767,32767,32767,32767,
32767,32767,32767, 181,32767,32767,32767,32767,32767, 390,
32767, 125,32767,32767,32767,32767,32767,32767,32767, 4,
32767, 163,32767,32767,32767,32767,32767,32767,32767, 28,
28, 3, 28, 108, 28, 149, 3, 100, 100, 61,
149, 28, 149, 28, 28, 28, 28, 28, 28, 28,
156, 28, 28, 28, 28, 28
);
protected $goto = array(
168, 168, 138, 138, 143, 138, 139, 140, 141, 146,
148, 186, 170, 166, 166, 166, 166, 143, 143, 167,
167, 167, 167, 167, 167, 167, 167, 167, 167, 162,
163, 164, 165, 184, 137, 475, 476, 362, 477, 481,
482, 483, 484, 485, 486, 487, 488, 819, 142, 144,
145, 147, 179, 181, 185, 247, 249, 251, 253, 255,
256, 257, 258, 259, 266, 267, 268, 269, 283, 284,
310, 311, 312, 381, 382, 383, 524, 187, 188, 189,
190, 191, 192, 193, 194, 195, 196, 197, 198, 199,
149, 150, 151, 169, 152, 171, 153, 243, 174, 154,
155, 158, 244, 159, 135, 539, 680, 526, 527, 528,
529, 530, 531, 532, 534, 560, 746, 746, 1041, 1041,
634, 634, 634, 539, 539, 539, 539, 539, 539, 539,
539, 539, 539, 539, 539, 539, 539, 539, 539, 539,
539, 539, 539, 539, 539, 539, 539, 539, 539, 539,
539, 539, 539, 539, 539, 539, 539, 539, 539, 539,
539, 539, 539, 539, 539, 479, 479, 479, 479, 479,
479, 502, 341, 1020, 1020, 479, 479, 479, 479, 479,
479, 479, 479, 479, 479, 324, 761, 490, 490, 308,
1051, 1051, 520, 1036, 1036, 1036, 635, 635, 635, 420,
420, 420, 420, 420, 420, 1019, 1054, 1051, 1045, 420,
420, 420, 420, 420, 420, 420, 420, 420, 420, 1054,
1054, 916, 916, 754, 754, 754, 754, 754, 554, 557,
595, 370, 371, 371, 371, 561, 344, 399, 590, 540,
1, 275, 363, 276, 371, 2, 551, 577, 711, 711,
711, 711, 386, 570, 706, 712, 585, 540, 540, 540,
540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
540, 540, 540, 540, 540, 540, 540, 540, 540, 5,
1001, 16, 578, 6, 798, 400, 377, 513, 1021, 1021,
7, 1038, 17, 18, 8, 19, 9, 10, 11, 865,
20, 12, 13, 14, 15, 492, 492, 750, 928, 927,
387, 579, 519, 519, 545, 515, 374, 375, 765, 953,
517, 517, 478, 480, 507, 522, 546, 549, 558, 564,
644, 342, 343, 613, 396, 491, 491, 953, 953, 953,
953, 953, 953, 953, 953, 953, 953, 953, 953, 953,
953, 953, 953, 953, 953, 953, 953, 953, 953, 953,
953, 953, 953, 953, 953, 953, 953, 953, 953, 953,
953, 953, 953, 953, 953, 953, 953, 953, 953, 160,
525, 954, 907, 650, 501, 817, 770, 1013, 720, 998,
582, 806, 0, 0, 0, 0, 0, 501, 501, 0,
172, 173, 175, 388, 389, 390, 391, 157, 180, 182,
200, 248, 250, 252, 254, 260, 261, 262, 263, 264,
270, 271, 272, 273, 285, 286, 313, 314, 315, 392,
393, 394, 395, 161, 176, 245, 246, 177, 178, 633,
633, 633, 496, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 496, 938, 0, 0, 732,
717, 715, 713, 715, 603, 493, 741, 736, 912, 913,
933, 0, 496, 496, 496, 0, 0, 0, 874, 26,
21, 356, 0, 0, 910, 1012, 910, 364, 0, 0,
0, 505, 0, 911, 535, 516, 0, 0, 0, 0,
0, 0, 0, 0, 0, 29, 0, 0, 0, 439,
575, 0, 0, 0, 0, 0, 0, 583, 0, 0,
0, 0, 0, 506, 0, 0, 0, 0, 0, 0,
0, 496, 0, 0, 0, 0, 0, 0, 0, 0,
500, 0, 0, 0, 0, 0, 0, 0, 0, 523
);
protected $gotoCheck = array(
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 39, 32, 86, 86, 86,
86, 86, 86, 86, 86, 86, 55, 55, 55, 55,
7, 7, 7, 39, 39, 39, 39, 39, 39, 39,
39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
39, 39, 39, 39, 39, 91, 91, 91, 91, 91,
91, 77, 50, 93, 93, 91, 91, 91, 91, 91,
91, 91, 91, 91, 91, 100, 61, 91, 91, 100,
116, 116, 85, 93, 93, 93, 8, 8, 8, 39,
39, 39, 39, 39, 39, 93, 116, 116, 115, 39,
39, 39, 39, 39, 39, 39, 39, 39, 39, 116,
116, 39, 39, 39, 39, 39, 39, 39, 42, 42,
42, 5, 98, 98, 98, 48, 48, 48, 39, 94,
2, 46, 29, 46, 98, 2, 22, 22, 39, 39,
39, 39, 98, 103, 39, 39, 39, 94, 94, 94,
94, 94, 94, 94, 94, 94, 94, 94, 94, 94,
94, 94, 94, 94, 94, 94, 94, 94, 94, 94,
94, 94, 94, 94, 94, 94, 94, 94, 94, 94,
94, 94, 94, 94, 94, 94, 94, 94, 94, 14,
107, 14, 31, 14, 74, 74, 30, 5, 92, 92,
14, 113, 14, 14, 14, 14, 14, 14, 14, 78,
14, 14, 14, 14, 14, 97, 97, 57, 99, 99,
33, 33, 33, 33, 33, 33, 9, 9, 62, 101,
33, 33, 33, 33, 33, 33, 33, 33, 33, 33,
11, 50, 50, 52, 10, 94, 94, 101, 101, 101,
101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
101, 101, 101, 101, 101, 101, 101, 101, 101, 13,
26, 102, 89, 12, 26, 77, 63, 59, 49, 106,
84, 76, -1, -1, -1, -1, -1, 26, 26, -1,
13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
13, 13, 13, 13, 13, 13, 13, 13, 13, 6,
6, 6, 4, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 4, 59, -1, -1, 6,
6, 6, 6, 6, 6, 6, 6, 6, 59, 59,
16, -1, 4, 4, 4, -1, -1, -1, 16, 16,
16, 16, -1, -1, 59, 59, 59, 40, -1, -1,
-1, 40, -1, 59, 16, 40, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 16, -1, -1, -1, 40,
16, -1, -1, -1, -1, -1, -1, 40, -1, -1,
-1, -1, -1, 77, -1, -1, -1, -1, -1, -1,
-1, 4, -1, -1, -1, -1, -1, -1, -1, -1,
4, -1, -1, -1, -1, -1, -1, -1, -1, 4
);
protected $gotoBase = array(
0, 0, -361, 0, 145, -99, 458, 119, 195, -11,
-53, 1, -26, 216, -301, 0, 88, 0, 0, 0,
0, 0, 202, 0, 0, -30, 370, 0, 0, 196,
18, 24, 81, 53, 0, 0, 0, 0, 0, -78,
93, 0, -74, 0, 0, 0, -369, 0, -92, -27,
-256, 0, -5, 0, 0, -161, 0, 22, 0, 72,
0, 155, -19, -24, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 7, 0, -34, 124, 19, 0,
0, 0, 0, 0, -33, 159, 57, 0, 0, -7,
0, -112, 9, -126, 56, 0, 0, 26, -87, 8,
-133, 156, 42, 51, 0, 0, -31, 97, 0, 0,
0, 0, 0, 31, 0, 173, -117, 0
);
protected $gotoDefault = array(
-32768, 446, 3, 628, 463, 497, 655, 656, 657, 366,
365, 645, 651, 156, 4, 653, 866, 352, 660, 353,
563, 662, 509, 664, 665, 136, 464, 367, 368, 510,
376, 552, 679, 265, 373, 681, 354, 683, 688, 355,
584, 569, 536, 465, 431, 547, 274, 518, 543, 719,
340, 727, 616, 735, 738, 466, 537, 749, 436, 909,
384, 760, 766, 771, 774, 408, 397, 559, 778, 779,
316, 783, 591, 592, 797, 297, 805, 818, 404, 884,
886, 467, 468, 503, 568, 489, 508, 903, 398, 906,
469, 470, 416, 417, 924, 921, 346, 1006, 345, 433,
307, 991, 992, 555, 957, 440, 1044, 1002, 335, 471,
472, 361, 378, 1039, 421, 1046, 1053, 544
);
protected $ruleToNonTerminal = array(
0, 1, 2, 2, 4, 4, 5, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 9, 9,
11, 11, 11, 11, 10, 10, 12, 14, 14, 15,
15, 15, 15, 6, 6, 6, 6, 6, 6, 6,
6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
6, 36, 36, 38, 37, 37, 30, 30, 40, 40,
41, 41, 7, 8, 8, 8, 43, 43, 43, 44,
44, 47, 47, 45, 45, 48, 48, 23, 23, 32,
32, 35, 35, 34, 34, 49, 24, 24, 24, 24,
50, 50, 51, 51, 52, 52, 21, 21, 17, 17,
53, 19, 19, 54, 18, 18, 20, 20, 31, 31,
31, 42, 42, 56, 56, 57, 57, 58, 58, 58,
58, 59, 59, 59, 60, 60, 61, 61, 61, 27,
27, 62, 62, 62, 28, 28, 63, 63, 46, 46,
64, 64, 64, 64, 69, 69, 70, 70, 71, 71,
71, 71, 72, 73, 73, 68, 68, 65, 65, 67,
67, 75, 75, 74, 74, 74, 74, 74, 74, 66,
66, 76, 76, 29, 29, 22, 22, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 16, 16,
26, 26, 81, 81, 82, 82, 82, 77, 84, 84,
88, 88, 89, 90, 90, 90, 90, 90, 90, 94,
94, 39, 39, 39, 78, 78, 95, 95, 91, 91,
96, 96, 96, 96, 96, 79, 79, 79, 83, 83,
83, 87, 87, 101, 101, 101, 101, 101, 101, 101,
101, 101, 101, 101, 101, 101, 101, 13, 13, 13,
13, 13, 104, 104, 104, 104, 104, 104, 104, 104,
104, 104, 104, 104, 104, 104, 104, 104, 104, 104,
104, 104, 104, 104, 104, 104, 104, 104, 104, 104,
104, 104, 104, 104, 104, 80, 80, 80, 80, 102,
102, 103, 103, 106, 106, 105, 105, 107, 107, 33,
33, 33, 33, 109, 109, 108, 108, 108, 108, 108,
110, 110, 93, 93, 97, 97, 92, 92, 111, 111,
111, 111, 98, 98, 98, 98, 86, 86, 99, 99,
99, 55, 112, 112, 113, 113, 113, 85, 85, 114,
114, 115, 115, 115, 115, 100, 100, 100, 100, 116,
116, 116, 116, 116, 116, 116, 117, 117, 117
);
protected $ruleToLength = array(
1, 1, 2, 0, 1, 3, 1, 1, 1, 1,
1, 3, 5, 4, 3, 4, 4, 3, 3, 1,
1, 3, 2, 4, 3, 1, 3, 2, 0, 1,
1, 1, 1, 3, 5, 8, 3, 5, 9, 3,
2, 3, 2, 3, 2, 3, 2, 3, 3, 3,
1, 2, 5, 7, 9, 5, 1, 6, 3, 3,
2, 0, 2, 8, 0, 4, 1, 3, 0, 1,
0, 1, 9, 7, 6, 5, 1, 2, 2, 0,
2, 0, 2, 0, 2, 1, 3, 1, 4, 1,
4, 1, 4, 1, 3, 3, 3, 4, 4, 5,
0, 2, 4, 3, 1, 1, 1, 4, 0, 2,
3, 0, 2, 4, 0, 2, 0, 3, 1, 2,
1, 1, 0, 1, 3, 4, 6, 0, 1, 1,
1, 2, 3, 3, 1, 3, 1, 2, 2, 3,
1, 1, 2, 4, 3, 1, 1, 3, 2, 0,
3, 3, 8, 3, 1, 3, 0, 2, 4, 5,
4, 4, 3, 1, 1, 1, 3, 1, 1, 0,
1, 1, 2, 1, 1, 1, 1, 1, 1, 1,
3, 1, 3, 3, 1, 0, 1, 1, 3, 3,
4, 4, 1, 2, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 2, 2, 2, 2,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 2, 2, 2,
2, 3, 3, 3, 3, 3, 3, 3, 3, 3,
1, 3, 5, 4, 4, 4, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
1, 1, 1, 3, 2, 1, 9, 10, 3, 3,
2, 4, 4, 3, 4, 4, 4, 3, 0, 4,
1, 3, 2, 2, 4, 6, 2, 2, 4, 1,
1, 1, 2, 3, 1, 1, 1, 1, 1, 1,
0, 3, 3, 4, 4, 0, 2, 1, 0, 1,
1, 0, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 3, 2, 1, 1, 3, 4,
3, 1, 3, 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, 5, 4, 4, 3, 1, 3, 3, 3, 1,
1, 0, 2, 0, 1, 3, 1, 3, 1, 1,
1, 1, 1, 6, 4, 3, 4, 2, 4, 4,
1, 3, 1, 2, 1, 1, 4, 1, 3, 6,
4, 4, 4, 4, 1, 4, 0, 1, 1, 3,
1, 4, 3, 1, 1, 1, 0, 0, 2, 3,
1, 3, 1, 4, 2, 2, 2, 1, 2, 1,
4, 3, 3, 3, 6, 3, 1, 1, 1
);
protected function reduceRule0() {
$this->semValue = $this->semStack[$this->stackPos];
}
protected function reduceRule1($attributes) {
$this->semValue = $this->handleNamespaces($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule2($attributes) {
if (is_array($this->semStack[$this->stackPos-(2-2)])) { $this->semValue = array_merge($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]); } else { $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; };
}
protected function reduceRule3($attributes) {
$this->semValue = array();
}
protected function reduceRule4($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule5($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule6($attributes) {
$this->semValue = new Node\Name($this->semStack[$this->stackPos-(1-1)], $attributes);
}
protected function reduceRule7($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule8($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule9($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule10($attributes) {
$this->semValue = new Node\Stmt\HaltCompiler($this->lexer->handleHaltCompiler(), $attributes);
}
protected function reduceRule11($attributes) {
$this->semValue = new Node\Stmt\Namespace_($this->semStack[$this->stackPos-(3-2)], null, $attributes);
}
protected function reduceRule12($attributes) {
$this->semValue = new Node\Stmt\Namespace_($this->semStack[$this->stackPos-(5-2)], $this->semStack[$this->stackPos-(5-4)], $attributes);
}
protected function reduceRule13($attributes) {
$this->semValue = new Node\Stmt\Namespace_(null, $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule14($attributes) {
$this->semValue = new Node\Stmt\Use_($this->semStack[$this->stackPos-(3-2)], Node\Stmt\Use_::TYPE_NORMAL, $attributes);
}
protected function reduceRule15($attributes) {
$this->semValue = new Node\Stmt\Use_($this->semStack[$this->stackPos-(4-3)], Node\Stmt\Use_::TYPE_FUNCTION, $attributes);
}
protected function reduceRule16($attributes) {
$this->semValue = new Node\Stmt\Use_($this->semStack[$this->stackPos-(4-3)], Node\Stmt\Use_::TYPE_CONSTANT, $attributes);
}
protected function reduceRule17($attributes) {
$this->semValue = new Node\Stmt\Const_($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule18($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule19($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule20($attributes) {
$this->semValue = new Node\Stmt\UseUse($this->semStack[$this->stackPos-(1-1)], null, $attributes);
}
protected function reduceRule21($attributes) {
$this->semValue = new Node\Stmt\UseUse($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule22($attributes) {
$this->semValue = new Node\Stmt\UseUse($this->semStack[$this->stackPos-(2-2)], null, $attributes);
}
protected function reduceRule23($attributes) {
$this->semValue = new Node\Stmt\UseUse($this->semStack[$this->stackPos-(4-2)], $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule24($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule25($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule26($attributes) {
$this->semValue = new Node\Const_($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule27($attributes) {
if (is_array($this->semStack[$this->stackPos-(2-2)])) { $this->semValue = array_merge($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]); } else { $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; };
}
protected function reduceRule28($attributes) {
$this->semValue = array();
}
protected function reduceRule29($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule30($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule31($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule32($attributes) {
throw new Error('__HALT_COMPILER() can only be used from the outermost scope');
}
protected function reduceRule33($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule34($attributes) {
$this->semValue = new Node\Stmt\If_($this->semStack[$this->stackPos-(5-2)], array('stmts' => is_array($this->semStack[$this->stackPos-(5-3)]) ? $this->semStack[$this->stackPos-(5-3)] : array($this->semStack[$this->stackPos-(5-3)]), 'elseifs' => $this->semStack[$this->stackPos-(5-4)], 'else' => $this->semStack[$this->stackPos-(5-5)]), $attributes);
}
protected function reduceRule35($attributes) {
$this->semValue = new Node\Stmt\If_($this->semStack[$this->stackPos-(8-2)], array('stmts' => $this->semStack[$this->stackPos-(8-4)], 'elseifs' => $this->semStack[$this->stackPos-(8-5)], 'else' => $this->semStack[$this->stackPos-(8-6)]), $attributes);
}
protected function reduceRule36($attributes) {
$this->semValue = new Node\Stmt\While_($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule37($attributes) {
$this->semValue = new Node\Stmt\Do_($this->semStack[$this->stackPos-(5-4)], is_array($this->semStack[$this->stackPos-(5-2)]) ? $this->semStack[$this->stackPos-(5-2)] : array($this->semStack[$this->stackPos-(5-2)]), $attributes);
}
protected function reduceRule38($attributes) {
$this->semValue = new Node\Stmt\For_(array('init' => $this->semStack[$this->stackPos-(9-3)], 'cond' => $this->semStack[$this->stackPos-(9-5)], 'loop' => $this->semStack[$this->stackPos-(9-7)], 'stmts' => $this->semStack[$this->stackPos-(9-9)]), $attributes);
}
protected function reduceRule39($attributes) {
$this->semValue = new Node\Stmt\Switch_($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule40($attributes) {
$this->semValue = new Node\Stmt\Break_(null, $attributes);
}
protected function reduceRule41($attributes) {
$this->semValue = new Node\Stmt\Break_($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule42($attributes) {
$this->semValue = new Node\Stmt\Continue_(null, $attributes);
}
protected function reduceRule43($attributes) {
$this->semValue = new Node\Stmt\Continue_($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule44($attributes) {
$this->semValue = new Node\Stmt\Return_(null, $attributes);
}
protected function reduceRule45($attributes) {
$this->semValue = new Node\Stmt\Return_($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule46($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule47($attributes) {
$this->semValue = new Node\Stmt\Global_($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule48($attributes) {
$this->semValue = new Node\Stmt\Static_($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule49($attributes) {
$this->semValue = new Node\Stmt\Echo_($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule50($attributes) {
$this->semValue = new Node\Stmt\InlineHTML($this->semStack[$this->stackPos-(1-1)], $attributes);
}
protected function reduceRule51($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule52($attributes) {
$this->semValue = new Node\Stmt\Unset_($this->semStack[$this->stackPos-(5-3)], $attributes);
}
protected function reduceRule53($attributes) {
$this->semValue = new Node\Stmt\Foreach_($this->semStack[$this->stackPos-(7-3)], $this->semStack[$this->stackPos-(7-5)][0], array('keyVar' => null, 'byRef' => $this->semStack[$this->stackPos-(7-5)][1], 'stmts' => $this->semStack[$this->stackPos-(7-7)]), $attributes);
}
protected function reduceRule54($attributes) {
$this->semValue = new Node\Stmt\Foreach_($this->semStack[$this->stackPos-(9-3)], $this->semStack[$this->stackPos-(9-7)][0], array('keyVar' => $this->semStack[$this->stackPos-(9-5)], 'byRef' => $this->semStack[$this->stackPos-(9-7)][1], 'stmts' => $this->semStack[$this->stackPos-(9-9)]), $attributes);
}
protected function reduceRule55($attributes) {
$this->semValue = new Node\Stmt\Declare_($this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $attributes);
}
protected function reduceRule56($attributes) {
$this->semValue = array(); /* means: no statement */
}
protected function reduceRule57($attributes) {
$this->semValue = new Node\Stmt\TryCatch($this->semStack[$this->stackPos-(6-3)], $this->semStack[$this->stackPos-(6-5)], $this->semStack[$this->stackPos-(6-6)], $attributes);
}
protected function reduceRule58($attributes) {
$this->semValue = new Node\Stmt\Throw_($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule59($attributes) {
$this->semValue = new Node\Stmt\Goto_($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule60($attributes) {
$this->semValue = new Node\Stmt\Label($this->semStack[$this->stackPos-(2-1)], $attributes);
}
protected function reduceRule61($attributes) {
$this->semValue = array();
}
protected function reduceRule62($attributes) {
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule63($attributes) {
$this->semValue = new Node\Stmt\Catch_($this->semStack[$this->stackPos-(8-3)], substr($this->semStack[$this->stackPos-(8-4)], 1), $this->semStack[$this->stackPos-(8-7)], $attributes);
}
protected function reduceRule64($attributes) {
$this->semValue = null;
}
protected function reduceRule65($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(4-3)];
}
protected function reduceRule66($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule67($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule68($attributes) {
$this->semValue = false;
}
protected function reduceRule69($attributes) {
$this->semValue = true;
}
protected function reduceRule70($attributes) {
$this->semValue = false;
}
protected function reduceRule71($attributes) {
$this->semValue = true;
}
protected function reduceRule72($attributes) {
$this->semValue = new Node\Stmt\Function_($this->semStack[$this->stackPos-(9-3)], array('byRef' => $this->semStack[$this->stackPos-(9-2)], 'params' => $this->semStack[$this->stackPos-(9-5)], 'stmts' => $this->semStack[$this->stackPos-(9-8)]), $attributes);
}
protected function reduceRule73($attributes) {
$this->semValue = new Node\Stmt\Class_($this->semStack[$this->stackPos-(7-2)], array('type' => $this->semStack[$this->stackPos-(7-1)], 'extends' => $this->semStack[$this->stackPos-(7-3)], 'implements' => $this->semStack[$this->stackPos-(7-4)], 'stmts' => $this->semStack[$this->stackPos-(7-6)]), $attributes);
}
protected function reduceRule74($attributes) {
$this->semValue = new Node\Stmt\Interface_($this->semStack[$this->stackPos-(6-2)], array('extends' => $this->semStack[$this->stackPos-(6-3)], 'stmts' => $this->semStack[$this->stackPos-(6-5)]), $attributes);
}
protected function reduceRule75($attributes) {
$this->semValue = new Node\Stmt\Trait_($this->semStack[$this->stackPos-(5-2)], $this->semStack[$this->stackPos-(5-4)], $attributes);
}
protected function reduceRule76($attributes) {
$this->semValue = 0;
}
protected function reduceRule77($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_ABSTRACT;
}
protected function reduceRule78($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_FINAL;
}
protected function reduceRule79($attributes) {
$this->semValue = null;
}
protected function reduceRule80($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(2-2)];
}
protected function reduceRule81($attributes) {
$this->semValue = array();
}
protected function reduceRule82($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(2-2)];
}
protected function reduceRule83($attributes) {
$this->semValue = array();
}
protected function reduceRule84($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(2-2)];
}
protected function reduceRule85($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule86($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule87($attributes) {
$this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule88($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(4-2)];
}
protected function reduceRule89($attributes) {
$this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule90($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(4-2)];
}
protected function reduceRule91($attributes) {
$this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule92($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(4-2)];
}
protected function reduceRule93($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule94($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule95($attributes) {
$this->semValue = new Node\Stmt\DeclareDeclare($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule96($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule97($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(4-3)];
}
protected function reduceRule98($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(4-2)];
}
protected function reduceRule99($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(5-3)];
}
protected function reduceRule100($attributes) {
$this->semValue = array();
}
protected function reduceRule101($attributes) {
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule102($attributes) {
$this->semValue = new Node\Stmt\Case_($this->semStack[$this->stackPos-(4-2)], $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule103($attributes) {
$this->semValue = new Node\Stmt\Case_(null, $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule104() {
$this->semValue = $this->semStack[$this->stackPos];
}
protected function reduceRule105() {
$this->semValue = $this->semStack[$this->stackPos];
}
protected function reduceRule106($attributes) {
$this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule107($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(4-2)];
}
protected function reduceRule108($attributes) {
$this->semValue = array();
}
protected function reduceRule109($attributes) {
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule110($attributes) {
$this->semValue = new Node\Stmt\ElseIf_($this->semStack[$this->stackPos-(3-2)], is_array($this->semStack[$this->stackPos-(3-3)]) ? $this->semStack[$this->stackPos-(3-3)] : array($this->semStack[$this->stackPos-(3-3)]), $attributes);
}
protected function reduceRule111($attributes) {
$this->semValue = array();
}
protected function reduceRule112($attributes) {
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule113($attributes) {
$this->semValue = new Node\Stmt\ElseIf_($this->semStack[$this->stackPos-(4-2)], $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule114($attributes) {
$this->semValue = null;
}
protected function reduceRule115($attributes) {
$this->semValue = new Node\Stmt\Else_(is_array($this->semStack[$this->stackPos-(2-2)]) ? $this->semStack[$this->stackPos-(2-2)] : array($this->semStack[$this->stackPos-(2-2)]), $attributes);
}
protected function reduceRule116($attributes) {
$this->semValue = null;
}
protected function reduceRule117($attributes) {
$this->semValue = new Node\Stmt\Else_($this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule118($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)], false);
}
protected function reduceRule119($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(2-2)], true);
}
protected function reduceRule120($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)], false);
}
protected function reduceRule121($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule122($attributes) {
$this->semValue = array();
}
protected function reduceRule123($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule124($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule125($attributes) {
$this->semValue = new Node\Param(substr($this->semStack[$this->stackPos-(4-4)], 1), null, $this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-2)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule126($attributes) {
$this->semValue = new Node\Param(substr($this->semStack[$this->stackPos-(6-4)], 1), $this->semStack[$this->stackPos-(6-6)], $this->semStack[$this->stackPos-(6-1)], $this->semStack[$this->stackPos-(6-2)], $this->semStack[$this->stackPos-(6-3)], $attributes);
}
protected function reduceRule127($attributes) {
$this->semValue = null;
}
protected function reduceRule128($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule129($attributes) {
$this->semValue = 'array';
}
protected function reduceRule130($attributes) {
$this->semValue = 'callable';
}
protected function reduceRule131($attributes) {
$this->semValue = array();
}
protected function reduceRule132($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule133($attributes) {
$this->semValue = array(new Node\Arg($this->semStack[$this->stackPos-(3-2)], false, false, $attributes));
}
protected function reduceRule134($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule135($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule136($attributes) {
$this->semValue = new Node\Arg($this->semStack[$this->stackPos-(1-1)], false, false, $attributes);
}
protected function reduceRule137($attributes) {
$this->semValue = new Node\Arg($this->semStack[$this->stackPos-(2-2)], true, false, $attributes);
}
protected function reduceRule138($attributes) {
$this->semValue = new Node\Arg($this->semStack[$this->stackPos-(2-2)], false, true, $attributes);
}
protected function reduceRule139($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule140($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule141($attributes) {
$this->semValue = new Node\Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $attributes);
}
protected function reduceRule142($attributes) {
$this->semValue = new Node\Expr\Variable($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule143($attributes) {
$this->semValue = new Node\Expr\Variable($this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule144($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule145($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule146($attributes) {
$this->semValue = new Node\Stmt\StaticVar(substr($this->semStack[$this->stackPos-(1-1)], 1), null, $attributes);
}
protected function reduceRule147($attributes) {
$this->semValue = new Node\Stmt\StaticVar(substr($this->semStack[$this->stackPos-(3-1)], 1), $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule148($attributes) {
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule149($attributes) {
$this->semValue = array();
}
protected function reduceRule150($attributes) {
$this->semValue = new Node\Stmt\Property($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule151($attributes) {
$this->semValue = new Node\Stmt\ClassConst($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule152($attributes) {
$this->semValue = new Node\Stmt\ClassMethod($this->semStack[$this->stackPos-(8-4)], array('type' => $this->semStack[$this->stackPos-(8-1)], 'byRef' => $this->semStack[$this->stackPos-(8-3)], 'params' => $this->semStack[$this->stackPos-(8-6)], 'stmts' => $this->semStack[$this->stackPos-(8-8)]), $attributes);
}
protected function reduceRule153($attributes) {
$this->semValue = new Node\Stmt\TraitUse($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule154($attributes) {
$this->semValue = array();
}
protected function reduceRule155($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule156($attributes) {
$this->semValue = array();
}
protected function reduceRule157($attributes) {
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule158($attributes) {
$this->semValue = new Node\Stmt\TraitUseAdaptation\Precedence($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule159($attributes) {
$this->semValue = new Node\Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(5-1)][0], $this->semStack[$this->stackPos-(5-1)][1], $this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-4)], $attributes);
}
protected function reduceRule160($attributes) {
$this->semValue = new Node\Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], $this->semStack[$this->stackPos-(4-3)], null, $attributes);
}
protected function reduceRule161($attributes) {
$this->semValue = new Node\Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], null, $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule162($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)]);
}
protected function reduceRule163($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule164($attributes) {
$this->semValue = array(null, $this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule165($attributes) {
$this->semValue = null;
}
protected function reduceRule166($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule167($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule168($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_PUBLIC;
}
protected function reduceRule169($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_PUBLIC;
}
protected function reduceRule170($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule171($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule172($attributes) {
Node\Stmt\Class_::verifyModifier($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]); $this->semValue = $this->semStack[$this->stackPos-(2-1)] | $this->semStack[$this->stackPos-(2-2)];
}
protected function reduceRule173($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_PUBLIC;
}
protected function reduceRule174($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_PROTECTED;
}
protected function reduceRule175($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_PRIVATE;
}
protected function reduceRule176($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_STATIC;
}
protected function reduceRule177($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_ABSTRACT;
}
protected function reduceRule178($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_FINAL;
}
protected function reduceRule179($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule180($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule181($attributes) {
$this->semValue = new Node\Stmt\PropertyProperty(substr($this->semStack[$this->stackPos-(1-1)], 1), null, $attributes);
}
protected function reduceRule182($attributes) {
$this->semValue = new Node\Stmt\PropertyProperty(substr($this->semStack[$this->stackPos-(3-1)], 1), $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule183($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule184($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule185($attributes) {
$this->semValue = array();
}
protected function reduceRule186($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule187($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule188($attributes) {
$this->semValue = new Node\Expr\Assign($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule189($attributes) {
$this->semValue = new Node\Expr\Assign($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule190($attributes) {
$this->semValue = new Node\Expr\AssignRef($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule191($attributes) {
$this->semValue = new Node\Expr\AssignRef($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule192($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule193($attributes) {
$this->semValue = new Node\Expr\Clone_($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule194($attributes) {
$this->semValue = new Node\Expr\AssignOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule195($attributes) {
$this->semValue = new Node\Expr\AssignOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule196($attributes) {
$this->semValue = new Node\Expr\AssignOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule197($attributes) {
$this->semValue = new Node\Expr\AssignOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule198($attributes) {
$this->semValue = new Node\Expr\AssignOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule199($attributes) {
$this->semValue = new Node\Expr\AssignOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule200($attributes) {
$this->semValue = new Node\Expr\AssignOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule201($attributes) {
$this->semValue = new Node\Expr\AssignOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule202($attributes) {
$this->semValue = new Node\Expr\AssignOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule203($attributes) {
$this->semValue = new Node\Expr\AssignOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule204($attributes) {
$this->semValue = new Node\Expr\AssignOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule205($attributes) {
$this->semValue = new Node\Expr\AssignOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule206($attributes) {
$this->semValue = new Node\Expr\PostInc($this->semStack[$this->stackPos-(2-1)], $attributes);
}
protected function reduceRule207($attributes) {
$this->semValue = new Node\Expr\PreInc($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule208($attributes) {
$this->semValue = new Node\Expr\PostDec($this->semStack[$this->stackPos-(2-1)], $attributes);
}
protected function reduceRule209($attributes) {
$this->semValue = new Node\Expr\PreDec($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule210($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BooleanOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule211($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BooleanAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule212($attributes) {
$this->semValue = new Node\Expr\BinaryOp\LogicalOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule213($attributes) {
$this->semValue = new Node\Expr\BinaryOp\LogicalAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule214($attributes) {
$this->semValue = new Node\Expr\BinaryOp\LogicalXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule215($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule216($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule217($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule218($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule219($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule220($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule221($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule222($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule223($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule224($attributes) {
$this->semValue = new Node\Expr\BinaryOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule225($attributes) {
$this->semValue = new Node\Expr\BinaryOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule226($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule227($attributes) {
$this->semValue = new Node\Expr\UnaryPlus($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule228($attributes) {
$this->semValue = new Node\Expr\UnaryMinus($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule229($attributes) {
$this->semValue = new Node\Expr\BooleanNot($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule230($attributes) {
$this->semValue = new Node\Expr\BitwiseNot($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule231($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Identical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule232($attributes) {
$this->semValue = new Node\Expr\BinaryOp\NotIdentical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule233($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Equal($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule234($attributes) {
$this->semValue = new Node\Expr\BinaryOp\NotEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule235($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Smaller($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule236($attributes) {
$this->semValue = new Node\Expr\BinaryOp\SmallerOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule237($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Greater($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule238($attributes) {
$this->semValue = new Node\Expr\BinaryOp\GreaterOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule239($attributes) {
$this->semValue = new Node\Expr\Instanceof_($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule240($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule241($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule242($attributes) {
$this->semValue = new Node\Expr\Ternary($this->semStack[$this->stackPos-(5-1)], $this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $attributes);
}
protected function reduceRule243($attributes) {
$this->semValue = new Node\Expr\Ternary($this->semStack[$this->stackPos-(4-1)], null, $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule244($attributes) {
$this->semValue = new Node\Expr\Isset_($this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule245($attributes) {
$this->semValue = new Node\Expr\Empty_($this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule246($attributes) {
$this->semValue = new Node\Expr\Include_($this->semStack[$this->stackPos-(2-2)], Node\Expr\Include_::TYPE_INCLUDE, $attributes);
}
protected function reduceRule247($attributes) {
$this->semValue = new Node\Expr\Include_($this->semStack[$this->stackPos-(2-2)], Node\Expr\Include_::TYPE_INCLUDE_ONCE, $attributes);
}
protected function reduceRule248($attributes) {
$this->semValue = new Node\Expr\Eval_($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule249($attributes) {
$this->semValue = new Node\Expr\Include_($this->semStack[$this->stackPos-(2-2)], Node\Expr\Include_::TYPE_REQUIRE, $attributes);
}
protected function reduceRule250($attributes) {
$this->semValue = new Node\Expr\Include_($this->semStack[$this->stackPos-(2-2)], Node\Expr\Include_::TYPE_REQUIRE_ONCE, $attributes);
}
protected function reduceRule251($attributes) {
$this->semValue = new Node\Expr\Cast\Int($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule252($attributes) {
$this->semValue = new Node\Expr\Cast\Double($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule253($attributes) {
$this->semValue = new Node\Expr\Cast\String($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule254($attributes) {
$this->semValue = new Node\Expr\Cast\Array_($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule255($attributes) {
$this->semValue = new Node\Expr\Cast\Object($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule256($attributes) {
$this->semValue = new Node\Expr\Cast\Bool($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule257($attributes) {
$this->semValue = new Node\Expr\Cast\Unset_($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule258($attributes) {
$this->semValue = new Node\Expr\Exit_($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule259($attributes) {
$this->semValue = new Node\Expr\ErrorSuppress($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule260($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule261($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule262($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule263($attributes) {
$this->semValue = new Node\Expr\ShellExec($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule264($attributes) {
$this->semValue = new Node\Expr\Print_($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule265($attributes) {
$this->semValue = new Node\Expr\Yield_(null, null, $attributes);
}
protected function reduceRule266($attributes) {
$this->semValue = new Node\Expr\Closure(array('static' => false, 'byRef' => $this->semStack[$this->stackPos-(9-2)], 'params' => $this->semStack[$this->stackPos-(9-4)], 'uses' => $this->semStack[$this->stackPos-(9-6)], 'stmts' => $this->semStack[$this->stackPos-(9-8)]), $attributes);
}
protected function reduceRule267($attributes) {
$this->semValue = new Node\Expr\Closure(array('static' => true, 'byRef' => $this->semStack[$this->stackPos-(10-3)], 'params' => $this->semStack[$this->stackPos-(10-5)], 'uses' => $this->semStack[$this->stackPos-(10-7)], 'stmts' => $this->semStack[$this->stackPos-(10-9)]), $attributes);
}
protected function reduceRule268($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule269($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule270($attributes) {
$this->semValue = new Node\Expr\Yield_($this->semStack[$this->stackPos-(2-2)], null, $attributes);
}
protected function reduceRule271($attributes) {
$this->semValue = new Node\Expr\Yield_($this->semStack[$this->stackPos-(4-4)], $this->semStack[$this->stackPos-(4-2)], $attributes);
}
protected function reduceRule272($attributes) {
$this->semValue = new Node\Expr\Array_($this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule273($attributes) {
$this->semValue = new Node\Expr\Array_($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule274($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule275($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch(new Node\Scalar\String(Node\Scalar\String::parse($this->semStack[$this->stackPos-(4-1)]), $attributes), $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule276($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule277($attributes) {
$this->semValue = new Node\Expr\New_($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule278($attributes) {
$this->semValue = array();
}
protected function reduceRule279($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(4-3)];
}
protected function reduceRule280($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule281($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule282($attributes) {
$this->semValue = new Node\Expr\ClosureUse(substr($this->semStack[$this->stackPos-(2-2)], 1), $this->semStack[$this->stackPos-(2-1)], $attributes);
}
protected function reduceRule283($attributes) {
$this->semValue = new Node\Expr\FuncCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule284($attributes) {
$this->semValue = new Node\Expr\StaticCall($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule285($attributes) {
$this->semValue = new Node\Expr\StaticCall($this->semStack[$this->stackPos-(6-1)], $this->semStack[$this->stackPos-(6-4)], $this->semStack[$this->stackPos-(6-6)], $attributes);
}
protected function reduceRule286($attributes) {
if ($this->semStack[$this->stackPos-(2-1)] instanceof Node\Expr\StaticPropertyFetch) {
$this->semValue = new Node\Expr\StaticCall($this->semStack[$this->stackPos-(2-1)]->class, new Node\Expr\Variable($this->semStack[$this->stackPos-(2-1)]->name, $attributes), $this->semStack[$this->stackPos-(2-2)], $attributes);
} elseif ($this->semStack[$this->stackPos-(2-1)] instanceof Node\Expr\ArrayDimFetch) {
$tmp = $this->semStack[$this->stackPos-(2-1)];
while ($tmp->var instanceof Node\Expr\ArrayDimFetch) {
$tmp = $tmp->var;
}
$this->semValue = new Node\Expr\StaticCall($tmp->var->class, $this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $attributes);
$tmp->var = new Node\Expr\Variable($tmp->var->name, $attributes);
} else {
throw new \Exception;
}
}
protected function reduceRule287($attributes) {
$this->semValue = new Node\Expr\FuncCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule288($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule289($attributes) {
$this->semValue = new Node\Name('static', $attributes);
}
protected function reduceRule290($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule291($attributes) {
$this->semValue = new Node\Name($this->semStack[$this->stackPos-(1-1)], $attributes);
}
protected function reduceRule292($attributes) {
$this->semValue = new Node\Name\FullyQualified($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule293($attributes) {
$this->semValue = new Node\Name\Relative($this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule294($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule295($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule296($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule297($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule298($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule299($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule300() {
$this->semValue = $this->semStack[$this->stackPos];
}
protected function reduceRule301($attributes) {
$this->semValue = new Node\Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule302($attributes) {
$this->semValue = new Node\Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule303($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule304($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule305($attributes) {
$this->semValue = null;
}
protected function reduceRule306($attributes) {
$this->semValue = null;
}
protected function reduceRule307($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule308($attributes) {
$this->semValue = array();
}
protected function reduceRule309($attributes) {
$this->semValue = array(Node\Scalar\String::parseEscapeSequences($this->semStack[$this->stackPos-(1-1)], '`'));
}
protected function reduceRule310($attributes) {
foreach ($this->semStack[$this->stackPos-(1-1)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String::parseEscapeSequences($s, '`'); } }; $this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule311($attributes) {
$this->semValue = array();
}
protected function reduceRule312($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule313($attributes) {
$this->semValue = new Node\Scalar\LNumber(Node\Scalar\LNumber::parse($this->semStack[$this->stackPos-(1-1)]), $attributes);
}
protected function reduceRule314($attributes) {
$this->semValue = new Node\Scalar\DNumber(Node\Scalar\DNumber::parse($this->semStack[$this->stackPos-(1-1)]), $attributes);
}
protected function reduceRule315($attributes) {
$this->semValue = new Node\Scalar\String(Node\Scalar\String::parse($this->semStack[$this->stackPos-(1-1)]), $attributes);
}
protected function reduceRule316($attributes) {
$this->semValue = new Node\Scalar\MagicConst\Line($attributes);
}
protected function reduceRule317($attributes) {
$this->semValue = new Node\Scalar\MagicConst\File($attributes);
}
protected function reduceRule318($attributes) {
$this->semValue = new Node\Scalar\MagicConst\Dir($attributes);
}
protected function reduceRule319($attributes) {
$this->semValue = new Node\Scalar\MagicConst\Class_($attributes);
}
protected function reduceRule320($attributes) {
$this->semValue = new Node\Scalar\MagicConst\Trait_($attributes);
}
protected function reduceRule321($attributes) {
$this->semValue = new Node\Scalar\MagicConst\Method($attributes);
}
protected function reduceRule322($attributes) {
$this->semValue = new Node\Scalar\MagicConst\Function_($attributes);
}
protected function reduceRule323($attributes) {
$this->semValue = new Node\Scalar\MagicConst\Namespace_($attributes);
}
protected function reduceRule324($attributes) {
$this->semValue = new Node\Scalar\String(Node\Scalar\String::parseDocString($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-2)]), $attributes);
}
protected function reduceRule325($attributes) {
$this->semValue = new Node\Scalar\String('', $attributes);
}
protected function reduceRule326($attributes) {
$this->semValue = new Node\Expr\ConstFetch($this->semStack[$this->stackPos-(1-1)], $attributes);
}
protected function reduceRule327($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule328($attributes) {
$this->semValue = new Node\Expr\ClassConstFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule329($attributes) {
$this->semValue = new Node\Expr\Array_($this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule330($attributes) {
$this->semValue = new Node\Expr\Array_($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule331($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule332($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BooleanOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule333($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BooleanAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule334($attributes) {
$this->semValue = new Node\Expr\BinaryOp\LogicalOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule335($attributes) {
$this->semValue = new Node\Expr\BinaryOp\LogicalAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule336($attributes) {
$this->semValue = new Node\Expr\BinaryOp\LogicalXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule337($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule338($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule339($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule340($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule341($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule342($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule343($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule344($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule345($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule346($attributes) {
$this->semValue = new Node\Expr\BinaryOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule347($attributes) {
$this->semValue = new Node\Expr\BinaryOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule348($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule349($attributes) {
$this->semValue = new Node\Expr\UnaryPlus($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule350($attributes) {
$this->semValue = new Node\Expr\UnaryMinus($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule351($attributes) {
$this->semValue = new Node\Expr\BooleanNot($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule352($attributes) {
$this->semValue = new Node\Expr\BitwiseNot($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule353($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Identical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule354($attributes) {
$this->semValue = new Node\Expr\BinaryOp\NotIdentical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule355($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Equal($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule356($attributes) {
$this->semValue = new Node\Expr\BinaryOp\NotEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule357($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Smaller($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule358($attributes) {
$this->semValue = new Node\Expr\BinaryOp\SmallerOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule359($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Greater($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule360($attributes) {
$this->semValue = new Node\Expr\BinaryOp\GreaterOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule361($attributes) {
$this->semValue = new Node\Expr\Ternary($this->semStack[$this->stackPos-(5-1)], $this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $attributes);
}
protected function reduceRule362($attributes) {
$this->semValue = new Node\Expr\Ternary($this->semStack[$this->stackPos-(4-1)], null, $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule363($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule364($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule365($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule366($attributes) {
$this->semValue = new Node\Expr\ClassConstFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule367($attributes) {
foreach ($this->semStack[$this->stackPos-(3-2)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String::parseEscapeSequences($s, '"'); } }; $this->semValue = new Node\Scalar\Encapsed($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule368($attributes) {
foreach ($this->semStack[$this->stackPos-(3-2)] as &$s) { if (is_string($s)) { $s = Node\Scalar\String::parseEscapeSequences($s, null); } } $s = preg_replace('~(\r\n|\n|\r)$~', '', $s); if ('' === $s) array_pop($this->semStack[$this->stackPos-(3-2)]);; $this->semValue = new Node\Scalar\Encapsed($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule369($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule370($attributes) {
$this->semValue = 'class';
}
protected function reduceRule371($attributes) {
$this->semValue = array();
}
protected function reduceRule372($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule373() {
$this->semValue = $this->semStack[$this->stackPos];
}
protected function reduceRule374() {
$this->semValue = $this->semStack[$this->stackPos];
}
protected function reduceRule375($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule376($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule377($attributes) {
$this->semValue = new Node\Expr\ArrayItem($this->semStack[$this->stackPos-(3-3)], $this->semStack[$this->stackPos-(3-1)], false, $attributes);
}
protected function reduceRule378($attributes) {
$this->semValue = new Node\Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $attributes);
}
protected function reduceRule379($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule380($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule381($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule382($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule383($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(6-2)], $this->semStack[$this->stackPos-(6-5)], $attributes);
}
protected function reduceRule384($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule385($attributes) {
$this->semValue = new Node\Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule386($attributes) {
$this->semValue = new Node\Expr\MethodCall($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule387($attributes) {
$this->semValue = new Node\Expr\FuncCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule388($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule389($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule390($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule391($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule392($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule393($attributes) {
$this->semValue = new Node\Expr\Variable($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule394($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule395($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule396($attributes) {
$this->semValue = new Node\Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule397($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule398($attributes) {
$this->semValue = new Node\Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(3-1)], substr($this->semStack[$this->stackPos-(3-3)], 1), $attributes);
}
protected function reduceRule399($attributes) {
$this->semValue = new Node\Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(6-1)], $this->semStack[$this->stackPos-(6-5)], $attributes);
}
protected function reduceRule400($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule401($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule402($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule403($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule404($attributes) {
$this->semValue = new Node\Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $attributes);
}
protected function reduceRule405($attributes) {
$this->semValue = new Node\Expr\Variable($this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule406($attributes) {
$this->semValue = null;
}
protected function reduceRule407($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule408($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule409($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule410($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule411($attributes) {
$this->semValue = new Node\Expr\List_($this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule412($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule413($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule414($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule415($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule416($attributes) {
$this->semValue = null;
}
protected function reduceRule417($attributes) {
$this->semValue = array();
}
protected function reduceRule418($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule419($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule420($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule421($attributes) {
$this->semValue = new Node\Expr\ArrayItem($this->semStack[$this->stackPos-(3-3)], $this->semStack[$this->stackPos-(3-1)], false, $attributes);
}
protected function reduceRule422($attributes) {
$this->semValue = new Node\Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $attributes);
}
protected function reduceRule423($attributes) {
$this->semValue = new Node\Expr\ArrayItem($this->semStack[$this->stackPos-(4-4)], $this->semStack[$this->stackPos-(4-1)], true, $attributes);
}
protected function reduceRule424($attributes) {
$this->semValue = new Node\Expr\ArrayItem($this->semStack[$this->stackPos-(2-2)], null, true, $attributes);
}
protected function reduceRule425($attributes) {
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule426($attributes) {
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule427($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule428($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]);
}
protected function reduceRule429($attributes) {
$this->semValue = new Node\Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $attributes);
}
protected function reduceRule430($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch(new Node\Expr\Variable(substr($this->semStack[$this->stackPos-(4-1)], 1), $attributes), $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule431($attributes) {
$this->semValue = new Node\Expr\PropertyFetch(new Node\Expr\Variable(substr($this->semStack[$this->stackPos-(3-1)], 1), $attributes), $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule432($attributes) {
$this->semValue = new Node\Expr\Variable($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule433($attributes) {
$this->semValue = new Node\Expr\Variable($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule434($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch(new Node\Expr\Variable($this->semStack[$this->stackPos-(6-2)], $attributes), $this->semStack[$this->stackPos-(6-4)], $attributes);
}
protected function reduceRule435($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule436($attributes) {
$this->semValue = new Node\Scalar\String($this->semStack[$this->stackPos-(1-1)], $attributes);
}
protected function reduceRule437($attributes) {
$this->semValue = new Node\Scalar\String($this->semStack[$this->stackPos-(1-1)], $attributes);
}
protected function reduceRule438($attributes) {
$this->semValue = new Node\Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $attributes);
}
}