2015-05-02 22:50:11 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PhpParser\Parser;
|
|
|
|
|
|
|
|
use PhpParser\Error;
|
|
|
|
use PhpParser\Node;
|
|
|
|
use PhpParser\Node\Expr;
|
|
|
|
use PhpParser\Node\Name;
|
|
|
|
use PhpParser\Node\Scalar;
|
|
|
|
use PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
/* This is an automatically GENERATED file, which should not be manually edited.
|
|
|
|
* Instead edit one of the following:
|
2015-06-13 13:50:16 +02:00
|
|
|
* * the grammar files grammar/php5.y or grammar/php7.y
|
2015-06-13 18:39:55 +02:00
|
|
|
* * the skeleton file grammar/parser.template
|
2015-06-13 13:50:16 +02:00
|
|
|
* * the preprocessing script grammar/rebuildParsers.php
|
2015-05-02 22:50:11 +02:00
|
|
|
*/
|
|
|
|
class Php5 extends \PhpParser\ParserAbstract
|
|
|
|
{
|
|
|
|
protected $tokenToSymbolMapSize = 392;
|
2016-12-23 14:11:31 +01:00
|
|
|
protected $actionTableSize = 1003;
|
|
|
|
protected $gotoTableSize = 637;
|
2015-05-02 22:50:11 +02:00
|
|
|
|
|
|
|
protected $invalidSymbol = 157;
|
|
|
|
protected $errorSymbol = 1;
|
|
|
|
protected $defaultAction = -32766;
|
|
|
|
protected $unexpectedTokenRule = 32767;
|
|
|
|
|
2016-12-23 14:11:31 +01:00
|
|
|
protected $YY2TBLSTATE = 404;
|
|
|
|
protected $YYNLSTATES = 669;
|
2015-05-02 22:50:11 +02:00
|
|
|
|
|
|
|
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",
|
2015-06-13 16:24:52 +02:00
|
|
|
"T_DOUBLE_ARROW",
|
2015-05-02 22:50:11 +02:00
|
|
|
"T_YIELD_FROM",
|
|
|
|
"'='",
|
|
|
|
"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_COALESCE",
|
|
|
|
"T_BOOLEAN_OR",
|
|
|
|
"T_BOOLEAN_AND",
|
|
|
|
"'|'",
|
|
|
|
"'^'",
|
|
|
|
"'&'",
|
|
|
|
"T_IS_EQUAL",
|
|
|
|
"T_IS_NOT_EQUAL",
|
|
|
|
"T_IS_IDENTICAL",
|
|
|
|
"T_IS_NOT_IDENTICAL",
|
|
|
|
"T_SPACESHIP",
|
|
|
|
"'<'",
|
|
|
|
"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_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, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
2015-06-13 16:24:52 +02:00
|
|
|
157, 157, 157, 53, 156, 157, 153, 52, 35, 157,
|
|
|
|
151, 152, 50, 47, 7, 48, 49, 51, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 29, 148,
|
|
|
|
41, 15, 43, 28, 65, 157, 157, 157, 157, 157,
|
2015-05-02 22:50:11 +02:00
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
2015-06-13 16:24:52 +02:00
|
|
|
157, 67, 157, 155, 34, 157, 154, 157, 157, 157,
|
2015-05-02 22:50:11 +02:00
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
2015-06-13 16:24:52 +02:00
|
|
|
157, 157, 157, 149, 33, 150, 55, 157, 157, 157,
|
2015-05-02 22:50:11 +02:00
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
|
|
|
|
157, 157, 157, 157, 157, 157, 1, 2, 3, 4,
|
2015-06-13 16:24:52 +02:00
|
|
|
5, 6, 8, 9, 10, 11, 12, 13, 14, 16,
|
2015-05-02 22:50:11 +02:00
|
|
|
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
|
2015-06-13 16:24:52 +02:00
|
|
|
27, 30, 31, 32, 36, 37, 38, 39, 40, 42,
|
|
|
|
44, 45, 46, 54, 56, 57, 58, 59, 60, 61,
|
|
|
|
62, 63, 64, 66, 68, 69, 70, 71, 72, 73,
|
|
|
|
74, 75, 76, 77, 78, 79, 80, 81, 157, 157,
|
2015-05-02 22:50:11 +02:00
|
|
|
82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
|
|
|
|
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
|
|
|
|
102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
|
|
|
|
112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
|
|
|
|
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
|
|
|
|
132, 133, 134, 135, 136, 137, 157, 157, 157, 157,
|
|
|
|
157, 157, 138, 139, 140, 141, 142, 143, 144, 145,
|
|
|
|
146, 147
|
|
|
|
);
|
|
|
|
|
|
|
|
protected $action = array(
|
2016-12-23 14:11:31 +01:00
|
|
|
674, 675, 676, 677, 678,-32766, 679, 680, 681, 717,
|
|
|
|
718, 216, 217, 218, 219, 220, 221, 222, 223, 224,
|
|
|
|
282, 225, 226, 227, 228, 229, 230, 231, 232, 233,
|
2015-10-02 11:03:12 +02:00
|
|
|
234, 235, 236,-32766,-32766,-32766,-32766,-32766,-32766,-32766,
|
2016-12-23 14:11:31 +01:00
|
|
|
-32766,-32767,-32767,-32767,-32767, 419, 237, 238,-32766,-32766,
|
|
|
|
-32766,-32766, 682,-32766, 0,-32766,-32766,-32766,-32766,-32766,
|
|
|
|
-32766,-32767,-32767,-32767,-32767,-32767, 683, 684, 685, 686,
|
|
|
|
687, 688, 689, 1184, 348, 749,-32766,-32766,-32766,-32766,
|
|
|
|
-32766, 23, 690, 691, 692, 693, 694, 695, 696, 697,
|
|
|
|
698, 699, 700, 720, 721, 722, 723, 724, 712, 713,
|
|
|
|
714, 715, 716, 701, 702, 703, 704, 705, 706, 707,
|
|
|
|
743, 744, 745, 746, 747, 748, 708, 709, 710, 711,
|
|
|
|
741, 732, 730, 731, 727, 728, 28, 719, 725, 726,
|
|
|
|
733, 734, 736, 735, 737, 738, 52, 53, 423, 54,
|
|
|
|
55, 729, 740, 739, 420, 56, 57, 332, 58,-32766,
|
2015-10-02 11:03:12 +02:00
|
|
|
-32766,-32766,-32766,-32766,-32766,-32766,-32766,-32766, 7,-32767,
|
2016-12-23 14:11:31 +01:00
|
|
|
-32767,-32767,-32767, 50, 329, 1192, 523, 949, 950, 951,
|
|
|
|
948, 947, 946, 941, 1220, 121, 1222, 1221, 767, 768,
|
|
|
|
825, 59, 60,-32766,-32766,-32766, 812, 61, 1177, 62,
|
2015-10-02 11:03:12 +02:00
|
|
|
291, 292, 63, 64, 65, 66, 67, 68, 69, 70,
|
2016-12-23 14:11:31 +01:00
|
|
|
358, 24, 299, 71, 415,-32766,-32766,-32766, 1191, 1092,
|
|
|
|
1093, 752, 751, 1184, 213, 214, 215, 472,-32766,-32766,
|
|
|
|
-32766, 826, 408, 1104, 309,-32766, 904,-32766,-32766,-32766,
|
|
|
|
-32766,-32766,-32766, 1041, 200, -271, 435, 1041,-32766, 422,
|
|
|
|
-32766,-32766,-32766,-32766,-32766, 120, 496, 949, 950, 951,
|
|
|
|
948, 947, 946, 204, 480, 481, 296, 625, 125,-32766,
|
|
|
|
897, 898, 339, 482, 483,-32766, 1098, 1099, 1100, 1101,
|
|
|
|
1095, 1096, 307, 497,-32766, 421, 431, 497, 1102, 1097,
|
|
|
|
431, 306, -222, 873, 751, 39, 280, 332, 321, 18,
|
|
|
|
322, 424, -124, -124, -124, -4, 826, 471, 99, 100,
|
|
|
|
101, 814, 301, 549, 38, 19, 425, -124, 473, -124,
|
|
|
|
474, -124, 475, -124, 102, 426, -124, -124, -124, 29,
|
|
|
|
30, 427, 428, 626, 31, 476, 431, 816, 72, 326,
|
|
|
|
927, 350, 349, 477, 478,-32766,-32766,-32766, 298, 479,
|
|
|
|
1041, 811, 797, 844, 429, 430,-32767,-32767,-32767,-32767,
|
2016-07-25 17:03:48 +02:00
|
|
|
94, 95, 96, 97, 98,-32766, 126,-32766,-32766,-32766,
|
2016-12-23 14:11:31 +01:00
|
|
|
-32766, 1142, 213, 214, 215, 295, 424, 239, 828, 640,
|
|
|
|
-124, 1041, 471, 897, 898, 1211, 814, 1041, 1210, 38,
|
|
|
|
19, 425, 200, 473, 1059, 474, 497, 475, 414, 431,
|
|
|
|
426, 213, 214, 215, 29, 30, 427, 428, 406, 31,
|
|
|
|
476, 1041, 874, 72, 320, 826, 350, 349, 477, 478,
|
|
|
|
338, 200, 214, 215, 479, 8, 922, 759, 844, 429,
|
|
|
|
430, 213, 214, 215, 295, -218, 76, 77, 78, 46,
|
|
|
|
590, 200, 482, 644, 297, 445, 27, 294, 331, 418,
|
|
|
|
335, 200, 241, 828, 640, -4, 32, 1041, 79, 80,
|
2015-10-02 11:03:12 +02:00
|
|
|
81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
|
|
|
|
91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
|
2016-12-23 14:11:31 +01:00
|
|
|
101, 448, 301, 215, 826, 424, 805, 124,-32766,-32766,
|
|
|
|
-32766, 471, 903, 244, 102, 814, 1177, 1104, 38, 19,
|
|
|
|
425, 200, 473, 913, 474, 119, 475, 47,-32766, 426,
|
|
|
|
-32766,-32766, 643, 29, 30, 427, 826, 807, 31, 476,
|
|
|
|
416, 116, 72, 809, 49, 350, 349,-32766,-32766,-32766,
|
|
|
|
-32766,-32766,-32766, 479, 34, 1041, 234, 235, 236, 213,
|
|
|
|
214, 215,-32766,-32766, 649, 1143, 124,-32766,-32766,-32766,
|
|
|
|
-32766,-32766, 237, 238, 424, 231, 232, 233, 293, 200,
|
|
|
|
471, 243, 828, 640, 814, 446, 923, 38, 19, 425,
|
|
|
|
339, 473, 242, 474, 752, 475, 1184, 284, 426, 96,
|
|
|
|
97, 98, 29, 30, 427, 826, 424, 31, 476, 117,
|
|
|
|
766, 72, 471, 129, 350, 349, 814, 581, 1041, 38,
|
|
|
|
19, 425, 479, 473, 115, 474, 118, 475, 1041, 1069,
|
|
|
|
426,-32766,-32766, 655, 29, 30, 427, 826, 206, 31,
|
|
|
|
476, 283, 205, 72, 207, 123, 350, 349, 237, 238,
|
|
|
|
497, 828, 640, 431, 479, 648,-32766,-32766,-32766, 441,
|
|
|
|
497, 200, 642, 431, 824, 646, 460, 596, 436, 128,
|
|
|
|
332, 455, 20, 130, 359, 424,-32766, 767, 768, 603,
|
|
|
|
604, 471, 313, 828, 640, 814, 926, 668, 38, 19,
|
|
|
|
425, -82, 473, 652, 474, 837, 475, 760, 645, 426,
|
|
|
|
-32766, 938, 658, 29, 30, 427, 826, 424, 31, 476,
|
|
|
|
301, 102, 72, 471, 44, 350, 349, 814, 45, 48,
|
|
|
|
38, 19, 425, 479, 473, 127, 474, 299, 475, 609,
|
|
|
|
43, 426, 41, 42, 51, 29, 30, 427, 753, 529,
|
|
|
|
31, 476, 613, 634, 72, 752, 587, 350, 349, 751,
|
|
|
|
755, 601, 828, 640, 954, 479,-32766, 33, 103, 104,
|
2015-10-02 11:03:12 +02:00
|
|
|
105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
|
2016-12-23 14:11:31 +01:00
|
|
|
444, 621, 584, 12, 600, 279, 424, -80, 465, 439,
|
|
|
|
447, 9, 471, 330, 860, 640, 814, 409, 4, 38,
|
|
|
|
19, 425, 815, 473, 305, 474, 240, 475, 980, 982,
|
|
|
|
426, 0, 0, 0, 29, 30, 427, 0, 334, 31,
|
|
|
|
476, 846, 845, 72, 208, 209, 350, 349, 327, 308,
|
|
|
|
210, 328, 211, -501, 479, -500, 310, 0, 482, 1103,
|
|
|
|
0, 0, 1149, 410, 202, 0, 0, 0, 357, 208,
|
|
|
|
209, 0, 1092, 1093, -409, 210,-32766, 211, -401, -410,
|
|
|
|
1094, 3, 11, 828, 640, 839, -219, 531, 441, 202,
|
|
|
|
392, 384, 383, 372, 304, 0, 663, 1092, 1093, 662,
|
|
|
|
-500,-32766, 37, 36, 764, 1094, 763, 930, 806, 932,
|
|
|
|
808, 810, 822, 813, 765, 931, 933, 934, 856, 858,
|
|
|
|
0, 861, 800, 868, 867, 876, 817, 570, 802, 1098,
|
|
|
|
1099, 1100, 1101, 1095, 1096, 382, 823, 939, 405, 325,
|
|
|
|
324, 1102, 1097, 122, 75, 404, 1039, 667, 212, 666,
|
|
|
|
-32766, 665, 570, 660, 1098, 1099, 1100, 1101, 1095, 1096,
|
|
|
|
382, 657, 656, 654, 653, 651, 1102, 1097, 641, 303,
|
|
|
|
831, 866, 607, 212, 840,-32766, 1043, 865, 769, 770,
|
|
|
|
459, 1216, 1185, 1183, 1168, 1181, 1083, 915, 1189, 1179,
|
|
|
|
1055, 841, 842, 1044, 833, 1218, 761, 762, 1219, 1217,
|
|
|
|
798, 664, 772, 771, 843, 0, 336, 302, 290, 22,
|
|
|
|
25, 289, 407, 413, 281, 203, 26, 35, 40, 74,
|
|
|
|
73,-32766, 0, 1045, 1021, 1020, 574, 1085, 1108, 905,
|
|
|
|
1049, 1046, 631, 564, 469, 464, 463, 456, 377, 16,
|
|
|
|
15, 14, -218, 0, 0, -419, 0, 1163, 1162, 1109,
|
|
|
|
1214, 1082, 1180, 1050, 1167, 1182, 1068, 1053, 1054, 1051,
|
|
|
|
1052, 0, 1148
|
2015-05-02 22:50:11 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
protected $actionCheck = array(
|
2016-02-09 13:30:39 +01:00
|
|
|
2, 3, 4, 5, 6, 8, 8, 9, 10, 11,
|
|
|
|
12, 31, 32, 33, 34, 35, 36, 37, 38, 39,
|
2015-10-02 11:03:12 +02:00
|
|
|
7, 41, 42, 43, 44, 45, 46, 47, 48, 49,
|
2016-02-09 13:30:39 +01:00
|
|
|
50, 51, 52, 8, 9, 10, 31, 32, 33, 34,
|
|
|
|
35, 36, 37, 38, 39, 7, 66, 67, 31, 32,
|
|
|
|
33, 34, 54, 28, 0, 30, 31, 32, 33, 34,
|
|
|
|
35, 36, 37, 38, 39, 40, 68, 69, 70, 71,
|
2015-10-02 11:03:12 +02:00
|
|
|
72, 73, 74, 79, 7, 77, 31, 32, 33, 34,
|
2016-02-09 13:30:39 +01:00
|
|
|
35, 7, 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,
|
2016-07-25 17:03:48 +02:00
|
|
|
122, 123, 124, 125, 126, 127, 7, 129, 130, 131,
|
2015-10-02 11:03:12 +02:00
|
|
|
132, 133, 134, 135, 136, 137, 2, 3, 4, 5,
|
|
|
|
6, 143, 144, 145, 7, 11, 12, 153, 14, 31,
|
|
|
|
32, 33, 34, 35, 36, 37, 38, 39, 103, 41,
|
|
|
|
42, 43, 44, 67, 109, 152, 82, 112, 113, 114,
|
|
|
|
115, 116, 117, 118, 77, 7, 79, 80, 102, 103,
|
2016-04-20 16:47:10 +02:00
|
|
|
1, 47, 48, 8, 9, 10, 148, 53, 79, 55,
|
2015-10-02 11:03:12 +02:00
|
|
|
56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
|
2016-07-25 17:03:48 +02:00
|
|
|
7, 67, 68, 69, 70, 8, 9, 10, 1, 75,
|
2015-10-02 11:03:12 +02:00
|
|
|
76, 77, 77, 79, 8, 9, 10, 83, 8, 9,
|
|
|
|
10, 1, 146, 139, 128, 28, 152, 30, 31, 32,
|
2016-07-25 17:03:48 +02:00
|
|
|
33, 34, 35, 12, 28, 79, 102, 12, 28, 7,
|
2015-10-02 11:03:12 +02:00
|
|
|
30, 31, 32, 33, 34, 149, 112, 112, 113, 114,
|
|
|
|
115, 116, 117, 7, 120, 121, 35, 77, 149, 103,
|
|
|
|
130, 131, 153, 129, 130, 109, 132, 133, 134, 135,
|
|
|
|
136, 137, 138, 143, 118, 7, 146, 143, 144, 145,
|
2016-07-25 17:03:48 +02:00
|
|
|
146, 7, 152, 29, 77, 151, 13, 153, 154, 152,
|
2015-10-02 11:03:12 +02:00
|
|
|
156, 71, 72, 73, 74, 0, 1, 77, 50, 51,
|
2016-07-25 17:03:48 +02:00
|
|
|
52, 81, 54, 78, 84, 85, 86, 87, 88, 89,
|
2015-10-02 11:03:12 +02:00
|
|
|
90, 91, 92, 93, 66, 95, 96, 97, 98, 99,
|
2016-04-20 16:47:10 +02:00
|
|
|
100, 101, 102, 143, 104, 105, 146, 148, 108, 7,
|
2015-10-02 11:03:12 +02:00
|
|
|
150, 111, 112, 113, 114, 8, 9, 10, 35, 119,
|
|
|
|
12, 148, 122, 123, 124, 125, 41, 42, 43, 44,
|
2016-07-25 17:03:48 +02:00
|
|
|
45, 46, 47, 48, 49, 28, 149, 30, 31, 32,
|
2015-10-02 11:03:12 +02:00
|
|
|
33, 155, 8, 9, 10, 35, 71, 13, 148, 149,
|
2016-07-25 17:03:48 +02:00
|
|
|
150, 12, 77, 130, 131, 79, 81, 12, 82, 84,
|
2016-12-23 14:11:31 +01:00
|
|
|
85, 86, 28, 88, 152, 90, 143, 92, 7, 146,
|
2015-10-02 11:03:12 +02:00
|
|
|
95, 8, 9, 10, 99, 100, 101, 102, 103, 104,
|
|
|
|
105, 12, 148, 108, 109, 1, 111, 112, 113, 114,
|
2016-12-23 14:11:31 +01:00
|
|
|
67, 28, 9, 10, 119, 7, 148, 122, 123, 124,
|
2016-07-25 17:03:48 +02:00
|
|
|
125, 8, 9, 10, 35, 152, 8, 9, 10, 67,
|
2016-12-23 14:11:31 +01:00
|
|
|
82, 28, 129, 29, 7, 29, 140, 141, 143, 7,
|
|
|
|
7, 28, 29, 148, 149, 150, 28, 12, 30, 31,
|
2015-06-13 12:47:13 +02:00
|
|
|
32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
|
|
|
|
42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
|
2016-12-23 14:11:31 +01:00
|
|
|
52, 128, 54, 10, 1, 71, 148, 147, 8, 9,
|
|
|
|
10, 77, 152, 15, 66, 81, 79, 139, 84, 85,
|
|
|
|
86, 28, 88, 79, 90, 13, 92, 67, 28, 95,
|
2016-07-25 17:03:48 +02:00
|
|
|
30, 31, 29, 99, 100, 101, 1, 148, 104, 105,
|
|
|
|
123, 149, 108, 148, 67, 111, 112, 8, 9, 10,
|
2016-12-23 14:11:31 +01:00
|
|
|
31, 32, 33, 119, 13, 12, 50, 51, 52, 8,
|
2016-07-25 17:03:48 +02:00
|
|
|
9, 10, 8, 9, 29, 152, 147, 28, 151, 30,
|
2015-10-02 11:03:12 +02:00
|
|
|
31, 32, 66, 67, 71, 47, 48, 49, 35, 28,
|
2016-12-23 14:11:31 +01:00
|
|
|
77, 15, 148, 149, 81, 149, 148, 84, 85, 86,
|
|
|
|
153, 88, 15, 90, 77, 92, 79, 153, 95, 47,
|
2016-07-25 17:03:48 +02:00
|
|
|
48, 49, 99, 100, 101, 1, 71, 104, 105, 149,
|
2016-12-23 14:11:31 +01:00
|
|
|
148, 108, 77, 149, 111, 112, 81, 153, 12, 84,
|
2016-07-25 17:03:48 +02:00
|
|
|
85, 86, 119, 88, 15, 90, 149, 92, 12, 112,
|
2016-12-23 14:11:31 +01:00
|
|
|
95, 31, 32, 29, 99, 100, 101, 1, 15, 104,
|
|
|
|
105, 35, 15, 108, 15, 29, 111, 112, 66, 67,
|
|
|
|
143, 148, 149, 146, 119, 29, 8, 9, 10, 146,
|
|
|
|
143, 28, 149, 146, 29, 29, 72, 73, 151, 29,
|
|
|
|
153, 72, 73, 97, 98, 71, 28, 102, 103, 106,
|
|
|
|
107, 77, 29, 148, 149, 81, 148, 149, 84, 85,
|
|
|
|
86, 29, 88, 29, 90, 35, 92, 148, 149, 95,
|
|
|
|
31, 148, 149, 99, 100, 101, 1, 71, 104, 105,
|
|
|
|
54, 66, 108, 77, 67, 111, 112, 81, 67, 67,
|
|
|
|
84, 85, 86, 119, 88, 67, 90, 68, 92, 74,
|
|
|
|
67, 95, 67, 67, 67, 99, 100, 101, 77, 82,
|
|
|
|
104, 105, 93, 89, 108, 77, 96, 111, 112, 77,
|
|
|
|
79, 109, 148, 149, 79, 119, 82, 15, 16, 17,
|
2015-10-02 11:03:12 +02:00
|
|
|
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
|
2016-12-23 14:11:31 +01:00
|
|
|
86, 91, 87, 94, 96, 94, 71, 94, 102, 102,
|
|
|
|
94, 142, 77, 110, 148, 149, 81, 146, 142, 84,
|
|
|
|
85, 86, 148, 88, 151, 90, 29, 92, 56, 57,
|
|
|
|
95, -1, -1, -1, 99, 100, 101, -1, 126, 104,
|
|
|
|
105, 123, 123, 108, 47, 48, 111, 112, 126, 128,
|
|
|
|
53, 127, 55, 128, 119, 128, 128, -1, 129, 139,
|
|
|
|
-1, -1, 139, 146, 67, -1, -1, -1, 142, 47,
|
|
|
|
48, -1, 75, 76, 142, 53, 79, 55, 142, 142,
|
2016-12-23 00:09:59 +01:00
|
|
|
83, 142, 142, 148, 149, 147, 152, 146, 146, 67,
|
2016-12-23 14:11:31 +01:00
|
|
|
146, 146, 146, 146, 151, -1, 148, 75, 76, 148,
|
2016-12-23 00:09:59 +01:00
|
|
|
128, 79, 148, 148, 148, 83, 148, 148, 148, 148,
|
2016-12-22 21:13:42 +01:00
|
|
|
148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
|
2015-10-02 11:03:12 +02:00
|
|
|
-1, 148, 148, 148, 148, 148, 148, 130, 148, 132,
|
2016-12-23 14:11:31 +01:00
|
|
|
133, 134, 135, 136, 137, 138, 148, 150, 149, 149,
|
2016-12-23 00:09:59 +01:00
|
|
|
149, 144, 145, 149, 149, 149, 154, 149, 151, 149,
|
2016-12-22 21:13:42 +01:00
|
|
|
153, 149, 130, 149, 132, 133, 134, 135, 136, 137,
|
2016-12-23 14:11:31 +01:00
|
|
|
138, 149, 149, 149, 149, 149, 144, 145, 149, 151,
|
|
|
|
150, 150, 155, 151, 150, 153, 150, 150, 150, 150,
|
2015-10-02 11:03:12 +02:00
|
|
|
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
|
|
|
|
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
|
2016-12-23 14:11:31 +01:00
|
|
|
150, 150, 150, 150, 150, -1, 151, 151, 151, 151,
|
2015-10-02 11:03:12 +02:00
|
|
|
151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
|
2016-12-23 14:11:31 +01:00
|
|
|
151, 151, -1, 152, 152, 152, 152, 152, 152, 152,
|
2015-10-02 11:03:12 +02:00
|
|
|
152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
|
2016-12-23 14:11:31 +01:00
|
|
|
152, 152, 152, -1, -1, 154, -1, 155, 155, 155,
|
2016-04-20 16:47:10 +02:00
|
|
|
155, 155, 155, 155, 155, 155, 155, 155, 155, 155,
|
2016-12-23 14:11:31 +01:00
|
|
|
155, -1, 156
|
2015-05-02 22:50:11 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
protected $actionBase = array(
|
2016-12-23 14:11:31 +01:00
|
|
|
0, 220, 295, 109, 109, 180, 701, -2, -2, -2,
|
|
|
|
-2, -2, 135, 404, 505, 574, 505, 473, 606, 675,
|
|
|
|
675, 675, 330, 389, 513, 513, 815, 225, 513, 328,
|
|
|
|
359, 365, 586, 576, 221, 435, 435, 435, 435, 134,
|
|
|
|
134, 435, 435, 435, 435, 435, 435, 435, 435, 435,
|
|
|
|
435, 435, 435, 435, 435, 435, 435, 435, 435, 435,
|
|
|
|
435, 435, 435, 435, 435, 435, 435, 435, 435, 435,
|
|
|
|
435, 435, 435, 435, 435, 435, 435, 435, 435, 435,
|
|
|
|
435, 435, 435, 435, 435, 435, 435, 435, 435, 435,
|
|
|
|
435, 435, 435, 435, 435, 435, 435, 435, 435, 435,
|
|
|
|
435, 435, 435, 435, 435, 435, 435, 435, 435, 435,
|
|
|
|
435, 435, 435, 435, 435, 435, 435, 435, 435, 435,
|
|
|
|
435, 435, 435, 435, 435, 435, 435, 435, 435, 435,
|
|
|
|
435, 254, 179, 482, 511, 700, 702, 703, 704, 811,
|
|
|
|
651, 812, 771, 772, 610, 773, 774, 775, 776, 777,
|
|
|
|
770, 778, 757, 779, 418, 418, 418, 418, 418, 418,
|
2015-10-02 11:03:12 +02:00
|
|
|
418, 418, 418, 418, 418, -3, 354, 383, 413, 206,
|
2016-12-23 14:11:31 +01:00
|
|
|
524, 521, 521, 521, 521, 521, 521, 521, 175, 175,
|
2015-10-02 11:03:12 +02:00
|
|
|
175, 175, 175, 175, 175, 175, 175, 175, 175, 175,
|
2016-12-23 14:11:31 +01:00
|
|
|
175, 175, 175, 175, 175, 403, 618, 618, 618, 463,
|
|
|
|
737, 603, 762, 762, 762, 762, 762, 762, 762, 762,
|
2015-10-02 11:03:12 +02:00
|
|
|
762, 762, 762, 762, 762, 762, 762, 762, 762, 762,
|
|
|
|
762, 762, 762, 762, 762, 762, 762, 762, 762, 762,
|
|
|
|
762, 762, 762, 762, 762, 762, 762, 762, 762, 762,
|
2016-12-23 14:11:31 +01:00
|
|
|
762, 762, 762, 762, 762, 470, -20, -20, 509, 639,
|
|
|
|
327, 570, 210, 489, 197, 25, 25, 25, 25, 25,
|
2015-10-02 11:03:12 +02:00
|
|
|
17, 45, 5, 5, 5, 5, 712, 305, 305, 305,
|
2016-12-23 14:11:31 +01:00
|
|
|
305, 118, 118, 118, 118, 794, 782, 781, 780, 303,
|
|
|
|
303, 669, 669, 629, 734, 522, 522, 498, 498, 487,
|
2016-07-25 17:03:48 +02:00
|
|
|
487, 487, 487, 487, 487, 487, 487, 487, 487, 387,
|
2016-12-23 14:11:31 +01:00
|
|
|
156, 810, 130, 130, 130, 130, 243, 84, 207, 207,
|
|
|
|
207, 663, 846, 243, 248, 248, 248, 476, 476, 476,
|
|
|
|
76, 627, 296, 296, 545, 545, 545, 477, 477, 477,
|
|
|
|
477, 483, 735, 644, 477, 477, 477, 430, 97, 434,
|
|
|
|
620, 767, 648, 761, 508, 677, 96, 611, 657, 647,
|
|
|
|
414, 569, 564, 543, 676, 406, 796, 407, 414, 254,
|
|
|
|
523, 447, 626, 705, 432, 698, 193, 38, 343, 519,
|
|
|
|
362, 137, 731, 696, 814, 813, 13, 665, 626, 626,
|
|
|
|
626, 74, 348, 730, 736, 362, 273, 552, 552, 552,
|
|
|
|
552, 793, 729, 552, 552, 552, 552, 792, 768, 408,
|
|
|
|
268, 769, 232, 699, 638, 638, 642, 642, 638, 638,
|
|
|
|
638, 638, 645, 630, 638, 805, 798, 798, 642, 641,
|
|
|
|
642, 645, 630, 807, 807, 807, 807, 642, 630, 642,
|
|
|
|
642, 638, 642, 798, 798, 630, 629, 798, 119, 630,
|
|
|
|
662, 638, 652, 652, 807, 691, 688, 642, 642, 664,
|
|
|
|
798, 798, 798, 664, 630, 807, 612, 678, 246, 798,
|
|
|
|
807, 623, 641, 623, 612, 630, 623, 641, 641, 623,
|
|
|
|
54, 632, 635, 806, 809, 801, 759, 659, 658, 800,
|
|
|
|
797, 808, 803, 799, 605, 681, 706, 614, 579, 636,
|
|
|
|
633, 617, 621, 679, 622, 661, 647, 682, 615, 615,
|
|
|
|
615, 667, 616, 667, 615, 615, 615, 615, 615, 615,
|
|
|
|
615, 615, 838, 666, 672, 668, 654, 728, 597, 687,
|
|
|
|
656, 593, 744, 660, 681, 681, 790, 819, 826, 831,
|
|
|
|
732, 631, 796, 821, 667, 845, 695, 168, 599, 758,
|
|
|
|
791, 686, 685, 667, 683, 667, 742, 667, 818, 789,
|
|
|
|
628, 788, 681, 787, 615, 817, 844, 843, 842, 841,
|
|
|
|
840, 839, 832, 837, 637, 836, 720, 655, 825, 274,
|
|
|
|
804, 676, 609, 684, 718, 433, 835, 786, 667, 667,
|
|
|
|
740, 735, 667, 738, 717, 694, 829, 716, 824, 834,
|
|
|
|
660, 823, 667, 646, 833, 433, 596, 625, 674, 619,
|
|
|
|
715, 802, 816, 795, 756, 547, 536, 785, 634, 714,
|
|
|
|
828, 827, 830, 713, 755, 468, 754, 650, 784, 753,
|
|
|
|
613, 711, 766, 764, 820, 653, 682, 680, 643, 649,
|
|
|
|
624, 752, 783, 822, 710, 709, 708, 760, 707, 727,
|
2015-05-02 22:50:11 +02:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
2016-12-23 14:11:31 +01:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
134, 134, -2, -2, -2, -2, 0, 0, 0, 0,
|
|
|
|
0, -2, 134, 134, 134, 134, 134, 134, 134, 134,
|
|
|
|
134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
|
|
|
|
134, 134, 134, 134, 134, 134, 134, 134, 0, 0,
|
2015-10-02 11:03:12 +02:00
|
|
|
134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
|
|
|
|
134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
|
|
|
|
134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
|
|
|
|
134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
|
|
|
|
134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
|
|
|
|
134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
|
|
|
|
134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
|
|
|
|
134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
|
|
|
|
134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
|
|
|
|
418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
|
|
|
|
418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
|
2016-12-23 14:11:31 +01:00
|
|
|
418, 418, 418, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 418, -20, -20, -20, -20, 418,
|
|
|
|
-20, -20, -20, -20, -20, -20, -20, 418, 418, 418,
|
2015-10-02 11:03:12 +02:00
|
|
|
418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
|
2016-12-23 14:11:31 +01:00
|
|
|
418, 418, 418, 418, -20, 418, 418, 418, -20, 487,
|
|
|
|
-20, 487, 487, 487, 487, 487, 487, 487, 487, 487,
|
2015-10-02 11:03:12 +02:00
|
|
|
487, 487, 487, 487, 487, 487, 487, 487, 487, 487,
|
|
|
|
487, 487, 487, 487, 487, 487, 487, 487, 487, 487,
|
|
|
|
487, 487, 487, 487, 487, 487, 487, 487, 487, 487,
|
2016-12-23 14:11:31 +01:00
|
|
|
487, 487, 487, 487, 418, 0, 0, 418, -20, 418,
|
|
|
|
-20, 418, -20, 418, 418, 418, 418, 418, 418, -20,
|
|
|
|
-20, -20, -20, -20, -20, 0, 248, 248, 248, 248,
|
|
|
|
-20, -20, -20, -20, 55, 55, 55, 55, 487, 487,
|
|
|
|
487, 487, 487, 487, 248, 248, 476, 476, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 487, 55,
|
|
|
|
487, 638, 638, 638, 638, 638, 296, -6, -6, -6,
|
|
|
|
296, 296, 638, 0, 0, 0, 0, 0, 0, 638,
|
|
|
|
296, 0, 0, 638, 638, 638, 638, 638, 638, 638,
|
|
|
|
638, -6, 296, 638, 638, 638, 798, 0, -6, 546,
|
|
|
|
546, 546, 546, 433, 362, 0, 638, 638, 641, 0,
|
|
|
|
0, 0, 0, 798, 0, 642, 0, 0, 0, 0,
|
|
|
|
0, 615, 168, 0, 67, 0, 0, 0, 0, 0,
|
|
|
|
0, 631, 67, 427, 427, 0, 637, 615, 615, 615,
|
|
|
|
0, 0, 631, 631, 0, 0, 0, 0, 0, 0,
|
|
|
|
322, 631, 0, 0, 0, 0, 322, 381, 0, 0,
|
|
|
|
381, 0, 433
|
2015-05-02 22:50:11 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
protected $actionDefault = array(
|
|
|
|
3,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2016-12-23 14:11:31 +01:00
|
|
|
32767,32767,32767,32767, 529, 529,32767,32767, 484,32767,
|
2016-12-23 00:25:45 +01:00
|
|
|
32767,32767,32767,32767,32767, 290, 290, 290,32767,32767,
|
|
|
|
32767, 517, 517, 517, 517, 517, 517, 517, 517, 517,
|
|
|
|
517, 517,32767,32767,32767,32767,32767, 372,32767,32767,
|
2015-05-02 22:50:11 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2015-06-13 12:47:13 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2015-05-02 22:50:11 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2016-12-23 00:25:45 +01:00
|
|
|
32767,32767,32767, 378, 534,32767,32767,32767,32767,32767,
|
2015-05-02 22:50:11 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2016-12-23 00:25:45 +01:00
|
|
|
32767,32767,32767,32767, 353, 354, 356, 357, 289, 518,
|
|
|
|
239, 379, 533, 288, 241, 317, 488,32767,32767,32767,
|
|
|
|
319, 118, 250, 195, 487, 121, 287, 226, 371, 373,
|
|
|
|
318, 294, 299, 300, 301, 302, 303, 304, 305, 306,
|
|
|
|
307, 308, 309, 310, 293, 444, 350, 349, 348, 446,
|
|
|
|
32767, 445, 481, 481, 484,32767,32767,32767,32767,32767,
|
2015-05-02 22:50:11 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2016-12-23 00:25:45 +01:00
|
|
|
32767,32767,32767,32767,32767, 315, 472, 471, 316, 442,
|
|
|
|
320, 443, 322, 447, 321, 338, 339, 336, 337, 340,
|
|
|
|
449, 448, 465, 466, 463, 464, 292, 341, 342, 343,
|
|
|
|
344, 467, 468, 469, 470, 273, 273, 273, 273,32767,
|
|
|
|
32767, 528, 528,32767,32767, 329, 330, 456, 457,32767,
|
2015-05-02 22:50:11 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2016-12-23 00:09:59 +01:00
|
|
|
274,32767, 230, 230, 230, 230, 230,32767,32767,32767,
|
2016-12-23 00:25:45 +01:00
|
|
|
32767,32767,32767,32767, 324, 325, 323, 451, 452, 450,
|
|
|
|
32767, 418,32767, 420,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767, 489,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767, 502, 407,32767,32767, 400,
|
|
|
|
32767, 214, 216, 163, 475,32767,32767,32767,32767,32767,
|
2016-12-23 14:11:31 +01:00
|
|
|
32767, 507, 334,32767,32767,32767,32767,32767, 544,32767,
|
|
|
|
502,32767,32767,32767,32767,32767,32767, 347, 326, 327,
|
|
|
|
328,32767,32767,32767,32767, 506, 500, 459, 460, 461,
|
|
|
|
462,32767,32767, 453, 454, 455, 458,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767, 167,32767, 415, 421, 421,32767,32767,
|
|
|
|
32767,32767, 167,32767,32767,32767,32767,32767, 167,32767,
|
|
|
|
32767,32767,32767, 505, 504, 167,32767, 401, 483, 167,
|
|
|
|
180,32767, 178, 178,32767, 200, 200,32767,32767, 182,
|
|
|
|
476, 495,32767, 182, 167,32767, 389, 169, 483,32767,
|
|
|
|
32767, 232,32767, 232, 389, 167, 232,32767,32767, 232,
|
|
|
|
32767, 83, 425,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767, 402,32767,32767,32767, 368,
|
|
|
|
369, 478, 491,32767, 492,32767, 400,32767, 332, 333,
|
|
|
|
335, 312,32767, 314, 358, 359, 360, 361, 362, 363,
|
|
|
|
364, 366,32767,32767, 405, 408,32767,32767,32767, 85,
|
|
|
|
110, 249,32767, 541, 85, 403,32767,32767, 297, 541,
|
|
|
|
32767,32767,32767,32767, 536,32767,32767, 291,32767,32767,
|
|
|
|
32767, 85, 85, 245,32767, 165,32767, 526,32767, 543,
|
|
|
|
32767, 500, 404,32767, 331,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767, 501,32767,32767,32767,32767, 221,
|
|
|
|
32767, 438,32767, 85,32767, 181,32767,32767, 295, 240,
|
|
|
|
32767,32767, 535,32767,32767,32767,32767,32767,32767,32767,
|
|
|
|
32767,32767, 166,32767,32767, 183,32767,32767, 500,32767,
|
|
|
|
32767,32767,32767,32767,32767,32767, 286,32767,32767,32767,
|
|
|
|
32767,32767, 500,32767,32767, 225,32767,32767,32767,32767,
|
|
|
|
32767,32767,32767,32767,32767, 83, 60,32767, 267,32767,
|
2015-05-02 22:50:11 +02:00
|
|
|
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
|
2016-12-23 14:11:31 +01:00
|
|
|
123, 123, 3, 123, 123, 3, 123, 123, 123, 123,
|
|
|
|
123, 123, 123, 123, 123, 123, 123, 123, 123, 208,
|
|
|
|
252, 211, 200, 200, 160, 252, 252, 252, 259
|
2015-05-02 22:50:11 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
protected $goto = array(
|
2016-12-23 14:11:31 +01:00
|
|
|
160, 160, 134, 134, 139, 142, 134, 135, 136, 137,
|
2015-10-02 11:03:12 +02:00
|
|
|
144, 181, 162, 158, 158, 158, 158, 139, 139, 159,
|
|
|
|
159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
|
2016-12-23 14:11:31 +01:00
|
|
|
154, 155, 156, 157, 178, 133, 179, 498, 499, 362,
|
|
|
|
500, 504, 505, 506, 507, 508, 509, 510, 511, 967,
|
2015-10-02 11:03:12 +02:00
|
|
|
138, 140, 141, 143, 165, 170, 180, 196, 245, 248,
|
|
|
|
250, 252, 254, 255, 256, 257, 258, 259, 267, 268,
|
2016-12-23 14:11:31 +01:00
|
|
|
269, 270, 285, 286, 314, 315, 316, 378, 379, 380,
|
|
|
|
554, 182, 183, 184, 185, 186, 187, 188, 189, 190,
|
2015-10-02 11:03:12 +02:00
|
|
|
191, 192, 193, 194, 145, 146, 147, 161, 148, 163,
|
2016-12-23 14:11:31 +01:00
|
|
|
149, 197, 164, 150, 151, 152, 198, 153, 131, 627,
|
|
|
|
572, 758, 572, 572, 572, 572, 572, 572, 572, 572,
|
|
|
|
572, 572, 572, 572, 572, 572, 572, 572, 572, 572,
|
|
|
|
572, 572, 572, 572, 572, 572, 572, 572, 572, 572,
|
|
|
|
572, 572, 572, 572, 572, 572, 572, 572, 572, 572,
|
|
|
|
572, 572, 572, 572, 572, 1105, 6, 1105, 1105, 1105,
|
|
|
|
1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105,
|
|
|
|
1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105,
|
|
|
|
1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105,
|
|
|
|
1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105,
|
|
|
|
636, 889, 889, 1196, 1196, 528, 1174, 168, 1174, 514,
|
|
|
|
757, 514, 171, 172, 173, 387, 388, 389, 390, 167,
|
|
|
|
195, 199, 201, 249, 251, 253, 260, 261, 262, 263,
|
|
|
|
264, 265, 271, 272, 273, 274, 287, 288, 317, 318,
|
|
|
|
319, 393, 394, 395, 396, 169, 174, 246, 247, 175,
|
|
|
|
176, 177, 502, 502, 502, 502, 502, 502, 553, 341,
|
|
|
|
788, 577, 502, 502, 502, 502, 502, 502, 502, 502,
|
|
|
|
502, 502, 513, 635, 513, 386, 612, 547, 547, 578,
|
|
|
|
543, 585, 610, 794, 756, 545, 545, 501, 503, 534,
|
|
|
|
551, 579, 582, 592, 598, 875, 515, 855, 515, 659,
|
|
|
|
819, 516, 884, 879, 571, 859, 571, 571, 571, 571,
|
2016-12-23 00:09:59 +01:00
|
|
|
571, 571, 571, 571, 571, 571, 571, 571, 571, 571,
|
|
|
|
571, 571, 571, 571, 571, 571, 571, 571, 571, 571,
|
|
|
|
571, 571, 571, 571, 571, 571, 571, 571, 571, 571,
|
2016-12-23 14:11:31 +01:00
|
|
|
571, 571, 571, 571, 571, 571, 571, 571, 571, 556,
|
|
|
|
557, 558, 559, 560, 561, 562, 563, 565, 594, 1081,
|
|
|
|
1080, 555, 519, 907, 1166, 527, 524, 524, 524, 450,
|
|
|
|
452, 937, 638, 524, 548, 1106, 620, 935, 527, 527,
|
|
|
|
1200, 1063, 363, 437, 437, 437, 437, 437, 437, 542,
|
|
|
|
524, 323, 312, 437, 437, 437, 437, 437, 437, 437,
|
|
|
|
437, 437, 437, 1070, 602, 1070, 896, 896, 896, 896,
|
|
|
|
896, 1154, 611, 540, 375, 661, 567, 896, 599, 872,
|
|
|
|
886, 617, 871, 618, 882, 622, 623, 630, 632, 637,
|
|
|
|
639, 853, 853, 853, 853, 781, 1206, 1206, 848, 854,
|
|
|
|
468, 370, 370, 370, 945, 1193, 524, 524, 1206, 965,
|
|
|
|
541, 573, 524, 524, 1207, 1207, 524, 1014, 1209, 1086,
|
|
|
|
1066, 1067, 781, 781, 1063, 370, 1207, 1024, 17, 13,
|
|
|
|
355, 893, 385, 525, 356, 342, 343, 1064, 1165, 1064,
|
|
|
|
1173, 532, 1173, 552, 902, 544, 1065, 615, 566, 1190,
|
|
|
|
1190, 1190, 1062, 624, 347, 397, 1188, 1188, 1188, 21,
|
|
|
|
457, 777, 616, 369, 608, 619, 373, 911, 360, 775,
|
|
|
|
647, 10, 401, 1172, 588, 591, 633, 1056, 916, 774,
|
|
|
|
774, 785, 863, 782, 782, 782, 784, 953, 453, 773,
|
|
|
|
595, 344, 403, 276, 277, 278, 1061, 583, 1151, 466,
|
|
|
|
0, 0, 0, 0, 539, 0, 0, 0, 0, 0,
|
2015-05-02 22:50:11 +02:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
2015-06-12 23:05:28 +02:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
2015-08-20 16:42:49 +02:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
2016-10-08 23:58:39 +02:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
2016-12-23 14:11:31 +01:00
|
|
|
0, 0, 0, 0, 518, 538, 0, 0, 0, 0,
|
|
|
|
0, 0, 533, 0, 0, 0, 518, 0, 538, 0,
|
|
|
|
0, 0, 0, 0, 0, 517, 0, 522, 440, 0,
|
|
|
|
442, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 780, 1215
|
2015-05-02 22:50:11 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
protected $gotoCheck = array(
|
2016-12-23 00:09:59 +01:00
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 55,
|
2016-12-23 00:25:45 +01:00
|
|
|
115, 14, 115, 115, 115, 115, 115, 115, 115, 115,
|
|
|
|
115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
|
|
|
|
115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
|
|
|
|
115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
|
2016-12-23 14:11:31 +01:00
|
|
|
115, 115, 115, 115, 115, 122, 92, 122, 122, 122,
|
2016-12-23 00:25:45 +01:00
|
|
|
122, 122, 122, 122, 122, 122, 122, 122, 122, 122,
|
|
|
|
122, 122, 122, 122, 122, 122, 122, 122, 122, 122,
|
|
|
|
122, 122, 122, 122, 122, 122, 122, 122, 122, 122,
|
|
|
|
122, 122, 122, 122, 122, 122, 122, 122, 122, 122,
|
2016-12-23 14:11:31 +01:00
|
|
|
8, 72, 72, 72, 72, 96, 113, 25, 113, 115,
|
|
|
|
13, 115, 25, 25, 25, 25, 25, 25, 25, 25,
|
2016-12-23 00:09:59 +01:00
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
|
|
|
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
2016-12-23 14:11:31 +01:00
|
|
|
25, 25, 112, 112, 112, 112, 112, 112, 2, 67,
|
|
|
|
27, 2, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
|
|
112, 112, 112, 5, 112, 49, 49, 49, 49, 49,
|
2016-12-23 00:09:59 +01:00
|
|
|
49, 38, 38, 12, 12, 49, 49, 49, 49, 49,
|
2016-12-23 00:25:45 +01:00
|
|
|
49, 49, 49, 49, 49, 12, 118, 12, 118, 12,
|
2016-12-23 14:11:31 +01:00
|
|
|
48, 12, 12, 12, 55, 31, 55, 55, 55, 55,
|
2016-12-23 00:09:59 +01:00
|
|
|
55, 55, 55, 55, 55, 55, 55, 55, 55, 55,
|
|
|
|
55, 55, 55, 55, 55, 55, 55, 55, 55, 55,
|
|
|
|
55, 55, 55, 55, 55, 55, 55, 55, 55, 55,
|
2016-12-23 00:25:45 +01:00
|
|
|
55, 55, 55, 55, 55, 55, 55, 55, 55, 105,
|
2016-12-23 14:11:31 +01:00
|
|
|
105, 105, 105, 105, 105, 105, 105, 105, 105, 120,
|
|
|
|
120, 45, 9, 79, 77, 45, 9, 9, 9, 7,
|
|
|
|
7, 7, 7, 9, 104, 7, 7, 7, 45, 45,
|
|
|
|
136, 77, 44, 55, 55, 55, 55, 55, 55, 9,
|
|
|
|
9, 121, 121, 55, 55, 55, 55, 55, 55, 55,
|
|
|
|
55, 55, 55, 55, 123, 55, 55, 55, 55, 55,
|
|
|
|
55, 127, 47, 30, 46, 30, 30, 55, 30, 30,
|
2016-12-23 00:09:59 +01:00
|
|
|
30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
2016-12-23 14:11:31 +01:00
|
|
|
30, 55, 55, 55, 55, 21, 137, 137, 55, 55,
|
|
|
|
55, 119, 119, 119, 92, 134, 9, 9, 137, 96,
|
|
|
|
9, 9, 9, 9, 138, 138, 9, 97, 137, 32,
|
|
|
|
77, 77, 21, 21, 77, 119, 138, 32, 32, 32,
|
|
|
|
32, 74, 119, 9, 56, 67, 67, 77, 77, 77,
|
|
|
|
114, 56, 114, 9, 76, 56, 77, 11, 32, 114,
|
|
|
|
114, 114, 11, 11, 16, 20, 8, 8, 8, 32,
|
|
|
|
56, 23, 59, 10, 32, 59, 15, 80, 59, 22,
|
|
|
|
69, 56, 19, 114, 58, 58, 58, 108, 81, 21,
|
|
|
|
21, 24, 66, 21, 21, 21, 21, 94, 61, 21,
|
|
|
|
65, 65, 65, 63, 63, 63, 110, 62, 126, 103,
|
2016-12-23 00:25:45 +01:00
|
|
|
-1, -1, -1, -1, 8, -1, -1, -1, -1, -1,
|
2015-08-20 16:42:49 +02:00
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
2015-05-02 22:50:11 +02:00
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
2016-02-09 13:30:39 +01:00
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
2016-12-23 14:11:31 +01:00
|
|
|
-1, -1, -1, -1, 8, 8, -1, -1, -1, -1,
|
|
|
|
-1, -1, 96, -1, -1, -1, 8, -1, 8, -1,
|
|
|
|
-1, -1, -1, -1, -1, 8, -1, 8, 8, -1,
|
|
|
|
8, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
|
|
-1, -1, -1, -1, -1, 8, 8
|
2015-05-02 22:50:11 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
protected $gotoBase = array(
|
2016-12-23 14:11:31 +01:00
|
|
|
0, 0, -384, 0, 0, 261, 0, 366, 188, 42,
|
|
|
|
172, 25, 282, 208, 109, 159, 174, 0, 0, 107,
|
|
|
|
170, 115, 161, 175, 103, 7, 0, 252, 0, 0,
|
|
|
|
-228, 287, 44, 0, 0, 0, 0, 0, 245, 0,
|
|
|
|
0, -22, 0, 0, 344, 339, 124, 132, 284, -4,
|
|
|
|
0, 0, 0, 0, 0, 104, 46, 0, 211, 39,
|
|
|
|
0, 85, 84, -132, 0, 202, 102, -187, 0, 151,
|
|
|
|
0, 0, -78, 0, 165, 0, 171, 27, 0, 340,
|
|
|
|
149, 99, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 144, 0, 106, 0, 166, 156, 0, 0,
|
|
|
|
0, 0, 0, 75, 349, 307, 0, 0, 100, 0,
|
|
|
|
114, 0, -27, -93, 181, -90, 0, 0, -3, 133,
|
|
|
|
50, 70, -45, 201, 0, 0, 80, 207, 0, 0,
|
|
|
|
0, 0, 0, 0, 163, 0, 352, 125, 143, 0,
|
|
|
|
0, 0
|
2015-05-02 22:50:11 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
protected $gotoDefault = array(
|
2016-12-23 14:11:31 +01:00
|
|
|
-32768, 470, 670, 2, 671, 742, 750, 605, 484, 485,
|
|
|
|
520, 521, 857, 795, 796, 365, 411, 486, 364, 398,
|
|
|
|
391, 783, 776, 778, 786, 166, 399, 789, 1, 791,
|
|
|
|
526, 827, 1015, 351, 799, 352, 597, 801, 536, 803,
|
|
|
|
804, 132, 366, 367, 537, 487, 374, 586, 818, 266,
|
|
|
|
371, 820, 353, 821, 830, 354, 467, 462, 568, 614,
|
|
|
|
432, 449, 580, 275, 546, 575, 862, 340, 870, 650,
|
|
|
|
878, 881, 488, 569, 892, 454, 900, 1091, 381, 906,
|
|
|
|
912, 917, 920, 412, 400, 593, 924, 925, 5, 929,
|
|
|
|
628, 629, 944, 300, 952, 606, 966, 417, 1034, 1036,
|
|
|
|
489, 490, 530, 461, 512, 535, 491, 1057, 443, 402,
|
|
|
|
1060, 492, 493, 433, 434, 1078, 1075, 346, 1159, 345,
|
|
|
|
451, 311, 1146, 589, 1110, 458, 1199, 1155, 337, 494,
|
|
|
|
495, 361, 1178, 376, 1194, 438, 1201, 1208, 333, 368,
|
|
|
|
550, 576
|
2015-05-02 22:50:11 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
protected $ruleToNonTerminal = array(
|
2015-10-02 11:03:12 +02:00
|
|
|
0, 1, 3, 3, 2, 5, 5, 5, 5, 5,
|
|
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
|
|
5, 5, 5, 6, 6, 6, 6, 6, 6, 6,
|
2016-12-23 00:09:59 +01:00
|
|
|
7, 7, 8, 9, 9, 10, 11, 4, 4, 4,
|
|
|
|
4, 4, 4, 4, 4, 4, 4, 4, 16, 16,
|
|
|
|
17, 17, 17, 17, 19, 19, 15, 15, 20, 20,
|
|
|
|
21, 21, 22, 22, 23, 23, 18, 18, 24, 26,
|
|
|
|
26, 27, 28, 28, 30, 29, 29, 29, 29, 31,
|
|
|
|
31, 31, 31, 31, 31, 31, 31, 31, 31, 31,
|
|
|
|
31, 31, 31, 31, 31, 31, 31, 31, 31, 31,
|
|
|
|
31, 31, 31, 31, 31, 31, 31, 31, 12, 12,
|
|
|
|
52, 52, 54, 53, 53, 46, 46, 56, 56, 57,
|
|
|
|
57, 13, 14, 14, 14, 60, 60, 60, 61, 61,
|
|
|
|
64, 64, 62, 62, 65, 65, 39, 39, 48, 48,
|
|
|
|
51, 51, 51, 50, 50, 66, 40, 40, 40, 40,
|
|
|
|
67, 67, 68, 68, 69, 69, 37, 37, 33, 33,
|
|
|
|
70, 35, 35, 71, 34, 34, 36, 36, 47, 47,
|
|
|
|
47, 58, 58, 73, 73, 74, 74, 76, 76, 76,
|
|
|
|
75, 75, 59, 59, 77, 77, 77, 78, 78, 79,
|
2016-12-24 23:52:33 +01:00
|
|
|
79, 79, 42, 42, 80, 80, 80, 43, 43, 81,
|
2016-12-23 00:09:59 +01:00
|
|
|
81, 63, 63, 82, 82, 82, 82, 87, 87, 88,
|
|
|
|
88, 89, 89, 89, 89, 89, 90, 91, 91, 86,
|
|
|
|
86, 83, 83, 85, 85, 93, 93, 92, 92, 92,
|
2016-12-24 23:52:33 +01:00
|
|
|
92, 92, 92, 84, 84, 95, 94, 94, 44, 44,
|
2016-12-23 00:25:45 +01:00
|
|
|
38, 38, 41, 41, 41, 41, 41, 41, 41, 41,
|
2016-12-23 00:09:59 +01:00
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
|
|
|
41, 41, 41, 41, 41, 41, 41, 41, 41, 41,
|
2016-12-24 23:52:33 +01:00
|
|
|
41, 41, 41, 41, 41, 41, 32, 32, 45, 45,
|
2016-12-23 00:25:45 +01:00
|
|
|
100, 100, 101, 101, 101, 101, 107, 96, 96, 103,
|
|
|
|
103, 109, 109, 110, 111, 111, 111, 111, 111, 111,
|
|
|
|
115, 115, 55, 55, 55, 97, 97, 116, 116, 112,
|
|
|
|
112, 117, 117, 117, 117, 98, 98, 98, 102, 102,
|
|
|
|
102, 108, 108, 122, 122, 122, 122, 122, 122, 122,
|
|
|
|
122, 122, 122, 122, 122, 122, 25, 25, 25, 25,
|
|
|
|
25, 25, 124, 124, 124, 124, 124, 124, 124, 124,
|
|
|
|
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
|
|
|
|
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
|
|
|
|
124, 124, 124, 124, 124, 106, 106, 99, 99, 99,
|
|
|
|
99, 123, 123, 126, 126, 125, 125, 127, 127, 49,
|
|
|
|
49, 49, 49, 129, 129, 128, 128, 128, 128, 128,
|
|
|
|
130, 130, 114, 114, 118, 118, 113, 113, 132, 131,
|
|
|
|
131, 131, 131, 119, 119, 119, 119, 105, 105, 120,
|
|
|
|
120, 120, 120, 72, 133, 133, 134, 134, 134, 104,
|
|
|
|
104, 135, 135, 136, 136, 136, 136, 121, 121, 121,
|
2016-12-23 14:11:31 +01:00
|
|
|
121, 138, 139, 140, 137, 137, 137, 137, 137, 137,
|
|
|
|
137, 141, 141, 141
|
2015-05-02 22:50:11 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
protected $ruleToLength = array(
|
2015-06-13 12:47:13 +02:00
|
|
|
1, 1, 2, 0, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
2015-06-13 11:27:38 +02:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
2015-06-13 12:47:13 +02:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
2016-02-09 13:30:39 +01:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
2016-12-22 21:13:42 +01:00
|
|
|
1, 1, 1, 1, 3, 1, 1, 1, 1, 1,
|
2016-12-23 00:09:59 +01:00
|
|
|
1, 3, 5, 4, 3, 4, 2, 3, 1, 1,
|
|
|
|
7, 8, 6, 7, 3, 1, 3, 1, 3, 1,
|
|
|
|
1, 3, 1, 2, 1, 2, 3, 1, 3, 3,
|
|
|
|
1, 3, 2, 0, 1, 1, 1, 1, 1, 3,
|
|
|
|
5, 8, 3, 5, 9, 3, 2, 3, 2, 3,
|
2016-12-24 23:52:33 +01:00
|
|
|
2, 3, 3, 3, 3, 1, 2, 2, 5, 7,
|
2016-12-23 00:09:59 +01:00
|
|
|
9, 5, 6, 3, 3, 2, 2, 1, 1, 1,
|
|
|
|
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, 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, 4, 3, 1, 1, 1,
|
|
|
|
3, 1, 1, 0, 1, 1, 2, 1, 1, 1,
|
2016-12-23 00:25:45 +01:00
|
|
|
1, 1, 1, 1, 3, 1, 1, 3, 3, 1,
|
|
|
|
0, 1, 1, 3, 3, 4, 4, 1, 2, 3,
|
2015-05-02 22:50:11 +02:00
|
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
2016-12-23 00:09:59 +01:00
|
|
|
3, 2, 2, 2, 2, 3, 3, 3, 3, 3,
|
2016-12-23 00:25:45 +01:00
|
|
|
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, 1, 3, 5, 4,
|
|
|
|
3, 4, 4, 2, 2, 2, 2, 2, 2, 2,
|
|
|
|
2, 2, 2, 2, 2, 2, 2, 1, 1, 1,
|
|
|
|
3, 2, 1, 2, 10, 11, 3, 3, 2, 4,
|
|
|
|
4, 3, 4, 4, 4, 4, 7, 3, 2, 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, 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, 1, 3,
|
|
|
|
6, 4, 4, 4, 4, 1, 4, 0, 1, 1,
|
|
|
|
3, 1, 1, 4, 3, 1, 1, 1, 0, 0,
|
|
|
|
2, 3, 1, 3, 1, 4, 2, 2, 2, 1,
|
2016-12-23 14:11:31 +01:00
|
|
|
2, 1, 1, 1, 1, 4, 3, 3, 3, 6,
|
|
|
|
3, 1, 1, 1
|
2015-05-02 22:50:11 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
protected function reduceRule0() {
|
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule1() {
|
|
|
|
$this->semValue = $this->handleNamespaces($this->semStack[$this->stackPos-(1-1)]);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule2() {
|
|
|
|
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() {
|
|
|
|
$this->semValue = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule4() {
|
2016-12-23 14:11:31 +01:00
|
|
|
$startAttributes = $this->lookaheadStartAttributes; if ($this->useNopStatements && isset($startAttributes['comments'])) { $nop = new Stmt\Nop(['comments' => $startAttributes['comments']]); } else { $nop = null; };
|
2016-04-05 11:53:50 +02:00
|
|
|
if ($nop !== null) { $this->semStack[$this->stackPos-(1-1)][] = $nop; } $this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule5() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule6() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule7() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule8() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule9() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule10() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule11() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule12() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule13() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule14() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule15() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule16() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule17() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule18() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule19() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule20() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule21() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule22() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule23() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule24() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule25() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule26() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule27() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule28() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule29() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule30() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule31() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule32() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule33() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule34() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule35() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule36() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule37() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule38() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule39() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule40() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule41() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule42() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule43() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule44() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule45() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule46() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule47() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule48() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule49() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule50() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule51() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule52() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule53() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule54() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule55() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule56() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule57() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule58() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule59() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule60() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule61() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule62() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule63() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule64() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule65() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule66() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule67() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule68() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule69() {
|
2015-06-13 12:47:13 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule70() {
|
2016-02-09 13:30:39 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule71() {
|
2016-02-09 13:30:39 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule72() {
|
2016-02-09 13:30:39 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule73() {
|
2016-02-09 13:30:39 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule74() {
|
2016-02-09 13:30:39 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule75() {
|
2016-02-09 13:30:39 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule76() {
|
2016-02-09 13:30:39 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule77() {
|
2016-02-09 13:30:39 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule78() {
|
2016-02-09 13:30:39 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule79() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule80() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = ($this->useIdentifierNodes ? new Node\Identifier($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes) : $this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule81() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = ($this->useIdentifierNodes ? new Node\Identifier($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes) : $this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule82() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = ($this->useIdentifierNodes ? new Node\Identifier($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes) : $this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule83() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule84() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule85() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = new Name($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule86() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = ($this->useConsistentVariableNodes ? new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes) : substr($this->semStack[$this->stackPos-(1-1)], 1));
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule87() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule88() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule89() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule90() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\HaltCompiler($this->lexer->handleHaltCompiler(), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule91() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Namespace_($this->semStack[$this->stackPos-(3-2)], null, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); $this->checkNamespace($this->semValue);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule92() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Namespace_($this->semStack[$this->stackPos-(5-2)], $this->semStack[$this->stackPos-(5-4)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); $this->checkNamespace($this->semValue);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule93() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Namespace_(null, $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); $this->checkNamespace($this->semValue);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule94() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Use_($this->semStack[$this->stackPos-(3-2)], Stmt\Use_::TYPE_NORMAL, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule95() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Use_($this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-2)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule96() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(2-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule97() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Const_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule98() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = Stmt\Use_::TYPE_FUNCTION;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule99() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = Stmt\Use_::TYPE_CONSTANT;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule100() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(7-3)], $this->startAttributeStack[$this->stackPos-(7-3)] + $this->endAttributeStack[$this->stackPos-(7-3)]), $this->semStack[$this->stackPos-(7-6)], $this->semStack[$this->stackPos-(7-2)], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule101() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(8-4)], $this->startAttributeStack[$this->stackPos-(8-4)] + $this->endAttributeStack[$this->stackPos-(8-4)]), $this->semStack[$this->stackPos-(8-7)], $this->semStack[$this->stackPos-(8-2)], $this->startAttributeStack[$this->stackPos-(8-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule102() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(6-2)], $this->startAttributeStack[$this->stackPos-(6-2)] + $this->endAttributeStack[$this->stackPos-(6-2)]), $this->semStack[$this->stackPos-(6-5)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule103() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(7-3)], $this->startAttributeStack[$this->stackPos-(7-3)] + $this->endAttributeStack[$this->stackPos-(7-3)]), $this->semStack[$this->stackPos-(7-6)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule104() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule105() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule106() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule107() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule108() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule109() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule110() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\UseUse($this->semStack[$this->stackPos-(1-1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); $this->checkUseUse($this->semValue, $this->stackPos-(1-1));
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule111() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\UseUse($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); $this->checkUseUse($this->semValue, $this->stackPos-(3-3));
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule112() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule113() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(2-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule114() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)]; $this->semValue->type = Stmt\Use_::TYPE_NORMAL;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule115() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(2-2)]; $this->semValue->type = $this->semStack[$this->stackPos-(2-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule116() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule117() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule118() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Node\Const_($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule119() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule120() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule121() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Node\Const_($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule122() {
|
2016-12-23 00:09:59 +01:00
|
|
|
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)]; };
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule123() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule124() {
|
2016-12-23 14:11:31 +01:00
|
|
|
$startAttributes = $this->lookaheadStartAttributes; if ($this->useNopStatements && isset($startAttributes['comments'])) { $nop = new Stmt\Nop(['comments' => $startAttributes['comments']]); } else { $nop = null; };
|
2016-12-23 00:09:59 +01:00
|
|
|
if ($nop !== null) { $this->semStack[$this->stackPos-(1-1)][] = $nop; } $this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule125() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule126() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule127() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule128() {
|
2016-12-23 00:09:59 +01:00
|
|
|
throw new Error('__HALT_COMPILER() can only be used from the outermost scope', $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule129() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(3-2)]; $attrs = $this->startAttributeStack[$this->stackPos-(3-1)]; $stmts = $this->semValue; if (!empty($attrs['comments']) && isset($stmts[0])) {$stmts[0]->setAttribute('comments', array_merge($attrs['comments'], $stmts[0]->getAttribute('comments', []))); };
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule130() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\If_($this->semStack[$this->stackPos-(5-2)], ['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)]], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule131() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\If_($this->semStack[$this->stackPos-(8-2)], ['stmts' => $this->semStack[$this->stackPos-(8-4)], 'elseifs' => $this->semStack[$this->stackPos-(8-5)], 'else' => $this->semStack[$this->stackPos-(8-6)]], $this->startAttributeStack[$this->stackPos-(8-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule132() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\While_($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule133() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new 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)]), $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule134() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\For_(['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)]], $this->startAttributeStack[$this->stackPos-(9-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule135() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Switch_($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule136() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Break_(null, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule137() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Break_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule138() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Continue_(null, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule139() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Continue_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule140() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Return_(null, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule141() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Return_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule142() {
|
2016-12-24 23:52:33 +01:00
|
|
|
$this->semValue = new Stmt\Global_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule143() {
|
2016-12-24 23:52:33 +01:00
|
|
|
$this->semValue = new Stmt\Static_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule144() {
|
2016-12-24 23:52:33 +01:00
|
|
|
$this->semValue = new Stmt\Echo_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule145() {
|
2016-12-24 23:52:33 +01:00
|
|
|
$this->semValue = new Stmt\InlineHTML($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule146() {
|
2017-01-19 21:15:26 +01:00
|
|
|
$this->semValue = new Stmt\Expression($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule147() {
|
2017-01-19 21:15:26 +01:00
|
|
|
$this->semValue = new Stmt\Expression($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule148() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Unset_($this->semStack[$this->stackPos-(5-3)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule149() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Foreach_($this->semStack[$this->stackPos-(7-3)], $this->semStack[$this->stackPos-(7-5)][0], ['keyVar' => null, 'byRef' => $this->semStack[$this->stackPos-(7-5)][1], 'stmts' => $this->semStack[$this->stackPos-(7-7)]], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule150() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Foreach_($this->semStack[$this->stackPos-(9-3)], $this->semStack[$this->stackPos-(9-7)][0], ['keyVar' => $this->semStack[$this->stackPos-(9-5)], 'byRef' => $this->semStack[$this->stackPos-(9-7)][1], 'stmts' => $this->semStack[$this->stackPos-(9-9)]], $this->startAttributeStack[$this->stackPos-(9-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule151() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Declare_($this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule152() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\TryCatch($this->semStack[$this->stackPos-(6-3)], $this->semStack[$this->stackPos-(6-5)], $this->semStack[$this->stackPos-(6-6)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); $this->checkTryCatch($this->semValue);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule153() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Throw_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule154() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Goto_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule155() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Label($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule156() {
|
2017-01-19 21:15:26 +01:00
|
|
|
$this->semValue = new Stmt\Expression($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule157() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array(); /* means: no statement */
|
2016-12-22 21:13:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule158() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-22 21:13:42 +01:00
|
|
|
protected function reduceRule159() {
|
2016-12-23 14:11:31 +01:00
|
|
|
$startAttributes = $this->startAttributeStack[$this->stackPos-(1-1)]; if ($this->useNopStatements && isset($startAttributes['comments'])) { $this->semValue = new Stmt\Nop(['comments' => $startAttributes['comments']]); } else { $this->semValue = null; };
|
2016-12-23 00:09:59 +01:00
|
|
|
if ($this->semValue === null) $this->semValue = array(); /* means: no statement */
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-22 21:13:42 +01:00
|
|
|
protected function reduceRule160() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-22 21:13:42 +01:00
|
|
|
protected function reduceRule161() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-22 21:13:42 +01:00
|
|
|
protected function reduceRule162() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Catch_(array($this->semStack[$this->stackPos-(8-3)]), $this->semStack[$this->stackPos-(8-4)], $this->semStack[$this->stackPos-(8-7)], $this->startAttributeStack[$this->stackPos-(8-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-22 21:13:42 +01:00
|
|
|
protected function reduceRule163() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = null;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-22 21:13:42 +01:00
|
|
|
protected function reduceRule164() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Finally_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-22 21:13:42 +01:00
|
|
|
protected function reduceRule165() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-22 21:13:42 +01:00
|
|
|
protected function reduceRule166() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-22 21:13:42 +01:00
|
|
|
protected function reduceRule167() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = false;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-22 21:13:42 +01:00
|
|
|
protected function reduceRule168() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = true;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-22 21:13:42 +01:00
|
|
|
protected function reduceRule169() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = false;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-22 21:13:42 +01:00
|
|
|
protected function reduceRule170() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = true;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-22 21:13:42 +01:00
|
|
|
protected function reduceRule171() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Function_($this->semStack[$this->stackPos-(10-3)], ['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)]], $this->startAttributeStack[$this->stackPos-(10-1)] + $this->endAttributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule172() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = new Stmt\Class_($this->semStack[$this->stackPos-(7-2)], ['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)]], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes);
|
2016-10-09 00:59:44 +02:00
|
|
|
$this->checkClass($this->semValue, $this->stackPos-(7-2));
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule173() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = new Stmt\Interface_($this->semStack[$this->stackPos-(6-2)], ['extends' => $this->semStack[$this->stackPos-(6-3)], 'stmts' => $this->semStack[$this->stackPos-(6-5)]], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes);
|
2016-10-09 00:59:44 +02:00
|
|
|
$this->checkInterface($this->semValue, $this->stackPos-(6-2));
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule174() {
|
2016-07-22 17:01:51 +02:00
|
|
|
$this->semValue = new Stmt\Trait_($this->semStack[$this->stackPos-(5-2)], ['stmts' => $this->semStack[$this->stackPos-(5-4)]], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule175() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = 0;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule176() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = Stmt\Class_::MODIFIER_ABSTRACT;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule177() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = Stmt\Class_::MODIFIER_FINAL;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule178() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = null;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule179() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(2-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule180() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule181() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(2-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule182() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule183() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(2-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule184() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule185() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule186() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule187() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(4-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule188() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule189() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(4-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule190() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule191() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = null;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule192() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(4-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule193() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule194() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule195() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = new Stmt\DeclareDeclare($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule196() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule197() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(4-3)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule198() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(4-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule199() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(5-3)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule200() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule201() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule202() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = new Stmt\Case_($this->semStack[$this->stackPos-(4-2)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule203() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = new Stmt\Case_(null, $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule204() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule205() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule206() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule207() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(4-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule208() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule209() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule210() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = new 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)]), $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule211() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule212() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:09:59 +01:00
|
|
|
protected function reduceRule213() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = new Stmt\ElseIf_($this->semStack[$this->stackPos-(4-2)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule214() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = null;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule215() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Else_(is_array($this->semStack[$this->stackPos-(2-2)]) ? $this->semStack[$this->stackPos-(2-2)] : array($this->semStack[$this->stackPos-(2-2)]), $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule216() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = null;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule217() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Else_($this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule218() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)], false);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule219() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(2-2)], true);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule220() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)], false);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule221() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule222() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule223() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule224() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule225() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Node\Param($this->semStack[$this->stackPos-(4-4)], null, $this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-2)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); $this->checkParam($this->semValue);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule226() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Node\Param($this->semStack[$this->stackPos-(6-4)], $this->semStack[$this->stackPos-(6-6)], $this->semStack[$this->stackPos-(6-1)], $this->semStack[$this->stackPos-(6-2)], $this->semStack[$this->stackPos-(6-3)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); $this->checkParam($this->semValue);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule227() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule228() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = ($this->useIdentifierNodes ? new Node\Identifier('array', $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes) : 'array');
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule229() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = ($this->useIdentifierNodes ? new Node\Identifier('callable', $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes) : 'callable');
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule230() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = null;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule231() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule232() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = null;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule233() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(2-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule234() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule235() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule236() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array(new Node\Arg($this->semStack[$this->stackPos-(3-2)], false, false, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes));
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule237() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule238() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule239() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Node\Arg($this->semStack[$this->stackPos-(1-1)], false, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule240() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Node\Arg($this->semStack[$this->stackPos-(2-2)], true, false, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule241() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Node\Arg($this->semStack[$this->stackPos-(2-2)], false, true, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule242() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule243() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule244() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule245() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule246() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule247() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule248() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule249() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\StaticVar($this->semStack[$this->stackPos-(1-1)], null, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule250() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\StaticVar($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule251() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule252() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule253() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\Property($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); $this->checkProperty($this->semValue, $this->stackPos-(3-1));
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule254() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\ClassConst($this->semStack[$this->stackPos-(3-2)], 0, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule255() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\ClassMethod($this->semStack[$this->stackPos-(9-4)], ['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)]], $this->startAttributeStack[$this->stackPos-(9-1)] + $this->endAttributes);
|
|
|
|
$this->checkClassMethod($this->semValue, $this->stackPos-(9-1));
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule256() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\TraitUse($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule257() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule258() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule259() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule260() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule261() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\TraitUseAdaptation\Precedence($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule262() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new 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)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule263() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], $this->semStack[$this->stackPos-(4-3)], null, $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule264() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], null, $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule265() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], null, $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule266() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule267() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule268() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array(null, $this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule269() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = null;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule270() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule271() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule272() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = 0;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule273() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = 0;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule274() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule275() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule276() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->checkModifier($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $this->stackPos-(2-2)); $this->semValue = $this->semStack[$this->stackPos-(2-1)] | $this->semStack[$this->stackPos-(2-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule277() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = Stmt\Class_::MODIFIER_PUBLIC;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule278() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = Stmt\Class_::MODIFIER_PROTECTED;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule279() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = Stmt\Class_::MODIFIER_PRIVATE;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule280() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = Stmt\Class_::MODIFIER_STATIC;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule281() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = Stmt\Class_::MODIFIER_ABSTRACT;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule282() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = Stmt\Class_::MODIFIER_FINAL;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule283() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule284() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule285() {
|
2016-12-23 12:39:27 +01:00
|
|
|
$this->semValue = ($this->useIdentifierNodes ? new Node\VarLikeIdentifier(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes) : substr($this->semStack[$this->stackPos-(1-1)], 1));
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule286() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Stmt\PropertyProperty($this->semStack[$this->stackPos-(1-1)], null, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule287() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Stmt\PropertyProperty($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule288() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule289() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule290() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule291() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule292() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule293() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Expr\Assign($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule294() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Assign($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule295() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Expr\AssignRef($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule296() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\AssignRef($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule297() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule298() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Clone_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule299() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\AssignOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule300() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\AssignOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule301() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\AssignOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule302() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\AssignOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule303() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\AssignOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule304() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\AssignOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule305() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\AssignOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule306() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\AssignOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule307() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\AssignOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule308() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\AssignOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule309() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\AssignOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule310() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\AssignOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule311() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\PostInc($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule312() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\PreInc($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule313() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\PostDec($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule314() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\PreDec($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule315() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule316() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule317() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule318() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule319() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule320() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule321() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule322() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule323() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule324() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule325() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule326() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule327() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule328() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule329() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule330() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule331() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule332() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\UnaryPlus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule333() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\UnaryMinus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule334() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BooleanNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule335() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BitwiseNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule336() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\Identical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule337() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule338() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\Equal($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule339() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule340() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\Spaceship($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule341() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule342() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule343() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\Greater($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule344() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule345() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Instanceof_($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule346() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule347() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule348() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Ternary($this->semStack[$this->stackPos-(5-1)], $this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule349() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Ternary($this->semStack[$this->stackPos-(4-1)], null, $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule350() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\BinaryOp\Coalesce($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule351() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Isset_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule352() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Empty_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule353() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule354() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE_ONCE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule355() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Eval_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule356() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule357() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE_ONCE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule358() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Cast\Int_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule359() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Cast\Double($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule360() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Cast\String_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule361() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Cast\Array_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule362() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Cast\Object_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule363() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Cast\Bool_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule364() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Cast\Unset_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule365() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$attrs = $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes;
|
|
|
|
$attrs['kind'] = strtolower($this->semStack[$this->stackPos-(2-1)]) === 'exit' ? Expr\Exit_::KIND_EXIT : Expr\Exit_::KIND_DIE;
|
|
|
|
$this->semValue = new Expr\Exit_($this->semStack[$this->stackPos-(2-2)], $attrs);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule366() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\ErrorSuppress($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule367() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-06-13 12:47:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule368() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-06-12 23:05:28 +02:00
|
|
|
}
|
|
|
|
|
2015-06-13 12:47:13 +02:00
|
|
|
protected function reduceRule369() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-06-12 23:05:28 +02:00
|
|
|
}
|
|
|
|
|
2015-06-13 12:47:13 +02:00
|
|
|
protected function reduceRule370() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\ShellExec($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-06-12 23:05:28 +02:00
|
|
|
}
|
|
|
|
|
2015-06-13 12:47:13 +02:00
|
|
|
protected function reduceRule371() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Print_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-12 23:05:28 +02:00
|
|
|
}
|
|
|
|
|
2015-06-13 12:47:13 +02:00
|
|
|
protected function reduceRule372() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Yield_(null, null, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-06-13 11:27:38 +02:00
|
|
|
}
|
|
|
|
|
2015-06-13 12:47:13 +02:00
|
|
|
protected function reduceRule373() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\YieldFrom($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-06-13 11:27:38 +02:00
|
|
|
}
|
|
|
|
|
2015-06-13 12:47:13 +02:00
|
|
|
protected function reduceRule374() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Closure(['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)]], $this->startAttributeStack[$this->stackPos-(10-1)] + $this->endAttributes);
|
2015-06-13 11:27:38 +02:00
|
|
|
}
|
|
|
|
|
2015-06-13 12:47:13 +02:00
|
|
|
protected function reduceRule375() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Closure(['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)]], $this->startAttributeStack[$this->stackPos-(11-1)] + $this->endAttributes);
|
2015-06-13 11:27:38 +02:00
|
|
|
}
|
|
|
|
|
2015-06-13 12:47:13 +02:00
|
|
|
protected function reduceRule376() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
|
2016-04-20 16:47:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule377() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
|
2016-12-22 21:13:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule378() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Yield_($this->semStack[$this->stackPos-(2-2)], null, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2016-12-23 00:09:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule379() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Yield_($this->semStack[$this->stackPos-(4-4)], $this->semStack[$this->stackPos-(4-2)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule380() {
|
2016-03-09 21:30:39 +01:00
|
|
|
$attrs = $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes; $attrs['kind'] = Expr\Array_::KIND_LONG;
|
|
|
|
$this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(4-3)], $attrs);
|
2015-08-20 16:42:49 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule381() {
|
2016-03-09 21:30:39 +01:00
|
|
|
$attrs = $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes; $attrs['kind'] = Expr\Array_::KIND_SHORT;
|
|
|
|
$this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(3-2)], $attrs);
|
2015-08-20 16:42:49 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule382() {
|
2016-02-09 13:30:39 +01:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-08-20 16:42:49 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule383() {
|
2016-04-02 15:22:24 +02:00
|
|
|
$attrs = $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes; $attrs['kind'] = ($this->semStack[$this->stackPos-(4-1)][0] === "'" || ($this->semStack[$this->stackPos-(4-1)][1] === "'" && ($this->semStack[$this->stackPos-(4-1)][0] === 'b' || $this->semStack[$this->stackPos-(4-1)][0] === 'B')) ? Scalar\String_::KIND_SINGLE_QUOTED : Scalar\String_::KIND_DOUBLE_QUOTED);
|
|
|
|
$this->semValue = new Expr\ArrayDimFetch(new Scalar\String_(Scalar\String_::parse($this->semStack[$this->stackPos-(4-1)]), $attrs), $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-08-20 16:42:49 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule384() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-12-07 12:12:00 +01:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule385() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-12-07 12:12:00 +01:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule386() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = array(new Stmt\Class_(null, ['type' => 0, 'extends' => $this->semStack[$this->stackPos-(7-3)], 'implements' => $this->semStack[$this->stackPos-(7-4)], 'stmts' => $this->semStack[$this->stackPos-(7-6)]], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(7-2)]);
|
2016-10-09 00:59:44 +02:00
|
|
|
$this->checkClass($this->semValue[0], -1);
|
2016-02-09 13:30:39 +01:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule387() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\New_($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2016-02-09 13:30:39 +01:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule388() {
|
2015-10-02 11:03:12 +02:00
|
|
|
list($class, $ctorArgs) = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = new Expr\New_($class, $ctorArgs, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2016-02-09 13:30:39 +01:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule389() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = array();
|
2016-02-09 13:30:39 +01:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule390() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(4-3)];
|
2016-02-09 13:30:39 +01:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule391() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2016-02-09 13:30:39 +01:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule392() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2016-02-09 13:30:39 +01:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule393() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Expr\ClosureUse($this->semStack[$this->stackPos-(2-2)], $this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2016-02-09 13:30:39 +01:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule394() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\FuncCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2016-02-09 13:30:39 +01:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule395() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\StaticCall($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule396() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\StaticCall($this->semStack[$this->stackPos-(6-1)], $this->semStack[$this->stackPos-(6-4)], $this->semStack[$this->stackPos-(6-6)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes);
|
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule397() {
|
2016-12-23 14:11:31 +01:00
|
|
|
$this->semValue = $this->fixupPhp5StaticPropCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule398() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\FuncCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule399() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule400() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Name($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule401() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule402() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Name($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule403() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Name\FullyQualified($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule404() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Name\Relative($this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule405() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule406() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule407() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule408() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule409() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule410() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule411() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule412() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule413() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule414() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule415() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = null;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule416() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = null;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule417() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule418() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule419() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = array(new Scalar\EncapsedStringPart(Scalar\String_::parseEscapeSequences($this->semStack[$this->stackPos-(1-1)], '`', false), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes));
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule420() {
|
2016-12-23 00:25:45 +01:00
|
|
|
foreach ($this->semStack[$this->stackPos-(1-1)] as $s) { if ($s instanceof Node\Scalar\EncapsedStringPart) { $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '`', false); } }; $this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule421() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = array();
|
2016-04-20 16:47:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule422() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2016-12-22 21:13:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule423() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->parseLNumber($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes, true);
|
2016-12-23 00:09:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule424() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Scalar\DNumber(Scalar\DNumber::parse($this->semStack[$this->stackPos-(1-1)]), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule425() {
|
2016-04-02 15:22:24 +02:00
|
|
|
$attrs = $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes; $attrs['kind'] = ($this->semStack[$this->stackPos-(1-1)][0] === "'" || ($this->semStack[$this->stackPos-(1-1)][1] === "'" && ($this->semStack[$this->stackPos-(1-1)][0] === 'b' || $this->semStack[$this->stackPos-(1-1)][0] === 'B')) ? Scalar\String_::KIND_SINGLE_QUOTED : Scalar\String_::KIND_DOUBLE_QUOTED);
|
|
|
|
$this->semValue = new Scalar\String_(Scalar\String_::parse($this->semStack[$this->stackPos-(1-1)], false), $attrs);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule426() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Scalar\MagicConst\Line($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule427() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Scalar\MagicConst\File($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule428() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Scalar\MagicConst\Dir($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule429() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Scalar\MagicConst\Class_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule430() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Scalar\MagicConst\Trait_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule431() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Scalar\MagicConst\Method($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule432() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Scalar\MagicConst\Function_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule433() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Scalar\MagicConst\Namespace_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule434() {
|
2016-04-02 15:22:24 +02:00
|
|
|
$attrs = $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes; $attrs['kind'] = strpos($this->semStack[$this->stackPos-(3-1)], "'") === false ? Scalar\String_::KIND_HEREDOC : Scalar\String_::KIND_NOWDOC; preg_match('/\A[bB]?<<<[ \t]*[\'"]?([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)[\'"]?(?:\r\n|\n|\r)\z/', $this->semStack[$this->stackPos-(3-1)], $matches); $attrs['docLabel'] = $matches[1];;
|
|
|
|
$this->semValue = new Scalar\String_(Scalar\String_::parseDocString($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-2)], false), $attrs);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule435() {
|
2016-04-02 15:22:24 +02:00
|
|
|
$attrs = $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes; $attrs['kind'] = strpos($this->semStack[$this->stackPos-(2-1)], "'") === false ? Scalar\String_::KIND_HEREDOC : Scalar\String_::KIND_NOWDOC; preg_match('/\A[bB]?<<<[ \t]*[\'"]?([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)[\'"]?(?:\r\n|\n|\r)\z/', $this->semStack[$this->stackPos-(2-1)], $matches); $attrs['docLabel'] = $matches[1];;
|
|
|
|
$this->semValue = new Scalar\String_('', $attrs);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule436() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule437() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\ClassConstFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule438() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\ConstFetch($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule439() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule440() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule441() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule442() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule443() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule444() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule445() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule446() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule447() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule448() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule449() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule450() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule451() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule452() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule453() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule454() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule455() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule456() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule457() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule458() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule459() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\UnaryPlus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule460() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\UnaryMinus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule461() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BooleanNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule462() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BitwiseNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule463() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\Identical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule464() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule465() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\Equal($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule466() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule467() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule468() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule469() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\Greater($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule470() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule471() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\Ternary($this->semStack[$this->stackPos-(5-1)], $this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule472() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\Ternary($this->semStack[$this->stackPos-(4-1)], null, $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule473() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule474() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule475() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\ConstFetch($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule476() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = new Expr\ClassConstFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule477() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule478() {
|
2015-10-02 11:03:12 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule479() {
|
2016-04-02 15:22:24 +02:00
|
|
|
$attrs = $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes; $attrs['kind'] = Scalar\String_::KIND_DOUBLE_QUOTED;
|
|
|
|
foreach ($this->semStack[$this->stackPos-(3-2)] as $s) { if ($s instanceof Node\Scalar\EncapsedStringPart) { $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '"', true); } }; $this->semValue = new Scalar\Encapsed($this->semStack[$this->stackPos-(3-2)], $attrs);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:25:45 +01:00
|
|
|
protected function reduceRule480() {
|
2016-04-02 15:22:24 +02:00
|
|
|
$attrs = $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes; $attrs['kind'] = strpos($this->semStack[$this->stackPos-(3-1)], "'") === false ? Scalar\String_::KIND_HEREDOC : Scalar\String_::KIND_NOWDOC; preg_match('/\A[bB]?<<<[ \t]*[\'"]?([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)[\'"]?(?:\r\n|\n|\r)\z/', $this->semStack[$this->stackPos-(3-1)], $matches); $attrs['docLabel'] = $matches[1];;
|
|
|
|
foreach ($this->semStack[$this->stackPos-(3-2)] as $s) { if ($s instanceof Node\Scalar\EncapsedStringPart) { $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, null, true); } } $s->value = preg_replace('~(\r\n|\n|\r)\z~', '', $s->value); if ('' === $s->value) array_pop($this->semStack[$this->stackPos-(3-2)]);; $this->semValue = new Scalar\Encapsed($this->semStack[$this->stackPos-(3-2)], $attrs);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule481() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule482() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(2-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule483() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule484() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule485() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule486() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule487() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(3-3)], $this->semStack[$this->stackPos-(3-1)], false, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule488() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule489() {
|
2016-04-20 16:47:10 +02:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule490() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule491() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule492() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule493() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(6-2)], $this->semStack[$this->stackPos-(6-5)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule494() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule495() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule496() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\MethodCall($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule497() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\FuncCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule498() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule499() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule500() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule501() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule502() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule503() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule504() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule505() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule506() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule507() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule508() {
|
2016-12-23 12:39:27 +01:00
|
|
|
$var = substr($this->semStack[$this->stackPos-(1-1)], 1); $this->semValue = \is_string($var) ? ($this->useIdentifierNodes ? new Node\VarLikeIdentifier($var, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes) : $var) : $var;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule509() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule510() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(6-1)], $this->semStack[$this->stackPos-(6-5)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule511() {
|
2016-12-22 21:13:42 +01:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule512() {
|
2016-12-23 00:09:59 +01:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule513() {
|
2016-12-23 00:22:30 +01:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule514() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule515() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule516() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule517() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = null;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule518() {
|
2016-12-23 00:22:30 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule519() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule520() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule521() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule522() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Error($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); $this->errorState = 2;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule523() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\List_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule524() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule525() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule526() {
|
2016-12-23 00:22:30 +01:00
|
|
|
$this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule527() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule528() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = null;
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule529() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = array();
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule530() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(2-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule531() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule532() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule533() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(3-3)], $this->semStack[$this->stackPos-(3-1)], false, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule534() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule535() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(4-4)], $this->semStack[$this->stackPos-(4-1)], true, $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule536() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(2-2)], null, true, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule537() {
|
2016-12-23 00:22:30 +01:00
|
|
|
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule538() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule539() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
|
2015-05-02 22:50:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule540() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = array($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]);
|
2015-12-03 22:55:07 +01:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule541() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Scalar\EncapsedStringPart($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-12-07 12:12:00 +01:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule542() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-12-07 12:12:00 +01:00
|
|
|
}
|
|
|
|
|
2016-02-09 13:30:39 +01:00
|
|
|
protected function reduceRule543() {
|
2016-12-23 14:11:31 +01:00
|
|
|
$this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2015-10-02 11:03:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule544() {
|
2016-12-23 14:11:31 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(1-1)];
|
2015-10-02 11:03:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule545() {
|
2016-12-23 14:11:31 +01:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
|
2016-04-20 16:47:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule546() {
|
2016-12-23 14:11:31 +01:00
|
|
|
$this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2016-07-25 17:03:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule547() {
|
2016-12-23 00:25:45 +01:00
|
|
|
$this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2016-10-08 23:58:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule548() {
|
2016-12-23 14:11:31 +01:00
|
|
|
$this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
|
2016-12-22 21:13:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule549() {
|
2016-12-23 14:11:31 +01:00
|
|
|
$this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(6-2)], $this->semStack[$this->stackPos-(6-4)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes);
|
2016-12-23 00:09:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule550() {
|
2016-12-23 14:11:31 +01:00
|
|
|
$this->semValue = $this->semStack[$this->stackPos-(3-2)];
|
2016-12-23 00:22:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule551() {
|
2016-12-23 14:11:31 +01:00
|
|
|
$this->semValue = new Scalar\String_($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
2016-12-23 00:25:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule552() {
|
2016-12-23 14:11:31 +01:00
|
|
|
$this->semValue = $this->parseNumString($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function reduceRule553() {
|
2015-05-02 22:50:11 +02:00
|
|
|
$this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
|
|
|
|
}
|
|
|
|
}
|