php-parser/lib/PhpParser/Parser.php
Nikita Popov 3ad0d4b310 Add support for return type declarations [PHP 7]
This adds an additional "returnType" subnode to Stmt\Function_,
Stmt\ClassMethod and Expr\Closure, as well as the corresponding
support in the name resolver and pretty printer.
2015-03-12 22:16:12 +01:00

2799 lines
130 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 = 1102;
protected $gotoTableSize = 572;
protected $invalidToken = 154;
protected $defaultAction = -32766;
protected $unexpectedTokenRule = 32767;
protected $YY2TBLSTATE = 402;
protected $YYNLSTATES = 634;
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(
60, 61, 412, 62, 63,-32766,-32766,-32766,-32766, 64,
65, 216, 217, 218, 219, 220, 221, 222, 223, 224,
225, 226, 227, 228, 229, 230, 231, 232, 233, 234,
235, 236,-32766,-32766,-32766,-32766,-32766,-32767,-32767,-32767,
-32767, 66, 67, 58, 450, 237, 238, 68, 371, 69,
290, 291, 70, 71, 72, 73, 74, 75, 76, 77,
738, 32, 300, 78, 404, 413, 411, 437, 409, 950,
951, 453, 1037, 1043, 330, 684, 429, 454, 46, 27,
414, 134, 455, 805, 456, 556, 457, 215, 586, 415,
762, 763, 1065, 36, 37, 458, 420, 416, 38, 459,
349, 350, 79, 184, 322, 352, 353, 0, 460, 461,
39, 293, -122, 462, 463, 464, 709, 666, 710, 465,
466, 31, 902, 281, 467, 468, 125, 956, 957, 958,
959, 953, 954, 308, 83, 84, 85, 126, 481, 960,
955, 417, 294, 690, 607, 408, 47, 341, 333, 320,
1007, 324, 40, 436, 86, 87, 88, 89, 90, 91,
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
102, 103, 104, 105, 106, 132, 301,-32766, 739,-32766,
-32766,-32766, 787, 638, 213, 214, 215,-32766, 107, 297,
-32766,-32766,-32766, 35,-32766, 430,-32766,-32766,-32766,-32766,
-32766,-32766, 184, 1043, 432,-32766,-32766,-32766, 917, 22,
-32766,-32766, 294, 1075,-32766, 1077, 1076,-32766, 480,-32766,
-32766,-32766,-32766,-32766, 902,-32766, 130, 213, 214, 215,
41, 108, 109, 110, 111, 112, 113, 114, 115, 116,
117, 118, 119, 597, 359, 184, 1065,-32766, 638, 213,
214, 215, 325, 638, 129,-32766,-32766,-32766, 279, 1072,
-32766,-32766,-32766, 769,-32766, 1050,-32766, 184,-32766, 843,
845,-32766, 213, 214, 215,-32766,-32766,-32766, 333,-32766,
-32766,-32766, -118, 467,-32766, 638, 381,-32766, 480,-32766,
184, 902,-32766,-32766,-32766,-32766,-32766, 778,-32766, 409,
-32766, 239, 204,-32766, 564, 330, 57,-32766,-32766,-32766,
962, 282,-32766,-32766, 805, 481,-32766, 792, 417,-32766,
480, 1006, 306, 902, 129,-32766,-32766,-32766, 416, 768,
-32767,-32767,-32767,-32767, 99, 100, 101, 102, 103, 460,
461, -395, 682, 292, 1047, 335,-32766, 708, 666, 710,
465, 466, 638, 340, 55, 434,-32766,-32766,-32766,-32766,
-32766,-32766, 962,-32766,-32766,-32766, 902,-32766, 214, 215,
-32766, 1000, 283, 296,-32766,-32766,-32766, 904,-32766,-32766,
-32766, 128, 681,-32766, 638, 184,-32766, 480,-32766, 123,
1001,-32766,-32766,-32766,-32766,-32766, 431,-32766, 638,-32766,
1043, 1009,-32766,-32766,-32766,-32766,-32766,-32766,-32766, 902,
606,-32766,-32766, 1008, 528,-32766, 351, 131,-32766, 480,
54,-32766,-32766,-32766,-32766,-32766,-32766, 638, 130, 295,
120,-32766, 242, 927,-32766,-32766,-32766, 122,-32766, 207,
-32766, 902,-32766,-32766,-32766,-32766,-32766,-32766,-32766,-32766,
-32766,-32766, 237, 238,-32766,-32766,-32766,-32766,-32766, 1009,
426,-32766, 480, 609,-32766, 481, 444, 570, 417,-32766,
638, 439, 28, 421,-32766, 333, 206,-32766,-32766,-32766,
409,-32766, 797,-32766, 902,-32766, 330, 205,-32766, 213,
214, 215,-32766,-32766,-32766, 805,-32766,-32766,-32766,-32766,
-32766,-32766, 638, 121,-32766, 480,-32766, 184, 241,-32766,
-32766,-32766,-32766,-32766, 243,-32766, 902,-32766, 135, 360,
-32766, 231, 232, 233,-32766,-32766,-32766, 630, 707,-32766,
-32766, 762, 763,-32766, 577, 578,-32766, 480, 184,-32766,
623, 133,-32766,-32766,-32766, 638,-32766,-32766,-32766,-32766,
802, 633,-32766,-32766,-32766, 612,-32766, 694,-32766, 902,
-32766, 791, 626,-32766,-32766,-32766,-32766,-32766,-32766,-32766,
627,-32766,-32766,-32766, 674,-32766,-32766, 638, 622,-32766,
480,-32766, 645, 614,-32766,-32766,-32766,-32766,-32766, 307,
-32766, 619,-32766, 610, 301,-32766, 101, 102, 103,-32766,
-32766,-32766, 703, 107,-32766,-32766, 300, 605,-32766, 51,
582,-32766, 480, 59,-32766, 56, 549, 676,-32766,-32766,
638, 104, 105, 106,-32766, 301, 53,-32766,-32766,-32766,
52,-32766, 50,-32766, 49,-32766, 240, 107,-32766,-32766,
-32766,-32766,-32766,-32766,-32766, 427, 594,-32766,-32766, 678,
-32766,-32766, 208, 209,-32766, 480, 416,-32766, 210, 519,
211, 518,-32766, 425, 638, 799, 639, 460, 461, 506,
655, 502, 202, 234, 235, 236, 666, 710, 465, 466,
950, 951, -170, 1070,-32766,-32766, 657, 501, 952, 237,
238, 638,-32766,-32766, 505,-32766, 579, 589,-32766,-32766,
-32766, 920,-32766, 596,-32766, 667,-32766, 338, 339,-32766,
-32766,-32766,-32766,-32766,-32766,-32766, 1065, 428,-32766,-32766,
574, 424,-32766, 278, 299,-32766, 480, 521,-32766, -167,
-32766,-32766,-32766,-32766, 573, 561, 546, 124, 956, 957,
958, 959, 953, 954, 387, 448, 208, 209, 329, 42,
960, 955, 210, 961, 211, 331, -395, 212, 334,-32766,
712, 788, 328,-32766,-32766, 711, 202, 943, -396, 321,
0,-32766, 323, 0, 950, 951, 467, 638,-32766, 0,
0,-32766, 952, 0,-32766,-32766,-32766, 0,-32766, 0,
-32766, 311,-32766, -302, -294,-32766, 602, 374, 361,-32766,
-32766,-32766, 327, -303,-32766,-32766, 416, 405,-32766, 511,
426,-32766, 480, 319, 408, 796, 705, 460, 461,-32766,
813, 814, 815, 812, 811, 810, 644, 710, 465, 466,
546, 648, 956, 957, 958, 959, 953, 954, 387,-32766,
-32766,-32766, 683, 722, 960, 955, 724, 731, 332,-32766,
-32766, 212, 726,-32766, 669, 646, 733,-32766, 732,-32766,
-32766,-32766,-32766,-32766,-32767,-32767,-32767,-32767,-32766,-32766,
-32766,-32766,-32766,-32766,-32766,-32766,-32766,-32767,-32767,-32767,
-32767, 416, 405, 741, 686, 671, 693, 680, 319, 616,
615, 45, 460, 461, 44, 651, 650, 649, 416, 405,
798, 644, 710, 465, 466, 319, 692, 679, 677, 460,
461,-32766,-32766,-32766, 675, 685, 416, 795, 644, 710,
465, 466, 127, 332, 82, 608, 613, 460, 461,-32766,
647,-32766,-32766,-32766,-32766,-32766, 666, 710, 465, 466,
332, 416, 618, 620, 625, 628, 416, 629, 631, 632,
0, 730, 460, 461, 443, 1071, 1044, 460, 461, 416,
1042, 666, 710, 465, 466, 699, 666, 710, 465, 466,
460, 461, 1028, 1040, 1038, 1048, 416, 1073, 558, 666,
710, 465, 466, 1074, 780, 941, 900, 460, 461, 416,
706, 882, 407, 416, 604, 803, 666, 710, 465, 466,
460, 461, 403, 336, 460, 461, 33, 416, 697, 666,
710, 465, 466, 666, 710, 465, 466, 34, 460, 461,
595, 43, 48, 305, 416, 617, 550, 666, 710, 465,
466, 416, 304, 80,-32766, 460, 461, 303, 903,-32766,
-32766,-32766, 460, 461, 666, 710, 465, 466, 302, 289,
288, 666, 710, 465, 466, 280, 203,-32766, 81,-32766,
-32766,-32766,-32766, 30, 580, 881, 905, -119, 966, 770,
909, 906, 601, 541, 451, 0, 447, 445, 440, 382,
25, 24, 0, 23, -118, 0, 0, 0, 1022, 967,
1069, 940, 1039, 1023, 1027, 1041, 926, 913, 914, 911,
912, 910
);
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, 146, 84, 114, 86, 150, 88, 10, 89, 91,
127, 128, 78, 95, 96, 97, 98, 98, 100, 101,
98, 99, 104, 26, 124, 107, 108, 0, 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,
136, 153, 26, 73, 28, 29, 30, 31, 32, 33,
34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
44, 45, 46, 47, 48, 63, 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, 75, 76, 107, 108, 28,
29, 30, 31, 32, 12, 115, 146, 8, 9, 10,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 73, 7, 26, 78, 67, 73, 8,
9, 10, 78, 73, 144, 145, 146, 77, 125, 147,
80, 81, 82, 149, 84, 149, 86, 26, 88, 52,
53, 91, 8, 9, 10, 95, 96, 97, 150, 67,
100, 101, 149, 126, 104, 73, 74, 107, 108, 77,
26, 12, 80, 81, 82, 115, 84, 75, 86, 99,
88, 125, 7, 91, 78, 105, 63, 95, 96, 97,
136, 32, 100, 101, 114, 140, 104, 147, 143, 107,
108, 153, 7, 12, 144, 145, 146, 115, 98, 149,
37, 38, 39, 40, 41, 42, 43, 44, 45, 109,
110, 124, 145, 32, 73, 7, 67, 147, 118, 119,
120, 121, 73, 63, 63, 73, 77, 145, 146, 80,
81, 82, 136, 84, 8, 86, 12, 88, 9, 10,
91, 152, 150, 7, 95, 96, 97, 147, 67, 100,
101, 27, 145, 104, 73, 26, 107, 108, 77, 146,
149, 80, 81, 82, 115, 84, 7, 86, 73, 88,
75, 119, 91, 8, 9, 10, 95, 96, 97, 12,
73, 100, 101, 73, 124, 104, 7, 146, 107, 108,
63, 67, 8, 9, 145, 146, 115, 73, 146, 32,
13, 77, 13, 108, 80, 81, 82, 146, 84, 13,
86, 12, 88, 28, 29, 91, 28, 29, 30, 95,
96, 97, 62, 63, 100, 101, 145, 146, 104, 119,
143, 107, 108, 146, 67, 140, 68, 69, 143, 115,
73, 68, 69, 148, 77, 150, 13, 80, 81, 82,
99, 84, 145, 86, 12, 88, 105, 13, 91, 8,
9, 10, 95, 96, 97, 114, 67, 100, 101, 145,
146, 104, 73, 146, 107, 108, 77, 26, 27, 80,
81, 82, 115, 84, 13, 86, 12, 88, 93, 94,
91, 43, 44, 45, 95, 96, 97, 27, 147, 100,
101, 127, 128, 104, 102, 103, 107, 108, 26, 67,
27, 27, 145, 146, 115, 73, 8, 9, 10, 77,
145, 146, 80, 81, 82, 27, 84, 27, 86, 12,
88, 145, 146, 91, 26, 28, 28, 95, 96, 97,
27, 67, 100, 101, 145, 146, 104, 73, 27, 107,
108, 77, 145, 146, 80, 81, 82, 115, 84, 27,
86, 27, 88, 27, 50, 91, 43, 44, 45, 95,
96, 97, 32, 62, 100, 101, 64, 73, 104, 63,
70, 107, 108, 63, 67, 63, 90, 145, 146, 115,
73, 46, 47, 48, 77, 50, 63, 80, 81, 82,
63, 84, 63, 86, 63, 88, 27, 62, 91, 8,
9, 10, 95, 96, 97, 73, 73, 100, 101, 145,
146, 104, 43, 44, 107, 108, 98, 26, 49, 73,
51, 73, 115, 73, 73, 73, 73, 109, 110, 73,
73, 73, 63, 46, 47, 48, 118, 119, 120, 121,
71, 72, 75, 73, 75, 67, 73, 73, 79, 62,
63, 73, 145, 146, 75, 77, 75, 75, 80, 81,
82, 75, 84, 75, 86, 147, 88, 78, 78, 91,
8, 9, 10, 95, 96, 97, 78, 82, 100, 101,
105, 98, 104, 90, 90, 107, 108, 90, 26, 90,
28, 29, 30, 115, 92, 92, 127, 125, 129, 130,
131, 132, 133, 134, 135, 98, 43, 44, 123, 125,
141, 142, 49, 136, 51, 106, 124, 148, 122, 150,
119, 145, 122, 145, 146, 119, 63, 149, 124, 124,
-1, 67, 124, -1, 71, 72, 126, 73, 75, -1,
-1, 77, 79, -1, 80, 81, 82, -1, 84, -1,
86, 139, 88, 139, 139, 91, 139, 139, 139, 95,
96, 97, 139, 139, 100, 101, 98, 99, 104, 143,
143, 107, 108, 105, 143, 145, 144, 109, 110, 115,
108, 109, 110, 111, 112, 113, 118, 119, 120, 121,
127, 145, 129, 130, 131, 132, 133, 134, 135, 8,
9, 10, 145, 145, 141, 142, 145, 147, 140, 145,
146, 148, 145, 150, 145, 147, 145, 26, 145, 28,
29, 30, 31, 32, 33, 34, 35, 36, 28, 29,
30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
40, 98, 99, 145, 145, 145, 145, 145, 105, 145,
145, 145, 109, 110, 145, 145, 145, 145, 98, 99,
145, 118, 119, 120, 121, 105, 145, 145, 145, 109,
110, 8, 9, 10, 145, 145, 98, 145, 118, 119,
120, 121, 146, 140, 146, 146, 146, 109, 110, 26,
147, 28, 29, 30, 31, 32, 118, 119, 120, 121,
140, 98, 146, 146, 146, 146, 98, 146, 146, 146,
-1, 147, 109, 110, 147, 147, 147, 109, 110, 98,
147, 118, 119, 120, 121, 147, 118, 119, 120, 121,
109, 110, 147, 147, 147, 147, 98, 147, 83, 118,
119, 120, 121, 147, 147, 147, 151, 109, 110, 98,
147, 149, 148, 98, 85, 147, 118, 119, 120, 121,
109, 110, 148, 148, 109, 110, 148, 98, 147, 118,
119, 120, 121, 118, 119, 120, 121, 148, 109, 110,
87, 148, 148, 148, 98, 147, 149, 118, 119, 120,
121, 98, 148, 148, 148, 109, 110, 148, 147, 8,
9, 10, 109, 110, 118, 119, 120, 121, 148, 148,
148, 118, 119, 120, 121, 148, 148, 26, 148, 28,
29, 30, 31, 148, 152, 149, 149, 149, 149, 149,
149, 149, 149, 149, 149, -1, 149, 149, 149, 149,
149, 149, -1, 149, 149, -1, -1, -1, 152, 152,
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
152, 152
);
protected $actionBase = array(
0, 783, 708, 800, 558, 878, 895, -1, 933, 818,
843, 891, 909, 230, 861, 848, 926, 926, 926, 926,
926, 528, 564, 513, 500, 513, 566, -2, -2, -2,
180, 110, 311, 311, 618, 311, 429, 472, 504, 212,
354, 279, 397, 547, 547, 547, 547, 704, 704, 547,
547, 547, 547, 547, 547, 547, 547, 547, 547, 547,
547, 547, 547, 547, 547, 547, 547, 547, 547, 547,
547, 547, 547, 547, 547, 547, 547, 547, 547, 547,
547, 547, 547, 547, 547, 547, 547, 547, 547, 547,
547, 547, 547, 547, 547, 547, 547, 547, 547, 547,
547, 547, 547, 547, 547, 547, 547, 547, 547, 547,
547, 547, 547, 547, 547, 547, 547, 547, 547, 547,
547, 547, 547, 547, 547, 547, 547, 547, 547, 547,
547, 547, 547, 547, 547, 547, 33, 770, 612, 624,
769, 763, 762, 761, 917, 633, 842, 808, 809, 514,
813, 825, 826, 838, 837, 807, 828, 176, 241, 912,
827, 481, 219, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 264, 264, 126, 264, 264, 264, 264,
356, 359, 414, 77, 609, 395, 395, 395, 395, 395,
395, 395, 395, 395, 395, 395, 395, 395, 395, 395,
395, 512, 703, 703, 703, 703, 703, 703, 703, 703,
703, 703, 703, 703, 703, 703, 703, 703, 703, 703,
703, 703, 703, 703, 703, 703, 703, 703, 703, 703,
703, 703, 703, 703, 703, 703, 703, 703, 703, 703,
703, 703, 703, 703, 631, 631, -17, -17, 538, 537,
171, 415, 702, 418, 1031, -23, 903, 831, 831, 831,
831, 191, 4, 4, 4, 4, 217, 293, 293, 293,
293, 840, 840, 840, 840, -31, 200, 381, 157, 157,
650, 650, 542, 776, 553, 553, 478, 478, 325, 325,
325, 325, 325, 325, 325, 325, 325, 325, 607, 534,
886, 886, -37, -37, -37, -37, 404, 404, 174, 14,
168, 282, 575, 575, 575, 627, 627, 627, 170, 2,
629, 271, 271, 271, 630, 617, 638, 80, 175, 175,
175, 175, 317, 778, 175, 175, 175, 291, -27, -27,
140, -65, 643, 804, 642, 700, 416, 664, -20, 671,
671, 671, 222, 623, 403, 398, 432, 655, 49, 222,
33, 340, 405, 243, 544, 697, 586, 750, 686, 237,
197, 290, 437, 357, -3, 60, 752, 751, 877, 916,
116, 112, 644, 544, 544, 544, 114, 226, 357, 133,
390, 390, 390, 390, 390, 390, 390, 390, 616, 37,
59, 772, 337, 570, 869, 598, 915, 588, 591, 598,
621, 570, 874, 874, 874, 874, 570, 591, 915, 915,
570, 542, 915, 186, 570, 640, 591, 636, 874, 745,
744, 598, 619, 625, 915, 915, 915, 588, 570, 874,
615, 672, 295, 915, 874, 562, 562, 615, 570, 562,
621, 562, 107, 530, 571, 873, 885, 844, 614, 779,
646, 641, 902, 901, 910, 596, 590, 907, 858, 666,
742, 572, 417, 569, 546, 567, 563, 652, 552, 645,
623, 667, 541, 541, 541, 632, 663, 632, 541, 541,
541, 541, 541, 541, 541, 541, 949, 658, 654, 648,
635, 741, 474, 666, 637, 463, 780, 666, 922, 930,
835, 593, 900, 924, 632, 948, 749, 130, 426, 889,
526, 597, 632, 884, 632, 796, 632, 921, 610, 836,
666, 541, 920, 947, 946, 945, 944, 943, 942, 941,
940, 550, 939, 740, 929, 315, 908, 655, 659, 613,
739, 338, 938, 632, 632, 797, 778, 632, 738, 746,
934, 713, 928, 937, 617, 927, 632, 647, 936, 338,
551, 540, 918, 711, 854, 622, 919, 855, 798, 419,
830, 543, 709, 932, 931, 935, 707, 799, 801, 501,
573, 626, 628, 802, 875, 701, 923, 639, 657, 649,
634, 803, 592, 925, 698, 755, 670, 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, -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, 325, 126,
126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
126, 126, 126, 126, 126, -17, 325, 325, 325, 325,
325, 325, 325, 325, 325, 325, 325, 325, 325, 325,
325, 325, 325, 325, 325, 325, 325, 325, 325, 325,
325, 325, 325, 325, 325, 325, 325, 325, 325, 325,
325, 325, 325, 325, 325, 325, 325, 325, 126, 126,
0, 0, 126, -17, 126, -17, 126, -17, 126, -17,
126, 126, 126, 126, 126, -17, -17, -17, -17, -17,
0, 575, 575, 575, 575, -17, -17, -17, -17, 712,
712, 712, 325, 325, 325, 325, 325, 325, 575, 575,
627, 627, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 712, 712, 325, 325, 175, 175, 175, 175,
175, 175, -27, -27, -27, -3, 0, 0, 0, 0,
0, 0, 175, 591, -27, 128, 128, 128, -27, -27,
-27, -3, 0, 0, 0, 0, 591, 128, 0, 0,
0, 915, 0, 0, 0, 128, 425, 425, 425, 425,
338, 357, 0, 591, 591, 591, 0, 619, 0, 0,
0, 915, 0, 0, 0, 0, 0, 0, 541, 130,
900, 389, 409, 0, 0, 0, 0, 0, 0, 0,
409, 409, 366, 366, 0, 0, 550, 541, 541, 541,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 389, 0, 0, 338
);
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, 422, 422,32767, 379,32767,32767,32767,32767,
32767,32767,32767, 188, 188, 188,32767,32767,32767, 411,
411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
32767,32767,32767,32767,32767, 268,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, 273, 427,
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
32767,32767,32767,32767,32767,32767,32767, 383,32767,32767,
32767,32767,32767, 249, 250, 252, 253, 187, 412, 139,
274, 426, 186, 26, 150, 141, 95, 382, 185, 126,
215, 337, 217, 339,32767, 267, 216, 192, 197, 198,
199, 200, 201, 202, 203, 204, 205, 206, 207, 208,
191, 338, 376, 376, 379,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, 246, 245, 365, 364, 213, 335,
214, 336, 218, 340, 220, 342, 219, 236, 237, 234,
235, 341, 358, 359, 356, 357, 190, 238, 239, 240,
241, 360, 361, 362, 363, 172, 172, 172,32767,32767,
421, 421,32767,32767, 227, 228, 349, 350,32767,32767,
32767,32767,32767,32767,32767,32767,32767,32767, 173,32767,
32767,32767, 130, 130, 130, 130, 130,32767,32767,32767,
32767,32767, 222, 223, 221, 344, 345, 343,32767,32767,
311,32767,32767,32767,32767,32767, 313,32767,32767,32767,
32767,32767,32767,32767,32767,32767,32767, 384, 312,32767,
32767,32767,32767,32767,32767,32767,32767, 397, 300,32767,
32767,32767,32767, 293, 114, 116, 64, 368,32767,32767,
32767,32767,32767, 402, 232,32767,32767,32767,32767,32767,
32767, 434,32767, 397,32767,32767,32767,32767,32767,32767,
32767,32767, 244, 224, 225, 226,32767,32767, 401, 395,
352, 353, 354, 355, 346, 347, 348, 351,32767,32767,
32767,32767,32767, 68, 308,32767, 314,32767,32767,32767,
32767, 68,32767,32767,32767,32767, 68,32767, 400, 399,
68,32767, 294, 378, 68, 81,32767, 79,32767, 100,
100,32767,32767, 83, 374, 390,32767,32767, 68,32767,
282, 70, 378,32767,32767, 132, 132, 282, 68, 132,
32767, 132,32767, 4, 318,32767,32767,32767,32767,32767,
32767,32767,32767,32767,32767,32767,32767,32767,32767, 295,
32767,32767,32767, 264, 265, 371, 386,32767, 387,32767,
293,32767, 230, 231, 233, 210,32767, 212, 254, 255,
256, 257, 258, 259, 260, 262,32767,32767, 298, 301,
32767,32767,32767, 6, 20, 149,32767, 296,32767, 195,
32767,32767,32767,32767, 429,32767,32767, 189,32767,32767,
22,32767, 145,32767, 66,32767, 419,32767,32767, 395,
297, 229,32767,32767,32767,32767,32767,32767,32767,32767,
32767, 396,32767,32767,32767, 121,32767, 331,32767,32767,
32767, 82,32767, 193, 140,32767,32767, 428,32767,32767,
32767,32767,32767,32767,32767,32767, 67,32767,32767, 84,
32767,32767, 395,32767,32767,32767,32767,32767,32767, 184,
32767,32767,32767,32767,32767, 395,32767,32767,32767, 125,
32767,32767,32767,32767,32767,32767,32767, 4,32767, 166,
32767,32767,32767,32767,32767,32767,32767, 28, 28, 3,
28, 108, 28, 152, 3, 100, 100, 61, 152, 28,
152, 28, 28, 28, 28, 28, 159, 28, 28, 28,
28, 28, 28, 28
);
protected $goto = array(
169, 169, 139, 139, 144, 139, 140, 141, 142, 147,
149, 187, 171, 167, 167, 167, 167, 144, 144, 168,
168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
163, 164, 165, 166, 185, 138, 482, 483, 364, 484,
488, 489, 490, 491, 492, 493, 494, 495, 830, 143,
145, 146, 148, 180, 182, 186, 248, 250, 252, 254,
256, 257, 258, 259, 260, 267, 268, 269, 270, 284,
285, 312, 313, 314, 383, 384, 385, 531, 188, 189,
190, 191, 192, 193, 194, 195, 196, 197, 198, 199,
200, 150, 151, 152, 170, 153, 172, 154, 244, 175,
155, 156, 159, 245, 160, 136, 547, 688, 533, 534,
535, 536, 537, 538, 539, 540, 542, 568, 754, 754,
1054, 1054, 343, 772, 547, 547, 547, 547, 547, 547,
547, 547, 547, 547, 547, 547, 547, 547, 547, 547,
547, 547, 547, 547, 547, 547, 547, 547, 547, 547,
547, 547, 547, 547, 547, 547, 547, 547, 547, 547,
547, 547, 547, 547, 547, 547, 486, 486, 486, 486,
486, 486, 509, 1033, 1033, 527, 486, 486, 486, 486,
486, 486, 486, 486, 486, 486, 326, 1058, 497, 497,
310, 1064, 1064, 365, 1049, 1049, 1049, 643, 643, 643,
422, 422, 422, 422, 422, 422, 1032, 1067, 1064, 576,
422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
1067, 1067, 928, 928, 761, 761, 761, 761, 761, 761,
642, 642, 642, 1, 373, 373, 373, 372, 2, 588,
598, 548, 593, 276, 362, 277, 373, 562, 565, 603,
719, 719, 719, 719, 388, 1014, 714, 720, 592, 548,
548, 548, 548, 548, 548, 548, 548, 548, 548, 548,
548, 548, 548, 548, 548, 548, 548, 548, 548, 548,
548, 548, 548, 548, 548, 548, 548, 548, 548, 548,
548, 548, 548, 548, 548, 548, 548, 548, 548, 548,
548, 5, 584, 16, 379, 6, 1051, 344, 345, 569,
346, 401, 7, 520, 17, 18, 8, 19, 9, 876,
20, 10, 11, 12, 13, 14, 15, 559, 583, 809,
402, 767, 389, 585, 526, 526, 553, 522, 499, 499,
758, 963, 524, 524, 485, 487, 514, 529, 554, 557,
566, 572, 1034, 1034, 939, 938, 652, 498, 498, 963,
963, 963, 963, 963, 963, 963, 963, 963, 963, 963,
963, 963, 963, 963, 963, 963, 963, 963, 963, 963,
963, 963, 963, 963, 963, 963, 963, 963, 963, 963,
963, 963, 963, 963, 963, 963, 963, 963, 963, 963,
963, 161, 532, 776, 376, 377, 508, 828, 621, 1026,
964, 398, 919, 658, 728, 781, 1011, 817, 449, 508,
508, 0, 173, 174, 176, 390, 391, 392, 393, 158,
181, 183, 201, 249, 251, 253, 255, 261, 262, 263,
264, 265, 271, 272, 273, 274, 286, 287, 315, 316,
317, 394, 395, 396, 397, 162, 177, 246, 247, 178,
179, 641, 641, 641, 503, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 503, 949, 0,
0, 740, 725, 723, 721, 723, 611, 500, 749, 744,
924, 925, 944, 0, 503, 503, 503, 0, 0, 0,
885, 26, 21, 358, 0, 0, 922, 1025, 922, 366,
0, 0, 0, 512, 0, 923, 543, 523, 0, 0,
0, 0, 0, 0, 0, 0, 0, 29, 0, 0,
0, 441, 581, 0, 0, 0, 0, 0, 0, 0,
0, 590, 0, 0, 0, 0, 513, 0, 0, 0,
0, 0, 0, 503, 0, 0, 0, 0, 0, 0,
0, 0, 507, 0, 0, 0, 0, 0, 0, 0,
0, 530
);
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, 25, 39, 32, 88, 88,
88, 88, 88, 88, 88, 88, 88, 88, 56, 56,
56, 56, 51, 63, 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, 94, 94, 94, 94,
94, 94, 79, 96, 96, 87, 94, 94, 94, 94,
94, 94, 94, 94, 94, 94, 103, 118, 94, 94,
103, 119, 119, 29, 96, 96, 96, 8, 8, 8,
39, 39, 39, 39, 39, 39, 96, 119, 119, 106,
39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
119, 119, 39, 39, 39, 39, 39, 39, 39, 39,
7, 7, 7, 2, 101, 101, 101, 5, 2, 43,
39, 97, 43, 47, 43, 47, 101, 42, 42, 42,
39, 39, 39, 39, 101, 110, 39, 39, 39, 97,
97, 97, 97, 97, 97, 97, 97, 97, 97, 97,
97, 97, 97, 97, 97, 97, 97, 97, 97, 97,
97, 97, 97, 97, 97, 97, 97, 97, 97, 97,
97, 97, 97, 97, 97, 97, 97, 97, 97, 97,
97, 14, 31, 14, 30, 14, 116, 51, 51, 49,
49, 49, 14, 5, 14, 14, 14, 14, 14, 80,
14, 14, 14, 14, 14, 14, 14, 22, 22, 76,
76, 60, 33, 33, 33, 33, 33, 33, 100, 100,
58, 104, 33, 33, 33, 33, 33, 33, 33, 33,
33, 33, 95, 95, 102, 102, 11, 97, 97, 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, 104, 104, 104, 104, 104, 104, 104, 104,
104, 13, 26, 64, 9, 9, 26, 79, 53, 61,
105, 10, 92, 12, 50, 65, 109, 78, 86, 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, 61, -1,
-1, 6, 6, 6, 6, 6, 6, 6, 6, 6,
61, 61, 16, -1, 4, 4, 4, -1, -1, -1,
16, 16, 16, 16, -1, -1, 61, 61, 61, 40,
-1, -1, -1, 40, -1, 61, 16, 40, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 16, -1, -1,
-1, 40, 16, -1, -1, -1, -1, -1, -1, -1,
-1, 40, -1, -1, -1, -1, 79, -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, -376, 0, 145, -95, 460, 229, 196, 55,
2, 5, -18, 217, -307, 0, 88, 0, 0, 0,
0, 0, 283, 0, 0, -30, 372, 0, 0, 147,
15, 23, 82, 54, 0, 0, 0, 0, 0, -78,
93, 0, -56, -207, 0, 0, 0, -375, 0, -20,
-23, -308, 0, 48, 0, 0, -160, 0, 34, 0,
24, 72, 0, 92, 44, -17, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 31, 0, -33, 125,
18, 0, 0, 0, 0, 0, -29, 142, 58, 0,
0, 0, 1, 0, -112, 52, -127, 57, 0, 0,
38, -87, 32, -134, 157, 49, 6, 0, 0, -26,
51, 0, 0, 0, 0, 0, 25, 0, 152, -118,
0
);
protected $gotoDefault = array(
-32768, 452, 3, 636, 469, 504, 663, 664, 665, 368,
367, 653, 659, 157, 4, 661, 877, 354, 668, 355,
571, 670, 516, 672, 673, 137, 470, 369, 370, 517,
378, 560, 687, 266, 375, 689, 356, 691, 696, 357,
591, 575, 544, 587, 471, 433, 555, 275, 525, 551,
727, 342, 735, 624, 743, 746, 472, 545, 757, 438,
765, 921, 386, 771, 777, 782, 785, 410, 399, 567,
789, 790, 318, 794, 599, 600, 808, 298, 816, 829,
406, 895, 897, 473, 474, 510, 446, 496, 515, 475,
915, 400, 918, 476, 477, 418, 419, 936, 933, 348,
1019, 347, 435, 309, 1004, 1003, 563, 968, 442, 1057,
1015, 337, 478, 479, 363, 380, 1052, 423, 1059, 1066,
552
);
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, 44, 44, 44, 45,
45, 48, 48, 46, 46, 49, 49, 23, 23, 32,
32, 35, 35, 34, 34, 50, 24, 24, 24, 24,
51, 51, 52, 52, 53, 53, 21, 21, 17, 17,
54, 19, 19, 55, 18, 18, 20, 20, 31, 31,
31, 42, 42, 57, 57, 58, 58, 60, 60, 60,
59, 59, 43, 43, 61, 61, 61, 62, 62, 63,
63, 63, 27, 27, 64, 64, 64, 28, 28, 65,
65, 47, 47, 66, 66, 66, 66, 71, 71, 72,
72, 73, 73, 73, 73, 74, 75, 75, 70, 70,
67, 67, 69, 69, 77, 77, 76, 76, 76, 76,
76, 76, 68, 68, 78, 78, 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, 83, 83, 84, 84, 84,
84, 79, 86, 86, 91, 91, 92, 93, 93, 93,
93, 93, 93, 97, 97, 39, 39, 39, 80, 80,
98, 98, 94, 94, 99, 99, 99, 99, 81, 81,
81, 85, 85, 85, 90, 90, 104, 104, 104, 104,
104, 104, 104, 104, 104, 104, 104, 104, 104, 13,
13, 13, 13, 13, 13, 107, 107, 107, 107, 107,
107, 107, 107, 107, 107, 107, 107, 107, 107, 107,
107, 107, 107, 107, 107, 107, 107, 107, 107, 107,
107, 107, 107, 107, 107, 107, 107, 107, 89, 89,
82, 82, 82, 82, 105, 105, 106, 106, 109, 109,
108, 108, 110, 110, 33, 33, 33, 33, 112, 112,
111, 111, 111, 111, 111, 113, 113, 96, 96, 100,
100, 95, 95, 114, 114, 114, 114, 101, 101, 101,
101, 88, 88, 102, 102, 102, 56, 115, 115, 116,
116, 116, 87, 87, 117, 117, 118, 118, 118, 118,
103, 103, 103, 103, 119, 119, 119, 119, 119, 119,
119, 120, 120, 120
);
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, 10, 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, 1, 1, 1,
0, 1, 0, 2, 2, 3, 3, 1, 3, 1,
2, 2, 3, 1, 1, 2, 4, 3, 1, 1,
3, 2, 0, 3, 3, 9, 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, 10,
11, 3, 3, 2, 4, 4, 3, 4, 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, 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,
3, 1, 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,
1, 1, 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-(10-3)], array('byRef' => $this->semStack[$this->stackPos-(10-2)], 'params' => $this->semStack[$this->stackPos-(10-5)], 'returnType' => $this->semStack[$this->stackPos-(10-7)], 'stmts' => $this->semStack[$this->stackPos-(10-9)]), $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 = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule128($attributes) {
$this->semValue = 'array';
}
protected function reduceRule129($attributes) {
$this->semValue = 'callable';
}
protected function reduceRule130($attributes) {
$this->semValue = null;
}
protected function reduceRule131($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule132($attributes) {
$this->semValue = null;
}
protected function reduceRule133($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(2-2)];
}
protected function reduceRule134($attributes) {
$this->semValue = array();
}
protected function reduceRule135($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule136($attributes) {
$this->semValue = array(new Node\Arg($this->semStack[$this->stackPos-(3-2)], false, false, $attributes));
}
protected function reduceRule137($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule138($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule139($attributes) {
$this->semValue = new Node\Arg($this->semStack[$this->stackPos-(1-1)], false, false, $attributes);
}
protected function reduceRule140($attributes) {
$this->semValue = new Node\Arg($this->semStack[$this->stackPos-(2-2)], true, false, $attributes);
}
protected function reduceRule141($attributes) {
$this->semValue = new Node\Arg($this->semStack[$this->stackPos-(2-2)], false, true, $attributes);
}
protected function reduceRule142($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule143($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule144($attributes) {
$this->semValue = new Node\Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $attributes);
}
protected function reduceRule145($attributes) {
$this->semValue = new Node\Expr\Variable($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule146($attributes) {
$this->semValue = new Node\Expr\Variable($this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule147($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule148($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule149($attributes) {
$this->semValue = new Node\Stmt\StaticVar(substr($this->semStack[$this->stackPos-(1-1)], 1), null, $attributes);
}
protected function reduceRule150($attributes) {
$this->semValue = new Node\Stmt\StaticVar(substr($this->semStack[$this->stackPos-(3-1)], 1), $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule151($attributes) {
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule152($attributes) {
$this->semValue = array();
}
protected function reduceRule153($attributes) {
$this->semValue = new Node\Stmt\Property($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule154($attributes) {
$this->semValue = new Node\Stmt\ClassConst($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule155($attributes) {
$this->semValue = new Node\Stmt\ClassMethod($this->semStack[$this->stackPos-(9-4)], array('type' => $this->semStack[$this->stackPos-(9-1)], 'byRef' => $this->semStack[$this->stackPos-(9-3)], 'params' => $this->semStack[$this->stackPos-(9-6)], 'returnType' => $this->semStack[$this->stackPos-(9-8)], 'stmts' => $this->semStack[$this->stackPos-(9-9)]), $attributes);
}
protected function reduceRule156($attributes) {
$this->semValue = new Node\Stmt\TraitUse($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule157($attributes) {
$this->semValue = array();
}
protected function reduceRule158($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule159($attributes) {
$this->semValue = array();
}
protected function reduceRule160($attributes) {
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule161($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 reduceRule162($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 reduceRule163($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 reduceRule164($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 reduceRule165($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)]);
}
protected function reduceRule166($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule167($attributes) {
$this->semValue = array(null, $this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule168($attributes) {
$this->semValue = null;
}
protected function reduceRule169($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule170($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule171($attributes) {
$this->semValue = 0;
}
protected function reduceRule172($attributes) {
$this->semValue = 0;
}
protected function reduceRule173($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule174($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule175($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 reduceRule176($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_PUBLIC;
}
protected function reduceRule177($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_PROTECTED;
}
protected function reduceRule178($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_PRIVATE;
}
protected function reduceRule179($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_STATIC;
}
protected function reduceRule180($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_ABSTRACT;
}
protected function reduceRule181($attributes) {
$this->semValue = Node\Stmt\Class_::MODIFIER_FINAL;
}
protected function reduceRule182($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
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 = new Node\Stmt\PropertyProperty(substr($this->semStack[$this->stackPos-(1-1)], 1), null, $attributes);
}
protected function reduceRule185($attributes) {
$this->semValue = new Node\Stmt\PropertyProperty(substr($this->semStack[$this->stackPos-(3-1)], 1), $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule186($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule187($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule188($attributes) {
$this->semValue = array();
}
protected function reduceRule189($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule190($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule191($attributes) {
$this->semValue = new Node\Expr\Assign($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule192($attributes) {
$this->semValue = new Node\Expr\Assign($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule193($attributes) {
$this->semValue = new Node\Expr\AssignRef($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule194($attributes) {
$this->semValue = new Node\Expr\AssignRef($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule195($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule196($attributes) {
$this->semValue = new Node\Expr\Clone_($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule197($attributes) {
$this->semValue = new Node\Expr\AssignOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule198($attributes) {
$this->semValue = new Node\Expr\AssignOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule199($attributes) {
$this->semValue = new Node\Expr\AssignOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule200($attributes) {
$this->semValue = new Node\Expr\AssignOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule201($attributes) {
$this->semValue = new Node\Expr\AssignOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule202($attributes) {
$this->semValue = new Node\Expr\AssignOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule203($attributes) {
$this->semValue = new Node\Expr\AssignOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule204($attributes) {
$this->semValue = new Node\Expr\AssignOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule205($attributes) {
$this->semValue = new Node\Expr\AssignOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule206($attributes) {
$this->semValue = new Node\Expr\AssignOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule207($attributes) {
$this->semValue = new Node\Expr\AssignOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule208($attributes) {
$this->semValue = new Node\Expr\AssignOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule209($attributes) {
$this->semValue = new Node\Expr\PostInc($this->semStack[$this->stackPos-(2-1)], $attributes);
}
protected function reduceRule210($attributes) {
$this->semValue = new Node\Expr\PreInc($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule211($attributes) {
$this->semValue = new Node\Expr\PostDec($this->semStack[$this->stackPos-(2-1)], $attributes);
}
protected function reduceRule212($attributes) {
$this->semValue = new Node\Expr\PreDec($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule213($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BooleanOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule214($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BooleanAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule215($attributes) {
$this->semValue = new Node\Expr\BinaryOp\LogicalOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule216($attributes) {
$this->semValue = new Node\Expr\BinaryOp\LogicalAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule217($attributes) {
$this->semValue = new Node\Expr\BinaryOp\LogicalXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule218($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule219($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule220($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule221($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule222($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule223($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule224($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule225($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule226($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule227($attributes) {
$this->semValue = new Node\Expr\BinaryOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule228($attributes) {
$this->semValue = new Node\Expr\BinaryOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule229($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule230($attributes) {
$this->semValue = new Node\Expr\UnaryPlus($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule231($attributes) {
$this->semValue = new Node\Expr\UnaryMinus($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule232($attributes) {
$this->semValue = new Node\Expr\BooleanNot($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule233($attributes) {
$this->semValue = new Node\Expr\BitwiseNot($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule234($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Identical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule235($attributes) {
$this->semValue = new Node\Expr\BinaryOp\NotIdentical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule236($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Equal($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule237($attributes) {
$this->semValue = new Node\Expr\BinaryOp\NotEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule238($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Smaller($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule239($attributes) {
$this->semValue = new Node\Expr\BinaryOp\SmallerOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule240($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Greater($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule241($attributes) {
$this->semValue = new Node\Expr\BinaryOp\GreaterOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule242($attributes) {
$this->semValue = new Node\Expr\Instanceof_($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule243($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule244($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule245($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 reduceRule246($attributes) {
$this->semValue = new Node\Expr\Ternary($this->semStack[$this->stackPos-(4-1)], null, $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule247($attributes) {
$this->semValue = new Node\Expr\Isset_($this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule248($attributes) {
$this->semValue = new Node\Expr\Empty_($this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule249($attributes) {
$this->semValue = new Node\Expr\Include_($this->semStack[$this->stackPos-(2-2)], Node\Expr\Include_::TYPE_INCLUDE, $attributes);
}
protected function reduceRule250($attributes) {
$this->semValue = new Node\Expr\Include_($this->semStack[$this->stackPos-(2-2)], Node\Expr\Include_::TYPE_INCLUDE_ONCE, $attributes);
}
protected function reduceRule251($attributes) {
$this->semValue = new Node\Expr\Eval_($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule252($attributes) {
$this->semValue = new Node\Expr\Include_($this->semStack[$this->stackPos-(2-2)], Node\Expr\Include_::TYPE_REQUIRE, $attributes);
}
protected function reduceRule253($attributes) {
$this->semValue = new Node\Expr\Include_($this->semStack[$this->stackPos-(2-2)], Node\Expr\Include_::TYPE_REQUIRE_ONCE, $attributes);
}
protected function reduceRule254($attributes) {
$this->semValue = new Node\Expr\Cast\Int($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule255($attributes) {
$this->semValue = new Node\Expr\Cast\Double($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule256($attributes) {
$this->semValue = new Node\Expr\Cast\String($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule257($attributes) {
$this->semValue = new Node\Expr\Cast\Array_($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule258($attributes) {
$this->semValue = new Node\Expr\Cast\Object($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule259($attributes) {
$this->semValue = new Node\Expr\Cast\Bool($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule260($attributes) {
$this->semValue = new Node\Expr\Cast\Unset_($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule261($attributes) {
$this->semValue = new Node\Expr\Exit_($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule262($attributes) {
$this->semValue = new Node\Expr\ErrorSuppress($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule263($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule264($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule265($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule266($attributes) {
$this->semValue = new Node\Expr\ShellExec($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule267($attributes) {
$this->semValue = new Node\Expr\Print_($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule268($attributes) {
$this->semValue = new Node\Expr\Yield_(null, null, $attributes);
}
protected function reduceRule269($attributes) {
$this->semValue = new Node\Expr\Closure(array('static' => false, 'byRef' => $this->semStack[$this->stackPos-(10-2)], 'params' => $this->semStack[$this->stackPos-(10-4)], 'uses' => $this->semStack[$this->stackPos-(10-6)], 'returnType' => $this->semStack[$this->stackPos-(10-7)], 'stmts' => $this->semStack[$this->stackPos-(10-9)]), $attributes);
}
protected function reduceRule270($attributes) {
$this->semValue = new Node\Expr\Closure(array('static' => true, 'byRef' => $this->semStack[$this->stackPos-(11-3)], 'params' => $this->semStack[$this->stackPos-(11-5)], 'uses' => $this->semStack[$this->stackPos-(11-7)], 'returnType' => $this->semStack[$this->stackPos-(11-8)], 'stmts' => $this->semStack[$this->stackPos-(11-10)]), $attributes);
}
protected function reduceRule271($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule272($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule273($attributes) {
$this->semValue = new Node\Expr\Yield_($this->semStack[$this->stackPos-(2-2)], null, $attributes);
}
protected function reduceRule274($attributes) {
$this->semValue = new Node\Expr\Yield_($this->semStack[$this->stackPos-(4-4)], $this->semStack[$this->stackPos-(4-2)], $attributes);
}
protected function reduceRule275($attributes) {
$this->semValue = new Node\Expr\Array_($this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule276($attributes) {
$this->semValue = new Node\Expr\Array_($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule277($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule278($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 reduceRule279($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule280($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule281($attributes) {
$this->semValue = new Node\Expr\New_($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule282($attributes) {
$this->semValue = array();
}
protected function reduceRule283($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(4-3)];
}
protected function reduceRule284($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule285($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule286($attributes) {
$this->semValue = new Node\Expr\ClosureUse(substr($this->semStack[$this->stackPos-(2-2)], 1), $this->semStack[$this->stackPos-(2-1)], $attributes);
}
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\StaticCall($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule289($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 reduceRule290($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 reduceRule291($attributes) {
$this->semValue = new Node\Expr\FuncCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule292($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule293($attributes) {
$this->semValue = new Node\Name($this->semStack[$this->stackPos-(1-1)], $attributes);
}
protected function reduceRule294($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule295($attributes) {
$this->semValue = new Node\Name($this->semStack[$this->stackPos-(1-1)], $attributes);
}
protected function reduceRule296($attributes) {
$this->semValue = new Node\Name\FullyQualified($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule297($attributes) {
$this->semValue = new Node\Name\Relative($this->semStack[$this->stackPos-(3-3)], $attributes);
}
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($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule301($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule302($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule303($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule304($attributes) {
$this->semValue = new Node\Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule305($attributes) {
$this->semValue = new Node\Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule306($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule307($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule308($attributes) {
$this->semValue = null;
}
protected function reduceRule309($attributes) {
$this->semValue = null;
}
protected function reduceRule310($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule311($attributes) {
$this->semValue = array();
}
protected function reduceRule312($attributes) {
$this->semValue = array(Node\Scalar\String::parseEscapeSequences($this->semStack[$this->stackPos-(1-1)], '`'));
}
protected function reduceRule313($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 reduceRule314($attributes) {
$this->semValue = array();
}
protected function reduceRule315($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule316($attributes) {
$this->semValue = new Node\Scalar\LNumber(Node\Scalar\LNumber::parse($this->semStack[$this->stackPos-(1-1)]), $attributes);
}
protected function reduceRule317($attributes) {
$this->semValue = new Node\Scalar\DNumber(Node\Scalar\DNumber::parse($this->semStack[$this->stackPos-(1-1)]), $attributes);
}
protected function reduceRule318($attributes) {
$this->semValue = new Node\Scalar\String(Node\Scalar\String::parse($this->semStack[$this->stackPos-(1-1)]), $attributes);
}
protected function reduceRule319($attributes) {
$this->semValue = new Node\Scalar\MagicConst\Line($attributes);
}
protected function reduceRule320($attributes) {
$this->semValue = new Node\Scalar\MagicConst\File($attributes);
}
protected function reduceRule321($attributes) {
$this->semValue = new Node\Scalar\MagicConst\Dir($attributes);
}
protected function reduceRule322($attributes) {
$this->semValue = new Node\Scalar\MagicConst\Class_($attributes);
}
protected function reduceRule323($attributes) {
$this->semValue = new Node\Scalar\MagicConst\Trait_($attributes);
}
protected function reduceRule324($attributes) {
$this->semValue = new Node\Scalar\MagicConst\Method($attributes);
}
protected function reduceRule325($attributes) {
$this->semValue = new Node\Scalar\MagicConst\Function_($attributes);
}
protected function reduceRule326($attributes) {
$this->semValue = new Node\Scalar\MagicConst\Namespace_($attributes);
}
protected function reduceRule327($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 reduceRule328($attributes) {
$this->semValue = new Node\Scalar\String('', $attributes);
}
protected function reduceRule329($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule330($attributes) {
$this->semValue = new Node\Expr\ClassConstFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule331($attributes) {
$this->semValue = new Node\Expr\ConstFetch($this->semStack[$this->stackPos-(1-1)], $attributes);
}
protected function reduceRule332($attributes) {
$this->semValue = new Node\Expr\Array_($this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule333($attributes) {
$this->semValue = new Node\Expr\Array_($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule334($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule335($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BooleanOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule336($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BooleanAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule337($attributes) {
$this->semValue = new Node\Expr\BinaryOp\LogicalOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule338($attributes) {
$this->semValue = new Node\Expr\BinaryOp\LogicalAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule339($attributes) {
$this->semValue = new Node\Expr\BinaryOp\LogicalXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule340($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule341($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule342($attributes) {
$this->semValue = new Node\Expr\BinaryOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule343($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule344($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule345($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule346($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule347($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule348($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule349($attributes) {
$this->semValue = new Node\Expr\BinaryOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule350($attributes) {
$this->semValue = new Node\Expr\BinaryOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule351($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule352($attributes) {
$this->semValue = new Node\Expr\UnaryPlus($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule353($attributes) {
$this->semValue = new Node\Expr\UnaryMinus($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule354($attributes) {
$this->semValue = new Node\Expr\BooleanNot($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule355($attributes) {
$this->semValue = new Node\Expr\BitwiseNot($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule356($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Identical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule357($attributes) {
$this->semValue = new Node\Expr\BinaryOp\NotIdentical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule358($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Equal($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule359($attributes) {
$this->semValue = new Node\Expr\BinaryOp\NotEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule360($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Smaller($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule361($attributes) {
$this->semValue = new Node\Expr\BinaryOp\SmallerOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule362($attributes) {
$this->semValue = new Node\Expr\BinaryOp\Greater($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule363($attributes) {
$this->semValue = new Node\Expr\BinaryOp\GreaterOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule364($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 reduceRule365($attributes) {
$this->semValue = new Node\Expr\Ternary($this->semStack[$this->stackPos-(4-1)], null, $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule366($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule367($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule368($attributes) {
$this->semValue = new Node\Expr\ConstFetch($this->semStack[$this->stackPos-(1-1)], $attributes);
}
protected function reduceRule369($attributes) {
$this->semValue = new Node\Expr\ClassConstFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule370($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule371($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule372($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 reduceRule373($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 reduceRule374($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule375($attributes) {
$this->semValue = 'class';
}
protected function reduceRule376($attributes) {
$this->semValue = array();
}
protected function reduceRule377($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule378() {
$this->semValue = $this->semStack[$this->stackPos];
}
protected function reduceRule379() {
$this->semValue = $this->semStack[$this->stackPos];
}
protected function reduceRule380($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule381($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule382($attributes) {
$this->semValue = new Node\Expr\ArrayItem($this->semStack[$this->stackPos-(3-3)], $this->semStack[$this->stackPos-(3-1)], false, $attributes);
}
protected function reduceRule383($attributes) {
$this->semValue = new Node\Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $attributes);
}
protected function reduceRule384($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule385($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule386($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule387($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule388($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(6-2)], $this->semStack[$this->stackPos-(6-5)], $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 = new Node\Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $attributes);
}
protected function reduceRule391($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 reduceRule392($attributes) {
$this->semValue = new Node\Expr\FuncCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule393($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule394($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule395($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule396($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule397($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule398($attributes) {
$this->semValue = new Node\Expr\Variable($this->semStack[$this->stackPos-(2-2)], $attributes);
}
protected function reduceRule399($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule400($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule401($attributes) {
$this->semValue = new Node\Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $attributes);
}
protected function reduceRule402($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule403($attributes) {
$this->semValue = new Node\Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(3-1)], substr($this->semStack[$this->stackPos-(3-3)], 1), $attributes);
}
protected function reduceRule404($attributes) {
$this->semValue = new Node\Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(6-1)], $this->semStack[$this->stackPos-(6-5)], $attributes);
}
protected function reduceRule405($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule406($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule407($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule408($attributes) {
$this->semValue = new Node\Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule409($attributes) {
$this->semValue = new Node\Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $attributes);
}
protected function reduceRule410($attributes) {
$this->semValue = new Node\Expr\Variable($this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule411($attributes) {
$this->semValue = null;
}
protected function reduceRule412($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule413($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule414($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule415($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule416($attributes) {
$this->semValue = new Node\Expr\List_($this->semStack[$this->stackPos-(4-3)], $attributes);
}
protected function reduceRule417($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule418($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule419($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule420($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
}
protected function reduceRule421($attributes) {
$this->semValue = null;
}
protected function reduceRule422($attributes) {
$this->semValue = array();
}
protected function reduceRule423($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule424($attributes) {
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
}
protected function reduceRule425($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule426($attributes) {
$this->semValue = new Node\Expr\ArrayItem($this->semStack[$this->stackPos-(3-3)], $this->semStack[$this->stackPos-(3-1)], false, $attributes);
}
protected function reduceRule427($attributes) {
$this->semValue = new Node\Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $attributes);
}
protected function reduceRule428($attributes) {
$this->semValue = new Node\Expr\ArrayItem($this->semStack[$this->stackPos-(4-4)], $this->semStack[$this->stackPos-(4-1)], true, $attributes);
}
protected function reduceRule429($attributes) {
$this->semValue = new Node\Expr\ArrayItem($this->semStack[$this->stackPos-(2-2)], null, true, $attributes);
}
protected function reduceRule430($attributes) {
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule431($attributes) {
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
}
protected function reduceRule432($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
}
protected function reduceRule433($attributes) {
$this->semValue = array($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]);
}
protected function reduceRule434($attributes) {
$this->semValue = new Node\Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $attributes);
}
protected function reduceRule435($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 reduceRule436($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 reduceRule437($attributes) {
$this->semValue = new Node\Expr\Variable($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule438($attributes) {
$this->semValue = new Node\Expr\Variable($this->semStack[$this->stackPos-(3-2)], $attributes);
}
protected function reduceRule439($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 reduceRule440($attributes) {
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
}
protected function reduceRule441($attributes) {
$this->semValue = new Node\Scalar\String($this->semStack[$this->stackPos-(1-1)], $attributes);
}
protected function reduceRule442($attributes) {
$this->semValue = new Node\Scalar\String($this->semStack[$this->stackPos-(1-1)], $attributes);
}
protected function reduceRule443($attributes) {
$this->semValue = new Node\Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $attributes);
}
}