| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847 |
- <?php
- namespace PhpParser\Parser;
- use PhpParser\Error;
- use PhpParser\Node;
- use PhpParser\Node\Expr;
- use PhpParser\Node\Name;
- use PhpParser\Node\Scalar;
- use PhpParser\Node\Stmt;
- /* This is an automatically GENERATED file, which should not be manually edited.
- * Instead edit one of the following:
- * * the grammar files grammar/php5.y or grammar/php7.y
- * * the skeleton file grammar/parser.template
- * * the preprocessing script grammar/rebuildParsers.php
- */
- class Php7 extends \PhpParser\ParserAbstract
- {
- protected $tokenToSymbolMapSize = 392;
- protected $actionTableSize = 891;
- protected $gotoTableSize = 429;
- protected $invalidSymbol = 157;
- protected $errorSymbol = 1;
- protected $defaultAction = -32766;
- protected $unexpectedTokenRule = 32767;
- protected $YY2TBLSTATE = 328;
- protected $YYNLSTATES = 576;
- protected $symbolToName = array(
- "EOF",
- "error",
- "T_INCLUDE",
- "T_INCLUDE_ONCE",
- "T_EVAL",
- "T_REQUIRE",
- "T_REQUIRE_ONCE",
- "','",
- "T_LOGICAL_OR",
- "T_LOGICAL_XOR",
- "T_LOGICAL_AND",
- "T_PRINT",
- "T_YIELD",
- "T_DOUBLE_ARROW",
- "T_YIELD_FROM",
- "'='",
- "T_PLUS_EQUAL",
- "T_MINUS_EQUAL",
- "T_MUL_EQUAL",
- "T_DIV_EQUAL",
- "T_CONCAT_EQUAL",
- "T_MOD_EQUAL",
- "T_AND_EQUAL",
- "T_OR_EQUAL",
- "T_XOR_EQUAL",
- "T_SL_EQUAL",
- "T_SR_EQUAL",
- "T_POW_EQUAL",
- "'?'",
- "':'",
- "T_COALESCE",
- "T_BOOLEAN_OR",
- "T_BOOLEAN_AND",
- "'|'",
- "'^'",
- "'&'",
- "T_IS_EQUAL",
- "T_IS_NOT_EQUAL",
- "T_IS_IDENTICAL",
- "T_IS_NOT_IDENTICAL",
- "T_SPACESHIP",
- "'<'",
- "T_IS_SMALLER_OR_EQUAL",
- "'>'",
- "T_IS_GREATER_OR_EQUAL",
- "T_SL",
- "T_SR",
- "'+'",
- "'-'",
- "'.'",
- "'*'",
- "'/'",
- "'%'",
- "'!'",
- "T_INSTANCEOF",
- "'~'",
- "T_INC",
- "T_DEC",
- "T_INT_CAST",
- "T_DOUBLE_CAST",
- "T_STRING_CAST",
- "T_ARRAY_CAST",
- "T_OBJECT_CAST",
- "T_BOOL_CAST",
- "T_UNSET_CAST",
- "'@'",
- "T_POW",
- "'['",
- "T_NEW",
- "T_CLONE",
- "T_EXIT",
- "T_IF",
- "T_ELSEIF",
- "T_ELSE",
- "T_ENDIF",
- "T_LNUMBER",
- "T_DNUMBER",
- "T_STRING",
- "T_STRING_VARNAME",
- "T_VARIABLE",
- "T_NUM_STRING",
- "T_INLINE_HTML",
- "T_ENCAPSED_AND_WHITESPACE",
- "T_CONSTANT_ENCAPSED_STRING",
- "T_ECHO",
- "T_DO",
- "T_WHILE",
- "T_ENDWHILE",
- "T_FOR",
- "T_ENDFOR",
- "T_FOREACH",
- "T_ENDFOREACH",
- "T_DECLARE",
- "T_ENDDECLARE",
- "T_AS",
- "T_SWITCH",
- "T_ENDSWITCH",
- "T_CASE",
- "T_DEFAULT",
- "T_BREAK",
- "T_CONTINUE",
- "T_GOTO",
- "T_FUNCTION",
- "T_CONST",
- "T_RETURN",
- "T_TRY",
- "T_CATCH",
- "T_FINALLY",
- "T_THROW",
- "T_USE",
- "T_INSTEADOF",
- "T_GLOBAL",
- "T_STATIC",
- "T_ABSTRACT",
- "T_FINAL",
- "T_PRIVATE",
- "T_PROTECTED",
- "T_PUBLIC",
- "T_VAR",
- "T_UNSET",
- "T_ISSET",
- "T_EMPTY",
- "T_HALT_COMPILER",
- "T_CLASS",
- "T_TRAIT",
- "T_INTERFACE",
- "T_EXTENDS",
- "T_IMPLEMENTS",
- "T_OBJECT_OPERATOR",
- "T_LIST",
- "T_ARRAY",
- "T_CALLABLE",
- "T_CLASS_C",
- "T_TRAIT_C",
- "T_METHOD_C",
- "T_FUNC_C",
- "T_LINE",
- "T_FILE",
- "T_START_HEREDOC",
- "T_END_HEREDOC",
- "T_DOLLAR_OPEN_CURLY_BRACES",
- "T_CURLY_OPEN",
- "T_PAAMAYIM_NEKUDOTAYIM",
- "T_NAMESPACE",
- "T_NS_C",
- "T_DIR",
- "T_NS_SEPARATOR",
- "T_ELLIPSIS",
- "';'",
- "'{'",
- "'}'",
- "'('",
- "')'",
- "'`'",
- "']'",
- "'\"'",
- "'$'"
- );
- protected $tokenToSymbol = array(
- 0, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 53, 155, 157, 156, 52, 35, 157,
- 151, 152, 50, 47, 7, 48, 49, 51, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 29, 148,
- 41, 15, 43, 28, 65, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 67, 157, 154, 34, 157, 153, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 149, 33, 150, 55, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
- 157, 157, 157, 157, 157, 157, 1, 2, 3, 4,
- 5, 6, 8, 9, 10, 11, 12, 13, 14, 16,
- 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
- 27, 30, 31, 32, 36, 37, 38, 39, 40, 42,
- 44, 45, 46, 54, 56, 57, 58, 59, 60, 61,
- 62, 63, 64, 66, 68, 69, 70, 71, 72, 73,
- 74, 75, 76, 77, 78, 79, 80, 81, 157, 157,
- 82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
- 92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
- 102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
- 112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
- 122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
- 132, 133, 134, 135, 136, 137, 157, 157, 157, 157,
- 157, 157, 138, 139, 140, 141, 142, 143, 144, 145,
- 146, 147
- );
- protected $action = array(
- 581, 582, 583, 584, 585, 0, 586, 587, 588, 624,
- 625, 477, 27, 99, 100, 101, 102, 103, 104, 105,
- 106, 107, 108, 109, 110,-32766,-32766,-32766, 95, 96,
- 97, 361, 239, 263, -280,-32766,-32766,-32766, -486, -485,
- 1077, 542, 1080, 1078, 98,-32766, 272,-32766,-32766,-32766,
- -32766,-32766, 589, 897, 899,-32766,-32766,-32766,-32766,-32766,
- -32766,-32766,-32766, 240,-32766, 662, 590, 591, 592, 593,
- 594, 595, 596,-32766, 289, 656, 865, 866, 867, 864,
- 863, 862, 597, 598, 599, 600, 601, 602, 603, 604,
- 605, 606, 607, 627, 628, 629, 630, 631, 619, 620,
- 621, 622, 623, 608, 609, 610, 611, 612, 613, 614,
- 650, 651, 652, 653, 654, 655, 615, 616, 617, 618,
- 648, 639, 637, 638, 634, 635, 215, 626, 632, 633,
- 640, 641, 643, 642, 644, 645, 42, 43, 390, 44,
- 45, 636, 647, 646, 224, 46, 47, 980, 48,-32767,
- -32767,-32767,-32767, 90, 91, 92, 93, 94, 258, 440,
- 22, 865, 866, 867, 864, 863, 862, 857,-32766,-32766,
- -32766, 1069, 1030, 1030, 1068, 1047, 996, 293, -441, 246,
- 287, 49, 50, -486, -485, -486, -485, 51,-32766, 52,
- 219, 220, 53, 54, 55, 56, 57, 58, 59, 60,
- 125, 22, 232, 61, 345, 973,-32766,-32766,-32766, 997,
- 998, 658, 661, 1030, 28, -475, 1010, 996,-32766,-32766,
- -32766, 735, 407, 408, 246, 1030,-32766, 246,-32766,-32766,
- -32766,-32766, 25, 222, 373, 385, 349, 226,-32766, -441,
- -32766,-32766,-32766, 1033, 65, 342, 416, 216, 41, 264,
- 264, 1044, 7, -441, 403, 404, 120, 21, 973, 24,
- -441, 820, -444, 407, 408, -225, 1002, 1003, 1004, 1005,
- 999, 1000, 243, 116, -440, -439, 265, 417, 1006, 1001,
- 347, 814, 815, 1074, 992, 63, 369, 255, 362, 260,
- 264, 391, -131, -131, -131, -4, 735, 392, 658, 224,
- -439, 725, 264, -88, 32, 17, 393, -131, 394, -131,
- 395, -131, 396, -131, 128, 397, -131, -131, -131, 34,
- 35, 398, 346, 122, 36, 399, 814, 815, 62, 814,
- 815, 286, 288, 400, 401, -440, -439, 465, -249, 402,
- 38, 40, 711, 756, 405, 406, -170, 22, -230, -440,
- -439,-32766,-32766,-32766, 374, -171, -440, -439, -443, 1030,
- -475, -439, 1030, 996, 417, -477, 391, 347, 737, 547,
- -131,-32766, 392,-32766,-32766, -439, 725, 676, 677, 32,
- 17, 393, -439, 394, 276, 395, 357, 396, 787, 549,
- 397, 71, 973, 1048, 34, 35, 398, 346, 335, 36,
- 399, 247, 248, 62, 254, 735, 286, 288, 400, 401,
- 408, 120, 131, 530, 402, 980, 306, 668, 756, 405,
- 406, 337, 113, 115,-32766,-32766, 72, 73, 74, 242,
- 529, 65, 121, 553, 502, 18, 264, 126, 274, 264,
- -32766,-32766,-32766, 737, 547, -4, 26, 749, 75, 76,
- 77, 78, 79, 80, 81, 82, 83, 84, 85, 86,
- 87, 88, 89, 90, 91, 92, 93, 94, 95, 96,
- 97, 111, 239, 118, 735, 391, 92, 93, 94, 531,
- 112, 392, 347, -249, 98, 725, 843, 124, 32, 17,
- 393, -170, 394, 1030, 395, 130, 396, 515, 516, 397,
- -171, 117, 554, 34, 35, 398, 735, 788, 36, 399,
- -477, 734, 62, 383, 6, 286, 288,-32766,-32766,-32766,
- 127, 311, 114, 402, 676, 677, 973, 495, 496, 814,
- 815, 854, 565, 119, 552, 842, 575, 343, 223, 564,
- 559, 221, 225, 239, 391, 98, 658, 439, 39, 525,
- 392, 659, 773, 547, 725, 435, 969, 32, 17, 393,
- 358, 394, 356, 395, 299, 396, 319, 692, 397, 1072,
- 264, 451, 34, 35, 398, 735, 391, 36, 399, 453,
- 511, 62, 392, 449, 286, 288, 725, 499, 540, 32,
- 17, 393, 402, 394, 438, 395, 1079, 396, 354, 444,
- 397,-32766, 493, 551, 34, 35, 398, 735, 503, 36,
- 399, 526, -80, 62, 757, 507, 286, 288, 214, 456,
- 10, 737, 547, 519, 402, 508, 973, 257, 15, 0,
- 338, 0, 0, 259, 1009, 560, 758, 1012, 262, 0,
- 0, 0, 0, 0, 0, 391, 0, 0, 0, 0,
- 0, 392, 0, 737, 547, 725, 227, 256, 32, 17,
- 393, 0, 394, 0, 395, 0, 396, 0, 0, 397,
- 3, 0, 9, 34, 35, 398, 735, 391, 36, 399,
- 305, -398, 62, 392, 751, 286, 288, 725, 22, 339,
- 32, 17, 393, 402, 394, 327, 395, 324, 396, 316,
- 1030, 397, 323, 357, 996, 34, 35, 398, 446, 771,
- 36, 399, 31, 573, 62, 574, 716, 286, 288, 838,
- 848, 790, 737, 547, 30, 402, 847, 850, 849, 846,
- 769, 774, 714, 973, 782, 839, 781, 19, 548, 333,
- 550, 555, 557, 558, 270, 271, 391, 332, 571, 570,
- 407, 408, 392, 568, 737, 547, 725, 566, 563, 32,
- 17, 393, 562, 394, 755, 395, 754, 396, 753, 961,
- 397, -442, 65, 855, 34, 35, 398, 264, 742, 36,
- 399, 960, 959, 62, 752, 744, 286, 288,-32766,-32766,
- -32766, 679, 1075, 678, 402, 681, 680, 670, 671, 780,
- 567, 712, 1076, 779, 1045, 1042, 1037, 1024,-32766, 1031,
- -32766,-32766,-32766,-32766,-32766,-32766,-32767,-32767,-32767,-32767,
- -32767, 1073, 250, 737, 547, -465, 953, -444, -443, 20,
- 23, 29, 33, 37, 64, 336, 334, 273, 238, 237,
- 236, 235, 218, 217, 132, 129, 123, 70, 69, 68,
- 67, 66, -467, 0, 308, 473, 937, 489, 539, -228,
- 940, 11, 965, 821, 994, 936, 984, 536, 388, -88,
- 381, 378, 375, 309, 16, 14, 13, 12, -225, -226,
- 0, -410, 0, 993, 501, 1071, 1036, 1023, 1022, 0,
- 1011
- );
- protected $actionCheck = array(
- 2, 3, 4, 5, 6, 0, 8, 9, 10, 11,
- 12, 48, 15, 16, 17, 18, 19, 20, 21, 22,
- 23, 24, 25, 26, 27, 8, 9, 10, 50, 51,
- 52, 7, 54, 7, 79, 8, 9, 10, 7, 7,
- 77, 77, 79, 80, 66, 28, 7, 30, 31, 32,
- 33, 34, 54, 56, 57, 28, 8, 30, 31, 32,
- 33, 34, 35, 7, 109, 1, 68, 69, 70, 71,
- 72, 73, 74, 118, 7, 77, 112, 113, 114, 115,
- 116, 117, 84, 85, 86, 87, 88, 89, 90, 91,
- 92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
- 102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
- 112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
- 122, 123, 124, 125, 126, 127, 13, 129, 130, 131,
- 132, 133, 134, 135, 136, 137, 2, 3, 4, 5,
- 6, 143, 144, 145, 35, 11, 12, 1, 14, 41,
- 42, 43, 44, 45, 46, 47, 48, 49, 109, 82,
- 67, 112, 113, 114, 115, 116, 117, 118, 8, 9,
- 10, 79, 79, 79, 82, 1, 83, 7, 67, 28,
- 7, 47, 48, 152, 152, 154, 154, 53, 28, 55,
- 56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
- 67, 67, 68, 69, 70, 112, 8, 9, 10, 75,
- 76, 77, 148, 79, 13, 7, 139, 83, 8, 9,
- 10, 1, 129, 130, 28, 79, 28, 28, 30, 31,
- 32, 33, 140, 141, 29, 7, 102, 7, 28, 128,
- 30, 31, 32, 1, 151, 7, 112, 13, 7, 156,
- 156, 77, 7, 142, 120, 121, 147, 7, 112, 7,
- 149, 152, 151, 129, 130, 152, 132, 133, 134, 135,
- 136, 137, 138, 7, 67, 67, 67, 143, 144, 145,
- 146, 130, 131, 150, 1, 151, 7, 153, 7, 155,
- 156, 71, 72, 73, 74, 0, 1, 77, 77, 35,
- 67, 81, 156, 152, 84, 85, 86, 87, 88, 89,
- 90, 91, 92, 93, 15, 95, 96, 97, 98, 99,
- 100, 101, 102, 149, 104, 105, 130, 131, 108, 130,
- 131, 111, 112, 113, 114, 128, 128, 128, 7, 119,
- 67, 67, 122, 123, 124, 125, 7, 67, 152, 142,
- 142, 8, 9, 10, 149, 7, 149, 149, 151, 79,
- 152, 128, 79, 83, 143, 7, 71, 146, 148, 149,
- 150, 28, 77, 30, 31, 142, 81, 102, 103, 84,
- 85, 86, 149, 88, 33, 90, 146, 92, 29, 149,
- 95, 149, 112, 152, 99, 100, 101, 102, 103, 104,
- 105, 128, 128, 108, 109, 1, 111, 112, 113, 114,
- 130, 147, 15, 77, 119, 1, 142, 122, 123, 124,
- 125, 146, 149, 149, 8, 9, 8, 9, 10, 29,
- 79, 151, 149, 29, 72, 73, 156, 29, 143, 156,
- 8, 9, 10, 148, 149, 150, 28, 35, 30, 31,
- 32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
- 42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
- 52, 15, 54, 15, 1, 71, 47, 48, 49, 143,
- 15, 77, 146, 152, 66, 81, 150, 15, 84, 85,
- 86, 152, 88, 79, 90, 15, 92, 72, 73, 95,
- 152, 15, 29, 99, 100, 101, 1, 148, 104, 105,
- 152, 29, 108, 102, 103, 111, 112, 8, 9, 10,
- 97, 98, 13, 119, 102, 103, 112, 106, 107, 130,
- 131, 148, 149, 29, 29, 148, 149, 123, 35, 29,
- 29, 35, 35, 54, 71, 66, 77, 77, 67, 74,
- 77, 77, 148, 149, 81, 77, 79, 84, 85, 86,
- 77, 88, 77, 90, 77, 92, 78, 77, 95, 77,
- 156, 77, 99, 100, 101, 1, 71, 104, 105, 77,
- 79, 108, 77, 86, 111, 112, 81, 79, 89, 84,
- 85, 86, 119, 88, 79, 90, 80, 92, 102, 82,
- 95, 82, 109, 29, 99, 100, 101, 1, 87, 104,
- 105, 91, 94, 108, 123, 93, 111, 112, 94, 94,
- 94, 148, 149, 96, 119, 96, 112, 127, 152, -1,
- 146, -1, -1, 110, 139, 29, 123, 139, 126, -1,
- -1, -1, -1, -1, -1, 71, -1, -1, -1, -1,
- -1, 77, -1, 148, 149, 81, 35, 126, 84, 85,
- 86, -1, 88, -1, 90, -1, 92, -1, -1, 95,
- 142, -1, 142, 99, 100, 101, 1, 71, 104, 105,
- 142, 142, 108, 77, 147, 111, 112, 81, 67, 146,
- 84, 85, 86, 119, 88, 146, 90, 146, 92, 146,
- 79, 95, 146, 146, 83, 99, 100, 101, 146, 148,
- 104, 105, 148, 148, 108, 148, 148, 111, 112, 148,
- 148, 148, 148, 149, 148, 119, 148, 148, 148, 148,
- 148, 148, 148, 112, 148, 148, 148, 152, 149, 149,
- 149, 149, 149, 149, 149, 149, 71, 149, 149, 149,
- 129, 130, 77, 149, 148, 149, 81, 149, 149, 84,
- 85, 86, 149, 88, 150, 90, 150, 92, 150, 150,
- 95, 151, 151, 150, 99, 100, 101, 156, 150, 104,
- 105, 150, 150, 108, 150, 150, 111, 112, 8, 9,
- 10, 150, 150, 150, 119, 150, 150, 150, 150, 150,
- 150, 150, 150, 150, 150, 150, 150, 150, 28, 150,
- 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
- 40, 150, 152, 148, 149, 151, 153, 151, 151, 151,
- 151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
- 151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
- 151, 151, 151, -1, 152, 152, 152, 152, 152, 152,
- 152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
- 152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
- -1, 153, -1, 154, 154, 154, 154, 154, 154, -1,
- 155
- );
- protected $actionBase = array(
- 0, 220, 295, 283, 336, 572, -2, -2, -2, -2,
- -36, 505, 473, 606, 473, 574, 404, 675, 675, 675,
- 109, 264, 506, 506, 506, 488, 504, 503, 507, 134,
- 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
- 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
- 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
- 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
- 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
- 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
- 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
- 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
- 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
- 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
- 134, 134, 134, 64, 64, 359, 201, 670, 708, 703,
- 476, 709, 524, 702, 704, 234, 671, 659, 408, 657,
- 656, 655, 654, 705, 730, 585, 706, 418, 418, 418,
- 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
- 418, 418, 418, 48, 509, 416, 432, 432, 432, 432,
- 432, 432, 432, 432, 432, 432, 432, 432, 432, 432,
- 432, 432, 432, 432, 432, 160, 160, 160, 343, 210,
- 208, 198, 17, 233, 27, 780, 780, 780, 780, 780,
- 108, 108, 108, 108, 621, 621, 93, 280, 280, 280,
- 280, 280, 280, 280, 280, 280, 280, 280, 614, 616,
- 618, 619, 414, 429, 429, 196, 196, 196, 196, 146,
- 151, -45, 199, 77, 498, 735, 399, 174, 174, 111,
- 207, -22, -22, -22, 275, 517, 514, 514, 514, 514,
- 92, 92, 514, 514, 242, -37, 233, 233, 274, 233,
- 422, 422, 422, 221, 240, 519, 221, 591, 529, 653,
- 527, 649, 273, 31, 32, 484, 94, 543, 496, 94,
- 421, 362, 425, 717, 64, 539, 64, 64, 64, 64,
- 64, 64, 64, 64, 64, 94, 94, 64, 205, 64,
- 387, 359, 383, 489, 502, 209, 595, 339, 241, 133,
- 489, 489, 489, 596, 598, 331, 113, 590, 348, 411,
- 358, 351, 469, 469, 412, 478, 494, 469, 469, 469,
- 469, 508, 469, 678, 678, 682, 412, 469, 678, 412,
- 266, 24, 173, 67, 412, 281, 531, 469, 512, 512,
- 279, 478, 515, 230, 250, 500, 678, 678, 500, 494,
- 56, 412, 26, 565, 567, 493, 537, 39, 400, 400,
- 238, 493, 228, 412, 400, 508, 245, 170, 400, 5,
- 683, 700, 482, 699, 680, 698, 684, 697, 487, 589,
- 491, 513, 692, 691, 696, 470, 485, 681, 679, 562,
- 483, 456, 465, 528, 481, 620, 496, 557, 479, 479,
- 479, 481, 676, 479, 479, 479, 479, 479, 479, 479,
- 479, 729, 252, 538, 497, 486, 553, 525, 458, 608,
- 495, 562, 562, 651, 728, 673, 474, 690, 714, 695,
- 576, 472, 722, 689, 650, 556, 490, 551, 688, 721,
- 713, 604, 456, 712, 652, 492, 562, 648, 479, 674,
- 701, 734, 733, 677, 732, 720, 549, 516, 731, 647,
- 711, 600, 599, 564, 725, 707, 719, 646, 718, 568,
- 521, 727, 522, 685, 501, 686, 592, 645, 643, 299,
- 571, 642, 694, 573, 724, 723, 726, 583, 588, 593,
- 594, 480, 641, 397, 587, 693, 511, 475, 520, 586,
- 477, 710, 635, 613, 687, 584, 561, 634, 632, 715,
- 518, 557, 530, 523, 526, 499, 609, 631, 716, 510,
- 582, 581, 580, 579, 628, 578, 623, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 134, 134, -2,
- -2, -2, 0, 0, 0, 0, -2, 134, 134, 134,
- 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
- 134, 134, 134, 134, 134, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 418,
- 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
- 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
- 418, 418, 418, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 418,
- 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
- 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
- 418, 418, 418, 418, 418, 418, -3, 418, 418, -3,
- 418, 418, 418, 418, 418, 418, -22, -22, -22, -22,
- 221, 221, 221, 221, 221, 221, 221, 221, 221, 221,
- 221, 221, 221, 221, 49, 49, 49, 49, 221, -22,
- -22, 221, 221, 221, 221, 221, 221, 49, 221, 92,
- 92, 92, 221, 94, 94, 0, 0, 0, 0, 0,
- 469, 92, 221, 221, 221, 221, 0, 0, 221, 221,
- 94, 0, 0, 0, 0, 0, 469, 469, 469, 0,
- 469, 92, 0, 64, 423, 423, 423, 423, 0, 0,
- 0, 469, 0, 469, 515, 0, 0, 0, 0, 412,
- 0, 678, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 479,
- 690, 0, 474, 0, 0, 0, 479, 479, 479, 474,
- 474, 0, 0, 474
- );
- protected $actionDefault = array(
- 3,32767,32767,32767,32767,32767,32767, 88,32767,32767,
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
- 32767, 88, 487, 487, 487,32767,32767,32767,32767, 300,
- 300, 300,32767, 479, 437, 437, 437, 437, 437, 437,
- 437, 479,32767,32767,32767,32767,32767, 379,32767,32767,
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
- 32767,32767,32767,32767,32767,32767,32767,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, 88,32767,32767,32767,
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
- 32767,32767,32767,32767,32767,32767, 484,32767,32767,32767,
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
- 32767,32767,32767,32767,32767,32767,32767, 362, 363, 365,
- 366, 299, 438, 248, 483, 298, 124, 259, 250, 202,
- 296, 234, 128, 327, 380, 329, 378, 382, 328, 305,
- 309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
- 319, 320, 303, 304, 381, 359, 358, 357, 325, 326,
- 302, 330, 332, 302, 331, 348, 349, 346, 347, 350,
- 351, 352, 353, 354,32767,32767,32767,32767,32767,32767,
- 32767,32767,32767,32767,32767,32767, 88,32767, 282, 282,
- 282, 282,32767, 339, 340, 240, 240, 240, 240,32767,
- 240, 283,32767,32767,32767,32767,32767,32767,32767, 431,
- 356, 334, 335, 333,32767, 409,32767,32767,32767,32767,
- 32767, 411,32767, 88,32767,32767, 322, 324, 403, 306,
- 32767,32767, 88,32767,32767,32767,32767,32767,32767,32767,
- 32767,32767, 406, 439, 439,32767,32767, 88, 397, 88,
- 167, 221, 223, 172,32767, 414,32767,32767,32767,32767,
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
- 32767,32767,32767, 344,32767, 494,32767, 439,32767,32767,
- 336, 337, 338,32767,32767, 439, 439,32767, 439,32767,
- 439,32767,32767,32767, 172,32767,32767,32767,32767,32767,
- 32767,32767, 88, 412, 412, 407, 172,32767,32767, 172,
- 87, 87, 87, 87, 172, 87, 185,32767, 183, 183,
- 87, 88, 88, 87, 87, 187,32767, 453, 187, 88,
- 87, 172, 87, 207, 207, 388, 174, 87, 242, 242,
- 87, 388, 87, 172, 242, 88, 87, 87, 242,32767,
- 32767,32767, 82,32767,32767,32767,32767,32767,32767,32767,
- 32767,32767,32767,32767,32767,32767,32767,32767,32767, 399,
- 32767,32767, 419,32767, 432, 451, 397,32767, 342, 343,
- 345,32767, 441, 367, 368, 369, 370, 371, 372, 373,
- 375,32767, 480, 402,32767,32767, 84, 115, 258,32767,
- 492, 84, 400,32767, 492,32767,32767,32767,32767,32767,
- 32767,32767,32767,32767,32767, 84,32767, 84,32767,32767,
- 32767,32767, 476,32767, 439,32767, 401,32767, 341, 415,
- 458,32767,32767, 440,32767,32767, 84,32767,32767,32767,
- 32767,32767,32767,32767,32767, 419,32767,32767,32767,32767,
- 32767, 439,32767,32767,32767,32767,32767,32767,32767, 295,
- 32767,32767,32767,32767,32767,32767, 439,32767,32767,32767,
- 32767, 233,32767,32767,32767,32767,32767,32767,32767,32767,
- 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
- 82, 60,32767, 276,32767,32767,32767,32767,32767,32767,
- 32767,32767,32767,32767,32767,32767,32767, 130, 130, 3,
- 3, 130, 130, 130, 130, 130, 130, 130, 130, 130,
- 130, 130, 130, 130, 130, 130, 261, 162, 261, 215,
- 261, 261, 218, 207, 207, 268
- );
- protected $goto = array(
- 163, 163, 136, 136, 136, 146, 148, 179, 164, 161,
- 161, 161, 161, 145, 162, 162, 162, 162, 162, 162,
- 162, 145, 157, 158, 159, 160, 176, 174, 177, 418,
- 419, 313, 420, 423, 424, 425, 426, 427, 428, 429,
- 430, 884, 134, 137, 138, 139, 140, 141, 142, 143,
- 144, 147, 173, 175, 178, 195, 198, 199, 201, 202,
- 204, 205, 206, 207, 208, 209, 210, 211, 212, 213,
- 233, 234, 251, 252, 253, 320, 321, 322, 468, 180,
- 181, 182, 183, 184, 185, 186, 187, 188, 189, 190,
- 191, 192, 193, 149, 194, 150, 165, 166, 167, 196,
- 168, 151, 152, 153, 169, 154, 197, 135, 170, 155,
- 171, 172, 156, 532, 200, 436, 732, 279, 469, 853,
- 545, 5, 200, 524, 851, 470, 667, 708, 665, 261,
- 462, 441, 441, 441, 245, 441, 666, 789, 462, 768,
- 702, 569, 433, 434, 798, 793, 457, 454, 441, 433,
- 572, 490, 492, 518, 522, 786, 527, 528, 800, 535,
- 785, 537, 544, 796, 546, 543, 766, 766, 766, 766,
- 483, 504, 760, 767, 1065, 1065, 697, 685, 827, 314,
- 831, 510, 447, 467, 479, 775, 523, 458, 745, 480,
- 312, 1065, 729, 441, 441, 805, 772, 765, 455, 476,
- 441, 441, 688, 441, 376, 682, 823, 868, 442, 463,
- 1049, 701, 966, 486, 488, 538, 8, 1057, 466, 421,
- 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
- 421, 421, 421, 422, 422, 422, 422, 422, 422, 422,
- 422, 422, 422, 422, 422, 422, 422, 298, 301, 448,
- 471, 472, 474, 229, 296, 230, 231, 970, 505, 669,
- 485, 485, 995, 995, 995, 995, 995, 995, 995, 995,
- 995, 995, 995, 995, 460, 931, 674, 808, 724, 719,
- 720, 733, 675, 721, 672, 722, 723, 819, 812, 673,
- 689, 727, 764, 310, 541, 326, 506, 330, 317, 317,
- 266, 267, 283, 464, 269, 325, 284, 328, 491, 693,
- 971, 803, 803, 1054, 1038, 285, 280, 281, 497, 1064,
- 1064, 686, 277, 307, 556, 512, 368, 967, 972, 1026,
- 828, 962, 698, 482, 832, 777, 1064, 384, 870, 0,
- 693, 974, 693, 0, 813, 813, 813, 813, 974, 813,
- 1067, 813, 861, 0, 1035, 813, 0, 0, 0, 0,
- 0, 1035, 0, 0, 0, 974, 974, 974, 974, 1046,
- 1046, 974, 974, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 740, 0, 0, 741, 1032, 684, 684, 0,
- 0, 0, 694, 694, 694, 696, 0, 683, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 830, 0,
- 0, 830, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 1039, 1040
- );
- protected $gotoCheck = array(
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 59, 52, 8, 10, 75, 7, 7,
- 7, 105, 52, 7, 7, 92, 14, 12, 12, 127,
- 80, 8, 8, 8, 127, 8, 13, 12, 80, 12,
- 32, 12, 70, 12, 12, 12, 8, 35, 8, 70,
- 35, 35, 35, 35, 35, 35, 35, 35, 35, 35,
- 35, 35, 35, 35, 35, 5, 70, 70, 70, 70,
- 42, 42, 70, 70, 139, 139, 11, 11, 11, 61,
- 11, 64, 61, 2, 2, 11, 64, 61, 11, 11,
- 64, 139, 51, 8, 8, 11, 36, 11, 8, 8,
- 8, 8, 11, 8, 61, 11, 89, 11, 8, 129,
- 135, 11, 11, 63, 63, 63, 61, 137, 8, 128,
- 128, 128, 128, 128, 128, 128, 128, 128, 128, 128,
- 128, 128, 128, 130, 130, 130, 130, 130, 130, 130,
- 130, 130, 130, 130, 130, 130, 130, 45, 45, 45,
- 45, 45, 45, 68, 48, 68, 68, 87, 50, 10,
- 81, 81, 81, 81, 81, 81, 81, 81, 81, 81,
- 81, 81, 81, 81, 49, 111, 10, 83, 10, 10,
- 10, 10, 10, 10, 10, 10, 10, 85, 86, 10,
- 26, 10, 71, 71, 71, 52, 52, 52, 52, 52,
- 52, 52, 52, 52, 52, 52, 52, 52, 52, 22,
- 87, 80, 80, 80, 132, 16, 75, 75, 20, 138,
- 138, 24, 9, 15, 77, 19, 66, 120, 87, 87,
- 91, 117, 28, 67, 94, 74, 138, 115, 108, -1,
- 22, 59, 22, -1, 59, 59, 59, 59, 59, 59,
- 138, 59, 105, -1, 92, 59, -1, -1, -1, -1,
- -1, 92, -1, -1, -1, 59, 59, 59, 59, 92,
- 92, 59, 59, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 59, -1, -1, 59, 92, 22, 22, -1,
- -1, -1, 22, 22, 22, 22, -1, 22, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 92, -1,
- -1, 92, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 92, 92
- );
- protected $gotoBase = array(
- 0, 0, -366, 0, 0, 155, 0, 115, -139, 48,
- -18, -175, 126, 134, 124, 38, 61, 0, 0, -8,
- 47, 0, 55, 0, 34, 0, 18, 0, -29, -20,
- 0, 0, 133, 0, 0, -401, 180, 0, 0, 0,
- 0, 0, 140, 0, 0, 212, 0, 0, 222, 56,
- 43, 178, 81, 0, 0, 0, 0, 0, 0, 109,
- 0, -167, 0, -23, -198, 0, -33, -35, -315, 0,
- -90, 35, 0, 0, -34, -257, 0, 13, 0, 0,
- 97, 46, 0, 37, 0, 45, 42, -38, 0, 185,
- 0, 41, 122, 0, -28, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 111, 0, 0, -47, 0,
- 0, 36, 0, 0, 0, -44, 0, -13, 0, 0,
- -7, 0, 0, 0, 0, 0, 0, -126, 5, 186,
- 19, 0, 66, 0, 0, 169, 0, 193, 75, -70,
- 0, 0
- );
- protected $gotoDefault = array(
- -32768, 389, 577, 2, 578, 649, 657, 513, 409, 437,
- 726, 873, 770, 709, 710, 302, 340, 294, 300, 498,
- 487, 380, 695, 352, 687, 377, 690, 351, 699, 133,
- 514, 386, 703, 1, 705, 443, 736, 291, 713, 292,
- 517, 715, 450, 717, 718, 297, 303, 304, 877, 459,
- 484, 728, 203, 452, 730, 290, 731, 739, 331, 295,
- 363, 520, 494, 475, 509, 410, 365, 481, 228, 461,
- 981, 762, 372, 360, 776, 278, 784, 561, 792, 795,
- 411, 412, 370, 807, 371, 817, 811, 989, 364, 822,
- 353, 829, 1021, 355, 833, 836, 341, 500, 329, 840,
- 841, 4, 845, 533, 534, 860, 241, 382, 869, 350,
- 883, 344, 950, 952, 445, 379, 963, 359, 521, 387,
- 968, 1025, 348, 413, 366, 268, 282, 244, 414, 431,
- 249, 415, 367, 1028, 318, 1050, 432, 1058, 1066, 275,
- 315, 478
- );
- protected $ruleToNonTerminal = array(
- 0, 1, 3, 3, 2, 5, 5, 5, 5, 5,
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
- 5, 5, 5, 6, 6, 6, 6, 6, 6, 6,
- 7, 7, 8, 8, 9, 10, 10, 11, 11, 4,
- 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
- 16, 16, 17, 17, 17, 17, 19, 21, 21, 15,
- 23, 23, 20, 25, 25, 22, 22, 24, 24, 26,
- 26, 18, 27, 27, 28, 30, 31, 31, 32, 33,
- 33, 35, 34, 34, 34, 34, 36, 36, 36, 36,
- 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
- 36, 36, 36, 36, 36, 36, 36, 36, 36, 36,
- 12, 12, 55, 55, 58, 58, 57, 56, 56, 49,
- 60, 60, 61, 61, 62, 62, 13, 14, 14, 14,
- 65, 65, 65, 66, 66, 69, 69, 67, 67, 71,
- 72, 72, 43, 43, 51, 51, 54, 54, 54, 53,
- 73, 73, 74, 44, 44, 44, 44, 75, 75, 76,
- 76, 77, 77, 41, 41, 37, 37, 78, 39, 39,
- 79, 38, 38, 40, 40, 50, 50, 50, 50, 63,
- 63, 82, 82, 83, 83, 85, 85, 86, 86, 86,
- 84, 84, 64, 64, 87, 87, 88, 88, 89, 89,
- 89, 46, 90, 90, 91, 47, 93, 93, 94, 94,
- 68, 68, 95, 95, 95, 95, 100, 100, 101, 101,
- 102, 102, 102, 102, 102, 103, 104, 104, 99, 99,
- 96, 96, 98, 98, 106, 106, 105, 105, 105, 105,
- 105, 105, 97, 107, 107, 108, 108, 48, 109, 109,
- 42, 42, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
- 29, 29, 29, 29, 29, 116, 110, 110, 115, 115,
- 118, 119, 119, 120, 121, 121, 121, 70, 70, 59,
- 59, 59, 111, 111, 111, 123, 123, 112, 112, 114,
- 114, 114, 117, 117, 128, 128, 128, 81, 130, 130,
- 130, 113, 113, 113, 113, 113, 113, 113, 113, 113,
- 113, 113, 113, 113, 113, 113, 113, 45, 45, 126,
- 126, 126, 122, 122, 122, 131, 131, 131, 131, 131,
- 131, 52, 52, 52, 92, 92, 92, 92, 133, 125,
- 125, 125, 125, 125, 125, 124, 124, 124, 132, 132,
- 132, 132, 80, 134, 134, 135, 135, 135, 135, 135,
- 129, 136, 136, 137, 137, 137, 137, 137, 127, 127,
- 127, 127, 139, 140, 138, 138, 138, 138, 138, 138,
- 138, 141, 141, 141, 141
- );
- protected $ruleToLength = array(
- 1, 1, 2, 0, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 3, 1, 1, 1, 0, 1, 1,
- 1, 1, 1, 3, 5, 4, 3, 4, 2, 3,
- 1, 1, 7, 8, 6, 7, 2, 3, 1, 2,
- 3, 1, 2, 3, 1, 1, 3, 1, 2, 1,
- 2, 2, 3, 1, 3, 2, 3, 1, 3, 2,
- 0, 1, 1, 1, 1, 1, 3, 7, 10, 5,
- 7, 9, 5, 3, 3, 3, 3, 3, 3, 1,
- 2, 5, 7, 9, 5, 6, 3, 3, 2, 1,
- 1, 1, 0, 2, 1, 3, 8, 0, 4, 2,
- 1, 3, 0, 1, 0, 1, 10, 7, 6, 5,
- 1, 2, 2, 0, 2, 0, 2, 0, 2, 2,
- 1, 3, 1, 4, 1, 4, 1, 1, 4, 2,
- 1, 3, 3, 3, 4, 4, 5, 0, 2, 4,
- 3, 1, 1, 1, 4, 0, 2, 5, 0, 2,
- 6, 0, 2, 0, 3, 1, 2, 1, 1, 2,
- 0, 1, 3, 4, 6, 1, 2, 1, 1, 1,
- 0, 1, 0, 2, 2, 4, 1, 3, 1, 2,
- 2, 2, 3, 1, 1, 2, 3, 1, 1, 3,
- 2, 0, 3, 4, 9, 3, 1, 3, 0, 2,
- 4, 5, 4, 4, 4, 3, 1, 1, 1, 3,
- 1, 1, 0, 1, 1, 2, 1, 1, 1, 1,
- 1, 1, 2, 1, 3, 1, 3, 2, 3, 1,
- 0, 1, 1, 3, 3, 3, 4, 1, 2, 3,
- 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
- 3, 2, 2, 2, 2, 3, 3, 3, 3, 3,
- 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
- 3, 3, 2, 2, 2, 2, 3, 3, 3, 3,
- 3, 3, 3, 3, 3, 3, 3, 5, 4, 3,
- 4, 4, 2, 2, 4, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 1, 3, 2, 1,
- 2, 4, 2, 10, 11, 7, 3, 2, 0, 4,
- 2, 1, 3, 2, 2, 2, 4, 1, 1, 1,
- 2, 3, 1, 1, 1, 1, 1, 0, 3, 0,
- 1, 1, 0, 1, 1, 3, 3, 3, 4, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 3, 2, 3, 3, 0, 1, 1,
- 3, 1, 1, 3, 1, 1, 4, 4, 4, 1,
- 4, 1, 1, 3, 1, 4, 2, 2, 3, 1,
- 4, 4, 3, 3, 3, 1, 3, 1, 1, 3,
- 1, 1, 4, 3, 1, 1, 1, 3, 3, 0,
- 1, 3, 1, 3, 1, 4, 2, 0, 2, 2,
- 1, 2, 1, 1, 1, 4, 3, 3, 3, 6,
- 3, 1, 1, 2, 1
- );
- protected function reduceRule0() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule1() {
- $this->semValue = $this->handleNamespaces($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule2() {
- if (is_array($this->semStack[$this->stackPos-(2-2)])) { $this->semValue = array_merge($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]); } else { $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; };
- }
- protected function reduceRule3() {
- $this->semValue = array();
- }
- protected function reduceRule4() {
- $startAttributes = $this->lookaheadStartAttributes; if (isset($startAttributes['comments'])) { $nop = new Stmt\Nop(['comments' => $startAttributes['comments']]); } else { $nop = null; };
- if ($nop !== null) { $this->semStack[$this->stackPos-(1-1)][] = $nop; } $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule5() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule6() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule7() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule8() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule9() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule10() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule11() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule12() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule13() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule14() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule15() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule16() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule17() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule18() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule19() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule20() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule21() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule22() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule23() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule24() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule25() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule26() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule27() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule28() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule29() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule30() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule31() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule32() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule33() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule34() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule35() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule36() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule37() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule38() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule39() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule40() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule41() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule42() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule43() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule44() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule45() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule46() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule47() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule48() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule49() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule50() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule51() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule52() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule53() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule54() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule55() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule56() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule57() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule58() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule59() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule60() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule61() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule62() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule63() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule64() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule65() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule66() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule67() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule68() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule69() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule70() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule71() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule72() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule73() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule74() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule75() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule76() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule77() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule78() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule79() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule80() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule81() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule82() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule83() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule84() {
- $this->semValue = new Name($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule85() {
- /* nothing */
- }
- protected function reduceRule86() {
- /* nothing */
- }
- protected function reduceRule87() {
- /* nothing */
- }
- protected function reduceRule88() {
- $this->emitError(new Error('A trailing comma is not allowed here', $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes));
- }
- protected function reduceRule89() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule90() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule91() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule92() {
- $this->semValue = new Stmt\HaltCompiler($this->lexer->handleHaltCompiler(), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule93() {
- $this->semValue = new Stmt\Namespace_($this->semStack[$this->stackPos-(3-2)], null, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); $this->checkNamespace($this->semValue);
- }
- protected function reduceRule94() {
- $this->semValue = new Stmt\Namespace_($this->semStack[$this->stackPos-(5-2)], $this->semStack[$this->stackPos-(5-4)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes); $this->checkNamespace($this->semValue);
- }
- protected function reduceRule95() {
- $this->semValue = new Stmt\Namespace_(null, $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); $this->checkNamespace($this->semValue);
- }
- protected function reduceRule96() {
- $this->semValue = new Stmt\Use_($this->semStack[$this->stackPos-(3-2)], Stmt\Use_::TYPE_NORMAL, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule97() {
- $this->semValue = new Stmt\Use_($this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-2)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule98() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule99() {
- $this->semValue = new Stmt\Const_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule100() {
- $this->semValue = Stmt\Use_::TYPE_FUNCTION;
- }
- protected function reduceRule101() {
- $this->semValue = Stmt\Use_::TYPE_CONSTANT;
- }
- protected function reduceRule102() {
- $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(7-3)], $this->startAttributeStack[$this->stackPos-(7-3)] + $this->endAttributeStack[$this->stackPos-(7-3)]), $this->semStack[$this->stackPos-(7-6)], $this->semStack[$this->stackPos-(7-2)], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes);
- }
- protected function reduceRule103() {
- $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(8-4)], $this->startAttributeStack[$this->stackPos-(8-4)] + $this->endAttributeStack[$this->stackPos-(8-4)]), $this->semStack[$this->stackPos-(8-7)], $this->semStack[$this->stackPos-(8-2)], $this->startAttributeStack[$this->stackPos-(8-1)] + $this->endAttributes);
- }
- protected function reduceRule104() {
- $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(6-2)], $this->startAttributeStack[$this->stackPos-(6-2)] + $this->endAttributeStack[$this->stackPos-(6-2)]), $this->semStack[$this->stackPos-(6-5)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes);
- }
- protected function reduceRule105() {
- $this->semValue = new Stmt\GroupUse(new Name($this->semStack[$this->stackPos-(7-3)], $this->startAttributeStack[$this->stackPos-(7-3)] + $this->endAttributeStack[$this->stackPos-(7-3)]), $this->semStack[$this->stackPos-(7-6)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes);
- }
- protected function reduceRule106() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule107() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule108() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule109() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule110() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule111() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule112() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule113() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule114() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule115() {
- $this->semValue = new Stmt\UseUse($this->semStack[$this->stackPos-(1-1)], null, Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); $this->checkUseUse($this->semValue, $this->stackPos-(1-1));
- }
- protected function reduceRule116() {
- $this->semValue = new Stmt\UseUse($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], Stmt\Use_::TYPE_UNKNOWN, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); $this->checkUseUse($this->semValue, $this->stackPos-(3-3));
- }
- protected function reduceRule117() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule118() {
- $this->semValue = $this->semStack[$this->stackPos-(2-2)];
- }
- protected function reduceRule119() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)]; $this->semValue->type = Stmt\Use_::TYPE_NORMAL;
- }
- protected function reduceRule120() {
- $this->semValue = $this->semStack[$this->stackPos-(2-2)]; $this->semValue->type = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule121() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule122() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule123() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule124() {
- $this->semValue = new Node\Const_($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule125() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule126() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule127() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule128() {
- $this->semValue = new Node\Const_($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule129() {
- if (is_array($this->semStack[$this->stackPos-(2-2)])) { $this->semValue = array_merge($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]); } else { $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)]; };
- }
- protected function reduceRule130() {
- $this->semValue = array();
- }
- protected function reduceRule131() {
- $startAttributes = $this->lookaheadStartAttributes; if (isset($startAttributes['comments'])) { $nop = new Stmt\Nop(['comments' => $startAttributes['comments']]); } else { $nop = null; };
- if ($nop !== null) { $this->semStack[$this->stackPos-(1-1)][] = $nop; } $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule132() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule133() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule134() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule135() {
- throw new Error('__HALT_COMPILER() can only be used from the outermost scope', $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule136() {
- $this->semValue = $this->semStack[$this->stackPos-(3-2)]; $attrs = $this->startAttributeStack[$this->stackPos-(3-1)]; $stmts = $this->semValue; if (!empty($attrs['comments']) && isset($stmts[0])) {$stmts[0]->setAttribute('comments', array_merge($attrs['comments'], $stmts[0]->getAttribute('comments', []))); };
- }
- protected function reduceRule137() {
- $this->semValue = new Stmt\If_($this->semStack[$this->stackPos-(7-3)], ['stmts' => is_array($this->semStack[$this->stackPos-(7-5)]) ? $this->semStack[$this->stackPos-(7-5)] : array($this->semStack[$this->stackPos-(7-5)]), 'elseifs' => $this->semStack[$this->stackPos-(7-6)], 'else' => $this->semStack[$this->stackPos-(7-7)]], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes);
- }
- protected function reduceRule138() {
- $this->semValue = new Stmt\If_($this->semStack[$this->stackPos-(10-3)], ['stmts' => $this->semStack[$this->stackPos-(10-6)], 'elseifs' => $this->semStack[$this->stackPos-(10-7)], 'else' => $this->semStack[$this->stackPos-(10-8)]], $this->startAttributeStack[$this->stackPos-(10-1)] + $this->endAttributes);
- }
- protected function reduceRule139() {
- $this->semValue = new Stmt\While_($this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
- }
- protected function reduceRule140() {
- $this->semValue = new Stmt\Do_($this->semStack[$this->stackPos-(7-5)], is_array($this->semStack[$this->stackPos-(7-2)]) ? $this->semStack[$this->stackPos-(7-2)] : array($this->semStack[$this->stackPos-(7-2)]), $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes);
- }
- protected function reduceRule141() {
- $this->semValue = new Stmt\For_(['init' => $this->semStack[$this->stackPos-(9-3)], 'cond' => $this->semStack[$this->stackPos-(9-5)], 'loop' => $this->semStack[$this->stackPos-(9-7)], 'stmts' => $this->semStack[$this->stackPos-(9-9)]], $this->startAttributeStack[$this->stackPos-(9-1)] + $this->endAttributes);
- }
- protected function reduceRule142() {
- $this->semValue = new Stmt\Switch_($this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
- }
- protected function reduceRule143() {
- $this->semValue = new Stmt\Break_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule144() {
- $this->semValue = new Stmt\Continue_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule145() {
- $this->semValue = new Stmt\Return_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule146() {
- $this->semValue = new Stmt\Global_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule147() {
- $this->semValue = new Stmt\Static_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule148() {
- $this->semValue = new Stmt\Echo_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule149() {
- $this->semValue = new Stmt\InlineHTML($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule150() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule151() {
- $this->semValue = new Stmt\Unset_($this->semStack[$this->stackPos-(5-3)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
- }
- protected function reduceRule152() {
- $this->semValue = new Stmt\Foreach_($this->semStack[$this->stackPos-(7-3)], $this->semStack[$this->stackPos-(7-5)][0], ['keyVar' => null, 'byRef' => $this->semStack[$this->stackPos-(7-5)][1], 'stmts' => $this->semStack[$this->stackPos-(7-7)]], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes);
- }
- protected function reduceRule153() {
- $this->semValue = new Stmt\Foreach_($this->semStack[$this->stackPos-(9-3)], $this->semStack[$this->stackPos-(9-7)][0], ['keyVar' => $this->semStack[$this->stackPos-(9-5)], 'byRef' => $this->semStack[$this->stackPos-(9-7)][1], 'stmts' => $this->semStack[$this->stackPos-(9-9)]], $this->startAttributeStack[$this->stackPos-(9-1)] + $this->endAttributes);
- }
- protected function reduceRule154() {
- $this->semValue = new Stmt\Declare_($this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
- }
- protected function reduceRule155() {
- $this->semValue = new Stmt\TryCatch($this->semStack[$this->stackPos-(6-3)], $this->semStack[$this->stackPos-(6-5)], $this->semStack[$this->stackPos-(6-6)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); $this->checkTryCatch($this->semValue);
- }
- protected function reduceRule156() {
- $this->semValue = new Stmt\Throw_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule157() {
- $this->semValue = new Stmt\Goto_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule158() {
- $this->semValue = new Stmt\Label($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule159() {
- $this->semValue = array(); /* means: no statement */
- }
- protected function reduceRule160() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule161() {
- $startAttributes = $this->startAttributeStack[$this->stackPos-(1-1)]; if (isset($startAttributes['comments'])) { $this->semValue = new Stmt\Nop(['comments' => $startAttributes['comments']]); } else { $this->semValue = null; };
- if ($this->semValue === null) $this->semValue = array(); /* means: no statement */
- }
- protected function reduceRule162() {
- $this->semValue = array();
- }
- protected function reduceRule163() {
- $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule164() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule165() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule166() {
- $this->semValue = new Stmt\Catch_($this->semStack[$this->stackPos-(8-3)], substr($this->semStack[$this->stackPos-(8-4)], 1), $this->semStack[$this->stackPos-(8-7)], $this->startAttributeStack[$this->stackPos-(8-1)] + $this->endAttributes);
- }
- protected function reduceRule167() {
- $this->semValue = null;
- }
- protected function reduceRule168() {
- $this->semValue = new Stmt\Finally_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule169() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule170() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule171() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule172() {
- $this->semValue = false;
- }
- protected function reduceRule173() {
- $this->semValue = true;
- }
- protected function reduceRule174() {
- $this->semValue = false;
- }
- protected function reduceRule175() {
- $this->semValue = true;
- }
- protected function reduceRule176() {
- $this->semValue = new Stmt\Function_($this->semStack[$this->stackPos-(10-3)], ['byRef' => $this->semStack[$this->stackPos-(10-2)], 'params' => $this->semStack[$this->stackPos-(10-5)], 'returnType' => $this->semStack[$this->stackPos-(10-7)], 'stmts' => $this->semStack[$this->stackPos-(10-9)]], $this->startAttributeStack[$this->stackPos-(10-1)] + $this->endAttributes);
- }
- protected function reduceRule177() {
- $this->semValue = new Stmt\Class_($this->semStack[$this->stackPos-(7-2)], ['type' => $this->semStack[$this->stackPos-(7-1)], 'extends' => $this->semStack[$this->stackPos-(7-3)], 'implements' => $this->semStack[$this->stackPos-(7-4)], 'stmts' => $this->semStack[$this->stackPos-(7-6)]], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes);
- $this->checkClass($this->semValue, $this->stackPos-(7-2));
- }
- protected function reduceRule178() {
- $this->semValue = new Stmt\Interface_($this->semStack[$this->stackPos-(6-2)], ['extends' => $this->semStack[$this->stackPos-(6-3)], 'stmts' => $this->semStack[$this->stackPos-(6-5)]], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes);
- $this->checkInterface($this->semValue, $this->stackPos-(6-2));
- }
- protected function reduceRule179() {
- $this->semValue = new Stmt\Trait_($this->semStack[$this->stackPos-(5-2)], ['stmts' => $this->semStack[$this->stackPos-(5-4)]], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
- }
- protected function reduceRule180() {
- $this->semValue = 0;
- }
- protected function reduceRule181() {
- $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT;
- }
- protected function reduceRule182() {
- $this->semValue = Stmt\Class_::MODIFIER_FINAL;
- }
- protected function reduceRule183() {
- $this->semValue = null;
- }
- protected function reduceRule184() {
- $this->semValue = $this->semStack[$this->stackPos-(2-2)];
- }
- protected function reduceRule185() {
- $this->semValue = array();
- }
- protected function reduceRule186() {
- $this->semValue = $this->semStack[$this->stackPos-(2-2)];
- }
- protected function reduceRule187() {
- $this->semValue = array();
- }
- protected function reduceRule188() {
- $this->semValue = $this->semStack[$this->stackPos-(2-2)];
- }
- protected function reduceRule189() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule190() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule191() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule192() {
- $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule193() {
- $this->semValue = $this->semStack[$this->stackPos-(4-2)];
- }
- protected function reduceRule194() {
- $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule195() {
- $this->semValue = $this->semStack[$this->stackPos-(4-2)];
- }
- protected function reduceRule196() {
- $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule197() {
- $this->semValue = null;
- }
- protected function reduceRule198() {
- $this->semValue = $this->semStack[$this->stackPos-(4-2)];
- }
- protected function reduceRule199() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule200() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule201() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule202() {
- $this->semValue = new Stmt\DeclareDeclare($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule203() {
- $this->semValue = $this->semStack[$this->stackPos-(3-2)];
- }
- protected function reduceRule204() {
- $this->semValue = $this->semStack[$this->stackPos-(4-3)];
- }
- protected function reduceRule205() {
- $this->semValue = $this->semStack[$this->stackPos-(4-2)];
- }
- protected function reduceRule206() {
- $this->semValue = $this->semStack[$this->stackPos-(5-3)];
- }
- protected function reduceRule207() {
- $this->semValue = array();
- }
- protected function reduceRule208() {
- $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule209() {
- $this->semValue = new Stmt\Case_($this->semStack[$this->stackPos-(4-2)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule210() {
- $this->semValue = new Stmt\Case_(null, $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule211() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule212() {
- $this->semValue = $this->semStack[$this->stackPos];
- }
- protected function reduceRule213() {
- $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule214() {
- $this->semValue = $this->semStack[$this->stackPos-(4-2)];
- }
- protected function reduceRule215() {
- $this->semValue = array();
- }
- protected function reduceRule216() {
- $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule217() {
- $this->semValue = new Stmt\ElseIf_($this->semStack[$this->stackPos-(5-3)], is_array($this->semStack[$this->stackPos-(5-5)]) ? $this->semStack[$this->stackPos-(5-5)] : array($this->semStack[$this->stackPos-(5-5)]), $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
- }
- protected function reduceRule218() {
- $this->semValue = array();
- }
- protected function reduceRule219() {
- $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule220() {
- $this->semValue = new Stmt\ElseIf_($this->semStack[$this->stackPos-(6-3)], $this->semStack[$this->stackPos-(6-6)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes);
- }
- protected function reduceRule221() {
- $this->semValue = null;
- }
- protected function reduceRule222() {
- $this->semValue = new Stmt\Else_(is_array($this->semStack[$this->stackPos-(2-2)]) ? $this->semStack[$this->stackPos-(2-2)] : array($this->semStack[$this->stackPos-(2-2)]), $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule223() {
- $this->semValue = null;
- }
- protected function reduceRule224() {
- $this->semValue = new Stmt\Else_($this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule225() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)], false);
- }
- protected function reduceRule226() {
- $this->semValue = array($this->semStack[$this->stackPos-(2-2)], true);
- }
- protected function reduceRule227() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)], false);
- }
- protected function reduceRule228() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)], false);
- }
- protected function reduceRule229() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule230() {
- $this->semValue = array();
- }
- protected function reduceRule231() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule232() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule233() {
- $this->semValue = new Node\Param(substr($this->semStack[$this->stackPos-(4-4)], 1), null, $this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-2)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); $this->checkParam($this->semValue);
- }
- protected function reduceRule234() {
- $this->semValue = new Node\Param(substr($this->semStack[$this->stackPos-(6-4)], 1), $this->semStack[$this->stackPos-(6-6)], $this->semStack[$this->stackPos-(6-1)], $this->semStack[$this->stackPos-(6-2)], $this->semStack[$this->stackPos-(6-3)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes); $this->checkParam($this->semValue);
- }
- protected function reduceRule235() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule236() {
- $this->semValue = new Node\NullableType($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule237() {
- $this->semValue = $this->handleBuiltinTypes($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule238() {
- $this->semValue = 'array';
- }
- protected function reduceRule239() {
- $this->semValue = 'callable';
- }
- protected function reduceRule240() {
- $this->semValue = null;
- }
- protected function reduceRule241() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule242() {
- $this->semValue = null;
- }
- protected function reduceRule243() {
- $this->semValue = $this->semStack[$this->stackPos-(2-2)];
- }
- protected function reduceRule244() {
- $this->semValue = array();
- }
- protected function reduceRule245() {
- $this->semValue = $this->semStack[$this->stackPos-(4-2)];
- }
- protected function reduceRule246() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule247() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule248() {
- $this->semValue = new Node\Arg($this->semStack[$this->stackPos-(1-1)], false, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule249() {
- $this->semValue = new Node\Arg($this->semStack[$this->stackPos-(2-2)], true, false, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule250() {
- $this->semValue = new Node\Arg($this->semStack[$this->stackPos-(2-2)], false, true, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule251() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule252() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule253() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule254() {
- $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule255() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule256() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule257() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule258() {
- $this->semValue = new Stmt\StaticVar(substr($this->semStack[$this->stackPos-(1-1)], 1), null, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule259() {
- $this->semValue = new Stmt\StaticVar(substr($this->semStack[$this->stackPos-(3-1)], 1), $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule260() {
- $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule261() {
- $this->semValue = array();
- }
- protected function reduceRule262() {
- $this->semValue = new Stmt\Property($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); $this->checkProperty($this->semValue, $this->stackPos-(3-1));
- }
- protected function reduceRule263() {
- $this->semValue = new Stmt\ClassConst($this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-1)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); $this->checkClassConst($this->semValue, $this->stackPos-(4-1));
- }
- protected function reduceRule264() {
- $this->semValue = new Stmt\ClassMethod($this->semStack[$this->stackPos-(9-4)], ['type' => $this->semStack[$this->stackPos-(9-1)], 'byRef' => $this->semStack[$this->stackPos-(9-3)], 'params' => $this->semStack[$this->stackPos-(9-6)], 'returnType' => $this->semStack[$this->stackPos-(9-8)], 'stmts' => $this->semStack[$this->stackPos-(9-9)]], $this->startAttributeStack[$this->stackPos-(9-1)] + $this->endAttributes);
- $this->checkClassMethod($this->semValue, $this->stackPos-(9-1));
- }
- protected function reduceRule265() {
- $this->semValue = new Stmt\TraitUse($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule266() {
- $this->semValue = array();
- }
- protected function reduceRule267() {
- $this->semValue = $this->semStack[$this->stackPos-(3-2)];
- }
- protected function reduceRule268() {
- $this->semValue = array();
- }
- protected function reduceRule269() {
- $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule270() {
- $this->semValue = new Stmt\TraitUseAdaptation\Precedence($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule271() {
- $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(5-1)][0], $this->semStack[$this->stackPos-(5-1)][1], $this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-4)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
- }
- protected function reduceRule272() {
- $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], $this->semStack[$this->stackPos-(4-3)], null, $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule273() {
- $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], null, $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule274() {
- $this->semValue = new Stmt\TraitUseAdaptation\Alias($this->semStack[$this->stackPos-(4-1)][0], $this->semStack[$this->stackPos-(4-1)][1], null, $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule275() {
- $this->semValue = array($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)]);
- }
- protected function reduceRule276() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule277() {
- $this->semValue = array(null, $this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule278() {
- $this->semValue = null;
- }
- protected function reduceRule279() {
- $this->semValue = $this->semStack[$this->stackPos-(3-2)];
- }
- protected function reduceRule280() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule281() {
- $this->semValue = 0;
- }
- protected function reduceRule282() {
- $this->semValue = 0;
- }
- protected function reduceRule283() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule284() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule285() {
- $this->checkModifier($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $this->stackPos-(2-2)); $this->semValue = $this->semStack[$this->stackPos-(2-1)] | $this->semStack[$this->stackPos-(2-2)];
- }
- protected function reduceRule286() {
- $this->semValue = Stmt\Class_::MODIFIER_PUBLIC;
- }
- protected function reduceRule287() {
- $this->semValue = Stmt\Class_::MODIFIER_PROTECTED;
- }
- protected function reduceRule288() {
- $this->semValue = Stmt\Class_::MODIFIER_PRIVATE;
- }
- protected function reduceRule289() {
- $this->semValue = Stmt\Class_::MODIFIER_STATIC;
- }
- protected function reduceRule290() {
- $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT;
- }
- protected function reduceRule291() {
- $this->semValue = Stmt\Class_::MODIFIER_FINAL;
- }
- protected function reduceRule292() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule293() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule294() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule295() {
- $this->semValue = new Stmt\PropertyProperty(substr($this->semStack[$this->stackPos-(1-1)], 1), null, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule296() {
- $this->semValue = new Stmt\PropertyProperty(substr($this->semStack[$this->stackPos-(3-1)], 1), $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule297() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule298() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule299() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule300() {
- $this->semValue = array();
- }
- protected function reduceRule301() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule302() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule303() {
- $this->semValue = new Expr\Assign($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule304() {
- $this->semValue = new Expr\Assign($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule305() {
- $this->semValue = new Expr\Assign($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule306() {
- $this->semValue = new Expr\AssignRef($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule307() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule308() {
- $this->semValue = new Expr\Clone_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule309() {
- $this->semValue = new Expr\AssignOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule310() {
- $this->semValue = new Expr\AssignOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule311() {
- $this->semValue = new Expr\AssignOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule312() {
- $this->semValue = new Expr\AssignOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule313() {
- $this->semValue = new Expr\AssignOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule314() {
- $this->semValue = new Expr\AssignOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule315() {
- $this->semValue = new Expr\AssignOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule316() {
- $this->semValue = new Expr\AssignOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule317() {
- $this->semValue = new Expr\AssignOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule318() {
- $this->semValue = new Expr\AssignOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule319() {
- $this->semValue = new Expr\AssignOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule320() {
- $this->semValue = new Expr\AssignOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule321() {
- $this->semValue = new Expr\PostInc($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule322() {
- $this->semValue = new Expr\PreInc($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule323() {
- $this->semValue = new Expr\PostDec($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule324() {
- $this->semValue = new Expr\PreDec($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule325() {
- $this->semValue = new Expr\BinaryOp\BooleanOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule326() {
- $this->semValue = new Expr\BinaryOp\BooleanAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule327() {
- $this->semValue = new Expr\BinaryOp\LogicalOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule328() {
- $this->semValue = new Expr\BinaryOp\LogicalAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule329() {
- $this->semValue = new Expr\BinaryOp\LogicalXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule330() {
- $this->semValue = new Expr\BinaryOp\BitwiseOr($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule331() {
- $this->semValue = new Expr\BinaryOp\BitwiseAnd($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule332() {
- $this->semValue = new Expr\BinaryOp\BitwiseXor($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule333() {
- $this->semValue = new Expr\BinaryOp\Concat($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule334() {
- $this->semValue = new Expr\BinaryOp\Plus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule335() {
- $this->semValue = new Expr\BinaryOp\Minus($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule336() {
- $this->semValue = new Expr\BinaryOp\Mul($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule337() {
- $this->semValue = new Expr\BinaryOp\Div($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule338() {
- $this->semValue = new Expr\BinaryOp\Mod($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule339() {
- $this->semValue = new Expr\BinaryOp\ShiftLeft($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule340() {
- $this->semValue = new Expr\BinaryOp\ShiftRight($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule341() {
- $this->semValue = new Expr\BinaryOp\Pow($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule342() {
- $this->semValue = new Expr\UnaryPlus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule343() {
- $this->semValue = new Expr\UnaryMinus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule344() {
- $this->semValue = new Expr\BooleanNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule345() {
- $this->semValue = new Expr\BitwiseNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule346() {
- $this->semValue = new Expr\BinaryOp\Identical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule347() {
- $this->semValue = new Expr\BinaryOp\NotIdentical($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule348() {
- $this->semValue = new Expr\BinaryOp\Equal($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule349() {
- $this->semValue = new Expr\BinaryOp\NotEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule350() {
- $this->semValue = new Expr\BinaryOp\Spaceship($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule351() {
- $this->semValue = new Expr\BinaryOp\Smaller($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule352() {
- $this->semValue = new Expr\BinaryOp\SmallerOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule353() {
- $this->semValue = new Expr\BinaryOp\Greater($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule354() {
- $this->semValue = new Expr\BinaryOp\GreaterOrEqual($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule355() {
- $this->semValue = new Expr\Instanceof_($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule356() {
- $this->semValue = $this->semStack[$this->stackPos-(3-2)];
- }
- protected function reduceRule357() {
- $this->semValue = new Expr\Ternary($this->semStack[$this->stackPos-(5-1)], $this->semStack[$this->stackPos-(5-3)], $this->semStack[$this->stackPos-(5-5)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
- }
- protected function reduceRule358() {
- $this->semValue = new Expr\Ternary($this->semStack[$this->stackPos-(4-1)], null, $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule359() {
- $this->semValue = new Expr\BinaryOp\Coalesce($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule360() {
- $this->semValue = new Expr\Isset_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule361() {
- $this->semValue = new Expr\Empty_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule362() {
- $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule363() {
- $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE_ONCE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule364() {
- $this->semValue = new Expr\Eval_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule365() {
- $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule366() {
- $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE_ONCE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule367() {
- $this->semValue = new Expr\Cast\Int_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule368() {
- $this->semValue = new Expr\Cast\Double($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule369() {
- $this->semValue = new Expr\Cast\String_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule370() {
- $this->semValue = new Expr\Cast\Array_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule371() {
- $this->semValue = new Expr\Cast\Object_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule372() {
- $this->semValue = new Expr\Cast\Bool_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule373() {
- $this->semValue = new Expr\Cast\Unset_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule374() {
- $attrs = $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes;
- $attrs['kind'] = strtolower($this->semStack[$this->stackPos-(2-1)]) === 'exit' ? Expr\Exit_::KIND_EXIT : Expr\Exit_::KIND_DIE;
- $this->semValue = new Expr\Exit_($this->semStack[$this->stackPos-(2-2)], $attrs);
- }
- protected function reduceRule375() {
- $this->semValue = new Expr\ErrorSuppress($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule376() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule377() {
- $this->semValue = new Expr\ShellExec($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule378() {
- $this->semValue = new Expr\Print_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule379() {
- $this->semValue = new Expr\Yield_(null, null, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule380() {
- $this->semValue = new Expr\Yield_($this->semStack[$this->stackPos-(2-2)], null, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule381() {
- $this->semValue = new Expr\Yield_($this->semStack[$this->stackPos-(4-4)], $this->semStack[$this->stackPos-(4-2)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule382() {
- $this->semValue = new Expr\YieldFrom($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule383() {
- $this->semValue = new Expr\Closure(['static' => false, 'byRef' => $this->semStack[$this->stackPos-(10-2)], 'params' => $this->semStack[$this->stackPos-(10-4)], 'uses' => $this->semStack[$this->stackPos-(10-6)], 'returnType' => $this->semStack[$this->stackPos-(10-7)], 'stmts' => $this->semStack[$this->stackPos-(10-9)]], $this->startAttributeStack[$this->stackPos-(10-1)] + $this->endAttributes);
- }
- protected function reduceRule384() {
- $this->semValue = new Expr\Closure(['static' => true, 'byRef' => $this->semStack[$this->stackPos-(11-3)], 'params' => $this->semStack[$this->stackPos-(11-5)], 'uses' => $this->semStack[$this->stackPos-(11-7)], 'returnType' => $this->semStack[$this->stackPos-(11-8)], 'stmts' => $this->semStack[$this->stackPos-(11-10)]], $this->startAttributeStack[$this->stackPos-(11-1)] + $this->endAttributes);
- }
- protected function reduceRule385() {
- $this->semValue = array(new Stmt\Class_(null, ['type' => 0, 'extends' => $this->semStack[$this->stackPos-(7-3)], 'implements' => $this->semStack[$this->stackPos-(7-4)], 'stmts' => $this->semStack[$this->stackPos-(7-6)]], $this->startAttributeStack[$this->stackPos-(7-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(7-2)]);
- $this->checkClass($this->semValue[0], -1);
- }
- protected function reduceRule386() {
- $this->semValue = new Expr\New_($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule387() {
- list($class, $ctorArgs) = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = new Expr\New_($class, $ctorArgs, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule388() {
- $this->semValue = array();
- }
- protected function reduceRule389() {
- $this->semValue = $this->semStack[$this->stackPos-(4-3)];
- }
- protected function reduceRule390() {
- $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule391() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule392() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule393() {
- $this->semValue = new Expr\ClosureUse(substr($this->semStack[$this->stackPos-(2-2)], 1), $this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule394() {
- $this->semValue = new Expr\FuncCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule395() {
- $this->semValue = new Expr\FuncCall($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule396() {
- $this->semValue = new Expr\StaticCall($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule397() {
- $this->semValue = new Name($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule398() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule399() {
- $this->semValue = new Name($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule400() {
- $this->semValue = new Name\FullyQualified($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule401() {
- $this->semValue = new Name\Relative($this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule402() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule403() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule404() {
- $this->semValue = new Expr\Error($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); $this->errorState = 2;
- }
- protected function reduceRule405() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule406() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule407() {
- $this->semValue = null;
- }
- protected function reduceRule408() {
- $this->semValue = $this->semStack[$this->stackPos-(3-2)];
- }
- protected function reduceRule409() {
- $this->semValue = array();
- }
- protected function reduceRule410() {
- $this->semValue = array(new Scalar\EncapsedStringPart(Scalar\String_::parseEscapeSequences($this->semStack[$this->stackPos-(1-1)], '`'), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes));
- }
- protected function reduceRule411() {
- foreach ($this->semStack[$this->stackPos-(1-1)] as $s) { if ($s instanceof Node\Scalar\EncapsedStringPart) { $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '`', true); } }; $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule412() {
- $this->semValue = array();
- }
- protected function reduceRule413() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule414() {
- $this->semValue = new Expr\ConstFetch($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule415() {
- $this->semValue = new Expr\ClassConstFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule416() {
- $this->semValue = new Expr\ClassConstFetch($this->semStack[$this->stackPos-(3-1)], new Expr\Error($this->startAttributeStack[$this->stackPos-(3-3)] + $this->endAttributeStack[$this->stackPos-(3-3)]), $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); $this->errorState = 2;
- }
- protected function reduceRule417() {
- $attrs = $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes; $attrs['kind'] = Expr\Array_::KIND_SHORT;
- $this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(3-2)], $attrs);
- }
- protected function reduceRule418() {
- $attrs = $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes; $attrs['kind'] = Expr\Array_::KIND_LONG;
- $this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(4-3)], $attrs);
- }
- protected function reduceRule419() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule420() {
- $attrs = $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes; $attrs['kind'] = ($this->semStack[$this->stackPos-(1-1)][0] === "'" || ($this->semStack[$this->stackPos-(1-1)][1] === "'" && ($this->semStack[$this->stackPos-(1-1)][0] === 'b' || $this->semStack[$this->stackPos-(1-1)][0] === 'B')) ? Scalar\String_::KIND_SINGLE_QUOTED : Scalar\String_::KIND_DOUBLE_QUOTED);
- $this->semValue = new Scalar\String_(Scalar\String_::parse($this->semStack[$this->stackPos-(1-1)]), $attrs);
- }
- protected function reduceRule421() {
- $this->semValue = $this->parseLNumber($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule422() {
- $this->semValue = new Scalar\DNumber(Scalar\DNumber::parse($this->semStack[$this->stackPos-(1-1)]), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule423() {
- $this->semValue = new Scalar\MagicConst\Line($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule424() {
- $this->semValue = new Scalar\MagicConst\File($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule425() {
- $this->semValue = new Scalar\MagicConst\Dir($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule426() {
- $this->semValue = new Scalar\MagicConst\Class_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule427() {
- $this->semValue = new Scalar\MagicConst\Trait_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule428() {
- $this->semValue = new Scalar\MagicConst\Method($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule429() {
- $this->semValue = new Scalar\MagicConst\Function_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule430() {
- $this->semValue = new Scalar\MagicConst\Namespace_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule431() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule432() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule433() {
- $attrs = $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes; $attrs['kind'] = strpos($this->semStack[$this->stackPos-(3-1)], "'") === false ? Scalar\String_::KIND_HEREDOC : Scalar\String_::KIND_NOWDOC; preg_match('/\A[bB]?<<<[ \t]*[\'"]?([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)[\'"]?(?:\r\n|\n|\r)\z/', $this->semStack[$this->stackPos-(3-1)], $matches); $attrs['docLabel'] = $matches[1];;
- $this->semValue = new Scalar\String_(Scalar\String_::parseDocString($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-2)]), $attrs);
- }
- protected function reduceRule434() {
- $attrs = $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes; $attrs['kind'] = strpos($this->semStack[$this->stackPos-(2-1)], "'") === false ? Scalar\String_::KIND_HEREDOC : Scalar\String_::KIND_NOWDOC; preg_match('/\A[bB]?<<<[ \t]*[\'"]?([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)[\'"]?(?:\r\n|\n|\r)\z/', $this->semStack[$this->stackPos-(2-1)], $matches); $attrs['docLabel'] = $matches[1];;
- $this->semValue = new Scalar\String_('', $attrs);
- }
- protected function reduceRule435() {
- $attrs = $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes; $attrs['kind'] = Scalar\String_::KIND_DOUBLE_QUOTED;
- foreach ($this->semStack[$this->stackPos-(3-2)] as $s) { if ($s instanceof Node\Scalar\EncapsedStringPart) { $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '"', true); } }; $this->semValue = new Scalar\Encapsed($this->semStack[$this->stackPos-(3-2)], $attrs);
- }
- protected function reduceRule436() {
- $attrs = $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes; $attrs['kind'] = strpos($this->semStack[$this->stackPos-(3-1)], "'") === false ? Scalar\String_::KIND_HEREDOC : Scalar\String_::KIND_NOWDOC; preg_match('/\A[bB]?<<<[ \t]*[\'"]?([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)[\'"]?(?:\r\n|\n|\r)\z/', $this->semStack[$this->stackPos-(3-1)], $matches); $attrs['docLabel'] = $matches[1];;
- foreach ($this->semStack[$this->stackPos-(3-2)] as $s) { if ($s instanceof Node\Scalar\EncapsedStringPart) { $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, null, true); } } $s->value = preg_replace('~(\r\n|\n|\r)\z~', '', $s->value); if ('' === $s->value) array_pop($this->semStack[$this->stackPos-(3-2)]);; $this->semValue = new Scalar\Encapsed($this->semStack[$this->stackPos-(3-2)], $attrs);
- }
- protected function reduceRule437() {
- $this->semValue = null;
- }
- protected function reduceRule438() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule439() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule440() {
- $this->semValue = $this->semStack[$this->stackPos-(3-2)];
- }
- protected function reduceRule441() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule442() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule443() {
- $this->semValue = $this->semStack[$this->stackPos-(3-2)];
- }
- protected function reduceRule444() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule445() {
- $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule446() {
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule447() {
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule448() {
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule449() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule450() {
- $this->semValue = new Expr\MethodCall($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule451() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule452() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule453() {
- $this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule454() {
- $this->semValue = substr($this->semStack[$this->stackPos-(1-1)], 1);
- }
- protected function reduceRule455() {
- $this->semValue = $this->semStack[$this->stackPos-(4-3)];
- }
- protected function reduceRule456() {
- $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule457() {
- $this->semValue = new Expr\Error($this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes); $this->errorState = 2;
- }
- protected function reduceRule458() {
- $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule459() {
- $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule460() {
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule461() {
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule462() {
- $this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule463() {
- $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule464() {
- $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule465() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule466() {
- $this->semValue = $this->semStack[$this->stackPos-(3-2)];
- }
- protected function reduceRule467() {
- $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule468() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule469() {
- $this->semValue = $this->semStack[$this->stackPos-(3-2)];
- }
- protected function reduceRule470() {
- $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule471() {
- $this->semValue = new Expr\Error($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); $this->errorState = 2;
- }
- protected function reduceRule472() {
- $this->semValue = new Expr\List_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule473() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule474() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule475() {
- $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule476() {
- $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule477() {
- $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(3-3)], $this->semStack[$this->stackPos-(3-1)], false, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule478() {
- $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(3-3)], $this->semStack[$this->stackPos-(3-1)], false, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule479() {
- $this->semValue = null;
- }
- protected function reduceRule480() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)]; $end = count($this->semValue)-1; if ($this->semValue[$end] === null) unset($this->semValue[$end]);
- }
- protected function reduceRule481() {
- $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
- }
- protected function reduceRule482() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule483() {
- $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(3-3)], $this->semStack[$this->stackPos-(3-1)], false, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule484() {
- $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule485() {
- $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(4-4)], $this->semStack[$this->stackPos-(4-1)], true, $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule486() {
- $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(2-2)], null, true, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule487() {
- $this->semValue = null;
- }
- protected function reduceRule488() {
- $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule489() {
- $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
- }
- protected function reduceRule490() {
- $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
- }
- protected function reduceRule491() {
- $this->semValue = array($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]);
- }
- protected function reduceRule492() {
- $this->semValue = new Scalar\EncapsedStringPart($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule493() {
- $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule494() {
- $this->semValue = $this->semStack[$this->stackPos-(1-1)];
- }
- protected function reduceRule495() {
- $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
- }
- protected function reduceRule496() {
- $this->semValue = new Expr\PropertyFetch($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule497() {
- $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule498() {
- $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
- }
- protected function reduceRule499() {
- $this->semValue = new Expr\ArrayDimFetch(new Expr\Variable($this->semStack[$this->stackPos-(6-2)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(6-4)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes);
- }
- protected function reduceRule500() {
- $this->semValue = $this->semStack[$this->stackPos-(3-2)];
- }
- protected function reduceRule501() {
- $this->semValue = new Scalar\String_($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule502() {
- $this->semValue = $this->parseNumString($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- protected function reduceRule503() {
- $this->semValue = $this->parseNumString('-' . $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
- }
- protected function reduceRule504() {
- $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
- }
- }
|