1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-04 10:18:09 +01:00
PHP-Parser/lib/PHPParser/Parser.php

2437 lines
109 KiB
PHP
Raw Normal View History

2011-04-18 19:02:30 +02:00
<?php
/* Prototype file of classed PHP parser.
* Written by Moriyoshi Koizumi, based on the work by Masato Bito.
* This file is PUBLIC DOMAIN.
*/
2011-06-05 18:40:04 +02:00
class PHPParser_Parser
2011-04-18 19:02:30 +02:00
{
const YYBADCH = 145;
const YYMAXLEX = 380;
const YYTERMS = 145;
2011-06-02 17:01:22 +02:00
const YYNONTERMS = 89;
2011-06-03 22:02:02 +02:00
const YYLAST = 948;
2011-06-02 17:01:22 +02:00
const YY2TBLSTATE = 337;
const YYGLAST = 412;
2011-06-03 22:02:02 +02:00
const YYSTATES = 755;
const YYNLSTATES = 536;
2011-04-18 19:02:30 +02:00
const YYINTERRTOK = 1;
const YYUNEXPECTED = 32767;
const YYDEFAULT = -32766;
// {{{ Tokens
const YYERRTOK = 256;
const T_INCLUDE = 257;
const T_INCLUDE_ONCE = 258;
const T_EVAL = 259;
const T_REQUIRE = 260;
const T_REQUIRE_ONCE = 261;
const T_LOGICAL_OR = 262;
const T_LOGICAL_XOR = 263;
const T_LOGICAL_AND = 264;
const T_PRINT = 265;
const T_PLUS_EQUAL = 266;
const T_MINUS_EQUAL = 267;
const T_MUL_EQUAL = 268;
const T_DIV_EQUAL = 269;
const T_CONCAT_EQUAL = 270;
const T_MOD_EQUAL = 271;
const T_AND_EQUAL = 272;
const T_OR_EQUAL = 273;
const T_XOR_EQUAL = 274;
const T_SL_EQUAL = 275;
const T_SR_EQUAL = 276;
const T_BOOLEAN_OR = 277;
const T_BOOLEAN_AND = 278;
const T_IS_EQUAL = 279;
const T_IS_NOT_EQUAL = 280;
const T_IS_IDENTICAL = 281;
const T_IS_NOT_IDENTICAL = 282;
const T_IS_SMALLER_OR_EQUAL = 283;
const T_IS_GREATER_OR_EQUAL = 284;
const T_SL = 285;
const T_SR = 286;
const T_INSTANCEOF = 287;
const T_INC = 288;
const T_DEC = 289;
const T_INT_CAST = 290;
const T_DOUBLE_CAST = 291;
const T_STRING_CAST = 292;
const T_ARRAY_CAST = 293;
const T_OBJECT_CAST = 294;
const T_BOOL_CAST = 295;
const T_UNSET_CAST = 296;
const T_NEW = 297;
const T_CLONE = 298;
const T_EXIT = 299;
const T_IF = 300;
const T_ELSEIF = 301;
const T_ELSE = 302;
const T_ENDIF = 303;
const T_LNUMBER = 304;
const T_DNUMBER = 305;
const T_STRING = 306;
const T_STRING_VARNAME = 307;
const T_VARIABLE = 308;
const T_NUM_STRING = 309;
const T_INLINE_HTML = 310;
const T_CHARACTER = 311;
const T_BAD_CHARACTER = 312;
const T_ENCAPSED_AND_WHITESPACE = 313;
const T_CONSTANT_ENCAPSED_STRING = 314;
const T_ECHO = 315;
const T_DO = 316;
const T_WHILE = 317;
const T_ENDWHILE = 318;
const T_FOR = 319;
const T_ENDFOR = 320;
const T_FOREACH = 321;
const T_ENDFOREACH = 322;
const T_DECLARE = 323;
const T_ENDDECLARE = 324;
const T_AS = 325;
const T_SWITCH = 326;
const T_ENDSWITCH = 327;
const T_CASE = 328;
const T_DEFAULT = 329;
const T_BREAK = 330;
const T_CONTINUE = 331;
const T_GOTO = 332;
const T_FUNCTION = 333;
const T_CONST = 334;
const T_RETURN = 335;
const T_TRY = 336;
const T_CATCH = 337;
const T_THROW = 338;
const T_USE = 339;
const T_GLOBAL = 340;
const T_STATIC = 341;
const T_ABSTRACT = 342;
const T_FINAL = 343;
const T_PRIVATE = 344;
const T_PROTECTED = 345;
const T_PUBLIC = 346;
const T_VAR = 347;
const T_UNSET = 348;
const T_ISSET = 349;
const T_EMPTY = 350;
const T_HALT_COMPILER = 351;
const T_CLASS = 352;
const T_INTERFACE = 353;
const T_EXTENDS = 354;
const T_IMPLEMENTS = 355;
const T_OBJECT_OPERATOR = 356;
const T_DOUBLE_ARROW = 357;
const T_LIST = 358;
const T_ARRAY = 359;
const T_CLASS_C = 360;
const T_METHOD_C = 361;
const T_FUNC_C = 362;
const T_LINE = 363;
const T_FILE = 364;
const T_COMMENT = 365;
const T_DOC_COMMENT = 366;
const T_OPEN_TAG = 367;
const T_OPEN_TAG_WITH_ECHO = 368;
const T_CLOSE_TAG = 369;
const T_WHITESPACE = 370;
const T_START_HEREDOC = 371;
const T_END_HEREDOC = 372;
const T_DOLLAR_OPEN_CURLY_BRACES = 373;
const T_CURLY_OPEN = 374;
const T_PAAMAYIM_NEKUDOTAYIM = 375;
const T_NAMESPACE = 376;
const T_NS_C = 377;
const T_DIR = 378;
const T_NS_SEPARATOR = 379;
// }}}
private static $yyterminals = 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_PLUS_EQUAL",
"T_MINUS_EQUAL",
"T_MUL_EQUAL",
"T_DIV_EQUAL",
"T_CONCAT_EQUAL",
"T_MOD_EQUAL",
"T_AND_EQUAL",
"T_OR_EQUAL",
"T_XOR_EQUAL",
"T_SL_EQUAL",
"T_SR_EQUAL",
"'?'",
"':'",
"T_BOOLEAN_OR",
"T_BOOLEAN_AND",
"'|'",
"'^'",
"'&'",
"T_IS_EQUAL",
"T_IS_NOT_EQUAL",
"T_IS_IDENTICAL",
"T_IS_NOT_IDENTICAL",
"'<'",
"T_IS_SMALLER_OR_EQUAL",
"'>'",
"T_IS_GREATER_OR_EQUAL",
"T_SL",
"T_SR",
"'+'",
"'-'",
"'.'",
"'*'",
"'/'",
"'%'",
"'!'",
"T_INSTANCEOF",
"'~'",
"T_INC",
"T_DEC",
"T_INT_CAST",
"T_DOUBLE_CAST",
"T_STRING_CAST",
"T_ARRAY_CAST",
"T_OBJECT_CAST",
"T_BOOL_CAST",
"T_UNSET_CAST",
"'@'",
"'['",
"T_NEW",
"T_CLONE",
"T_EXIT",
"T_IF",
"T_ELSEIF",
"T_ELSE",
"T_ENDIF",
"T_LNUMBER",
"T_DNUMBER",
"T_STRING",
"T_STRING_VARNAME",
"T_VARIABLE",
"T_NUM_STRING",
"T_INLINE_HTML",
"T_ENCAPSED_AND_WHITESPACE",
"T_CONSTANT_ENCAPSED_STRING",
"T_ECHO",
"T_DO",
"T_WHILE",
"T_ENDWHILE",
"T_FOR",
"T_ENDFOR",
"T_FOREACH",
"T_ENDFOREACH",
"T_DECLARE",
"T_ENDDECLARE",
"T_AS",
"T_SWITCH",
"T_ENDSWITCH",
"T_CASE",
"T_DEFAULT",
"T_BREAK",
"T_CONTINUE",
"T_GOTO",
"T_FUNCTION",
"T_CONST",
"T_RETURN",
"T_TRY",
"T_CATCH",
"T_THROW",
"T_USE",
"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_INTERFACE",
"T_EXTENDS",
"T_IMPLEMENTS",
"T_OBJECT_OPERATOR",
"T_DOUBLE_ARROW",
"T_LIST",
"T_ARRAY",
"T_CLASS_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",
"';'",
"'{'",
"'}'",
2011-06-03 22:02:02 +02:00
"'('",
"')'",
2011-04-18 19:02:30 +02:00
"'$'",
"'`'",
"']'",
"'\"'"
2011-04-18 19:02:30 +02:00
, "???"
);
private static $yytranslate = array(
0, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 47, 144, 145, 141, 46, 30, 145,
2011-06-03 22:02:02 +02:00
139, 140, 44, 41, 7, 42, 43, 45, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 25, 136,
2011-04-18 19:02:30 +02:00
35, 12, 37, 24, 59, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 60, 145, 143, 29, 145, 142, 145, 145, 145,
2011-04-18 19:02:30 +02:00
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
2011-06-03 22:02:02 +02:00
145, 145, 145, 137, 28, 138, 49, 145, 145, 145,
2011-04-18 19:02:30 +02:00
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
145, 145, 145, 145, 145, 145, 1, 2, 3, 4,
5, 6, 8, 9, 10, 11, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 26, 27, 31,
32, 33, 34, 36, 38, 39, 40, 48, 50, 51,
52, 53, 54, 55, 56, 57, 58, 61, 62, 63,
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
74, 145, 145, 75, 76, 77, 78, 79, 80, 81,
82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
122, 123, 124, 125, 126, 145, 145, 145, 145, 145,
145, 127, 128, 129, 130, 131, 132, 133, 134, 135
);
private static $yyaction = array(
2011-06-02 17:01:22 +02:00
56, 57, 366, 58, 59,-32766,-32766,-32766, 255, 60,
2011-06-03 22:02:02 +02:00
-32767,-32767,-32767,-32767, 99, 100, 101, 102, 103, 856,
849,-32766, 0,-32766,-32766, 43, 107, 108, 109, 110,
111, 112, 113, 114, 115, 116, 117,-32766,-32766, 61,
62,-32766,-32766,-32766,-32766, 63, 521, 64, 240, 241,
2011-06-02 17:01:22 +02:00
65, 66, 67, 68, 69, 70, 71, 72,-32766, 253,
2011-06-03 22:02:02 +02:00
73, 343, 367, 713, 715, 246, 801, 802, 368, 819,
856, 501, 582, 364, 803, 51, 26, 369, 122, 370,
630, 371, 484, 372,-32766, 486, 373, 209, 279, 284,
38, 39, 374, 346, 344, 40, 376, 344, 74, 247,
302, 345, 650, 377, 378, 492, 377, 378, 379, 380,
381, 856, 565, 604, 382, 565, 604, 382, 383, 384,
807, 808, 809, 804, 805, 259, 200, 83, 84, 85,
389, 810, 806, 338, 589, 514, 124, 75, 54, 279,
263, 856, 267, 42, 317, 86, 87, 88, 89, 90,
91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
2011-06-03 22:02:02 +02:00
101, 102, 103, 104, 105, 106, 55, 254, 682, 683,
684, 681, 680, 679, 541,-32766, 123,-32766,-32766,-32766,
279, 541, 252, 206, 856,-32766, 262, 442,-32766,-32766,
-32766, 631,-32766,-32766,-32766,-32766,-32766, 354, 860,-32766,
668, 81, 243,-32766,-32766,-32766, 771, 779,-32766,-32766,
279,-32766, 301,-32766, 779, 120,-32766, 33,-32766,-32766,
-32766,-32766, 541, 250, 265, 888,-32766, 890, 889,-32766,
-32766,-32766, 418,-32766, 669,-32766, 389,-32766, 477, 338,
-32766, 53, 282, 121,-32766,-32766,-32766,-32766,-32766,-32766,
-32766, 674,-32766, 279,-32766, 779, 52,-32766, 276, 405,
477, 45,-32766, 541, 233, 125, 856,-32766, 46, 279,
-32766,-32766,-32766, 674,-32766, 231,-32766, 415,-32766,-32766,
603,-32766, 101, 102, 103,-32766,-32766,-32766,-32766,-32766,
-32766,-32766, 856,-32766, 303,-32766, 779, 650,-32766, 522,
421, 207, 602,-32766, 541, 244, 462, 848,-32766, 355,
659,-32766,-32766,-32766, 879,-32766, -107,-32766, 119,-32766,
20, 268,-32766, 340, 215, 516,-32766,-32766,-32766,-32766,
-32766,-32766,-32766, 118,-32766, 279,-32766, 779, 879,-32766,
205, 550, 214, 359,-32766, 541, 245, 493, 494,-32766,
483, 27,-32766,-32766,-32766, 212,-32766, 131,-32766, 812,
-32766, 402, 204,-32766, 21, 671, 535,-32766,-32766,-32766,
-32766,-32766,-32766,-32766, 812,-32766, 283,-32766, 779, 232,
-32766, 132, 307, 823, 201,-32766, 541, 249, 551, 210,
-32766, 824, 211,-32766,-32766,-32766, 199,-32766, 593,-32766,
534,-32766, 547, 517,-32766, 505, 580, 128,-32766,-32766,
-32766,-32766,-32766,-32766,-32766, 526,-32766, 531,-32766, 779,
519,-32766, 530, 579, 600, 127,-32766, 541, 248, 254,
541,-32766, 509, 542,-32766,-32766,-32766, 884,-32766, 555,
-32766, 818,-32766, 879, 502,-32766, 557, 496, 490,-32766,
-32766,-32766,-32766,-32766,-32766,-32766, 459,-32766, 349,-32766,
779, 350,-32766, 398, 281, 363, 399,-32766, 541,-32766,
-32766,-32766,-32766, 410, 411,-32766,-32766,-32766, 423,-32766,
430,-32766, 432,-32766, 438,-32766,-32766,-32766,-32766,-32766,
-32766,-32766,-32766,-32766,-32766,-32766,-32766, 439,-32766, 280,
-32766, 779, 772,-32766, 773, -137, 401, 508,-32766, 541,
104, 105, 106,-32766, 254, 500,-32766,-32766,-32766, 498,
-32766, 491,-32766, 474,-32766, 449, 487,-32766, 413, 407,
464,-32766,-32766,-32766,-32766,-32766,-32766,-32766, 273,-32766,
606,-32766, 779, 448,-32766, 234, 472,-32766, 47,-32766,
541, 422, 605, 274,-32766, 339, 275,-32766,-32766,-32766,
266,-32766, 82,-32766, 264,-32766, 624, 213,-32766, 0,
0, 44,-32766,-32766,-32766,-32766,-32766,-32766,-32766, 794,
-32766, 208,-32766, 779, 0,-32766, 291, 811, 292, 404,
-32766, 541, 0, 0, -244,-32766, 293, 130,-32766,-32766,
-32766, 320,-32766, 463,-32766, 294,-32766, 321, 340,-32766,
78, 49, 883,-32766,-32766,-32766,-32766,-32766,-32766,-32766,
583,-32766, 574,-32766, 779, 576,-32766, 578, 591, 581,
50,-32766, 541, 616, 618, 568,-32766, 626, 625,-32766,
-32766,-32766, 620,-32766, 633,-32766, 570,-32766, 584, 592,
-32766, 525, 524, 77,-32766,-32766,-32766, 577,-32766,-32766,
-32766, 533,-32766, 515,-32766, 779, 518,-32766, 523, 527,
528, 129,-32766, 541, 623, 887, 885,-32766, 857, 855,
-32766,-32766,-32766, 853,-32766, 841,-32766, 792,-32766, 661,
861,-32766, 850, 851, 886,-32766,-32766,-32766, 573,-32766,
-32766,-32766, 76,-32766, 48,-32766, 779, 31,-32766, 41,
37, 36, 35,-32766, 541, 34, 32, 257,-32766, 30,
79,-32766,-32766,-32766, 80,-32766, 126,-32766, 133,-32766,
202, 203,-32766, 134, 348, 342,-32766,-32766,-32766,-32766,
-32766,-32766,-32766, 344,-32766, 277,-32766, 779,-32766,-32766,
-32766, 258, 377, 378,-32766, 198, 256, 801, 802, 242,
239, 565, 604, 382,-32766, 803,-32766,-32766,-32766,-32766,
-32766,-32767,-32767,-32767,-32767, 238, 230, 229, 29, 0,
575,-32766, 344, 375, 767, 749, 341, 450, 300, 344,
375, 377, 378, 866, 452, 300, 750, 795, 377, 378,
546, 604, 382, 753, 746, 511, 470, 546, 604, 382,
445, 807, 808, 809, 804, 805, 329, 304, 28, 278,
25, 19, 810, 806, 23, 549, 278, 344, 375, 791,
24, 22, 548, 300, 0, 817, 377, 378,-32766,-32766,
-32766, 776, 775, 344, 838, 546, 604, 382, 800,-32766,
-32766,-32766, 377, 378,-32766, 837,-32766,-32766,-32766,-32766,
-32766, 565, 604, 382, 278,-32766, 778,-32766,-32766,-32766,
-32766, 344, 840, 777, 344, 774, 766, 507, 344, 471,
377, 378, 356, 377, 378, 308, 601, 377, 378, 565,
604, 382, 565, 604, 382, 852, 565, 604, 382, 854,
344, 481, 512, 0, 0, 0, 0, 0, 0, 377,
378, 506, 0, 0, 672, 344, 0, 596, 565, 604,
382, 769, 344, 0, 377, 378, 0, 344, 0, 0,
0, 377, 378, 565, 604, 382, 377, 378, 0, 0,
565, 604, 382, 566, 0, 565, 604, 382
2011-04-18 19:02:30 +02:00
);
private static $yycheck = array(
2, 3, 4, 5, 6, 8, 9, 10, 61, 11,
2011-06-02 17:01:22 +02:00
35, 36, 37, 38, 39, 40, 41, 42, 43, 72,
2011-06-03 22:02:02 +02:00
72, 24, 0, 26, 27, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 8, 9, 41,
42, 8, 8, 9, 10, 47, 25, 49, 50, 51,
2011-04-18 19:02:30 +02:00
52, 53, 54, 55, 56, 57, 58, 59, 24, 61,
2011-06-03 22:02:02 +02:00
62, 63, 64, 50, 51, 7, 68, 69, 70, 71,
72, 7, 74, 7, 76, 77, 78, 79, 7, 81,
25, 83, 80, 85, 103, 86, 88, 7, 141, 141,
92, 93, 94, 95, 95, 97, 98, 95, 100, 30,
102, 103, 121, 104, 105, 7, 104, 105, 110, 111,
112, 72, 113, 114, 115, 113, 114, 115, 120, 121,
122, 123, 124, 125, 126, 127, 12, 8, 9, 10,
132, 133, 134, 135, 136, 137, 25, 139, 60, 141,
142, 72, 144, 24, 72, 26, 27, 28, 29, 30,
31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
2011-06-03 22:02:02 +02:00
41, 42, 43, 44, 45, 46, 60, 48, 103, 104,
105, 106, 107, 108, 70, 64, 137, 8, 9, 10,
141, 70, 30, 12, 72, 74, 7, 7, 77, 78,
79, 136, 81, 24, 83, 26, 85, 25, 70, 88,
136, 129, 130, 92, 93, 94, 140, 103, 97, 98,
141, 100, 7, 102, 103, 137, 64, 139, 8, 9,
10, 110, 70, 30, 118, 70, 74, 72, 73, 77,
78, 79, 120, 81, 136, 83, 132, 85, 96, 135,
88, 60, 60, 137, 92, 93, 94, 136, 137, 97,
98, 109, 100, 141, 102, 103, 60, 64, 7, 7,
96, 7, 110, 70, 30, 137, 72, 74, 7, 141,
77, 78, 79, 109, 81, 7, 83, 7, 85, 103,
138, 88, 41, 42, 43, 92, 93, 94, 136, 137,
97, 98, 72, 100, 7, 102, 103, 121, 64, 25,
118, 12, 138, 110, 70, 30, 75, 72, 74, 137,
72, 77, 78, 79, 75, 81, 140, 83, 137, 85,
140, 75, 88, 135, 12, 137, 92, 93, 94, 136,
137, 97, 98, 137, 100, 141, 102, 103, 75, 64,
12, 136, 12, 119, 110, 70, 30, 65, 66, 74,
65, 66, 77, 78, 79, 12, 81, 12, 83, 128,
85, 141, 12, 88, 140, 136, 137, 92, 93, 94,
136, 137, 97, 98, 128, 100, 141, 102, 103, 141,
64, 90, 91, 144, 12, 110, 70, 30, 136, 12,
74, 128, 12, 77, 78, 79, 12, 81, 25, 83,
25, 85, 136, 137, 88, 67, 136, 25, 92, 93,
94, 136, 137, 97, 98, 25, 100, 25, 102, 103,
25, 64, 25, 136, 30, 60, 110, 70, 30, 48,
70, 74, 70, 70, 77, 78, 79, 70, 81, 70,
83, 70, 85, 75, 70, 88, 70, 89, 70, 92,
93, 94, 136, 137, 97, 98, 70, 100, 70, 102,
103, 70, 64, 70, 75, 95, 70, 110, 70, 8,
9, 10, 74, 70, 70, 77, 78, 79, 70, 81,
70, 83, 70, 85, 70, 24, 88, 26, 27, 28,
92, 93, 94, 136, 137, 97, 98, 70, 100, 75,
102, 103, 72, 64, 72, 72, 72, 72, 110, 70,
44, 45, 46, 74, 48, 72, 77, 78, 79, 72,
81, 72, 83, 72, 85, 72, 89, 88, 87, 79,
99, 92, 93, 94, 136, 137, 97, 98, 116, 100,
114, 102, 103, 87, 64, 87, 101, 103, 119, 110,
70, 71, 114, 117, 74, 135, 116, 77, 78, 79,
118, 81, 137, 83, 118, 85, 138, 119, 88, -1,
-1, 119, 92, 93, 94, 136, 137, 97, 98, 140,
100, 119, 102, 103, -1, 64, 131, 128, 131, 135,
110, 70, -1, -1, 131, 74, 131, 137, 77, 78,
79, 131, 81, 131, 83, 131, 85, 131, 135, 88,
139, 136, 143, 92, 93, 94, 136, 137, 97, 98,
136, 100, 136, 102, 103, 136, 64, 136, 136, 136,
136, 110, 70, 136, 136, 136, 74, 136, 136, 77,
78, 79, 136, 81, 136, 83, 136, 85, 136, 136,
88, 136, 136, 139, 92, 93, 94, 136, 137, 97,
98, 137, 100, 137, 102, 103, 137, 64, 137, 137,
137, 137, 110, 70, 138, 138, 138, 74, 138, 138,
77, 78, 79, 138, 81, 138, 83, 138, 85, 138,
138, 88, 138, 138, 138, 92, 93, 94, 136, 137,
97, 98, 139, 100, 139, 102, 103, 139, 64, 139,
139, 139, 139, 110, 70, 139, 139, 139, 74, 139,
139, 77, 78, 79, 139, 81, 139, 83, 139, 85,
41, 42, 88, 139, 139, 139, 92, 93, 94, 136,
137, 97, 98, 95, 100, 139, 102, 103, 8, 9,
10, 139, 104, 105, 110, 139, 139, 68, 69, 139,
139, 113, 114, 115, 24, 76, 26, 27, 28, 29,
30, 31, 32, 33, 34, 139, 139, 139, 139, -1,
136, 137, 95, 96, 142, 140, 138, 140, 101, 95,
96, 104, 105, 140, 140, 101, 140, 140, 104, 105,
113, 114, 115, 140, 140, 140, 140, 113, 114, 115,
121, 122, 123, 124, 125, 126, 127, 140, 140, 132,
140, 140, 133, 134, 140, 138, 132, 95, 96, 143,
140, 140, 138, 101, -1, 140, 104, 105, 8, 9,
10, 140, 140, 95, 140, 113, 114, 115, 140, 8,
9, 10, 104, 105, 24, 140, 26, 27, 28, 29,
30, 113, 114, 115, 132, 24, 140, 26, 27, 28,
29, 95, 143, 140, 95, 140, 140, 140, 95, 140,
104, 105, 140, 104, 105, 140, 138, 104, 105, 113,
114, 115, 113, 114, 115, 143, 113, 114, 115, 143,
95, 143, 82, -1, -1, -1, -1, -1, -1, 104,
105, 84, -1, -1, 138, 95, -1, 138, 113, 114,
115, 138, 95, -1, 104, 105, -1, 95, -1, -1,
-1, 104, 105, 113, 114, 115, 104, 105, -1, -1,
113, 114, 115, 138, -1, 113, 114, 115
2011-04-18 19:02:30 +02:00
);
private static $yybase = array(
2011-06-03 22:02:02 +02:00
0, 687, 694, 732, 805, 648, 2, -1, 827, 748,
783, 820, 779, 776, 832, 832, 832, 832, 832, 21,
274, 390, 390, 392, 390, 395, -2, -2, -2, 275,
316, 316, 316, 316, 316, 316, 316, 316, 562, 644,
521, 439, 111, 234, 398, 357, 193, 152, 603, 603,
603, 603, 603, 603, 603, 603, 603, 603, 603, 603,
603, 603, 603, 603, 603, 603, 603, 603, 603, 603,
603, 603, 603, 603, 603, 603, 603, 603, 603, 603,
603, 480, 603, 603, 603, 603, 603, 603, 603, 603,
603, 603, 603, 603, 603, 603, 603, 603, 603, 603,
603, 603, 603, 603, 603, 603, 603, 603, 603, 603,
603, 603, 603, 603, 603, 603, 603, 603, 603, 603,
603, 603, 603, 603, 603, 603, 603, 603, 603, 603,
603, 603, 603, 603, 603, 55, 484, 486, 489, 491,
492, 664, 663, 657, 680, 681, 458, 677, 452, 538,
540, 382, 541, 545, 547, 549, 551, 552, 666, 429,
758, 554, 555, 678, 665, 119, 119, 119, 119, 119,
119, 119, 119, 119, 119, 119, 33, 29, 210, 210,
210, 210, 210, 210, 210, 210, 210, 210, 210, 210,
210, 210, 210, 34, 34, 169, -3, 461, 689, 689,
689, 689, 689, 689, 689, 689, 689, 689, 689, 689,
689, 689, 689, 689, 689, 689, 841, 830, 740, 740,
740, 740, 13, -25, -25, -25, -25, 142, 164, 112,
112, 112, 39, -53, 69, 433, 241, 241, 194, 194,
194, 194, 194, 194, 194, 194, 194, 194, 194, 194,
194, 194, 194, 194, 194, 194, 176, 176, 176, 246,
263, 239, -19, 424, 128, 128, 128, 389, 459, 368,
466, 466, 466, 444, 444, 444, 444, 444, 188, 425,
72, 72, 155, 534, 460, 457, 568, 78, 474, 476,
106, 410, 412, 414, 427, 224, 437, 536, 358, 428,
420, 420, 238, 238, 172, 285, 282, 55, 229, 252,
463, 181, 493, 404, 205, 287, 270, 182, 266, 196,
235, -52, 180, 647, 645, 656, 654, 537, 196, 231,
196, 196, 653, 691, 98, 64, 690, 66, 360, 360,
360, 431, 394, 570, 394, 434, 394, 576, 403, 422,
440, 254, 436, 394, 516, 515, 445, 431, 576, 394,
394, 80, 449, 394, 394, 22, 563, 514, 373, 471,
565, 581, 595, 585, 393, 396, 526, 438, 426, 636,
621, 620, 388, 638, 639, 454, 391, 455, 577, 473,
381, 446, 580, 465, 446, 470, 442, 450, 513, 384,
441, 114, 425, 642, 363, 408, 617, 587, 475, 71,
372, 578, 456, 369, 446, 453, 446, 529, 637, 446,
736, 367, 365, 350, 381, 381, 381, 573, 735, 261,
572, 756, 571, 752, 733, 726, 729, 715, 572, 571,
708, 686, 386, 742, 179, 616, 463, 472, 376, 328,
512, 251, 345, 446, 469, 446, 446, 531, 494, 171,
739, 451, 459, 371, 606, 446, 704, 251, 702, 701,
510, 532, 596, 533, 289, 462, 695, 378, 370, 446,
446, 556, 446, 589, 508, 684, 506, 502, 447, 443,
377, 380, 374, 594, 397, 338, 501, 432, 343, 448,
737, 435, 330, 362, 446, 499, 498, 524, 312, 612,
430, 375, 497, 745, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2011-06-03 22:02:02 +02:00
0, 0, 0, 0, 0, 0, 0, -2, -2, -2,
2011-04-18 19:02:30 +02:00
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
2011-06-03 22:02:02 +02:00
-2, -2, 0, 0, 0, -2, -2, -2, -2, -2,
2011-04-18 19:02:30 +02:00
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
2011-06-03 22:02:02 +02:00
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
-2, -2, -2, -2, -2, -2, -2, -2, -2, -2,
-2, 119, 119, 119, 119, 119, 119, 119, 119, 119,
119, 119, 119, 119, 119, 119, 119, 119, 119, 119,
119, 119, 119, 119, 119, 119, 119, 119, 119, 119,
2011-06-03 22:02:02 +02:00
119, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 119, 119, 119, 119, 119, 119, 119, 119,
119, 119, 119, 119, 119, 119, 119, 119, 119, 119,
2011-06-03 22:02:02 +02:00
119, 119, 119, 119, 104, 104, 104, 104, 104, 104,
104, 104, 104, 104, 104, 104, 104, 104, 104, 104,
104, 104, 119, 119, 119, 119, 119, 119, 446, 466,
466, 466, 466, 65, 65, 104, 104, 104, 104, 104,
104, 65, 466, 466, 104, 104, 104, 104, 104, 104,
104, 104, 104, 104, 104, 104, 104, 104, 104, 104,
104, 104, 104, 104, 104, 72, 72, 72, 104, 72,
220, 220, 220, 72, 72, 72, 0, 0, 0, 104,
104, 104, 104, 104, 360, 220, 0, 0, 0, 220,
220, 196, 181, 0, 196, 196, 0, 235, -52, 235,
-52, 446, 291, 291, 291, 291, 360, 360, 0, 0,
0, 0, 0, 0, 0, 0, 580, 0, 71, 617,
0, 0, 0, 0, 0, 0, 0, 0, 0, 58,
58, 446, 268, 446, 0, 0, 0, 0, 268, 446,
0, 0, 446
2011-04-18 19:02:30 +02:00
);
private static $yydefault = array(
3,32767,32767, 1,32767,32767,32767,32767,32767,32767,
2011-06-02 17:01:22 +02:00
32767,32767,32767,32767, 100, 93, 105, 92, 101,32767,
32767,32767,32767,32767,32767,32767,32767,32767,32767, 332,
116, 116, 116, 116, 116, 116, 116, 116,32767,32767,
32767,32767,32767,32767,32767, 292,32767,32767, 157, 157,
157,32767, 322, 322, 322, 322,32767,32767,32767,32767,
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
2011-04-18 19:02:30 +02:00
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
2011-06-02 17:01:22 +02:00
32767,32767,32767,32767,32767,32767,32767,32767, 337,32767,
32767,32767,32767,32767,32767,32767,32767,32767,32767, 335,
32767,32767,32767,32767,32767, 215, 216, 218, 219, 156,
117, 323, 155, 336, 119, 334, 183, 185, 232, 184,
161, 166, 167, 168, 169, 170, 171, 172, 173, 174,
175, 176, 160, 212, 211, 181, 182, 186, 289,32767,
32767,32767,32767,32767,32767,32767,32767,32767,32767, 292,
32767,32767,32767,32767,32767,32767, 188, 187, 203, 204,
201, 202, 159, 205, 206, 207, 208, 139, 139, 331,
331, 331,32767,32767,32767, 140, 195, 196,32767,32767,
2011-04-18 19:02:30 +02:00
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
2011-06-02 17:01:22 +02:00
32767,32767,32767, 252, 252, 252, 112, 112, 112,32767,
32767,32767, 112, 260,32767,32767,32767,32767,32767, 262,
190, 191, 189,32767,32767,32767,32767,32767,32767,32767,
261,32767,32767,32767,32767, 306, 311, 300, 306, 306,
250,32767,32767,32767,32767,32767,32767,32767,32767,32767,
32767,32767,32767,32767,32767, 102, 104,32767,32767,32767,
285, 311,32767,32767,32767,32767,32767, 346,32767, 307,
32767,32767,32767,32767,32767,32767,32767,32767, 306,32767,
309, 310,32767,32767,32767,32767,32767,32767,32767,32767,
32767,32767, 63, 257, 63, 243, 63, 263,32767, 73,
71, 291, 75, 63, 91, 91, 234, 54, 263, 63,
63, 291,32767, 63, 63,32767,32767,32767, 5,32767,
2011-04-18 19:02:30 +02:00
32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
2011-06-03 22:02:02 +02:00
32767,32767,32767,32767,32767, 4,32767,32767, 308,32767,
199, 178, 244,32767, 180, 248, 251,32767,32767,32767,
18, 128,32767,32767,32767,32767,32767,32767,32767, 158,
32767,32767, 20,32767, 124,32767, 61,32767,32767, 329,
32767,32767, 283,32767, 192, 193, 194, 303,32767, 115,
355,32767, 356,32767,32767,32767,32767,32767,32767,32767,
32767,32767,32767,32767, 106,32767, 278,32767,32767, 126,
32767, 74,32767, 341,32767, 162, 118,32767,32767,32767,
32767,32767,32767,32767,32767, 62,32767, 76,32767,32767,
32767,32767,32767,32767, 108, 296,32767,32767,32767, 340,
339,32767, 120,32767,32767,32767,32767,32767,32767,32767,
32767, 151,32767,32767,32767,32767,32767,32767, 110, 294,
32767,32767,32767,32767, 338,32767,32767,32767, 149,32767,
32767,32767,32767,32767, 25, 25, 3, 3, 131, 25,
98, 25, 25, 131, 91, 91, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25
2011-04-18 19:02:30 +02:00
);
private static $yygoto = array(
2011-06-02 17:01:22 +02:00
148, 170, 170, 170, 170, 170, 170, 170, 170, 137,
138, 139, 143, 151, 180, 173, 159, 174, 175, 169,
169, 169, 169, 171, 171, 171, 171, 165, 166, 167,
2011-06-03 22:02:02 +02:00
168, 178, 733, 734, 390, 736, 756, 757, 758, 759,
760, 761, 762, 764, 701, 140, 141, 142, 144, 145,
2011-06-02 17:01:22 +02:00
146, 147, 149, 150, 176, 177, 179, 195, 196, 197,
216, 217, 218, 219, 220, 221, 223, 224, 225, 226,
2011-06-03 22:02:02 +02:00
236, 237, 270, 271, 272, 424, 425, 426, 181, 182,
2011-06-02 17:01:22 +02:00
183, 184, 185, 186, 187, 188, 189, 190, 191, 152,
153, 154, 155, 172, 156, 193, 157, 158, 160, 194,
2011-06-03 22:02:02 +02:00
161, 162, 192, 135, 163, 164, 446, 446, 446, 446,
446, 446, 446, 446, 446, 446, 446, 446, 446, 446,
446, 446, 446, 446, 434, 435, 437, 440, 466, 468,
469, 269, 545, 545, 545, 261, 312, 392, 392, 392,
392, 392, 392, 458, 485, 318, 392, 392, 392, 392,
392, 392, 392, 392, 392, 392, 392, 392, 392, 392,
392, 780, 780, 780, 649, 649, 649, 400, 400, 332,
649, 544, 544, 544, 433, 436, 441, 396, 396, 396,
863, 613, 613, 608, 614, 489, 447, 447, 447, 447,
447, 447, 447, 447, 447, 447, 447, 447, 447, 447,
447, 447, 447, 447, 297, 783, 412, 782, 311, 311,
311, 678, 844, 844, 844, 745, 358, 393, 393, 393,
393, 393, 393, 862, 862, 862, 393, 393, 393, 393,
2011-06-02 17:01:22 +02:00
393, 393, 393, 393, 393, 393, 393, 393, 393, 393,
2011-06-03 22:02:02 +02:00
393, 395, 395, 395, 288, 288, 288, 288, 288, 288,
586, 324, 587, 288, 288, 288, 288, 288, 288, 288,
2011-06-02 17:01:22 +02:00
288, 288, 288, 288, 288, 288, 288, 288, 289, 289,
2011-06-03 22:02:02 +02:00
289, 5, 360, 460, 513, 14, 467, 6, 7, 328,
2011-06-02 17:01:22 +02:00
328, 328, 8, 9, 10, 15, 16, 11, 17, 12,
2011-06-03 22:02:02 +02:00
18, 13, 790, 789, 319, 1, 2, 552, 330, 331,
419, 419, 419, 414, 455, 295, 657, 595, 529, 416,
416, 391, 394, 325, 327, 453, 456, 465, 333, 479,
480, 482, 336, 504, 813, 813, 813, 813, 813, 813,
813, 813, 813, 813, 813, 813, 813, 813, 813, 813,
813, 813, 559, 665, 621, 815, 816, 558, 663, 622,
645, 831, 499, 690, 688, 647, 829, 689, 686, 543,
543, 543, 699, 228, 0, 0, 826, 0, 0, 0,
0, 0, 0, 298, 299, 0, 0, 632, 619, 617,
617, 615, 617, 520, 397, 639, 635, 313, 0, 406,
878, 878, 0, 0, 0, 0, 461, 0, 881, 878,
0, 0, 251, 488, 0, 0, 503, 510, 0, 0,
881, 881
2011-04-18 19:02:30 +02:00
);
private static $yygcheck = array(
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
2011-06-02 17:01:22 +02:00
15, 15, 15, 15, 15, 15, 35, 35, 35, 35,
35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
35, 35, 35, 35, 47, 47, 47, 47, 47, 47,
2011-06-03 22:02:02 +02:00
47, 77, 8, 8, 8, 77, 26, 35, 35, 35,
35, 35, 35, 21, 21, 4, 35, 35, 35, 35,
2011-06-02 17:01:22 +02:00
35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
2011-06-03 22:02:02 +02:00
35, 35, 35, 35, 35, 35, 35, 4, 4, 58,
2011-06-02 17:01:22 +02:00
35, 7, 7, 7, 76, 76, 76, 74, 74, 74,
2011-06-03 22:02:02 +02:00
85, 35, 35, 35, 35, 35, 68, 68, 68, 68,
2011-06-02 17:01:22 +02:00
68, 68, 68, 68, 68, 68, 68, 68, 68, 68,
2011-06-03 22:02:02 +02:00
68, 68, 68, 68, 43, 4, 4, 4, 70, 70,
70, 57, 71, 71, 71, 59, 59, 68, 68, 68,
2011-06-02 17:01:22 +02:00
68, 68, 68, 71, 71, 71, 68, 68, 68, 68,
68, 68, 68, 68, 68, 68, 68, 68, 68, 68,
68, 68, 68, 68, 69, 69, 69, 69, 69, 69,
29, 27, 29, 69, 69, 69, 69, 69, 69, 69,
2011-04-18 19:02:30 +02:00
69, 69, 69, 69, 69, 69, 69, 69, 69, 69,
2011-06-02 17:01:22 +02:00
69, 13, 46, 36, 36, 13, 42, 13, 13, 69,
69, 69, 13, 13, 13, 13, 13, 13, 13, 13,
13, 13, 75, 75, 69, 2, 2, 11, 69, 69,
2011-06-03 22:02:02 +02:00
28, 28, 28, 28, 28, 28, 49, 34, 44, 28,
2011-06-02 17:01:22 +02:00
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
28, 28, 28, 28, 78, 78, 78, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
78, 78, 12, 12, 12, 12, 12, 12, 12, 12,
12, 12, 12, 12, 12, 12, 12, 12, 12, 6,
2011-06-03 22:02:02 +02:00
6, 6, 60, 40, -1, -1, 82, -1, -1, -1,
-1, -1, -1, 43, 43, -1, -1, 6, 6, 6,
2011-06-02 17:01:22 +02:00
6, 6, 6, 6, 6, 6, 6, 30, -1, 30,
87, 87, -1, -1, -1, -1, 30, -1, 87, 87,
-1, -1, 30, 30, -1, -1, 30, 30, -1, -1,
87, 87
2011-04-18 19:02:30 +02:00
);
private static $yygbase = array(
2011-06-03 22:02:02 +02:00
0, 0, -221, 0, -133, 0, 358, 170, 131, 0,
0, -4, 143, -244, 0, -29, 0, 0, 0, 0,
0, 94, 0, 0, 0, 0, 85, 12, 71, 228,
43, 0, 0, 0, -50, -92, 16, 0, 0, 0,
-160, 0, 2, -151, 1, 0, 10, 93, 0, 3,
0, 0, 0, 0, 0, 0, 0, -24, -61, -39,
4, 0, 0, 0, 0, 0, 0, 0, -12, 15,
-45, -41, 0, 0, -76, 27, 121, -132, 126, 0,
0, 0, 5, 0, 0, -51, 0, 130, 0
2011-04-18 19:02:30 +02:00
);
private static $yygdefault = array(
2011-06-03 22:02:02 +02:00
-32768, 365, 3, 538, 781, 385, 562, 563, 564, 314,
309, 553, 475, 4, 560, 136, 305, 567, 306, 495,
569, 408, 571, 572, 315, 316, 409, 323, 222, 585,
497, 322, 588, 357, 594, 310, 443, 386, 352, 457,
227, 417, 451, 296, 532, 444, 353, 428, 429, 658,
666, 362, 335, 334, 478, 670, 235, 677, 326, 347,
700, 763, 765, 420, 403, 473, 337, 835, 387, 285,
286, 388, 785, 290, 834, 427, 431, 260, 822, 476,
820, 361, 869, 833, 287, 864, 351, 880, 454
2011-04-18 19:02:30 +02:00
);
private static $yylhs = array(
0, 1, 2, 2, 4, 5, 5, 3, 3, 3,
3, 3, 3, 3, 3, 3, 9, 9, 11, 11,
11, 11, 10, 10, 13, 13, 14, 14, 14, 14,
6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
2011-06-02 17:01:22 +02:00
6, 6, 6, 6, 6, 6, 6, 6, 33, 33,
34, 27, 27, 30, 30, 7, 8, 8, 37, 37,
37, 38, 38, 41, 41, 39, 39, 42, 42, 22,
22, 29, 29, 32, 32, 31, 31, 23, 23, 23,
23, 43, 43, 43, 44, 44, 20, 20, 16, 16,
18, 18, 17, 17, 19, 19, 36, 36, 45, 45,
45, 45, 46, 46, 46, 47, 47, 48, 48, 48,
48, 24, 24, 49, 49, 49, 25, 25, 25, 25,
40, 40, 50, 50, 50, 55, 55, 51, 51, 54,
54, 56, 56, 57, 57, 57, 57, 57, 57, 52,
52, 52, 52, 53, 53, 26, 26, 21, 21, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
15, 15, 15, 15, 65, 65, 66, 66, 67, 67,
67, 67, 67, 68, 68, 35, 35, 35, 59, 59,
72, 72, 73, 73, 73, 73, 73, 61, 61, 61,
64, 64, 64, 60, 60, 78, 78, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 12, 12, 12,
12, 12, 12, 62, 62, 62, 62, 62, 62, 79,
79, 82, 82, 81, 81, 81, 81, 28, 28, 28,
83, 83, 83, 84, 84, 84, 71, 71, 74, 74,
74, 74, 70, 70, 70, 70, 70, 70, 69, 69,
69, 69, 76, 76, 75, 75, 75, 58, 58, 85,
85, 85, 63, 63, 86, 86, 86, 86, 86, 86,
86, 86, 77, 77, 77, 77, 87, 87, 87, 87,
87, 87, 88, 88, 88, 80, 80
2011-04-18 19:02:30 +02:00
);
private static $yylen = array(
1, 1, 2, 0, 1, 1, 3, 1, 1, 1,
2011-06-03 22:02:02 +02:00
1, 3, 5, 4, 3, 2, 3, 1, 1, 3,
2, 4, 5, 4, 2, 0, 1, 1, 1, 1,
2011-04-18 19:02:30 +02:00
3, 7, 10, 5, 7, 9, 5, 2, 3, 2,
2011-06-02 17:01:22 +02:00
3, 2, 3, 3, 3, 3, 1, 2, 5, 7,
8, 10, 5, 1, 5, 3, 3, 2, 1, 2,
8, 1, 3, 0, 1, 9, 7, 6, 1, 2,
2, 0, 2, 0, 2, 0, 2, 1, 3, 1,
4, 1, 4, 1, 4, 3, 5, 3, 4, 4,
5, 0, 5, 4, 1, 1, 1, 4, 0, 6,
0, 7, 0, 2, 0, 3, 1, 0, 3, 5,
5, 7, 0, 1, 1, 1, 0, 1, 2, 3,
4, 3, 1, 1, 2, 4, 3, 5, 1, 3,
2, 0, 3, 2, 8, 1, 3, 1, 1, 0,
1, 1, 2, 1, 1, 1, 1, 1, 1, 3,
5, 1, 3, 5, 4, 3, 1, 0, 1, 1,
6, 3, 4, 6, 3, 2, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 2, 2, 2,
2, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 2, 2, 2,
2, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 5, 4, 4, 4, 2, 2, 4, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 1,
4, 3, 2, 9, 0, 4, 4, 2, 4, 6,
6, 4, 4, 1, 1, 1, 3, 2, 1, 1,
1, 1, 0, 3, 3, 4, 4, 0, 2, 3,
0, 1, 1, 0, 3, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 3, 2, 1, 1, 2,
2, 4, 3, 1, 1, 1, 1, 3, 3, 0,
2, 0, 1, 5, 3, 3, 1, 1, 1, 1,
1, 4, 6, 3, 4, 4, 1, 2, 1, 4,
4, 1, 3, 3, 6, 6, 4, 4, 4, 4,
1, 4, 0, 1, 1, 3, 1, 3, 1, 1,
4, 0, 0, 2, 5, 3, 3, 1, 6, 4,
4, 2, 2, 2, 1, 2, 1, 4, 3, 3,
6, 3, 1, 1, 1, 3, 3
2011-04-18 19:02:30 +02:00
);
protected $yyval;
protected $yyastk;
protected $yysp;
protected $yyaccept;
protected $lexer;
protected $line;
2011-04-18 19:02:30 +02:00
/**
* Parses PHP code into a node tree.
*
* @param PHPParser_Lexer $lexer A lexer
*
* @return array Array of statements
2011-04-18 19:02:30 +02:00
*/
public function parse(PHPParser_Lexer $lexer) {
$this->lexer = $lexer;
2011-04-18 19:02:30 +02:00
$this->yyastk = array();
$yysstk = array();
$this->yysp = 0;
$yystate = 0;
$yychar = -1;
$yysstk[$this->yysp] = 0;
for (;;) {
if (self::$yybase[$yystate] == 0) {
$yyn = self::$yydefault[$yystate];
} else {
if ($yychar < 0) {
if (($yychar = $lexer->lex($yylval, $this->line)) < 0)
2011-04-18 19:02:30 +02:00
$yychar = 0;
$yychar = $yychar < self::YYMAXLEX ?
self::$yytranslate[$yychar] : self::YYBADCH;
}
if ((($yyn = self::$yybase[$yystate] + $yychar) >= 0
&& $yyn < self::YYLAST && self::$yycheck[$yyn] == $yychar
|| ($yystate < self::YY2TBLSTATE
&& ($yyn = self::$yybase[$yystate + self::YYNLSTATES]
+ $yychar) >= 0
&& $yyn < self::YYLAST
&& self::$yycheck[$yyn] == $yychar))
&& ($yyn = self::$yyaction[$yyn]) != self::YYDEFAULT) {
/*
* >= YYNLSTATE: shift and reduce
* > 0: shift
* = 0: accept
* < 0: reduce
* = -YYUNEXPECTED: error
*/
if ($yyn > 0) {
/* shift */
++$this->yysp;
2011-04-18 19:02:30 +02:00
$yysstk[$this->yysp] = $yystate = $yyn;
$this->yyastk[$this->yysp] = $yylval;
$yychar = -1;
if ($yyn < self::YYNLSTATES)
continue;
/* $yyn >= YYNLSTATES means shift-and-reduce */
$yyn -= self::YYNLSTATES;
} else {
$yyn = -$yyn;
}
} else {
$yyn = self::$yydefault[$yystate];
}
}
for (;;) {
/* reduce/error */
2011-04-18 19:02:30 +02:00
if ($yyn == 0) {
/* accept */
return $this->yyval;
2011-04-18 19:02:30 +02:00
} elseif ($yyn != self::YYUNEXPECTED) {
/* reduce */
try {
$this->{'yyn' . $yyn}();
} catch (PHPParser_Error $e) {
$e->setRawLine($this->line);
throw $e;
}
/* Goto - shift nonterminal */
$this->yysp -= self::$yylen[$yyn];
$yyn = self::$yylhs[$yyn];
if (($yyp = self::$yygbase[$yyn] + $yysstk[$this->yysp]) >= 0
&& $yyp < self::YYGLAST
&& self::$yygcheck[$yyp] == $yyn) {
$yystate = self::$yygoto[$yyp];
2011-04-18 19:02:30 +02:00
} else {
$yystate = self::$yygdefault[$yyn];
}
2011-04-18 19:02:30 +02:00
++$this->yysp;
2011-04-18 19:02:30 +02:00
$yysstk[$this->yysp] = $yystate;
$this->yyastk[$this->yysp] = $this->yyval;
2011-04-18 19:02:30 +02:00
} else {
/* error */
throw new PHPParser_Error(
'Unexpected token ' . self::$yyterminals[$yychar],
$this->line
);
2011-04-18 19:02:30 +02:00
}
if ($yystate < self::YYNLSTATES)
break;
/* >= YYNLSTATES means shift-and-reduce */
$yyn = $yystate - self::YYNLSTATES;
}
}
}
private function yyn0() {
$this->yyval = $this->yyastk[$this->yysp];
}
2011-04-18 19:02:30 +02:00
private function yyn1() {
$this->yyval = PHPParser_Node_Stmt_Namespace::postprocess($this->yyastk[$this->yysp-(1-1)]);
2011-04-18 19:02:30 +02:00
}
private function yyn2() {
if (is_array($this->yyastk[$this->yysp-(2-2)])) { $this->yyval = array_merge($this->yyastk[$this->yysp-(2-1)], $this->yyastk[$this->yysp-(2-2)]); } else { $this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(2-1)]; };
2011-04-18 19:02:30 +02:00
}
private function yyn3() {
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
private function yyn4() {
$this->yyval = new PHPParser_Node_Name(array('parts' => $this->yyastk[$this->yysp-(1-1)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn5() {
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
2011-04-18 19:02:30 +02:00
}
private function yyn6() {
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn7() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn8() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn9() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn10() {
$this->yyval = new PHPParser_Node_Stmt_HaltCompiler(array('remaining' => $this->lexer->handleHaltCompiler()), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn11() {
$this->yyval = new PHPParser_Node_Stmt_Namespace(array('name' => $this->yyastk[$this->yysp-(3-2)], 'stmts' => null), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn12() {
$this->yyval = new PHPParser_Node_Stmt_Namespace(array('name' => $this->yyastk[$this->yysp-(5-2)], 'stmts' => $this->yyastk[$this->yysp-(5-4)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn13() {
$this->yyval = new PHPParser_Node_Stmt_Namespace(array('name' => null, 'stmts' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn14() {
$this->yyval = new PHPParser_Node_Stmt_Use(array('uses' => $this->yyastk[$this->yysp-(3-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn15() {
$this->yyval = new PHPParser_Node_Stmt_Const(array('consts' => $this->yyastk[$this->yysp-(2-1)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn16() {
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn17() {
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
2011-04-18 19:02:30 +02:00
}
private function yyn18() {
$this->yyval = new PHPParser_Node_Stmt_UseUse(array('ns' => $this->yyastk[$this->yysp-(1-1)], 'alias' => null), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn19() {
$this->yyval = new PHPParser_Node_Stmt_UseUse(array('ns' => $this->yyastk[$this->yysp-(3-1)], 'alias' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn20() {
$this->yyval = new PHPParser_Node_Stmt_UseUse(array('ns' => $this->yyastk[$this->yysp-(2-2)], 'alias' => null), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn21() {
$this->yyval = new PHPParser_Node_Stmt_UseUse(array('ns' => $this->yyastk[$this->yysp-(4-2)], 'alias' => $this->yyastk[$this->yysp-(4-4)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn22() {
$this->yyastk[$this->yysp-(5-1)][] = new PHPParser_Node_Stmt_ConstConst(array('name' => $this->yyastk[$this->yysp-(5-3)], 'value' => $this->yyastk[$this->yysp-(5-5)]), $this->line); $this->yyval = $this->yyastk[$this->yysp-(5-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn23() {
$this->yyval = array(new PHPParser_Node_Stmt_ConstConst(array('name' => $this->yyastk[$this->yysp-(4-2)], 'value' => $this->yyastk[$this->yysp-(4-4)]), $this->line));
2011-04-18 19:02:30 +02:00
}
private function yyn24() {
if (is_array($this->yyastk[$this->yysp-(2-2)])) { $this->yyval = array_merge($this->yyastk[$this->yysp-(2-1)], $this->yyastk[$this->yysp-(2-2)]); } else { $this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(2-1)]; };
2011-04-18 19:02:30 +02:00
}
private function yyn25() {
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
private function yyn26() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn27() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn28() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn29() {
throw new PHPParser_Error('__halt_compiler() can only be used from the outermost scope');
2011-04-18 19:02:30 +02:00
}
private function yyn30() {
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
2011-04-18 19:02:30 +02:00
}
private function yyn31() {
$this->yyval = new PHPParser_Node_Stmt_If(array('cond' => $this->yyastk[$this->yysp-(7-3)], 'stmts' => is_array($this->yyastk[$this->yysp-(7-5)]) ? $this->yyastk[$this->yysp-(7-5)] : array($this->yyastk[$this->yysp-(7-5)]), 'elseifList' => $this->yyastk[$this->yysp-(7-6)], 'else' => $this->yyastk[$this->yysp-(7-7)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn32() {
$this->yyval = new PHPParser_Node_Stmt_If(array('cond' => $this->yyastk[$this->yysp-(10-3)], 'stmts' => $this->yyastk[$this->yysp-(10-6)], 'elseifList' => $this->yyastk[$this->yysp-(10-7)], 'else' => $this->yyastk[$this->yysp-(10-8)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn33() {
$this->yyval = new PHPParser_Node_Stmt_While(array('cond' => $this->yyastk[$this->yysp-(5-3)], 'stmts' => is_array($this->yyastk[$this->yysp-(5-5)]) ? $this->yyastk[$this->yysp-(5-5)] : array($this->yyastk[$this->yysp-(5-5)])), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn34() {
$this->yyval = new PHPParser_Node_Stmt_Do(array('stmts' => is_array($this->yyastk[$this->yysp-(7-2)]) ? $this->yyastk[$this->yysp-(7-2)] : array($this->yyastk[$this->yysp-(7-2)]), 'cond' => $this->yyastk[$this->yysp-(7-5)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn35() {
$this->yyval = new PHPParser_Node_Stmt_For(array('init' => $this->yyastk[$this->yysp-(9-3)], 'cond' => $this->yyastk[$this->yysp-(9-5)], 'loop' => $this->yyastk[$this->yysp-(9-7)], 'stmts' => is_array($this->yyastk[$this->yysp-(9-9)]) ? $this->yyastk[$this->yysp-(9-9)] : array($this->yyastk[$this->yysp-(9-9)])), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn36() {
$this->yyval = new PHPParser_Node_Stmt_Switch(array('cond' => $this->yyastk[$this->yysp-(5-3)], 'caseList' => $this->yyastk[$this->yysp-(5-5)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn37() {
$this->yyval = new PHPParser_Node_Stmt_Break(array('num' => null), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn38() {
$this->yyval = new PHPParser_Node_Stmt_Break(array('num' => $this->yyastk[$this->yysp-(3-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn39() {
$this->yyval = new PHPParser_Node_Stmt_Continue(array('num' => null), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn40() {
$this->yyval = new PHPParser_Node_Stmt_Continue(array('num' => $this->yyastk[$this->yysp-(3-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn41() {
$this->yyval = new PHPParser_Node_Stmt_Return(array('expr' => null), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn42() {
$this->yyval = new PHPParser_Node_Stmt_Return(array('expr' => $this->yyastk[$this->yysp-(3-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn43() {
$this->yyval = new PHPParser_Node_Stmt_Global(array('vars' => $this->yyastk[$this->yysp-(3-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn44() {
$this->yyval = new PHPParser_Node_Stmt_Static(array('vars' => $this->yyastk[$this->yysp-(3-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn45() {
$this->yyval = new PHPParser_Node_Stmt_Echo(array('exprs' => $this->yyastk[$this->yysp-(3-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn46() {
$this->yyval = new PHPParser_Node_Stmt_InlineHTML(array('value' => $this->yyastk[$this->yysp-(1-1)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn47() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(2-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn48() {
$this->yyval = new PHPParser_Node_Stmt_Unset(array('vars' => $this->yyastk[$this->yysp-(5-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn49() {
$this->yyval = new PHPParser_Node_Stmt_Foreach(array('expr' => $this->yyastk[$this->yysp-(7-3)], 'keyVar' => null, 'byRef' => false, 'valueVar' => $this->yyastk[$this->yysp-(7-5)], 'stmts' => is_array($this->yyastk[$this->yysp-(7-7)]) ? $this->yyastk[$this->yysp-(7-7)] : array($this->yyastk[$this->yysp-(7-7)])), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn50() {
$this->yyval = new PHPParser_Node_Stmt_Foreach(array('expr' => $this->yyastk[$this->yysp-(8-3)], 'keyVar' => null, 'byRef' => true, 'valueVar' => $this->yyastk[$this->yysp-(8-6)], 'stmts' => is_array($this->yyastk[$this->yysp-(8-8)]) ? $this->yyastk[$this->yysp-(8-8)] : array($this->yyastk[$this->yysp-(8-8)])), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn51() {
$this->yyval = new PHPParser_Node_Stmt_Foreach(array('expr' => $this->yyastk[$this->yysp-(10-3)], 'keyVar' => $this->yyastk[$this->yysp-(10-5)], 'byRef' => $this->yyastk[$this->yysp-(10-7)], 'valueVar' => $this->yyastk[$this->yysp-(10-8)], 'stmts' => is_array($this->yyastk[$this->yysp-(10-10)]) ? $this->yyastk[$this->yysp-(10-10)] : array($this->yyastk[$this->yysp-(10-10)])), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn52() {
$this->yyval = new PHPParser_Node_Stmt_Declare(array('declares' => $this->yyastk[$this->yysp-(5-3)], 'stmts' => is_array($this->yyastk[$this->yysp-(5-5)]) ? $this->yyastk[$this->yysp-(5-5)] : array($this->yyastk[$this->yysp-(5-5)])), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn53() {
2011-06-02 17:01:22 +02:00
$this->yyval = array(); /* means: no statement */
2011-04-18 19:02:30 +02:00
}
private function yyn54() {
$this->yyval = new PHPParser_Node_Stmt_TryCatch(array('stmts' => $this->yyastk[$this->yysp-(5-3)], 'catches' => $this->yyastk[$this->yysp-(5-5)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn55() {
$this->yyval = new PHPParser_Node_Stmt_Throw(array('expr' => $this->yyastk[$this->yysp-(3-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn56() {
$this->yyval = new PHPParser_Node_Stmt_Goto(array('name' => $this->yyastk[$this->yysp-(3-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn57() {
$this->yyval = new PHPParser_Node_Stmt_Label(array('name' => $this->yyastk[$this->yysp-(2-1)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn58() {
2011-06-02 17:01:22 +02:00
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
2011-04-18 19:02:30 +02:00
}
private function yyn59() {
2011-06-02 17:01:22 +02:00
$this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(2-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn60() {
$this->yyval = new PHPParser_Node_Stmt_Catch(array('type' => $this->yyastk[$this->yysp-(8-3)], 'var' => substr($this->yyastk[$this->yysp-(8-4)], 1), 'stmts' => $this->yyastk[$this->yysp-(8-7)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn61() {
2011-06-02 17:01:22 +02:00
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
2011-04-18 19:02:30 +02:00
}
private function yyn62() {
2011-06-02 17:01:22 +02:00
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn63() {
2011-06-02 17:01:22 +02:00
$this->yyval = false;
2011-04-18 19:02:30 +02:00
}
private function yyn64() {
2011-06-02 17:01:22 +02:00
$this->yyval = true;
2011-04-18 19:02:30 +02:00
}
private function yyn65() {
$this->yyval = new PHPParser_Node_Stmt_Func(array('byRef' => $this->yyastk[$this->yysp-(9-2)], 'name' => $this->yyastk[$this->yysp-(9-3)], 'params' => $this->yyastk[$this->yysp-(9-5)], 'stmts' => $this->yyastk[$this->yysp-(9-8)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn66() {
$this->yyval = new PHPParser_Node_Stmt_Class(array('type' => $this->yyastk[$this->yysp-(7-1)], 'name' => $this->yyastk[$this->yysp-(7-2)], 'extends' => $this->yyastk[$this->yysp-(7-3)], 'implements' => $this->yyastk[$this->yysp-(7-4)], 'stmts' => $this->yyastk[$this->yysp-(7-6)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn67() {
$this->yyval = new PHPParser_Node_Stmt_Interface(array('name' => $this->yyastk[$this->yysp-(6-2)], 'extends' => $this->yyastk[$this->yysp-(6-3)], 'stmts' => $this->yyastk[$this->yysp-(6-5)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn68() {
2011-06-02 17:01:22 +02:00
$this->yyval = 0;
2011-04-18 19:02:30 +02:00
}
private function yyn69() {
2011-06-05 18:40:04 +02:00
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_ABSTRACT;
2011-04-18 19:02:30 +02:00
}
private function yyn70() {
2011-06-05 18:40:04 +02:00
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_FINAL;
2011-04-18 19:02:30 +02:00
}
private function yyn71() {
2011-06-02 17:01:22 +02:00
$this->yyval = null;
2011-04-18 19:02:30 +02:00
}
private function yyn72() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(2-2)];
2011-04-18 19:02:30 +02:00
}
private function yyn73() {
2011-06-02 17:01:22 +02:00
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
private function yyn74() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(2-2)];
2011-04-18 19:02:30 +02:00
}
private function yyn75() {
2011-06-02 17:01:22 +02:00
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
private function yyn76() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(2-2)];
2011-04-18 19:02:30 +02:00
}
private function yyn77() {
2011-06-02 17:01:22 +02:00
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
2011-04-18 19:02:30 +02:00
}
private function yyn78() {
2011-06-02 17:01:22 +02:00
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn79() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn80() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(4-2)];
2011-04-18 19:02:30 +02:00
}
private function yyn81() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn82() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(4-2)];
2011-04-18 19:02:30 +02:00
}
private function yyn83() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn84() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(4-2)];
2011-04-18 19:02:30 +02:00
}
private function yyn85() {
$this->yyval = array(new PHPParser_Node_Stmt_DeclareDeclare(array('key' => $this->yyastk[$this->yysp-(3-1)], 'value' => $this->yyastk[$this->yysp-(3-3)]), $this->line));
2011-04-18 19:02:30 +02:00
}
private function yyn86() {
$this->yyastk[$this->yysp-(5-1)][] = new PHPParser_Node_Stmt_DeclareDeclare(array('key' => $this->yyastk[$this->yysp-(5-3)], 'value' => $this->yyastk[$this->yysp-(5-5)]), $this->line); $this->yyval = $this->yyastk[$this->yysp-(5-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn87() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
2011-04-18 19:02:30 +02:00
}
private function yyn88() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(4-3)];
2011-04-18 19:02:30 +02:00
}
private function yyn89() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(4-2)];
2011-04-18 19:02:30 +02:00
}
private function yyn90() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(5-3)];
2011-04-18 19:02:30 +02:00
}
private function yyn91() {
2011-06-02 17:01:22 +02:00
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
private function yyn92() {
$this->yyastk[$this->yysp-(5-1)][] = new PHPParser_Node_Stmt_Case(array('cond' => $this->yyastk[$this->yysp-(5-3)], 'stmts' => $this->yyastk[$this->yysp-(5-5)]), $this->line); $this->yyval = $this->yyastk[$this->yysp-(5-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn93() {
$this->yyastk[$this->yysp-(4-1)][] = new PHPParser_Node_Stmt_Case(array('cond' => null, 'stmts' => $this->yyastk[$this->yysp-(4-4)]), $this->line); $this->yyval = $this->yyastk[$this->yysp-(4-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn94() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp];
}
private function yyn95() {
$this->yyval = $this->yyastk[$this->yysp];
}
private function yyn96() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn97() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(4-2)];
2011-04-18 19:02:30 +02:00
}
private function yyn98() {
2011-06-02 17:01:22 +02:00
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
private function yyn99() {
$this->yyastk[$this->yysp-(6-1)][] = new PHPParser_Node_Stmt_ElseIf(array('cond' => $this->yyastk[$this->yysp-(6-4)], 'stmts' => is_array($this->yyastk[$this->yysp-(6-6)]) ? $this->yyastk[$this->yysp-(6-6)] : array($this->yyastk[$this->yysp-(6-6)])), $this->line); $this->yyval = $this->yyastk[$this->yysp-(6-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn100() {
2011-06-02 17:01:22 +02:00
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
private function yyn101() {
$this->yyastk[$this->yysp-(7-1)][] = new PHPParser_Node_Stmt_ElseIf(array('cond' => $this->yyastk[$this->yysp-(7-4)], 'stmts' => $this->yyastk[$this->yysp-(7-7)]), $this->line); $this->yyval = $this->yyastk[$this->yysp-(7-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn102() {
2011-06-02 17:01:22 +02:00
$this->yyval = null;
2011-04-18 19:02:30 +02:00
}
private function yyn103() {
$this->yyval = new PHPParser_Node_Stmt_Else(array('stmts' => is_array($this->yyastk[$this->yysp-(2-2)]) ? $this->yyastk[$this->yysp-(2-2)] : array($this->yyastk[$this->yysp-(2-2)])), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn104() {
2011-06-02 17:01:22 +02:00
$this->yyval = null;
2011-04-18 19:02:30 +02:00
}
private function yyn105() {
$this->yyval = new PHPParser_Node_Stmt_Else(array('stmts' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn106() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn107() {
2011-06-02 17:01:22 +02:00
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
private function yyn108() {
$this->yyval = array(new PHPParser_Node_Stmt_FuncParam(array('type' => $this->yyastk[$this->yysp-(3-1)], 'name' => substr($this->yyastk[$this->yysp-(3-3)], 1), 'byRef' => $this->yyastk[$this->yysp-(3-2)], 'default' => null), $this->line));
2011-04-18 19:02:30 +02:00
}
private function yyn109() {
$this->yyval = array(new PHPParser_Node_Stmt_FuncParam(array('type' => $this->yyastk[$this->yysp-(5-1)], 'name' => substr($this->yyastk[$this->yysp-(5-3)], 1), 'byRef' => $this->yyastk[$this->yysp-(5-2)], 'default' => $this->yyastk[$this->yysp-(5-5)]), $this->line));
2011-04-18 19:02:30 +02:00
}
private function yyn110() {
$this->yyastk[$this->yysp-(5-1)][] = new PHPParser_Node_Stmt_FuncParam(array('type' => $this->yyastk[$this->yysp-(5-3)], 'name' => substr($this->yyastk[$this->yysp-(5-5)], 1), 'byRef' => $this->yyastk[$this->yysp-(5-4)], 'default' => null), $this->line); $this->yyval = $this->yyastk[$this->yysp-(5-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn111() {
$this->yyastk[$this->yysp-(7-1)][] = new PHPParser_Node_Stmt_FuncParam(array('type' => $this->yyastk[$this->yysp-(7-3)], 'name' => substr($this->yyastk[$this->yysp-(7-5)], 1), 'byRef' => $this->yyastk[$this->yysp-(7-4)], 'default' => $this->yyastk[$this->yysp-(7-7)]), $this->line); $this->yyval = $this->yyastk[$this->yysp-(7-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn112() {
2011-06-02 17:01:22 +02:00
$this->yyval = null;
2011-04-18 19:02:30 +02:00
}
private function yyn113() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn114() {
2011-06-02 17:01:22 +02:00
$this->yyval = 'array';
2011-04-18 19:02:30 +02:00
}
private function yyn115() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn116() {
2011-06-02 17:01:22 +02:00
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
private function yyn117() {
$this->yyval = array(new PHPParser_Node_Expr_FuncCallArg(array('value' => $this->yyastk[$this->yysp-(1-1)], 'byRef' => false), $this->line));
2011-04-18 19:02:30 +02:00
}
private function yyn118() {
$this->yyval = array(new PHPParser_Node_Expr_FuncCallArg(array('value' => $this->yyastk[$this->yysp-(2-2)], 'byRef' => true), $this->line));
2011-04-18 19:02:30 +02:00
}
private function yyn119() {
$this->yyastk[$this->yysp-(3-1)][] = new PHPParser_Node_Expr_FuncCallArg(array('value' => $this->yyastk[$this->yysp-(3-3)], 'byRef' => false), $this->line); $this->yyval = $this->yyastk[$this->yysp-(3-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn120() {
$this->yyastk[$this->yysp-(4-1)][] = new PHPParser_Node_Expr_FuncCallArg(array('value' => $this->yyastk[$this->yysp-(4-4)], 'byRef' => true), $this->line); $this->yyval = $this->yyastk[$this->yysp-(4-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn121() {
2011-06-02 17:01:22 +02:00
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn122() {
2011-06-02 17:01:22 +02:00
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
2011-04-18 19:02:30 +02:00
}
private function yyn123() {
$this->yyval = new PHPParser_Node_Variable(array('name' => substr($this->yyastk[$this->yysp-(1-1)], 1)), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn124() {
$this->yyval = new PHPParser_Node_Variable(array('name' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn125() {
$this->yyval = new PHPParser_Node_Variable(array('name' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn126() {
$this->yyastk[$this->yysp-(3-1)][] = new PHPParser_Node_Stmt_StaticVar(array('name' => substr($this->yyastk[$this->yysp-(3-3)], 1), 'default' => null), $this->line); $this->yyval = $this->yyastk[$this->yysp-(3-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn127() {
$this->yyastk[$this->yysp-(5-1)][] = new PHPParser_Node_Stmt_StaticVar(array('name' => substr($this->yyastk[$this->yysp-(5-3)], 1), 'default' => $this->yyastk[$this->yysp-(5-5)]), $this->line); $this->yyval = $this->yyastk[$this->yysp-(5-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn128() {
$this->yyval = array(new PHPParser_Node_Stmt_StaticVar(array('name' => substr($this->yyastk[$this->yysp-(1-1)], 1), 'default' => null), $this->line));
2011-04-18 19:02:30 +02:00
}
private function yyn129() {
$this->yyval = array(new PHPParser_Node_Stmt_StaticVar(array('name' => substr($this->yyastk[$this->yysp-(3-1)], 1), 'default' => $this->yyastk[$this->yysp-(3-3)]), $this->line));
2011-04-18 19:02:30 +02:00
}
private function yyn130() {
2011-06-02 17:01:22 +02:00
$this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(2-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn131() {
2011-06-02 17:01:22 +02:00
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
private function yyn132() {
$this->yyval = new PHPParser_Node_Stmt_Property(array('type' => $this->yyastk[$this->yysp-(3-1)], 'props' => $this->yyastk[$this->yysp-(3-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn133() {
$this->yyval = new PHPParser_Node_Stmt_ClassConst(array('consts' => $this->yyastk[$this->yysp-(2-1)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn134() {
$this->yyval = new PHPParser_Node_Stmt_ClassMethod(array('type' => $this->yyastk[$this->yysp-(8-1)], 'byRef' => $this->yyastk[$this->yysp-(8-3)], 'name' => $this->yyastk[$this->yysp-(8-4)], 'params' => $this->yyastk[$this->yysp-(8-6)], 'stmts' => $this->yyastk[$this->yysp-(8-8)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn135() {
2011-06-02 17:01:22 +02:00
$this->yyval = null;
2011-04-18 19:02:30 +02:00
}
private function yyn136() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
2011-04-18 19:02:30 +02:00
}
private function yyn137() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn138() {
2011-06-05 18:40:04 +02:00
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_PUBLIC;
2011-04-18 19:02:30 +02:00
}
private function yyn139() {
2011-06-05 18:40:04 +02:00
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_PUBLIC;
2011-04-18 19:02:30 +02:00
}
private function yyn140() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn141() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn142() {
2011-06-05 18:40:04 +02:00
PHPParser_Node_Stmt_Class::verifyModifier($this->yyastk[$this->yysp-(2-1)], $this->yyastk[$this->yysp-(2-2)]); $this->yyval = $this->yyastk[$this->yysp-(2-1)] | $this->yyastk[$this->yysp-(2-2)];
2011-04-18 19:02:30 +02:00
}
private function yyn143() {
2011-06-05 18:40:04 +02:00
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_PUBLIC;
2011-04-18 19:02:30 +02:00
}
private function yyn144() {
2011-06-05 18:40:04 +02:00
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_PROTECTED;
2011-04-18 19:02:30 +02:00
}
private function yyn145() {
2011-06-05 18:40:04 +02:00
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_PRIVATE;
2011-04-18 19:02:30 +02:00
}
private function yyn146() {
2011-06-05 18:40:04 +02:00
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_STATIC;
2011-04-18 19:02:30 +02:00
}
private function yyn147() {
2011-06-05 18:40:04 +02:00
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_ABSTRACT;
2011-04-18 19:02:30 +02:00
}
private function yyn148() {
2011-06-05 18:40:04 +02:00
$this->yyval = PHPParser_Node_Stmt_Class::MODIFIER_FINAL;
2011-04-18 19:02:30 +02:00
}
private function yyn149() {
$this->yyastk[$this->yysp-(3-1)][] = new PHPParser_Node_Stmt_PropertyProperty(array('name' => substr($this->yyastk[$this->yysp-(3-3)], 1), 'default' => null), $this->line); $this->yyval = $this->yyastk[$this->yysp-(3-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn150() {
$this->yyastk[$this->yysp-(5-1)][] = new PHPParser_Node_Stmt_PropertyProperty(array('name' => substr($this->yyastk[$this->yysp-(5-3)], 1), 'default' => $this->yyastk[$this->yysp-(5-5)]), $this->line); $this->yyval = $this->yyastk[$this->yysp-(5-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn151() {
$this->yyval = array(new PHPParser_Node_Stmt_PropertyProperty(array('name' => substr($this->yyastk[$this->yysp-(1-1)], 1), 'default' => null), $this->line));
2011-04-18 19:02:30 +02:00
}
private function yyn152() {
$this->yyval = array(new PHPParser_Node_Stmt_PropertyProperty(array('name' => substr($this->yyastk[$this->yysp-(3-1)], 1), 'default' => $this->yyastk[$this->yysp-(3-3)]), $this->line));
2011-04-18 19:02:30 +02:00
}
private function yyn153() {
$this->yyastk[$this->yysp-(5-1)][] = new PHPParser_Node_Stmt_ClassConstConst(array('name' => $this->yyastk[$this->yysp-(5-3)], 'value' => $this->yyastk[$this->yysp-(5-5)]), $this->line); $this->yyval = $this->yyastk[$this->yysp-(5-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn154() {
$this->yyval = array(new PHPParser_Node_Stmt_ClassConstConst(array('name' => $this->yyastk[$this->yysp-(4-2)], 'value' => $this->yyastk[$this->yysp-(4-4)]), $this->line));
2011-04-18 19:02:30 +02:00
}
private function yyn155() {
2011-06-02 17:01:22 +02:00
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn156() {
2011-06-02 17:01:22 +02:00
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
2011-04-18 19:02:30 +02:00
}
private function yyn157() {
2011-06-02 17:01:22 +02:00
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
private function yyn158() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn159() {
2011-06-02 17:01:22 +02:00
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
private function yyn160() {
$this->yyval = new PHPParser_Node_Expr_List(array('assignList' => $this->yyastk[$this->yysp-(6-3)], 'expr' => $this->yyastk[$this->yysp-(6-6)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn161() {
$this->yyval = new PHPParser_Node_Expr_Assign(array('var' => $this->yyastk[$this->yysp-(3-1)], 'expr' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
private function yyn162() {
$this->yyval = new PHPParser_Node_Expr_AssignRef(array('var' => $this->yyastk[$this->yysp-(4-1)], 'refVar' => $this->yyastk[$this->yysp-(4-4)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn163() {
$this->yyval = new PHPParser_Node_Expr_Assign(array('var' => $this->yyastk[$this->yysp-(6-1)], 'expr' => new PHPParser_Node_Expr_New(array('class' => $this->yyastk[$this->yysp-(6-5)], 'args' => $this->yyastk[$this->yysp-(6-6)]), $this->line)), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn164() {
$this->yyval = new PHPParser_Node_Expr_New(array('class' => $this->yyastk[$this->yysp-(3-2)], 'args' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn165() {
$this->yyval = new PHPParser_Node_Expr_Clone(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn166() {
$this->yyval = new PHPParser_Node_Expr_AssignPlus(array('var' => $this->yyastk[$this->yysp-(3-1)], 'expr' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn167() {
$this->yyval = new PHPParser_Node_Expr_AssignMinus(array('var' => $this->yyastk[$this->yysp-(3-1)], 'expr' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn168() {
$this->yyval = new PHPParser_Node_Expr_AssignMul(array('var' => $this->yyastk[$this->yysp-(3-1)], 'expr' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn169() {
$this->yyval = new PHPParser_Node_Expr_AssignDiv(array('var' => $this->yyastk[$this->yysp-(3-1)], 'expr' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn170() {
$this->yyval = new PHPParser_Node_Expr_AssignConcat(array('var' => $this->yyastk[$this->yysp-(3-1)], 'expr' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn171() {
$this->yyval = new PHPParser_Node_Expr_AssignMod(array('var' => $this->yyastk[$this->yysp-(3-1)], 'expr' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn172() {
$this->yyval = new PHPParser_Node_Expr_AssignBinAnd(array('var' => $this->yyastk[$this->yysp-(3-1)], 'expr' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn173() {
$this->yyval = new PHPParser_Node_Expr_AssignBinOr(array('var' => $this->yyastk[$this->yysp-(3-1)], 'expr' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn174() {
$this->yyval = new PHPParser_Node_Expr_AssignBinXor(array('var' => $this->yyastk[$this->yysp-(3-1)], 'expr' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn175() {
$this->yyval = new PHPParser_Node_Expr_AssignShiftLeft(array('var' => $this->yyastk[$this->yysp-(3-1)], 'expr' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn176() {
$this->yyval = new PHPParser_Node_Expr_AssignShiftRight(array('var' => $this->yyastk[$this->yysp-(3-1)], 'expr' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn177() {
$this->yyval = new PHPParser_Node_Expr_PostInc(array('var' => $this->yyastk[$this->yysp-(2-1)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn178() {
$this->yyval = new PHPParser_Node_Expr_PreInc(array('var' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn179() {
$this->yyval = new PHPParser_Node_Expr_PostDec(array('var' => $this->yyastk[$this->yysp-(2-1)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn180() {
$this->yyval = new PHPParser_Node_Expr_PreDec(array('var' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn181() {
$this->yyval = new PHPParser_Node_Expr_BooleanOr(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn182() {
$this->yyval = new PHPParser_Node_Expr_BooleanAnd(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn183() {
$this->yyval = new PHPParser_Node_Expr_LogicalOr(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn184() {
$this->yyval = new PHPParser_Node_Expr_LogicalAnd(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn185() {
$this->yyval = new PHPParser_Node_Expr_LogicalXor(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn186() {
$this->yyval = new PHPParser_Node_Expr_BinaryOr(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn187() {
$this->yyval = new PHPParser_Node_Expr_BinaryAnd(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn188() {
$this->yyval = new PHPParser_Node_Expr_BinaryXor(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn189() {
$this->yyval = new PHPParser_Node_Expr_Concat(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn190() {
$this->yyval = new PHPParser_Node_Expr_Plus(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn191() {
$this->yyval = new PHPParser_Node_Expr_Minus(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn192() {
$this->yyval = new PHPParser_Node_Expr_Mul(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn193() {
$this->yyval = new PHPParser_Node_Expr_Div(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn194() {
$this->yyval = new PHPParser_Node_Expr_Mod(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn195() {
$this->yyval = new PHPParser_Node_Expr_ShiftLeft(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn196() {
$this->yyval = new PHPParser_Node_Expr_ShiftRight(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn197() {
$this->yyval = new PHPParser_Node_Expr_UnaryPlus(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn198() {
$this->yyval = new PHPParser_Node_Expr_UnaryMinus(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn199() {
$this->yyval = new PHPParser_Node_Expr_BooleanNot(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn200() {
$this->yyval = new PHPParser_Node_Expr_BinaryNot(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn201() {
$this->yyval = new PHPParser_Node_Expr_Identical(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn202() {
$this->yyval = new PHPParser_Node_Expr_NotIdentical(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn203() {
$this->yyval = new PHPParser_Node_Expr_Equal(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn204() {
$this->yyval = new PHPParser_Node_Expr_NotEqual(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn205() {
$this->yyval = new PHPParser_Node_Expr_Smaller(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn206() {
$this->yyval = new PHPParser_Node_Expr_SmallerOrEqual(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn207() {
$this->yyval = new PHPParser_Node_Expr_Greater(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn208() {
$this->yyval = new PHPParser_Node_Expr_GreaterOrEqual(array('left' => $this->yyastk[$this->yysp-(3-1)], 'right' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn209() {
$this->yyval = new PHPParser_Node_Expr_Instanceof(array('expr' => $this->yyastk[$this->yysp-(3-1)], 'class' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn210() {
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn211() {
$this->yyval = new PHPParser_Node_Expr_Ternary(array('cond' => $this->yyastk[$this->yysp-(5-1)], 'if' => $this->yyastk[$this->yysp-(5-3)], 'else' => $this->yyastk[$this->yysp-(5-5)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn212() {
$this->yyval = new PHPParser_Node_Expr_Ternary(array('cond' => $this->yyastk[$this->yysp-(4-1)], 'if' => null, 'else' => $this->yyastk[$this->yysp-(4-4)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn213() {
$this->yyval = new PHPParser_Node_Expr_Isset(array('vars' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn214() {
$this->yyval = new PHPParser_Node_Expr_Empty(array('var' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn215() {
$this->yyval = new PHPParser_Node_Expr_Include(array('expr' => $this->yyastk[$this->yysp-(2-2)], 'type' => PHPParser_Node_Expr_Include::TYPE_INCLUDE), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn216() {
$this->yyval = new PHPParser_Node_Expr_Include(array('expr' => $this->yyastk[$this->yysp-(2-2)], 'type' => PHPParser_Node_Expr_Include::TYPE_INCLUDE_ONCE), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn217() {
$this->yyval = new PHPParser_Node_Expr_Eval(array('expr' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn218() {
$this->yyval = new PHPParser_Node_Expr_Include(array('expr' => $this->yyastk[$this->yysp-(2-2)], 'type' => PHPParser_Node_Expr_Include::TYPE_REQUIRE), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn219() {
$this->yyval = new PHPParser_Node_Expr_Include(array('expr' => $this->yyastk[$this->yysp-(2-2)], 'type' => PHPParser_Node_Expr_Include::TYPE_REQUIRE_ONCE), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn220() {
$this->yyval = new PHPParser_Node_Expr_IntCast(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn221() {
$this->yyval = new PHPParser_Node_Expr_DoubleCast(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn222() {
$this->yyval = new PHPParser_Node_Expr_StringCast(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn223() {
$this->yyval = new PHPParser_Node_Expr_ArrayCast(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn224() {
$this->yyval = new PHPParser_Node_Expr_ObjectCast(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn225() {
$this->yyval = new PHPParser_Node_Expr_BoolCast(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn226() {
$this->yyval = new PHPParser_Node_Expr_UnsetCast(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn227() {
$this->yyval = new PHPParser_Node_Expr_Exit(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn228() {
$this->yyval = new PHPParser_Node_Expr_ErrorSuppress(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn229() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn230() {
$this->yyval = new PHPParser_Node_Expr_Array(array('items' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn231() {
$this->yyval = new PHPParser_Node_Expr_ShellExec(array('parts' => $this->yyastk[$this->yysp-(3-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn232() {
$this->yyval = new PHPParser_Node_Expr_Print(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn233() {
$this->yyval = new PHPParser_Node_Expr_LambdaFunc(array('byRef' => $this->yyastk[$this->yysp-(9-2)], 'params' => $this->yyastk[$this->yysp-(9-4)], 'useVars' => $this->yyastk[$this->yysp-(9-6)], 'stmts' => $this->yyastk[$this->yysp-(9-8)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn234() {
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn235() {
$this->yyval = $this->yyastk[$this->yysp-(4-3)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn236() {
$this->yyastk[$this->yysp-(4-1)][] = new PHPParser_Node_Expr_LambdaFuncUse(array('var' => substr($this->yyastk[$this->yysp-(4-4)], 1), 'byRef' => $this->yyastk[$this->yysp-(4-3)]), $this->line); $this->yyval = $this->yyastk[$this->yysp-(4-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn237() {
$this->yyval = array(new PHPParser_Node_Expr_LambdaFuncUse(array('var' => substr($this->yyastk[$this->yysp-(2-2)], 1), 'byRef' => $this->yyastk[$this->yysp-(2-1)]), $this->line));
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn238() {
$this->yyval = new PHPParser_Node_Expr_FuncCall(array('func' => $this->yyastk[$this->yysp-(4-1)], 'args' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn239() {
$this->yyval = new PHPParser_Node_Expr_StaticCall(array('class' => $this->yyastk[$this->yysp-(6-1)], 'func' => $this->yyastk[$this->yysp-(6-3)], 'args' => $this->yyastk[$this->yysp-(6-5)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn240() {
$this->yyval = new PHPParser_Node_Expr_StaticCall(array('class' => $this->yyastk[$this->yysp-(6-1)], 'func' => $this->yyastk[$this->yysp-(6-3)], 'args' => $this->yyastk[$this->yysp-(6-5)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn241() {
2011-06-05 18:40:04 +02:00
if ($this->yyastk[$this->yysp-(4-1)] instanceof PHPParser_Node_Expr_StaticPropertyFetch) {
$this->yyval = new PHPParser_Node_Expr_StaticCall(array('class' => $this->yyastk[$this->yysp-(4-1)]->class, 'func' => $this->yyastk[$this->yysp-(4-1)]->name, 'args' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-06-05 18:40:04 +02:00
} elseif ($this->yyastk[$this->yysp-(4-1)] instanceof PHPParser_Node_Expr_ArrayDimFetch) {
$this->yyastk[$this->yysp-(4-2)] = $this->yyastk[$this->yysp-(4-1)]; // $2 is just a temporary variable. Nothing to do with the '('
2011-06-05 18:40:04 +02:00
while ($this->yyastk[$this->yysp-(4-2)]->var instanceof PHPParser_Node_Expr_ArrayDimFetch) {
$this->yyastk[$this->yysp-(4-2)] = $this->yyastk[$this->yysp-(4-2)]->var;
}
$this->yyval = new PHPParser_Node_Expr_StaticCall(array('class' => $this->yyastk[$this->yysp-(4-2)]->var->class, 'func' => $this->yyastk[$this->yysp-(4-1)], 'args' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
$this->yyastk[$this->yysp-(4-2)]->var = new PHPParser_Node_Variable(array('name' => $this->yyastk[$this->yysp-(4-2)]->var->name), $this->line);
} else {
throw new Exception;
}
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn242() {
$this->yyval = new PHPParser_Node_Expr_FuncCall(array('func' => $this->yyastk[$this->yysp-(4-1)], 'args' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn243() {
$this->yyval = 'static';
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn244() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn245() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn246() {
2011-06-05 18:40:04 +02:00
$this->yyastk[$this->yysp-(3-3)]->resolveType(PHPParser_Node_Name::RELATIVE); $this->yyval = $this->yyastk[$this->yysp-(3-3)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn247() {
2011-06-05 18:40:04 +02:00
$this->yyastk[$this->yysp-(2-2)]->resolveType(PHPParser_Node_Name::ABSOLUTE); $this->yyval = $this->yyastk[$this->yysp-(2-2)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn248() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn249() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn250() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn251() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn252() {
$this->yyval = $this->yyastk[$this->yysp];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn253() {
$this->yyval = new PHPParser_Node_Expr_PropertyFetch(array('var' => $this->yyastk[$this->yysp-(3-1)], 'name' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn254() {
$this->yyval = new PHPParser_Node_Expr_PropertyFetch(array('var' => $this->yyastk[$this->yysp-(3-1)], 'name' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn255() {
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(array('var' => $this->yyastk[$this->yysp-(4-1)], 'dim' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn256() {
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(array('var' => $this->yyastk[$this->yysp-(4-1)], 'dim' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn257() {
$this->yyval = null;
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn258() {
$this->yyval = null;
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn259() {
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn260() {
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn261() {
2011-06-05 18:40:04 +02:00
$this->yyval = array(PHPParser_Node_Scalar_String::parseEscapeSequences($this->yyastk[$this->yysp-(1-1)]));
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn262() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn263() {
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn264() {
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn265() {
$this->yyval = new PHPParser_Node_Scalar_LNumber(array('value' => (int) $this->yyastk[$this->yysp-(1-1)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn266() {
$this->yyval = new PHPParser_Node_Scalar_DNumber(array('value' => (double) $this->yyastk[$this->yysp-(1-1)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn267() {
2011-06-05 18:40:04 +02:00
$this->yyval = PHPParser_Node_Scalar_String::create($this->yyastk[$this->yysp-(1-1)]);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn268() {
$this->yyval = new PHPParser_Node_Scalar_LineConst(array(), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn269() {
$this->yyval = new PHPParser_Node_Scalar_FileConst(array(), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn270() {
$this->yyval = new PHPParser_Node_Scalar_DirConst(array(), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn271() {
$this->yyval = new PHPParser_Node_Scalar_ClassConst(array(), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn272() {
$this->yyval = new PHPParser_Node_Scalar_MethodConst(array(), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn273() {
$this->yyval = new PHPParser_Node_Scalar_FuncConst(array(), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn274() {
$this->yyval = new PHPParser_Node_Scalar_NSConst(array(), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn275() {
$this->yyval = new PHPParser_Node_Scalar_String(array('value' => PHPParser_Node_Scalar_String::parseEscapeSequences($this->yyastk[$this->yysp-(3-2)]), 'isBinary' => false, 'type' => '\'' === $this->yyastk[$this->yysp-(3-1)][3] ? PHPParser_Node_Scalar_String::SINGLE_QUOTED : PHPParser_Node_Scalar_String::DOUBLE_QUOTED), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn276() {
$this->yyval = new PHPParser_Node_Scalar_String(array('value' => '', 'isBinary' => false, 'type' => PHPParser_Node_Scalar_String::SINGLE_QUOTED), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn277() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn278() {
$this->yyval = new PHPParser_Node_Expr_ConstFetch(array('name' => $this->yyastk[$this->yysp-(1-1)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn279() {
$this->yyval = new PHPParser_Node_Expr_UnaryPlus(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn280() {
$this->yyval = new PHPParser_Node_Expr_UnaryMinus(array('expr' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn281() {
$this->yyval = new PHPParser_Node_Expr_Array(array('items' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn282() {
$this->yyval = new PHPParser_Node_Expr_ClassConstFetch(array('class' => $this->yyastk[$this->yysp-(3-1)], 'name' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn283() {
$this->yyval = new PHPParser_Node_Scalar_String(array('value' => $this->yyastk[$this->yysp-(1-1)], 'isBinary' => false, 'type' => PHPParser_Node_Scalar_String::SINGLE_QUOTED), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn284() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn285() {
$this->yyval = new PHPParser_Node_Expr_ConstFetch(array('name' => $this->yyastk[$this->yysp-(1-1)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn286() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
}
2011-06-02 17:01:22 +02:00
private function yyn287() {
$this->yyval = new PHPParser_Node_Scalar_Encapsed(array('parts' => $this->yyastk[$this->yysp-(3-2)]), $this->line);
}
2011-06-02 17:01:22 +02:00
private function yyn288() {
$this->yyval = new PHPParser_Node_Scalar_Encapsed(array('parts' => $this->yyastk[$this->yysp-(3-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn289() {
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn290() {
$this->yyval = $this->yyastk[$this->yysp-(2-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn291() {
$this->yyval = $this->yyastk[$this->yysp];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn292() {
$this->yyval = $this->yyastk[$this->yysp];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn293() {
$this->yyastk[$this->yysp-(5-1)][] = new PHPParser_Node_Expr_ArrayItem(array('key' => $this->yyastk[$this->yysp-(5-3)], 'value' => $this->yyastk[$this->yysp-(5-5)], 'byRef' => false), $this->line); $this->yyval = $this->yyastk[$this->yysp-(5-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn294() {
$this->yyastk[$this->yysp-(3-1)][] = new PHPParser_Node_Expr_ArrayItem(array('key' => null, 'value' => $this->yyastk[$this->yysp-(3-3)], 'byRef' => false), $this->line); $this->yyval = $this->yyastk[$this->yysp-(3-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn295() {
$this->yyval = array(new PHPParser_Node_Expr_ArrayItem(array('key' => $this->yyastk[$this->yysp-(3-1)], 'value' => $this->yyastk[$this->yysp-(3-3)], 'byRef' => false), $this->line));
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn296() {
$this->yyval = array(new PHPParser_Node_Expr_ArrayItem(array('key' => null, 'value' => $this->yyastk[$this->yysp-(1-1)], 'byRef' => false), $this->line));
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn297() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn298() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn299() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn300() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn301() {
$this->yyval = new PHPParser_Node_Expr_FuncCall(array('func' => $this->yyastk[$this->yysp-(4-1)], 'args' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn302() {
$this->yyval = new PHPParser_Node_Expr_MethodCall(array('var' => $this->yyastk[$this->yysp-(6-1)], 'name' => $this->yyastk[$this->yysp-(6-3)], 'args' => $this->yyastk[$this->yysp-(6-5)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn303() {
$this->yyval = new PHPParser_Node_Expr_PropertyFetch(array('var' => $this->yyastk[$this->yysp-(3-1)], 'name' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn304() {
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(array('var' => $this->yyastk[$this->yysp-(4-1)], 'dim' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn305() {
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(array('var' => $this->yyastk[$this->yysp-(4-1)], 'dim' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn306() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn307() {
$this->yyval = new PHPParser_Node_Variable(array('name' => $this->yyastk[$this->yysp-(2-2)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn308() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn309() {
$this->yyval = new PHPParser_Node_Expr_StaticPropertyFetch(array('class' => $this->yyastk[$this->yysp-(4-1)], 'name' => $this->yyastk[$this->yysp-(4-4)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn310() {
$this->yyval = new PHPParser_Node_Expr_StaticPropertyFetch(array('class' => $this->yyastk[$this->yysp-(4-1)], 'name' => $this->yyastk[$this->yysp-(4-4)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn311() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn312() {
$this->yyval = new PHPParser_Node_Expr_StaticPropertyFetch(array('class' => $this->yyastk[$this->yysp-(3-1)], 'name' => substr($this->yyastk[$this->yysp-(3-3)], 1)), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn313() {
$this->yyval = new PHPParser_Node_Expr_StaticPropertyFetch(array('class' => $this->yyastk[$this->yysp-(3-1)], 'name' => substr($this->yyastk[$this->yysp-(3-3)], 1)), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn314() {
$this->yyval = new PHPParser_Node_Expr_StaticPropertyFetch(array('class' => $this->yyastk[$this->yysp-(6-1)], 'name' => $this->yyastk[$this->yysp-(6-5)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn315() {
$this->yyval = new PHPParser_Node_Expr_StaticPropertyFetch(array('class' => $this->yyastk[$this->yysp-(6-1)], 'name' => $this->yyastk[$this->yysp-(6-5)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn316() {
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(array('var' => $this->yyastk[$this->yysp-(4-1)], 'dim' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn317() {
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(array('var' => $this->yyastk[$this->yysp-(4-1)], 'dim' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn318() {
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(array('var' => $this->yyastk[$this->yysp-(4-1)], 'dim' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn319() {
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(array('var' => $this->yyastk[$this->yysp-(4-1)], 'dim' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn320() {
$this->yyval = new PHPParser_Node_Variable(array('name' => substr($this->yyastk[$this->yysp-(1-1)], 1)), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn321() {
$this->yyval = new PHPParser_Node_Variable(array('name' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn322() {
$this->yyval = null;
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn323() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn324() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn325() {
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn326() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn327() {
$this->yyastk[$this->yysp-(3-1)][] = $this->yyastk[$this->yysp-(3-3)]; $this->yyval = $this->yyastk[$this->yysp-(3-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn328() {
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn329() {
$this->yyval = $this->yyastk[$this->yysp-(1-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn330() {
$this->yyval = $this->yyastk[$this->yysp-(4-3)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn331() {
$this->yyval = null;
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn332() {
$this->yyval = array();
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn333() {
$this->yyval = $this->yyastk[$this->yysp-(2-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn334() {
$this->yyastk[$this->yysp-(5-1)][] = new PHPParser_Node_Expr_ArrayItem(array('key' => $this->yyastk[$this->yysp-(5-3)], 'value' => $this->yyastk[$this->yysp-(5-5)], 'byRef' => false), $this->line); $this->yyval = $this->yyastk[$this->yysp-(5-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn335() {
$this->yyastk[$this->yysp-(3-1)][] = new PHPParser_Node_Expr_ArrayItem(array('key' => null, 'value' => $this->yyastk[$this->yysp-(3-3)], 'byRef' => false), $this->line); $this->yyval = $this->yyastk[$this->yysp-(3-1)];
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn336() {
$this->yyval = array(new PHPParser_Node_Expr_ArrayItem(array('key' => $this->yyastk[$this->yysp-(3-1)], 'value' => $this->yyastk[$this->yysp-(3-3)], 'byRef' => false), $this->line));
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn337() {
$this->yyval = array(new PHPParser_Node_Expr_ArrayItem(array('key' => null, 'value' => $this->yyastk[$this->yysp-(1-1)], 'byRef' => false), $this->line));
2011-04-18 19:02:30 +02:00
}
2011-06-02 17:01:22 +02:00
private function yyn338() {
$this->yyastk[$this->yysp-(6-1)][] = new PHPParser_Node_Expr_ArrayItem(array('key' => $this->yyastk[$this->yysp-(6-3)], 'value' => $this->yyastk[$this->yysp-(6-6)], 'byRef' => true), $this->line); $this->yyval = $this->yyastk[$this->yysp-(6-1)];
}
2011-06-02 17:01:22 +02:00
private function yyn339() {
$this->yyastk[$this->yysp-(4-1)][] = new PHPParser_Node_Expr_ArrayItem(array('key' => null, 'value' => $this->yyastk[$this->yysp-(4-4)], 'byRef' => true), $this->line); $this->yyval = $this->yyastk[$this->yysp-(4-1)];
}
2011-06-02 17:01:22 +02:00
private function yyn340() {
$this->yyval = array(new PHPParser_Node_Expr_ArrayItem(array('key' => $this->yyastk[$this->yysp-(4-1)], 'value' => $this->yyastk[$this->yysp-(4-4)], 'byRef' => true), $this->line));
}
2011-06-02 17:01:22 +02:00
private function yyn341() {
$this->yyval = array(new PHPParser_Node_Expr_ArrayItem(array('key' => null, 'value' => $this->yyastk[$this->yysp-(2-2)], 'byRef' => true), $this->line));
}
2011-06-02 17:01:22 +02:00
private function yyn342() {
$this->yyastk[$this->yysp-(2-1)][] = $this->yyastk[$this->yysp-(2-2)]; $this->yyval = $this->yyastk[$this->yysp-(2-1)];
}
2011-06-02 17:01:22 +02:00
private function yyn343() {
2011-06-05 18:40:04 +02:00
$this->yyastk[$this->yysp-(2-1)][] = PHPParser_Node_Scalar_String::parseEscapeSequences($this->yyastk[$this->yysp-(2-2)]); $this->yyval = $this->yyastk[$this->yysp-(2-1)];
}
2011-06-02 17:01:22 +02:00
private function yyn344() {
$this->yyval = array($this->yyastk[$this->yysp-(1-1)]);
}
2011-06-02 17:01:22 +02:00
private function yyn345() {
2011-06-05 18:40:04 +02:00
$this->yyval = array(PHPParser_Node_Scalar_String::parseEscapeSequences($this->yyastk[$this->yysp-(2-1)]), $this->yyastk[$this->yysp-(2-2)]);
}
2011-06-02 17:01:22 +02:00
private function yyn346() {
$this->yyval = new PHPParser_Node_Variable(array('name' => substr($this->yyastk[$this->yysp-(1-1)], 1)), $this->line);
}
2011-06-02 17:01:22 +02:00
private function yyn347() {
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(array('var' => new PHPParser_Node_Variable(array('name' => substr($this->yyastk[$this->yysp-(4-1)], 1)), $this->line), 'dim' => $this->yyastk[$this->yysp-(4-3)]), $this->line);
}
2011-06-02 17:01:22 +02:00
private function yyn348() {
$this->yyval = new PHPParser_Node_Expr_PropertyFetch(array('var' => new PHPParser_Node_Variable(array('name' => substr($this->yyastk[$this->yysp-(3-1)], 1)), $this->line), 'name' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
}
2011-06-02 17:01:22 +02:00
private function yyn349() {
$this->yyval = new PHPParser_Node_Variable(array('name' => $this->yyastk[$this->yysp-(3-2)]), $this->line);
}
2011-06-02 17:01:22 +02:00
private function yyn350() {
$this->yyval = new PHPParser_Node_Expr_ArrayDimFetch(array('var' => new PHPParser_Node_Variable(array('name' => $this->yyastk[$this->yysp-(6-2)]), $this->line), 'dim' => $this->yyastk[$this->yysp-(6-4)]), $this->line);
}
2011-06-02 17:01:22 +02:00
private function yyn351() {
$this->yyval = $this->yyastk[$this->yysp-(3-2)];
}
2011-06-02 17:01:22 +02:00
private function yyn352() {
$this->yyval = new PHPParser_Node_Scalar_String(array('value' => $this->yyastk[$this->yysp-(1-1)], 'isBinary' => false, 'type' => PHPParser_Node_Scalar_String::SINGLE_QUOTED), $this->line);
}
2011-06-02 17:01:22 +02:00
private function yyn353() {
$this->yyval = new PHPParser_Node_Scalar_LNumber(array('value' => (int) $this->yyastk[$this->yysp-(1-1)]), $this->line);
}
2011-06-02 17:01:22 +02:00
private function yyn354() {
$this->yyval = new PHPParser_Node_Variable(array('name' => substr($this->yyastk[$this->yysp-(1-1)], 1)), $this->line);
}
2011-06-02 17:01:22 +02:00
private function yyn355() {
$this->yyval = new PHPParser_Node_Expr_ClassConstFetch(array('class' => $this->yyastk[$this->yysp-(3-1)], 'name' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
}
2011-06-02 17:01:22 +02:00
private function yyn356() {
$this->yyval = new PHPParser_Node_Expr_ClassConstFetch(array('class' => $this->yyastk[$this->yysp-(3-1)], 'name' => $this->yyastk[$this->yysp-(3-3)]), $this->line);
2011-04-18 19:02:30 +02:00
}
}