Php5.php 154 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129
  1. <?php
  2. namespace PhpParser\Parser;
  3. use PhpParser\Error;
  4. use PhpParser\Node;
  5. use PhpParser\Node\Expr;
  6. use PhpParser\Node\Name;
  7. use PhpParser\Node\Scalar;
  8. use PhpParser\Node\Stmt;
  9. /* This is an automatically GENERATED file, which should not be manually edited.
  10. * Instead edit one of the following:
  11. * * the grammar files grammar/php5.y or grammar/php7.y
  12. * * the skeleton file grammar/parser.template
  13. * * the preprocessing script grammar/rebuildParsers.php
  14. */
  15. class Php5 extends \PhpParser\ParserAbstract
  16. {
  17. protected $tokenToSymbolMapSize = 392;
  18. protected $actionTableSize = 1020;
  19. protected $gotoTableSize = 591;
  20. protected $invalidSymbol = 157;
  21. protected $errorSymbol = 1;
  22. protected $defaultAction = -32766;
  23. protected $unexpectedTokenRule = 32767;
  24. protected $YY2TBLSTATE = 405;
  25. protected $YYNLSTATES = 667;
  26. protected $symbolToName = array(
  27. "EOF",
  28. "error",
  29. "T_INCLUDE",
  30. "T_INCLUDE_ONCE",
  31. "T_EVAL",
  32. "T_REQUIRE",
  33. "T_REQUIRE_ONCE",
  34. "','",
  35. "T_LOGICAL_OR",
  36. "T_LOGICAL_XOR",
  37. "T_LOGICAL_AND",
  38. "T_PRINT",
  39. "T_YIELD",
  40. "T_DOUBLE_ARROW",
  41. "T_YIELD_FROM",
  42. "'='",
  43. "T_PLUS_EQUAL",
  44. "T_MINUS_EQUAL",
  45. "T_MUL_EQUAL",
  46. "T_DIV_EQUAL",
  47. "T_CONCAT_EQUAL",
  48. "T_MOD_EQUAL",
  49. "T_AND_EQUAL",
  50. "T_OR_EQUAL",
  51. "T_XOR_EQUAL",
  52. "T_SL_EQUAL",
  53. "T_SR_EQUAL",
  54. "T_POW_EQUAL",
  55. "'?'",
  56. "':'",
  57. "T_COALESCE",
  58. "T_BOOLEAN_OR",
  59. "T_BOOLEAN_AND",
  60. "'|'",
  61. "'^'",
  62. "'&'",
  63. "T_IS_EQUAL",
  64. "T_IS_NOT_EQUAL",
  65. "T_IS_IDENTICAL",
  66. "T_IS_NOT_IDENTICAL",
  67. "T_SPACESHIP",
  68. "'<'",
  69. "T_IS_SMALLER_OR_EQUAL",
  70. "'>'",
  71. "T_IS_GREATER_OR_EQUAL",
  72. "T_SL",
  73. "T_SR",
  74. "'+'",
  75. "'-'",
  76. "'.'",
  77. "'*'",
  78. "'/'",
  79. "'%'",
  80. "'!'",
  81. "T_INSTANCEOF",
  82. "'~'",
  83. "T_INC",
  84. "T_DEC",
  85. "T_INT_CAST",
  86. "T_DOUBLE_CAST",
  87. "T_STRING_CAST",
  88. "T_ARRAY_CAST",
  89. "T_OBJECT_CAST",
  90. "T_BOOL_CAST",
  91. "T_UNSET_CAST",
  92. "'@'",
  93. "T_POW",
  94. "'['",
  95. "T_NEW",
  96. "T_CLONE",
  97. "T_EXIT",
  98. "T_IF",
  99. "T_ELSEIF",
  100. "T_ELSE",
  101. "T_ENDIF",
  102. "T_LNUMBER",
  103. "T_DNUMBER",
  104. "T_STRING",
  105. "T_STRING_VARNAME",
  106. "T_VARIABLE",
  107. "T_NUM_STRING",
  108. "T_INLINE_HTML",
  109. "T_ENCAPSED_AND_WHITESPACE",
  110. "T_CONSTANT_ENCAPSED_STRING",
  111. "T_ECHO",
  112. "T_DO",
  113. "T_WHILE",
  114. "T_ENDWHILE",
  115. "T_FOR",
  116. "T_ENDFOR",
  117. "T_FOREACH",
  118. "T_ENDFOREACH",
  119. "T_DECLARE",
  120. "T_ENDDECLARE",
  121. "T_AS",
  122. "T_SWITCH",
  123. "T_ENDSWITCH",
  124. "T_CASE",
  125. "T_DEFAULT",
  126. "T_BREAK",
  127. "T_CONTINUE",
  128. "T_GOTO",
  129. "T_FUNCTION",
  130. "T_CONST",
  131. "T_RETURN",
  132. "T_TRY",
  133. "T_CATCH",
  134. "T_FINALLY",
  135. "T_THROW",
  136. "T_USE",
  137. "T_INSTEADOF",
  138. "T_GLOBAL",
  139. "T_STATIC",
  140. "T_ABSTRACT",
  141. "T_FINAL",
  142. "T_PRIVATE",
  143. "T_PROTECTED",
  144. "T_PUBLIC",
  145. "T_VAR",
  146. "T_UNSET",
  147. "T_ISSET",
  148. "T_EMPTY",
  149. "T_HALT_COMPILER",
  150. "T_CLASS",
  151. "T_TRAIT",
  152. "T_INTERFACE",
  153. "T_EXTENDS",
  154. "T_IMPLEMENTS",
  155. "T_OBJECT_OPERATOR",
  156. "T_LIST",
  157. "T_ARRAY",
  158. "T_CALLABLE",
  159. "T_CLASS_C",
  160. "T_TRAIT_C",
  161. "T_METHOD_C",
  162. "T_FUNC_C",
  163. "T_LINE",
  164. "T_FILE",
  165. "T_START_HEREDOC",
  166. "T_END_HEREDOC",
  167. "T_DOLLAR_OPEN_CURLY_BRACES",
  168. "T_CURLY_OPEN",
  169. "T_PAAMAYIM_NEKUDOTAYIM",
  170. "T_NAMESPACE",
  171. "T_NS_C",
  172. "T_DIR",
  173. "T_NS_SEPARATOR",
  174. "T_ELLIPSIS",
  175. "';'",
  176. "'{'",
  177. "'}'",
  178. "'('",
  179. "')'",
  180. "'$'",
  181. "'`'",
  182. "']'",
  183. "'\"'"
  184. );
  185. protected $tokenToSymbol = array(
  186. 0, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  187. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  188. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  189. 157, 157, 157, 53, 156, 157, 153, 52, 35, 157,
  190. 151, 152, 50, 47, 7, 48, 49, 51, 157, 157,
  191. 157, 157, 157, 157, 157, 157, 157, 157, 29, 148,
  192. 41, 15, 43, 28, 65, 157, 157, 157, 157, 157,
  193. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  194. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  195. 157, 67, 157, 155, 34, 157, 154, 157, 157, 157,
  196. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  197. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  198. 157, 157, 157, 149, 33, 150, 55, 157, 157, 157,
  199. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  200. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  201. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  202. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  203. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  204. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  205. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  206. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  207. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  208. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  209. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  210. 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
  211. 157, 157, 157, 157, 157, 157, 1, 2, 3, 4,
  212. 5, 6, 8, 9, 10, 11, 12, 13, 14, 16,
  213. 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
  214. 27, 30, 31, 32, 36, 37, 38, 39, 40, 42,
  215. 44, 45, 46, 54, 56, 57, 58, 59, 60, 61,
  216. 62, 63, 64, 66, 68, 69, 70, 71, 72, 73,
  217. 74, 75, 76, 77, 78, 79, 80, 81, 157, 157,
  218. 82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
  219. 92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
  220. 102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
  221. 112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
  222. 122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
  223. 132, 133, 134, 135, 136, 137, 157, 157, 157, 157,
  224. 157, 157, 138, 139, 140, 141, 142, 143, 144, 145,
  225. 146, 147
  226. );
  227. protected $action = array(
  228. 672, 673, 674, 675, 676,-32766, 677, 678, 679, 715,
  229. 716, 216, 217, 218, 219, 220, 221, 222, 223, 224,
  230. 0, 225, 226, 227, 228, 229, 230, 231, 232, 233,
  231. 234, 235, 236,-32766,-32766,-32766,-32766,-32766,-32766,-32766,
  232. -32766,-32767,-32767,-32767,-32767, 441, 237, 238,-32766,-32766,
  233. -32766,-32766, 680,-32766, 1036,-32766,-32766,-32766,-32766,-32766,
  234. -32766,-32767,-32767,-32767,-32767,-32767, 681, 682, 683, 684,
  235. 685, 686, 687, 909, 329, 747,-32766,-32766,-32766,-32766,
  236. -32766, 282, 688, 689, 690, 691, 692, 693, 694, 695,
  237. 696, 697, 698, 718, 719, 720, 721, 722, 710, 711,
  238. 712, 713, 714, 699, 700, 701, 702, 703, 704, 705,
  239. 741, 742, 743, 744, 745, 746, 706, 707, 708, 709,
  240. 739, 730, 728, 729, 725, 726, 1178, 717, 723, 724,
  241. 731, 732, 734, 733, 735, 736, 52, 53, 420, 54,
  242. 55, 727, 738, 737, 23, 56, 57, 284, 58,-32766,
  243. -32766,-32766,-32766,-32766,-32766,-32766,-32766,-32766, 7,-32767,
  244. -32767,-32767,-32767, 50, 325,-32766, 585, 945, 946, 947,
  245. 944, 943, 942, 937, 1213, 27, 1215, 1214, 763, 764,
  246. 821, 59, 60,-32766,-32766,-32766, 809, 61, 1172, 62,
  247. 291, 292, 63, 64, 65, 66, 67, 68, 69, 70,
  248. 334, 24, 299, 71, 413,-32766,-32766,-32766, 1185, 1087,
  249. 1088, 749, 633, 1178, 213, 214, 215, 464,-32766,-32766,
  250. -32766, 822, 407, 1099, 311,-32766, 1186,-32766,-32766,-32766,
  251. -32766,-32766,-32766, 1036, 200, -269, 428,-32766,-32766,-32766,
  252. -32766,-32766,-32766,-32766,-32766, 120, 491, 945, 946, 947,
  253. 944, 943, 942, 306, 473, 474, 293, 623, 125,-32766,
  254. 893, 894, 339, 477, 478,-32766, 1093, 1094, 1095, 1096,
  255. 1090, 1091, 307, 492,-32766, 440, 425, 492, 1097, 1092,
  256. 425, 121, -220, 869, 1182, 39, 280, 334, 321, 900,
  257. 322, 421, -122, -122, -122, -4, 822, 463, 99, 100,
  258. 101, 811, 301, 119, 38, 19, 422, -122, 465, -122,
  259. 466, -122, 467, -122, 102, 423, -122, -122, -122, 28,
  260. 29, 468, 424, 624, 30, 469, 425, 812, 72, 297,
  261. 923, 349, 350, 470, 471,-32766,-32766,-32766, 419, 472,
  262. 1036, 447, 793, 840, 475, 476,-32767,-32767,-32767,-32767,
  263. 94, 95, 96, 97, 98,-32766, 126,-32766,-32766,-32766,
  264. -32766, 1137, 213, 214, 215, 295, 421, 239, 824, 638,
  265. -122, 1036, 463, 893, 894, 1205, 811, 1036, 1204, 38,
  266. 19, 422, 200, 465, 356, 466, 492, 467, 127, 425,
  267. 423, 213, 214, 215, 28, 29, 468, 424, 414, 30,
  268. 469, 1036, 870, 72, 320, 822, 349, 350, 470, 471,
  269. 34, 200, 214, 215, 472, 460, 762, 755, 840, 475,
  270. 476, 213, 214, 215, 295, -216, 76, 77, 78, 46,
  271. 298, 200, 412, 653, 338, 438, 31, 294, 333, 8,
  272. 348, 200, 241, 824, 638, -4, 32, 332, 79, 80,
  273. 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
  274. 91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
  275. 101, 1210, 301, 204, 822, 421, 805, 124,-32766,-32766,
  276. -32766, 463, 899, 1054, 102, 811, 18, 206, 38, 19,
  277. 422, 518, 465, 1172, 466, 546, 467, 47,-32766, 423,
  278. -32766,-32766, 647, 28, 29, 468, 822, 801, 30, 469,
  279. 415, 116, 72, 803, 49, 349, 350,-32766,-32766,-32766,
  280. -32766,-32766,-32766, 472, 477, 808, 234, 235, 236, 213,
  281. 214, 215, 1036, 215, 644, 1138, 124,-32766,-32766,-32766,
  282. -32766,-32766, 237, 238, 421, 231, 232, 233, 1099, 200,
  283. 463, 200, 824, 638, 811, 439, 918, 38, 19, 422,
  284. 1036, 465, 242, 466, 749, 467, 1178, 339, 423, 96,
  285. 97, 98, 28, 29, 468, 822, 421, 30, 469, 117,
  286. 919, 72, 463, 283, 349, 350, 811, 244, 1036, 38,
  287. 19, 422, 472, 465, 243, 466, 118, 467, 377, 1064,
  288. 423, 1036, 207, 642, 28, 29, 468, 822, 129, 30,
  289. 469, 296, 576, 72,-32766,-32766, 349, 350, 123, 205,
  290. 492, 824, 638, 425, 472, 115,-32766,-32766,-32766, 434,
  291. 492, 200, 640, 425, 820, 641,-32766,-32766, 429,-32766,
  292. 334, 237, 238, 454, 591, 421,-32766, 130, 357, 449,
  293. 20, 463, 128, 856, 638, 811, 763, 764, 38, 19,
  294. 422, 313, 465, 646, 466, 650, 467, 599, 600, 423,
  295. 833, 301, 605, 28, 29, 468, 822, 421, 30, 469,
  296. 756, 643, 72, 463, 299, 349, 350, 811, 922, 666,
  297. 38, 19, 422, 472, 465, 102, 466, 51, 467, 934,
  298. 656, 423, 512, 433, 48, 28, 29, 468, 41, 42,
  299. 30, 469, 43, 44, 72, 45, 435, 349, 350, 1057,
  300. 750, 1208, 824, 638, 776, 472, 749, 33, 103, 104,
  301. 105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
  302. 534, 533, 517, 513, 524, 437, 421, 602, 516, 622,
  303. 612, 619, 463, 582, 824, 638, 811, 595,-32766, 38,
  304. 19, 422, 632, 465, 579, 466, 240, 467, 975, 977,
  305. 423, 609, 1144, 279, 28, 29, 468, 12, -80, 30,
  306. 469, 537, 432, 72, 208, 209, 349, 350, 458, 1098,
  307. 210, 596, 211, 328, 472, 326, 11, 842, 323, 393,
  308. 4, 385, 408, 303, 202, 1034, 0, 0, 324, 208,
  309. 209, 841, 1087, 1088, 0, 210,-32766, 211, -497, -498,
  310. 1089, 312, 310, 824, 638, 477, 0, 0, 0, 202,
  311. 0, -398, 0, 0, 9, 0, 0, 1087, 1088, 3,
  312. -497,-32766, -406, 370, -407, 1089, 835, 639, 0, 384,
  313. 372, 409, 526, 434, 0, 0, 864, 857, 863, 872,
  314. 0, 813, 798, 819, 807, 761, 661, 565, 760, 1093,
  315. 1094, 1095, 1096, 1090, 1091, 383, 37, 36, 759, 926,
  316. 810, 1097, 1092, 854, 852, 302, 806, 929, 212, 818,
  317. -32766, 930, 565, 928, 1093, 1094, 1095, 1096, 1090, 1091,
  318. 383, 927, 796, 804, 660, 802, 1097, 1092, 649, 651,
  319. 75, 0, 652, 212, 654,-32766, 655, 658, 663, 664,
  320. 665, 405, 122, 330, 331, 406, 0, 1211, 757, 758,
  321. 839, 838, 766, 453, 1209, 1179, 1177, 1163, 1175, 1078,
  322. 911, 1183, 1173, 829, 836, 1038, 1039, 827, 935, 1212,
  323. 765, 837, 794, 662, 1050, 768, 767, 861, 862, 0,
  324. 304, 290, 289, 25, 26, 281, 203, 74, 305, 336,
  325. 411, 417, 35, 73,-32766, 40, 22, 0, 1015, 569,
  326. -217, 1016, 1103, 1080, 901, 1040, 1044, 1041, 629, 559,
  327. 461, 457, 455, 450, 378, 16, 15, 14, -216, 0,
  328. 0, -416, 0, 1045, 603, 1157, 1104, 1207, 1077, 1174,
  329. 1158, 1162, 1176, 1063, 1048, 1049, 1046, 1047, 0, 1143
  330. );
  331. protected $actionCheck = array(
  332. 2, 3, 4, 5, 6, 8, 8, 9, 10, 11,
  333. 12, 31, 32, 33, 34, 35, 36, 37, 38, 39,
  334. 0, 41, 42, 43, 44, 45, 46, 47, 48, 49,
  335. 50, 51, 52, 8, 9, 10, 31, 32, 33, 34,
  336. 35, 36, 37, 38, 39, 7, 66, 67, 31, 32,
  337. 33, 34, 54, 28, 12, 30, 31, 32, 33, 34,
  338. 35, 36, 37, 38, 39, 40, 68, 69, 70, 71,
  339. 72, 73, 74, 79, 7, 77, 31, 32, 33, 34,
  340. 35, 7, 84, 85, 86, 87, 88, 89, 90, 91,
  341. 92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
  342. 102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
  343. 112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
  344. 122, 123, 124, 125, 126, 127, 79, 129, 130, 131,
  345. 132, 133, 134, 135, 136, 137, 2, 3, 4, 5,
  346. 6, 143, 144, 145, 7, 11, 12, 153, 14, 31,
  347. 32, 33, 34, 35, 36, 37, 38, 39, 103, 41,
  348. 42, 43, 44, 67, 109, 79, 82, 112, 113, 114,
  349. 115, 116, 117, 118, 77, 7, 79, 80, 102, 103,
  350. 1, 47, 48, 8, 9, 10, 148, 53, 79, 55,
  351. 56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
  352. 153, 67, 68, 69, 70, 8, 9, 10, 1, 75,
  353. 76, 77, 77, 79, 8, 9, 10, 83, 8, 9,
  354. 10, 1, 146, 139, 128, 28, 152, 30, 31, 32,
  355. 33, 34, 35, 12, 28, 79, 102, 151, 28, 153,
  356. 30, 31, 32, 33, 34, 149, 112, 112, 113, 114,
  357. 115, 116, 117, 7, 120, 121, 35, 77, 149, 103,
  358. 130, 131, 153, 129, 130, 109, 132, 133, 134, 135,
  359. 136, 137, 138, 143, 118, 7, 146, 143, 144, 145,
  360. 146, 7, 152, 29, 77, 151, 13, 153, 154, 152,
  361. 156, 71, 72, 73, 74, 0, 1, 77, 50, 51,
  362. 52, 81, 54, 13, 84, 85, 86, 87, 88, 89,
  363. 90, 91, 92, 93, 66, 95, 96, 97, 98, 99,
  364. 100, 101, 102, 143, 104, 105, 146, 148, 108, 7,
  365. 150, 111, 112, 113, 114, 8, 9, 10, 7, 119,
  366. 12, 7, 122, 123, 124, 125, 41, 42, 43, 44,
  367. 45, 46, 47, 48, 49, 28, 149, 30, 31, 32,
  368. 33, 155, 8, 9, 10, 35, 71, 13, 148, 149,
  369. 150, 12, 77, 130, 131, 79, 81, 12, 82, 84,
  370. 85, 86, 28, 88, 7, 90, 143, 92, 67, 146,
  371. 95, 8, 9, 10, 99, 100, 101, 102, 103, 104,
  372. 105, 12, 148, 108, 109, 1, 111, 112, 113, 114,
  373. 13, 28, 9, 10, 119, 7, 148, 122, 123, 124,
  374. 125, 8, 9, 10, 35, 152, 8, 9, 10, 67,
  375. 35, 28, 7, 29, 67, 29, 140, 141, 143, 7,
  376. 7, 28, 29, 148, 149, 150, 28, 7, 30, 31,
  377. 32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
  378. 42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
  379. 52, 150, 54, 7, 1, 71, 148, 147, 8, 9,
  380. 10, 77, 152, 152, 66, 81, 152, 15, 84, 85,
  381. 86, 82, 88, 79, 90, 128, 92, 67, 28, 95,
  382. 30, 31, 29, 99, 100, 101, 1, 148, 104, 105,
  383. 123, 149, 108, 148, 67, 111, 112, 8, 9, 10,
  384. 31, 32, 33, 119, 129, 148, 50, 51, 52, 8,
  385. 9, 10, 12, 10, 29, 152, 147, 28, 151, 30,
  386. 31, 32, 66, 67, 71, 47, 48, 49, 139, 28,
  387. 77, 28, 148, 149, 81, 149, 148, 84, 85, 86,
  388. 12, 88, 15, 90, 77, 92, 79, 153, 95, 47,
  389. 48, 49, 99, 100, 101, 1, 71, 104, 105, 149,
  390. 148, 108, 77, 35, 111, 112, 81, 15, 12, 84,
  391. 85, 86, 119, 88, 15, 90, 149, 92, 78, 112,
  392. 95, 12, 15, 29, 99, 100, 101, 1, 149, 104,
  393. 105, 35, 153, 108, 31, 32, 111, 112, 29, 15,
  394. 143, 148, 149, 146, 119, 15, 8, 9, 10, 146,
  395. 143, 28, 149, 146, 29, 29, 8, 9, 151, 31,
  396. 153, 66, 67, 72, 73, 71, 28, 97, 98, 72,
  397. 73, 77, 29, 148, 149, 81, 102, 103, 84, 85,
  398. 86, 29, 88, 29, 90, 29, 92, 106, 107, 95,
  399. 35, 54, 74, 99, 100, 101, 1, 71, 104, 105,
  400. 148, 149, 108, 77, 68, 111, 112, 81, 148, 149,
  401. 84, 85, 86, 119, 88, 66, 90, 67, 92, 148,
  402. 149, 95, 77, 77, 67, 99, 100, 101, 67, 67,
  403. 104, 105, 67, 67, 108, 67, 77, 111, 112, 79,
  404. 77, 77, 148, 149, 77, 119, 77, 15, 16, 17,
  405. 18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
  406. 77, 77, 77, 77, 82, 86, 71, 79, 79, 79,
  407. 79, 91, 77, 96, 148, 149, 81, 96, 82, 84,
  408. 85, 86, 89, 88, 87, 90, 29, 92, 56, 57,
  409. 95, 93, 139, 94, 99, 100, 101, 94, 94, 104,
  410. 105, 94, 102, 108, 47, 48, 111, 112, 102, 139,
  411. 53, 109, 55, 126, 119, 110, 142, 123, 126, 146,
  412. 142, 146, 146, 151, 67, 154, -1, -1, 127, 47,
  413. 48, 123, 75, 76, -1, 53, 79, 55, 128, 128,
  414. 83, 128, 128, 148, 149, 129, -1, -1, -1, 67,
  415. -1, 142, -1, -1, 142, -1, -1, 75, 76, 142,
  416. 128, 79, 142, 142, 142, 83, 147, 149, -1, 146,
  417. 146, 146, 146, 146, -1, -1, 148, 148, 148, 148,
  418. -1, 148, 148, 148, 148, 148, 148, 130, 148, 132,
  419. 133, 134, 135, 136, 137, 138, 148, 148, 148, 148,
  420. 148, 144, 145, 148, 148, 151, 148, 148, 151, 148,
  421. 153, 148, 130, 148, 132, 133, 134, 135, 136, 137,
  422. 138, 148, 148, 148, 148, 148, 144, 145, 149, 149,
  423. 149, -1, 149, 151, 149, 153, 149, 149, 149, 149,
  424. 149, 149, 149, 149, 149, 149, -1, 150, 150, 150,
  425. 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
  426. 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
  427. 150, 150, 150, 150, 150, 150, 150, 150, 150, -1,
  428. 151, 151, 151, 151, 151, 151, 151, 151, 151, 151,
  429. 151, 151, 151, 151, 151, 151, 151, -1, 152, 152,
  430. 152, 152, 152, 152, 152, 152, 152, 152, 152, 152,
  431. 152, 152, 152, 152, 152, 152, 152, 152, 152, -1,
  432. -1, 154, -1, 155, 155, 155, 155, 155, 155, 155,
  433. 155, 155, 155, 155, 155, 155, 155, 155, -1, 156
  434. );
  435. protected $actionBase = array(
  436. 0, 220, 295, 109, 109, 180, 745, -2, -2, -2,
  437. -2, -2, 135, 574, 473, 404, 473, 606, 505, 675,
  438. 675, 675, 330, 389, 221, 221, 831, 221, 359, 365,
  439. 328, 520, 589, 548, 576, 42, 42, 42, 42, 134,
  440. 134, 42, 42, 42, 42, 42, 42, 42, 42, 42,
  441. 42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
  442. 42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
  443. 42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
  444. 42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
  445. 42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
  446. 42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
  447. 42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
  448. 42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
  449. 42, 254, 179, 290, 397, 757, 755, 738, 741, 833,
  450. 679, 829, 784, 785, 623, 786, 787, 788, 789, 790,
  451. 783, 791, 849, 792, 418, 418, 418, 418, 418, 418,
  452. 418, 418, 418, 418, 418, -3, 354, 383, 413, 206,
  453. 628, 521, 521, 521, 521, 521, 521, 521, 175, 175,
  454. 175, 175, 175, 175, 175, 175, 175, 175, 175, 175,
  455. 175, 175, 175, 175, 175, 403, 618, 618, 618, 523,
  456. 737, 603, 762, 762, 762, 762, 762, 762, 762, 762,
  457. 762, 762, 762, 762, 762, 762, 762, 762, 762, 762,
  458. 762, 762, 762, 762, 762, 762, 762, 762, 762, 762,
  459. 762, 762, 762, 762, 762, 762, 762, 762, 762, 762,
  460. 762, 762, 762, 762, 762, 470, -20, -20, 509, 608,
  461. 327, 583, 210, 489, 197, 25, 25, 25, 25, 25,
  462. 17, 45, 5, 5, 5, 5, 712, 305, 305, 305,
  463. 305, 118, 118, 118, 118, 780, 781, 801, 804, 395,
  464. 395, 696, 696, 616, 773, 522, 522, 498, 498, 487,
  465. 487, 487, 487, 487, 487, 487, 487, 487, 487, 387,
  466. 156, 823, 130, 130, 130, 130, 243, 409, 633, 863,
  467. 207, 207, 207, 243, 248, 248, 248, 476, 476, 476,
  468. 76, 662, 296, 86, 86, 86, 86, 296, 86, 86,
  469. 554, 554, 554, 483, 761, 676, 477, 430, 97, 459,
  470. 657, 807, 661, 808, 540, 702, 96, 656, 705, -6,
  471. 680, 577, 571, 561, 689, 406, -6, 254, 551, 447,
  472. 617, 732, 663, 268, 730, 377, 38, 367, 532, 362,
  473. 414, 334, 774, 720, 827, 826, 74, 321, 691, 617,
  474. 617, 617, 137, 84, 775, 772, 362, 273, 575, 575,
  475. 575, 575, 806, 776, 575, 575, 575, 575, 805, 800,
  476. 432, 408, 782, 331, 731, 649, 649, 649, 649, 649,
  477. 649, 635, 649, 813, 666, 825, 825, 664, 668, 635,
  478. 824, 824, 824, 824, 635, 649, 825, 825, 635, 616,
  479. 825, 168, 635, 672, 649, 667, 667, 824, 756, 718,
  480. 666, 669, 681, 825, 825, 825, 681, 664, 635, 824,
  481. 682, 699, 466, 825, 824, 632, 632, 682, 635, 632,
  482. 668, 632, 20, 605, 641, 821, 822, 820, 625, 698,
  483. 688, 674, 811, 810, 816, 665, 626, 814, 812, 706,
  484. 717, 716, 639, 610, 642, 645, 646, 648, 697, 637,
  485. 694, 680, 707, 629, 629, 629, 690, 658, 690, 629,
  486. 629, 629, 629, 629, 629, 629, 629, 848, 700, 701,
  487. 693, 659, 715, 604, 704, 687, 472, 768, 650, 706,
  488. 706, 802, 835, 842, 847, 651, 643, 734, 837, 690,
  489. 862, 729, 274, 587, 652, 803, 703, 647, 655, 690,
  490. 809, 690, 769, 690, 834, 799, 644, 706, 779, 629,
  491. 832, 861, 860, 859, 858, 857, 856, 855, 854, 630,
  492. 853, 714, 677, 841, 246, 815, 689, 692, 653, 713,
  493. 67, 852, 778, 690, 690, 770, 761, 690, 771, 711,
  494. 728, 845, 710, 840, 851, 650, 839, 690, 686, 850,
  495. 67, 634, 598, 828, 678, 708, 819, 671, 830, 818,
  496. 759, 547, 579, 777, 636, 754, 844, 843, 846, 709,
  497. 760, 763, 572, 660, 640, 670, 793, 765, 817, 735,
  498. 794, 795, 836, 684, 707, 654, 685, 683, 673, 767,
  499. 796, 838, 736, 739, 743, 797, 753, 798, 0, 0,
  500. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  501. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  502. 0, 0, 0, 0, 0, 0, 0, 0, 134, 134,
  503. -2, -2, -2, -2, 0, 0, 0, 0, 0, -2,
  504. 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
  505. 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
  506. 134, 134, 134, 134, 134, 134, 0, 0, 134, 134,
  507. 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
  508. 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
  509. 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
  510. 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
  511. 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
  512. 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
  513. 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
  514. 134, 134, 134, 134, 134, 134, 134, 134, 134, 134,
  515. 134, 134, 134, 134, 134, 134, 134, 134, 418, 418,
  516. 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
  517. 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
  518. 418, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  519. 0, 0, 418, -20, -20, -20, -20, 418, -20, -20,
  520. -20, -20, -20, -20, -20, 418, 418, 418, 418, 418,
  521. 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
  522. 418, 418, -20, 418, 418, 418, -20, 487, -20, 487,
  523. 487, 487, 487, 487, 487, 487, 487, 487, 487, 487,
  524. 487, 487, 487, 487, 487, 487, 487, 487, 487, 487,
  525. 487, 487, 487, 487, 487, 487, 487, 487, 487, 487,
  526. 487, 487, 487, 487, 487, 487, 487, 487, 487, 487,
  527. 487, 487, 418, 0, 0, 418, -20, 418, -20, 418,
  528. -20, 418, 418, 418, 418, 418, 418, -20, -20, -20,
  529. -20, -20, -20, 0, 248, 248, 248, 248, -20, -20,
  530. -20, -20, 55, 55, 55, 55, 487, 487, 487, 487,
  531. 487, 487, 248, 248, 476, 476, 0, 0, 0, 0,
  532. 0, 0, 0, 0, 0, 0, 487, 55, 487, 649,
  533. 649, 649, 649, 649, 296, 296, 296, 47, 47, 47,
  534. 649, 0, 0, 0, 0, 0, 0, 649, 296, 0,
  535. 487, 487, 487, 487, 0, 487, 487, 649, 649, 649,
  536. 649, 47, 296, 649, 825, 0, 47, 550, 550, 550,
  537. 550, 67, 362, 0, 649, 649, 0, 669, 0, 0,
  538. 0, 825, 0, 0, 0, 0, 0, 629, 274, 734,
  539. 0, 433, 0, 0, 0, 0, 0, 0, 0, 643,
  540. 433, 322, 322, 0, 0, 630, 629, 629, 629, 0,
  541. 0, 643, 643, 0, 0, 0, 0, 0, 0, 440,
  542. 643, 0, 0, 0, 0, 440, 425, 0, 0, 425,
  543. 0, 67
  544. );
  545. protected $actionDefault = array(
  546. 3,32767,32767,32767,32767,32767,32767,32767,32767,32767,
  547. 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
  548. 32767,32767,32767,32767, 525, 525,32767, 481,32767,32767,
  549. 32767,32767,32767,32767,32767, 287, 287, 287,32767,32767,
  550. 32767, 513, 513, 513, 513, 513, 513, 513, 513, 513,
  551. 513, 513,32767,32767,32767,32767,32767, 369,32767,32767,
  552. 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
  553. 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
  554. 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
  555. 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
  556. 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
  557. 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
  558. 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
  559. 32767,32767,32767, 375, 530,32767,32767,32767,32767,32767,
  560. 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
  561. 32767,32767,32767,32767, 350, 351, 353, 354, 286, 514,
  562. 237, 376, 529, 285, 239, 314, 485,32767,32767,32767,
  563. 316, 116, 248, 193, 484, 119, 284, 224, 368, 370,
  564. 315, 291, 296, 297, 298, 299, 300, 301, 302, 303,
  565. 304, 305, 306, 307, 290, 441, 347, 346, 345, 443,
  566. 32767, 442, 478, 478, 481,32767,32767,32767,32767,32767,
  567. 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
  568. 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
  569. 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
  570. 32767,32767,32767,32767,32767, 312, 469, 468, 313, 439,
  571. 317, 440, 319, 444, 318, 335, 336, 333, 334, 337,
  572. 446, 445, 462, 463, 460, 461, 289, 338, 339, 340,
  573. 341, 464, 465, 466, 467, 271, 271, 271, 271,32767,
  574. 32767, 524, 524,32767,32767, 326, 327, 453, 454,32767,
  575. 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
  576. 272,32767, 228, 228, 228, 228, 228,32767,32767,32767,
  577. 32767,32767,32767,32767, 321, 322, 320, 448, 449, 447,
  578. 32767, 415,32767,32767,32767,32767,32767, 417,32767,32767,
  579. 32767,32767,32767,32767,32767,32767,32767, 486,32767,32767,
  580. 32767,32767,32767,32767,32767, 499, 404,32767,32767,32767,
  581. 397, 212, 214, 161, 472,32767,32767,32767,32767, 504,
  582. 331,32767,32767,32767,32767,32767,32767, 539,32767, 499,
  583. 32767,32767,32767,32767,32767,32767,32767,32767, 344, 323,
  584. 324, 325,32767,32767,32767,32767, 503, 497, 456, 457,
  585. 458, 459,32767,32767, 450, 451, 452, 455,32767,32767,
  586. 32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,
  587. 32767, 165,32767, 412,32767, 418, 418,32767,32767, 165,
  588. 32767,32767,32767,32767, 165,32767, 502, 501, 165,32767,
  589. 398, 480, 165, 178,32767, 176, 176,32767, 198, 198,
  590. 32767,32767, 180, 473, 492,32767, 180,32767, 165,32767,
  591. 386, 167, 480,32767,32767, 230, 230, 386, 165, 230,
  592. 32767, 230,32767, 82, 422,32767,32767,32767,32767,32767,
  593. 32767,32767,32767,32767,32767,32767,32767,32767,32767, 399,
  594. 32767,32767,32767,32767, 365, 366, 475, 488,32767, 489,
  595. 32767, 397,32767, 329, 330, 332, 309,32767, 311, 355,
  596. 356, 357, 358, 359, 360, 361, 363,32767, 402,32767,
  597. 405,32767,32767,32767, 84, 108, 247,32767, 537, 84,
  598. 400,32767,32767, 294, 537,32767,32767,32767,32767, 532,
  599. 32767,32767, 288,32767,32767,32767, 84,32767, 84, 243,
  600. 32767, 163,32767, 522,32767, 497,32767, 401,32767, 328,
  601. 32767,32767,32767,32767,32767,32767,32767,32767,32767, 498,
  602. 32767,32767,32767,32767, 219,32767, 435,32767, 84,32767,
  603. 179,32767,32767, 292, 238,32767,32767, 531,32767,32767,
  604. 32767,32767,32767,32767,32767,32767,32767, 164,32767,32767,
  605. 181,32767,32767, 497,32767,32767,32767,32767,32767,32767,
  606. 32767,32767, 283,32767,32767,32767,32767,32767, 497,32767,
  607. 32767,32767, 223,32767,32767,32767,32767,32767,32767,32767,
  608. 32767,32767,32767, 82, 60,32767, 265,32767,32767,32767,
  609. 32767,32767,32767,32767,32767,32767,32767,32767, 121, 121,
  610. 3, 121, 121, 3, 121, 121, 121, 121, 121, 121,
  611. 121, 121, 121, 121, 121, 121, 121, 206, 250, 209,
  612. 198, 198, 158, 250, 250, 250, 257
  613. );
  614. protected $goto = array(
  615. 160, 160, 134, 134, 139, 134, 135, 136, 137, 142,
  616. 144, 181, 162, 158, 158, 158, 158, 139, 139, 159,
  617. 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
  618. 154, 155, 156, 157, 178, 133, 179, 493, 494, 360,
  619. 495, 499, 500, 501, 502, 503, 504, 505, 506, 962,
  620. 138, 140, 141, 143, 165, 170, 180, 196, 245, 248,
  621. 250, 252, 254, 255, 256, 257, 258, 259, 267, 268,
  622. 269, 270, 285, 286, 314, 315, 316, 379, 380, 381,
  623. 549, 182, 183, 184, 185, 186, 187, 188, 189, 190,
  624. 191, 192, 193, 194, 145, 146, 147, 161, 148, 163,
  625. 149, 197, 164, 150, 151, 152, 198, 153, 131, 625,
  626. 567, 754, 567, 567, 567, 567, 567, 567, 567, 567,
  627. 567, 567, 567, 567, 567, 567, 567, 567, 567, 567,
  628. 567, 567, 567, 567, 567, 567, 567, 567, 567, 567,
  629. 567, 567, 567, 567, 567, 567, 567, 567, 567, 567,
  630. 567, 567, 567, 567, 567, 1100, 753, 1100, 1100, 1100,
  631. 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100,
  632. 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100,
  633. 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100,
  634. 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100,
  635. 523, 784, 497, 497, 497, 497, 497, 497, 6, 508,
  636. 634, 508, 497, 497, 497, 497, 497, 497, 497, 497,
  637. 497, 497, 509, 550, 509, 580, 606, 522, 885, 885,
  638. 1190, 1190, 815, 849, 849, 849, 849, 168, 844, 850,
  639. 522, 522, 171, 172, 173, 388, 389, 390, 391, 167,
  640. 195, 199, 201, 249, 251, 253, 260, 261, 262, 263,
  641. 264, 265, 271, 272, 273, 274, 287, 288, 317, 318,
  642. 319, 394, 395, 396, 397, 169, 174, 246, 247, 175,
  643. 176, 177, 387, 608, 543, 543, 573, 539, 583, 586,
  644. 631, 855, 541, 541, 496, 498, 529, 545, 574, 577,
  645. 587, 593, 341, 1169, 566, 1169, 566, 566, 566, 566,
  646. 566, 566, 566, 566, 566, 566, 566, 566, 566, 566,
  647. 566, 566, 566, 566, 566, 566, 566, 566, 566, 566,
  648. 566, 566, 566, 566, 566, 566, 566, 566, 566, 566,
  649. 566, 566, 566, 566, 566, 566, 566, 566, 566, 514,
  650. 443, 445, 933, 636, 327, 309, 1101, 618, 931, 519,
  651. 519, 519, 519, 777, 551, 552, 553, 554, 555, 556,
  652. 557, 558, 560, 589, 903, 611, 538, 519, 617, 548,
  653. 358, 544, 572, 430, 430, 430, 430, 430, 430, 1194,
  654. 777, 777, 361, 430, 430, 430, 430, 430, 430, 430,
  655. 430, 430, 430, 1065, 1161, 1065, 892, 892, 892, 892,
  656. 892, 1168, 598, 1168, 590, 344, 404, 892, 369, 369,
  657. 369, 1058, 1184, 1184, 1184, 1076, 1075, 1065, 1065, 1065,
  658. 1065, 1149, 1065, 1065, 519, 519, 536, 568, 519, 519,
  659. 615, 519, 369, 510, 960, 510, 1167, 386, 770, 770,
  660. 778, 778, 778, 780, 520, 769, 276, 277, 278, 535,
  661. 607, 659, 562, 547, 594, 868, 882, 613, 867, 616,
  662. 878, 620, 621, 628, 630, 635, 637, 1081, 375, 1201,
  663. 1201, 1187, 1009, 889, 1019, 17, 13, 355, 790, 752,
  664. 1200, 1200, 898, 1061, 1062, 362, 941, 1058, 1201, 527,
  665. 871, 561, 851, 540, 657, 347, 511, 880, 875, 1200,
  666. 1059, 1160, 1059, 21, 398, 373, 773, 1203, 604, 451,
  667. 1060, 771, 907, 342, 343, 368, 645, 402, 446, 10,
  668. 1056, 1051, 912, 781, 578, 1146, 859, 459, 949, 0,
  669. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  670. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  671. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  672. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  673. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  674. 528
  675. );
  676. protected $gotoCheck = array(
  677. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  678. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  679. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  680. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  681. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  682. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  683. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  684. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  685. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  686. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  687. 39, 39, 39, 39, 39, 39, 39, 39, 39, 53,
  688. 63, 12, 63, 63, 63, 63, 63, 63, 63, 63,
  689. 63, 63, 63, 63, 63, 63, 63, 63, 63, 63,
  690. 63, 63, 63, 63, 63, 63, 63, 63, 63, 63,
  691. 63, 63, 63, 63, 63, 63, 63, 63, 63, 63,
  692. 63, 63, 63, 63, 63, 119, 11, 119, 119, 119,
  693. 119, 119, 119, 119, 119, 119, 119, 119, 119, 119,
  694. 119, 119, 119, 119, 119, 119, 119, 119, 119, 119,
  695. 119, 119, 119, 119, 119, 119, 119, 119, 119, 119,
  696. 119, 119, 119, 119, 119, 119, 119, 119, 119, 119,
  697. 94, 25, 110, 110, 110, 110, 110, 110, 91, 63,
  698. 5, 63, 110, 110, 110, 110, 110, 110, 110, 110,
  699. 110, 110, 110, 40, 110, 36, 36, 40, 71, 71,
  700. 71, 71, 46, 63, 63, 63, 63, 23, 63, 63,
  701. 40, 40, 23, 23, 23, 23, 23, 23, 23, 23,
  702. 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
  703. 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
  704. 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
  705. 23, 23, 47, 47, 47, 47, 47, 47, 56, 56,
  706. 56, 29, 47, 47, 47, 47, 47, 47, 47, 47,
  707. 47, 47, 66, 111, 53, 111, 53, 53, 53, 53,
  708. 53, 53, 53, 53, 53, 53, 53, 53, 53, 53,
  709. 53, 53, 53, 53, 53, 53, 53, 53, 53, 53,
  710. 53, 53, 53, 53, 53, 53, 53, 53, 53, 53,
  711. 53, 53, 53, 53, 53, 53, 53, 53, 53, 8,
  712. 7, 7, 7, 7, 118, 118, 7, 7, 7, 8,
  713. 8, 8, 8, 19, 103, 103, 103, 103, 103, 103,
  714. 103, 103, 103, 103, 78, 57, 8, 8, 57, 2,
  715. 57, 102, 2, 53, 53, 53, 53, 53, 53, 132,
  716. 19, 19, 43, 53, 53, 53, 53, 53, 53, 53,
  717. 53, 53, 53, 53, 76, 53, 53, 53, 53, 53,
  718. 53, 112, 120, 112, 64, 64, 64, 53, 116, 116,
  719. 116, 76, 112, 112, 112, 117, 117, 53, 53, 53,
  720. 53, 124, 53, 53, 8, 8, 8, 8, 8, 8,
  721. 53, 8, 116, 115, 94, 115, 112, 116, 19, 19,
  722. 19, 19, 19, 19, 8, 19, 61, 61, 61, 28,
  723. 45, 28, 28, 8, 28, 28, 28, 28, 28, 28,
  724. 28, 28, 28, 28, 28, 28, 28, 30, 44, 134,
  725. 134, 130, 95, 73, 30, 30, 30, 30, 10, 10,
  726. 133, 133, 75, 76, 76, 54, 91, 76, 134, 54,
  727. 10, 30, 10, 54, 10, 14, 10, 10, 10, 133,
  728. 76, 76, 76, 30, 18, 13, 21, 133, 30, 54,
  729. 76, 20, 79, 66, 66, 9, 68, 17, 59, 54,
  730. 108, 106, 80, 22, 60, 123, 65, 101, 93, -1,
  731. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  732. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  733. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  734. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  735. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  736. 94
  737. );
  738. protected $gotoBase = array(
  739. 0, 0, -261, 0, 0, 198, 0, 347, 29, 192,
  740. 487, 154, 109, 168, 185, 0, 0, 121, 183, 43,
  741. 173, 184, 93, 37, 0, 193, 0, 0, -180, 273,
  742. 64, 0, 0, 0, 0, 0, 189, 0, 0, -22,
  743. 201, 0, 0, 354, 188, 180, 216, 3, 0, 0,
  744. 0, 0, 0, 104, 71, 0, -15, -81, 0, 92,
  745. 88, -207, 0, -90, 90, 89, -137, 0, 169, 0,
  746. 0, -51, 0, 177, 0, 179, 67, 0, 351, 166,
  747. 91, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  748. 0, 196, 0, 78, 161, 181, 0, 0, 0, 0,
  749. 0, 80, 356, 322, 0, 0, 115, 0, 111, 0,
  750. -77, 4, 112, 0, 0, 144, 108, 114, 33, -45,
  751. 209, 0, 0, 83, 227, 0, 0, 0, 0, 0,
  752. 199, 0, 362, 182, 171, 0, 0
  753. );
  754. protected $gotoDefault = array(
  755. -32768, 462, 668, 2, 669, 740, 748, 601, 479, 515,
  756. 853, 791, 792, 364, 410, 480, 363, 399, 392, 779,
  757. 772, 774, 782, 166, 400, 785, 1, 787, 521, 823,
  758. 1010, 351, 795, 352, 592, 797, 531, 799, 800, 132,
  759. 481, 365, 366, 532, 374, 581, 814, 266, 371, 816,
  760. 353, 817, 826, 354, 614, 597, 563, 610, 482, 442,
  761. 575, 275, 542, 1073, 570, 858, 340, 866, 648, 874,
  762. 877, 483, 564, 888, 448, 896, 1086, 382, 902, 908,
  763. 913, 916, 418, 401, 588, 920, 921, 5, 925, 626,
  764. 627, 940, 300, 948, 961, 416, 1029, 1031, 484, 485,
  765. 525, 456, 507, 530, 486, 1052, 436, 403, 1055, 487,
  766. 488, 426, 427, 1070, 346, 1154, 345, 444, 308, 1141,
  767. 584, 1105, 452, 1193, 1150, 337, 489, 490, 359, 376,
  768. 1188, 431, 1195, 1202, 335, 367, 571
  769. );
  770. protected $ruleToNonTerminal = array(
  771. 0, 1, 3, 3, 2, 5, 5, 5, 5, 5,
  772. 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  773. 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  774. 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  775. 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  776. 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  777. 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  778. 5, 5, 5, 6, 6, 6, 6, 6, 6, 6,
  779. 7, 7, 8, 8, 9, 4, 4, 4, 4, 4,
  780. 4, 4, 4, 4, 4, 4, 14, 14, 15, 15,
  781. 15, 15, 17, 17, 13, 13, 18, 18, 19, 19,
  782. 20, 20, 21, 21, 16, 16, 22, 24, 24, 25,
  783. 26, 26, 28, 27, 27, 27, 27, 29, 29, 29,
  784. 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
  785. 29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
  786. 29, 29, 29, 29, 29, 29, 10, 10, 50, 50,
  787. 52, 51, 51, 44, 44, 54, 54, 55, 55, 11,
  788. 12, 12, 12, 58, 58, 58, 59, 59, 62, 62,
  789. 60, 60, 64, 64, 37, 37, 46, 46, 49, 49,
  790. 49, 48, 48, 65, 38, 38, 38, 38, 66, 66,
  791. 67, 67, 68, 68, 35, 35, 31, 31, 69, 33,
  792. 33, 70, 32, 32, 34, 34, 45, 45, 45, 56,
  793. 56, 72, 72, 73, 73, 75, 75, 75, 74, 74,
  794. 57, 57, 76, 76, 76, 77, 77, 78, 78, 78,
  795. 41, 41, 79, 79, 79, 42, 42, 80, 80, 61,
  796. 61, 81, 81, 81, 81, 86, 86, 87, 87, 88,
  797. 88, 88, 88, 88, 89, 90, 90, 85, 85, 82,
  798. 82, 84, 84, 92, 92, 91, 91, 91, 91, 91,
  799. 91, 83, 83, 93, 93, 43, 43, 36, 36, 39,
  800. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  801. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  802. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  803. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  804. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  805. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  806. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  807. 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  808. 39, 39, 39, 30, 30, 40, 40, 98, 98, 99,
  809. 99, 99, 99, 105, 94, 94, 101, 101, 107, 107,
  810. 108, 109, 109, 109, 109, 109, 109, 63, 63, 53,
  811. 53, 53, 95, 95, 113, 113, 110, 110, 114, 114,
  812. 114, 114, 96, 96, 96, 100, 100, 100, 106, 106,
  813. 119, 119, 119, 119, 119, 119, 119, 119, 119, 119,
  814. 119, 119, 119, 23, 23, 23, 23, 23, 23, 121,
  815. 121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
  816. 121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
  817. 121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
  818. 121, 121, 104, 104, 97, 97, 97, 97, 120, 120,
  819. 123, 123, 122, 122, 124, 124, 47, 47, 47, 47,
  820. 126, 126, 125, 125, 125, 125, 125, 127, 127, 112,
  821. 112, 115, 115, 111, 111, 128, 128, 128, 128, 116,
  822. 116, 116, 116, 103, 103, 117, 117, 117, 117, 71,
  823. 129, 129, 130, 130, 130, 102, 102, 131, 131, 132,
  824. 132, 132, 132, 118, 118, 118, 118, 134, 135, 133,
  825. 133, 133, 133, 133, 133, 133, 136, 136, 136
  826. );
  827. protected $ruleToLength = array(
  828. 1, 1, 2, 0, 1, 1, 1, 1, 1, 1,
  829. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  830. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  831. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  832. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  833. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  834. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  835. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  836. 1, 1, 1, 3, 1, 1, 1, 1, 1, 3,
  837. 5, 4, 3, 4, 2, 3, 1, 1, 7, 8,
  838. 6, 7, 3, 1, 3, 1, 3, 1, 1, 3,
  839. 1, 2, 1, 2, 3, 1, 3, 3, 1, 3,
  840. 2, 0, 1, 1, 1, 1, 1, 3, 5, 8,
  841. 3, 5, 9, 3, 2, 3, 2, 3, 2, 3,
  842. 2, 3, 3, 3, 1, 2, 5, 7, 9, 5,
  843. 6, 3, 3, 2, 2, 1, 1, 1, 0, 2,
  844. 8, 0, 4, 1, 3, 0, 1, 0, 1, 10,
  845. 7, 6, 5, 1, 2, 2, 0, 2, 0, 2,
  846. 0, 2, 1, 3, 1, 4, 1, 4, 1, 1,
  847. 4, 1, 3, 3, 3, 4, 4, 5, 0, 2,
  848. 4, 3, 1, 1, 1, 4, 0, 2, 3, 0,
  849. 2, 4, 0, 2, 0, 3, 1, 2, 1, 1,
  850. 0, 1, 3, 4, 6, 1, 1, 1, 0, 1,
  851. 0, 2, 2, 3, 3, 1, 3, 1, 2, 2,
  852. 3, 1, 1, 2, 4, 3, 1, 1, 3, 2,
  853. 0, 3, 3, 9, 3, 1, 3, 0, 2, 4,
  854. 5, 4, 4, 4, 3, 1, 1, 1, 3, 1,
  855. 1, 0, 1, 1, 2, 1, 1, 1, 1, 1,
  856. 1, 1, 3, 1, 3, 3, 1, 0, 1, 1,
  857. 3, 3, 4, 4, 1, 2, 3, 3, 3, 3,
  858. 3, 3, 3, 3, 3, 3, 3, 3, 2, 2,
  859. 2, 2, 3, 3, 3, 3, 3, 3, 3, 3,
  860. 3, 3, 3, 3, 3, 3, 3, 3, 3, 2,
  861. 2, 2, 2, 3, 3, 3, 3, 3, 3, 3,
  862. 3, 3, 3, 1, 3, 5, 4, 3, 4, 4,
  863. 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
  864. 2, 2, 2, 2, 1, 1, 1, 3, 2, 1,
  865. 2, 10, 11, 3, 3, 2, 4, 4, 3, 4,
  866. 4, 4, 4, 7, 3, 2, 0, 4, 1, 3,
  867. 2, 2, 4, 6, 2, 2, 4, 1, 1, 1,
  868. 2, 3, 1, 1, 1, 1, 1, 1, 3, 3,
  869. 4, 4, 0, 2, 1, 0, 1, 1, 0, 1,
  870. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  871. 1, 3, 2, 1, 3, 1, 4, 3, 1, 3,
  872. 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
  873. 3, 3, 3, 3, 3, 3, 2, 2, 2, 2,
  874. 3, 3, 3, 3, 3, 3, 3, 3, 5, 4,
  875. 4, 3, 1, 3, 1, 1, 3, 3, 0, 2,
  876. 0, 1, 3, 1, 3, 1, 1, 1, 1, 1,
  877. 6, 4, 3, 4, 2, 4, 4, 1, 3, 1,
  878. 2, 1, 1, 4, 1, 3, 6, 4, 4, 4,
  879. 4, 1, 4, 0, 1, 1, 3, 1, 1, 4,
  880. 3, 1, 1, 1, 0, 0, 2, 3, 1, 3,
  881. 1, 4, 2, 2, 2, 1, 2, 1, 1, 1,
  882. 4, 3, 3, 3, 6, 3, 1, 1, 1
  883. );
  884. protected function reduceRule0() {
  885. $this->semValue = $this->semStack[$this->stackPos];
  886. }
  887. protected function reduceRule1() {
  888. $this->semValue = $this->handleNamespaces($this->semStack[$this->stackPos-(1-1)]);
  889. }
  890. protected function reduceRule2() {
  891. 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)]; };
  892. }
  893. protected function reduceRule3() {
  894. $this->semValue = array();
  895. }
  896. protected function reduceRule4() {
  897. $startAttributes = $this->lookaheadStartAttributes; if (isset($startAttributes['comments'])) { $nop = new Stmt\Nop(['comments' => $startAttributes['comments']]); } else { $nop = null; };
  898. if ($nop !== null) { $this->semStack[$this->stackPos-(1-1)][] = $nop; } $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  899. }
  900. protected function reduceRule5() {
  901. $this->semValue = $this->semStack[$this->stackPos];
  902. }
  903. protected function reduceRule6() {
  904. $this->semValue = $this->semStack[$this->stackPos];
  905. }
  906. protected function reduceRule7() {
  907. $this->semValue = $this->semStack[$this->stackPos];
  908. }
  909. protected function reduceRule8() {
  910. $this->semValue = $this->semStack[$this->stackPos];
  911. }
  912. protected function reduceRule9() {
  913. $this->semValue = $this->semStack[$this->stackPos];
  914. }
  915. protected function reduceRule10() {
  916. $this->semValue = $this->semStack[$this->stackPos];
  917. }
  918. protected function reduceRule11() {
  919. $this->semValue = $this->semStack[$this->stackPos];
  920. }
  921. protected function reduceRule12() {
  922. $this->semValue = $this->semStack[$this->stackPos];
  923. }
  924. protected function reduceRule13() {
  925. $this->semValue = $this->semStack[$this->stackPos];
  926. }
  927. protected function reduceRule14() {
  928. $this->semValue = $this->semStack[$this->stackPos];
  929. }
  930. protected function reduceRule15() {
  931. $this->semValue = $this->semStack[$this->stackPos];
  932. }
  933. protected function reduceRule16() {
  934. $this->semValue = $this->semStack[$this->stackPos];
  935. }
  936. protected function reduceRule17() {
  937. $this->semValue = $this->semStack[$this->stackPos];
  938. }
  939. protected function reduceRule18() {
  940. $this->semValue = $this->semStack[$this->stackPos];
  941. }
  942. protected function reduceRule19() {
  943. $this->semValue = $this->semStack[$this->stackPos];
  944. }
  945. protected function reduceRule20() {
  946. $this->semValue = $this->semStack[$this->stackPos];
  947. }
  948. protected function reduceRule21() {
  949. $this->semValue = $this->semStack[$this->stackPos];
  950. }
  951. protected function reduceRule22() {
  952. $this->semValue = $this->semStack[$this->stackPos];
  953. }
  954. protected function reduceRule23() {
  955. $this->semValue = $this->semStack[$this->stackPos];
  956. }
  957. protected function reduceRule24() {
  958. $this->semValue = $this->semStack[$this->stackPos];
  959. }
  960. protected function reduceRule25() {
  961. $this->semValue = $this->semStack[$this->stackPos];
  962. }
  963. protected function reduceRule26() {
  964. $this->semValue = $this->semStack[$this->stackPos];
  965. }
  966. protected function reduceRule27() {
  967. $this->semValue = $this->semStack[$this->stackPos];
  968. }
  969. protected function reduceRule28() {
  970. $this->semValue = $this->semStack[$this->stackPos];
  971. }
  972. protected function reduceRule29() {
  973. $this->semValue = $this->semStack[$this->stackPos];
  974. }
  975. protected function reduceRule30() {
  976. $this->semValue = $this->semStack[$this->stackPos];
  977. }
  978. protected function reduceRule31() {
  979. $this->semValue = $this->semStack[$this->stackPos];
  980. }
  981. protected function reduceRule32() {
  982. $this->semValue = $this->semStack[$this->stackPos];
  983. }
  984. protected function reduceRule33() {
  985. $this->semValue = $this->semStack[$this->stackPos];
  986. }
  987. protected function reduceRule34() {
  988. $this->semValue = $this->semStack[$this->stackPos];
  989. }
  990. protected function reduceRule35() {
  991. $this->semValue = $this->semStack[$this->stackPos];
  992. }
  993. protected function reduceRule36() {
  994. $this->semValue = $this->semStack[$this->stackPos];
  995. }
  996. protected function reduceRule37() {
  997. $this->semValue = $this->semStack[$this->stackPos];
  998. }
  999. protected function reduceRule38() {
  1000. $this->semValue = $this->semStack[$this->stackPos];
  1001. }
  1002. protected function reduceRule39() {
  1003. $this->semValue = $this->semStack[$this->stackPos];
  1004. }
  1005. protected function reduceRule40() {
  1006. $this->semValue = $this->semStack[$this->stackPos];
  1007. }
  1008. protected function reduceRule41() {
  1009. $this->semValue = $this->semStack[$this->stackPos];
  1010. }
  1011. protected function reduceRule42() {
  1012. $this->semValue = $this->semStack[$this->stackPos];
  1013. }
  1014. protected function reduceRule43() {
  1015. $this->semValue = $this->semStack[$this->stackPos];
  1016. }
  1017. protected function reduceRule44() {
  1018. $this->semValue = $this->semStack[$this->stackPos];
  1019. }
  1020. protected function reduceRule45() {
  1021. $this->semValue = $this->semStack[$this->stackPos];
  1022. }
  1023. protected function reduceRule46() {
  1024. $this->semValue = $this->semStack[$this->stackPos];
  1025. }
  1026. protected function reduceRule47() {
  1027. $this->semValue = $this->semStack[$this->stackPos];
  1028. }
  1029. protected function reduceRule48() {
  1030. $this->semValue = $this->semStack[$this->stackPos];
  1031. }
  1032. protected function reduceRule49() {
  1033. $this->semValue = $this->semStack[$this->stackPos];
  1034. }
  1035. protected function reduceRule50() {
  1036. $this->semValue = $this->semStack[$this->stackPos];
  1037. }
  1038. protected function reduceRule51() {
  1039. $this->semValue = $this->semStack[$this->stackPos];
  1040. }
  1041. protected function reduceRule52() {
  1042. $this->semValue = $this->semStack[$this->stackPos];
  1043. }
  1044. protected function reduceRule53() {
  1045. $this->semValue = $this->semStack[$this->stackPos];
  1046. }
  1047. protected function reduceRule54() {
  1048. $this->semValue = $this->semStack[$this->stackPos];
  1049. }
  1050. protected function reduceRule55() {
  1051. $this->semValue = $this->semStack[$this->stackPos];
  1052. }
  1053. protected function reduceRule56() {
  1054. $this->semValue = $this->semStack[$this->stackPos];
  1055. }
  1056. protected function reduceRule57() {
  1057. $this->semValue = $this->semStack[$this->stackPos];
  1058. }
  1059. protected function reduceRule58() {
  1060. $this->semValue = $this->semStack[$this->stackPos];
  1061. }
  1062. protected function reduceRule59() {
  1063. $this->semValue = $this->semStack[$this->stackPos];
  1064. }
  1065. protected function reduceRule60() {
  1066. $this->semValue = $this->semStack[$this->stackPos];
  1067. }
  1068. protected function reduceRule61() {
  1069. $this->semValue = $this->semStack[$this->stackPos];
  1070. }
  1071. protected function reduceRule62() {
  1072. $this->semValue = $this->semStack[$this->stackPos];
  1073. }
  1074. protected function reduceRule63() {
  1075. $this->semValue = $this->semStack[$this->stackPos];
  1076. }
  1077. protected function reduceRule64() {
  1078. $this->semValue = $this->semStack[$this->stackPos];
  1079. }
  1080. protected function reduceRule65() {
  1081. $this->semValue = $this->semStack[$this->stackPos];
  1082. }
  1083. protected function reduceRule66() {
  1084. $this->semValue = $this->semStack[$this->stackPos];
  1085. }
  1086. protected function reduceRule67() {
  1087. $this->semValue = $this->semStack[$this->stackPos];
  1088. }
  1089. protected function reduceRule68() {
  1090. $this->semValue = $this->semStack[$this->stackPos];
  1091. }
  1092. protected function reduceRule69() {
  1093. $this->semValue = $this->semStack[$this->stackPos];
  1094. }
  1095. protected function reduceRule70() {
  1096. $this->semValue = $this->semStack[$this->stackPos];
  1097. }
  1098. protected function reduceRule71() {
  1099. $this->semValue = $this->semStack[$this->stackPos];
  1100. }
  1101. protected function reduceRule72() {
  1102. $this->semValue = $this->semStack[$this->stackPos];
  1103. }
  1104. protected function reduceRule73() {
  1105. $this->semValue = $this->semStack[$this->stackPos];
  1106. }
  1107. protected function reduceRule74() {
  1108. $this->semValue = $this->semStack[$this->stackPos];
  1109. }
  1110. protected function reduceRule75() {
  1111. $this->semValue = $this->semStack[$this->stackPos];
  1112. }
  1113. protected function reduceRule76() {
  1114. $this->semValue = $this->semStack[$this->stackPos];
  1115. }
  1116. protected function reduceRule77() {
  1117. $this->semValue = $this->semStack[$this->stackPos];
  1118. }
  1119. protected function reduceRule78() {
  1120. $this->semValue = $this->semStack[$this->stackPos];
  1121. }
  1122. protected function reduceRule79() {
  1123. $this->semValue = $this->semStack[$this->stackPos];
  1124. }
  1125. protected function reduceRule80() {
  1126. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1127. }
  1128. protected function reduceRule81() {
  1129. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1130. }
  1131. protected function reduceRule82() {
  1132. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  1133. }
  1134. protected function reduceRule83() {
  1135. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  1136. }
  1137. protected function reduceRule84() {
  1138. $this->semValue = new Name($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  1139. }
  1140. protected function reduceRule85() {
  1141. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1142. }
  1143. protected function reduceRule86() {
  1144. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1145. }
  1146. protected function reduceRule87() {
  1147. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1148. }
  1149. protected function reduceRule88() {
  1150. $this->semValue = new Stmt\HaltCompiler($this->lexer->handleHaltCompiler(), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  1151. }
  1152. protected function reduceRule89() {
  1153. $this->semValue = new Stmt\Namespace_($this->semStack[$this->stackPos-(3-2)], null, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes); $this->checkNamespace($this->semValue);
  1154. }
  1155. protected function reduceRule90() {
  1156. $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);
  1157. }
  1158. protected function reduceRule91() {
  1159. $this->semValue = new Stmt\Namespace_(null, $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes); $this->checkNamespace($this->semValue);
  1160. }
  1161. protected function reduceRule92() {
  1162. $this->semValue = new Stmt\Use_($this->semStack[$this->stackPos-(3-2)], Stmt\Use_::TYPE_NORMAL, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1163. }
  1164. protected function reduceRule93() {
  1165. $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);
  1166. }
  1167. protected function reduceRule94() {
  1168. $this->semValue = $this->semStack[$this->stackPos-(2-1)];
  1169. }
  1170. protected function reduceRule95() {
  1171. $this->semValue = new Stmt\Const_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1172. }
  1173. protected function reduceRule96() {
  1174. $this->semValue = Stmt\Use_::TYPE_FUNCTION;
  1175. }
  1176. protected function reduceRule97() {
  1177. $this->semValue = Stmt\Use_::TYPE_CONSTANT;
  1178. }
  1179. protected function reduceRule98() {
  1180. $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);
  1181. }
  1182. protected function reduceRule99() {
  1183. $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);
  1184. }
  1185. protected function reduceRule100() {
  1186. $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);
  1187. }
  1188. protected function reduceRule101() {
  1189. $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);
  1190. }
  1191. protected function reduceRule102() {
  1192. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  1193. }
  1194. protected function reduceRule103() {
  1195. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  1196. }
  1197. protected function reduceRule104() {
  1198. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  1199. }
  1200. protected function reduceRule105() {
  1201. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  1202. }
  1203. protected function reduceRule106() {
  1204. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  1205. }
  1206. protected function reduceRule107() {
  1207. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  1208. }
  1209. protected function reduceRule108() {
  1210. $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));
  1211. }
  1212. protected function reduceRule109() {
  1213. $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));
  1214. }
  1215. protected function reduceRule110() {
  1216. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1217. }
  1218. protected function reduceRule111() {
  1219. $this->semValue = $this->semStack[$this->stackPos-(2-2)];
  1220. }
  1221. protected function reduceRule112() {
  1222. $this->semValue = $this->semStack[$this->stackPos-(1-1)]; $this->semValue->type = Stmt\Use_::TYPE_NORMAL;
  1223. }
  1224. protected function reduceRule113() {
  1225. $this->semValue = $this->semStack[$this->stackPos-(2-2)]; $this->semValue->type = $this->semStack[$this->stackPos-(2-1)];
  1226. }
  1227. protected function reduceRule114() {
  1228. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  1229. }
  1230. protected function reduceRule115() {
  1231. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  1232. }
  1233. protected function reduceRule116() {
  1234. $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);
  1235. }
  1236. protected function reduceRule117() {
  1237. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  1238. }
  1239. protected function reduceRule118() {
  1240. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  1241. }
  1242. protected function reduceRule119() {
  1243. $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);
  1244. }
  1245. protected function reduceRule120() {
  1246. 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)]; };
  1247. }
  1248. protected function reduceRule121() {
  1249. $this->semValue = array();
  1250. }
  1251. protected function reduceRule122() {
  1252. $startAttributes = $this->lookaheadStartAttributes; if (isset($startAttributes['comments'])) { $nop = new Stmt\Nop(['comments' => $startAttributes['comments']]); } else { $nop = null; };
  1253. if ($nop !== null) { $this->semStack[$this->stackPos-(1-1)][] = $nop; } $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1254. }
  1255. protected function reduceRule123() {
  1256. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1257. }
  1258. protected function reduceRule124() {
  1259. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1260. }
  1261. protected function reduceRule125() {
  1262. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1263. }
  1264. protected function reduceRule126() {
  1265. throw new Error('__HALT_COMPILER() can only be used from the outermost scope', $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  1266. }
  1267. protected function reduceRule127() {
  1268. $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', []))); };
  1269. }
  1270. protected function reduceRule128() {
  1271. $this->semValue = new Stmt\If_($this->semStack[$this->stackPos-(5-2)], ['stmts' => is_array($this->semStack[$this->stackPos-(5-3)]) ? $this->semStack[$this->stackPos-(5-3)] : array($this->semStack[$this->stackPos-(5-3)]), 'elseifs' => $this->semStack[$this->stackPos-(5-4)], 'else' => $this->semStack[$this->stackPos-(5-5)]], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
  1272. }
  1273. protected function reduceRule129() {
  1274. $this->semValue = new Stmt\If_($this->semStack[$this->stackPos-(8-2)], ['stmts' => $this->semStack[$this->stackPos-(8-4)], 'elseifs' => $this->semStack[$this->stackPos-(8-5)], 'else' => $this->semStack[$this->stackPos-(8-6)]], $this->startAttributeStack[$this->stackPos-(8-1)] + $this->endAttributes);
  1275. }
  1276. protected function reduceRule130() {
  1277. $this->semValue = new Stmt\While_($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1278. }
  1279. protected function reduceRule131() {
  1280. $this->semValue = new Stmt\Do_($this->semStack[$this->stackPos-(5-4)], is_array($this->semStack[$this->stackPos-(5-2)]) ? $this->semStack[$this->stackPos-(5-2)] : array($this->semStack[$this->stackPos-(5-2)]), $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
  1281. }
  1282. protected function reduceRule132() {
  1283. $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);
  1284. }
  1285. protected function reduceRule133() {
  1286. $this->semValue = new Stmt\Switch_($this->semStack[$this->stackPos-(3-2)], $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1287. }
  1288. protected function reduceRule134() {
  1289. $this->semValue = new Stmt\Break_(null, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1290. }
  1291. protected function reduceRule135() {
  1292. $this->semValue = new Stmt\Break_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1293. }
  1294. protected function reduceRule136() {
  1295. $this->semValue = new Stmt\Continue_(null, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1296. }
  1297. protected function reduceRule137() {
  1298. $this->semValue = new Stmt\Continue_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1299. }
  1300. protected function reduceRule138() {
  1301. $this->semValue = new Stmt\Return_(null, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1302. }
  1303. protected function reduceRule139() {
  1304. $this->semValue = new Stmt\Return_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1305. }
  1306. protected function reduceRule140() {
  1307. $this->semValue = $this->semStack[$this->stackPos-(2-1)];
  1308. }
  1309. protected function reduceRule141() {
  1310. $this->semValue = new Stmt\Global_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1311. }
  1312. protected function reduceRule142() {
  1313. $this->semValue = new Stmt\Static_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1314. }
  1315. protected function reduceRule143() {
  1316. $this->semValue = new Stmt\Echo_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1317. }
  1318. protected function reduceRule144() {
  1319. $this->semValue = new Stmt\InlineHTML($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  1320. }
  1321. protected function reduceRule145() {
  1322. $this->semValue = $this->semStack[$this->stackPos-(2-1)];
  1323. }
  1324. protected function reduceRule146() {
  1325. $this->semValue = new Stmt\Unset_($this->semStack[$this->stackPos-(5-3)], $this->startAttributeStack[$this->stackPos-(5-1)] + $this->endAttributes);
  1326. }
  1327. protected function reduceRule147() {
  1328. $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);
  1329. }
  1330. protected function reduceRule148() {
  1331. $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);
  1332. }
  1333. protected function reduceRule149() {
  1334. $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);
  1335. }
  1336. protected function reduceRule150() {
  1337. $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);
  1338. }
  1339. protected function reduceRule151() {
  1340. $this->semValue = new Stmt\Throw_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1341. }
  1342. protected function reduceRule152() {
  1343. $this->semValue = new Stmt\Goto_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1344. }
  1345. protected function reduceRule153() {
  1346. $this->semValue = new Stmt\Label($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1347. }
  1348. protected function reduceRule154() {
  1349. $this->semValue = $this->semStack[$this->stackPos-(2-1)];
  1350. }
  1351. protected function reduceRule155() {
  1352. $this->semValue = array(); /* means: no statement */
  1353. }
  1354. protected function reduceRule156() {
  1355. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1356. }
  1357. protected function reduceRule157() {
  1358. $startAttributes = $this->startAttributeStack[$this->stackPos-(1-1)]; if (isset($startAttributes['comments'])) { $this->semValue = new Stmt\Nop(['comments' => $startAttributes['comments']]); } else { $this->semValue = null; };
  1359. if ($this->semValue === null) $this->semValue = array(); /* means: no statement */
  1360. }
  1361. protected function reduceRule158() {
  1362. $this->semValue = array();
  1363. }
  1364. protected function reduceRule159() {
  1365. $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
  1366. }
  1367. protected function reduceRule160() {
  1368. $this->semValue = new Stmt\Catch_(array($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);
  1369. }
  1370. protected function reduceRule161() {
  1371. $this->semValue = null;
  1372. }
  1373. protected function reduceRule162() {
  1374. $this->semValue = new Stmt\Finally_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
  1375. }
  1376. protected function reduceRule163() {
  1377. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  1378. }
  1379. protected function reduceRule164() {
  1380. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  1381. }
  1382. protected function reduceRule165() {
  1383. $this->semValue = false;
  1384. }
  1385. protected function reduceRule166() {
  1386. $this->semValue = true;
  1387. }
  1388. protected function reduceRule167() {
  1389. $this->semValue = false;
  1390. }
  1391. protected function reduceRule168() {
  1392. $this->semValue = true;
  1393. }
  1394. protected function reduceRule169() {
  1395. $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);
  1396. }
  1397. protected function reduceRule170() {
  1398. $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);
  1399. $this->checkClass($this->semValue, $this->stackPos-(7-2));
  1400. }
  1401. protected function reduceRule171() {
  1402. $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);
  1403. $this->checkInterface($this->semValue, $this->stackPos-(6-2));
  1404. }
  1405. protected function reduceRule172() {
  1406. $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);
  1407. }
  1408. protected function reduceRule173() {
  1409. $this->semValue = 0;
  1410. }
  1411. protected function reduceRule174() {
  1412. $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT;
  1413. }
  1414. protected function reduceRule175() {
  1415. $this->semValue = Stmt\Class_::MODIFIER_FINAL;
  1416. }
  1417. protected function reduceRule176() {
  1418. $this->semValue = null;
  1419. }
  1420. protected function reduceRule177() {
  1421. $this->semValue = $this->semStack[$this->stackPos-(2-2)];
  1422. }
  1423. protected function reduceRule178() {
  1424. $this->semValue = array();
  1425. }
  1426. protected function reduceRule179() {
  1427. $this->semValue = $this->semStack[$this->stackPos-(2-2)];
  1428. }
  1429. protected function reduceRule180() {
  1430. $this->semValue = array();
  1431. }
  1432. protected function reduceRule181() {
  1433. $this->semValue = $this->semStack[$this->stackPos-(2-2)];
  1434. }
  1435. protected function reduceRule182() {
  1436. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  1437. }
  1438. protected function reduceRule183() {
  1439. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  1440. }
  1441. protected function reduceRule184() {
  1442. $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
  1443. }
  1444. protected function reduceRule185() {
  1445. $this->semValue = $this->semStack[$this->stackPos-(4-2)];
  1446. }
  1447. protected function reduceRule186() {
  1448. $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
  1449. }
  1450. protected function reduceRule187() {
  1451. $this->semValue = $this->semStack[$this->stackPos-(4-2)];
  1452. }
  1453. protected function reduceRule188() {
  1454. $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
  1455. }
  1456. protected function reduceRule189() {
  1457. $this->semValue = null;
  1458. }
  1459. protected function reduceRule190() {
  1460. $this->semValue = $this->semStack[$this->stackPos-(4-2)];
  1461. }
  1462. protected function reduceRule191() {
  1463. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  1464. }
  1465. protected function reduceRule192() {
  1466. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  1467. }
  1468. protected function reduceRule193() {
  1469. $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);
  1470. }
  1471. protected function reduceRule194() {
  1472. $this->semValue = $this->semStack[$this->stackPos-(3-2)];
  1473. }
  1474. protected function reduceRule195() {
  1475. $this->semValue = $this->semStack[$this->stackPos-(4-3)];
  1476. }
  1477. protected function reduceRule196() {
  1478. $this->semValue = $this->semStack[$this->stackPos-(4-2)];
  1479. }
  1480. protected function reduceRule197() {
  1481. $this->semValue = $this->semStack[$this->stackPos-(5-3)];
  1482. }
  1483. protected function reduceRule198() {
  1484. $this->semValue = array();
  1485. }
  1486. protected function reduceRule199() {
  1487. $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
  1488. }
  1489. protected function reduceRule200() {
  1490. $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);
  1491. }
  1492. protected function reduceRule201() {
  1493. $this->semValue = new Stmt\Case_(null, $this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1494. }
  1495. protected function reduceRule202() {
  1496. $this->semValue = $this->semStack[$this->stackPos];
  1497. }
  1498. protected function reduceRule203() {
  1499. $this->semValue = $this->semStack[$this->stackPos];
  1500. }
  1501. protected function reduceRule204() {
  1502. $this->semValue = is_array($this->semStack[$this->stackPos-(1-1)]) ? $this->semStack[$this->stackPos-(1-1)] : array($this->semStack[$this->stackPos-(1-1)]);
  1503. }
  1504. protected function reduceRule205() {
  1505. $this->semValue = $this->semStack[$this->stackPos-(4-2)];
  1506. }
  1507. protected function reduceRule206() {
  1508. $this->semValue = array();
  1509. }
  1510. protected function reduceRule207() {
  1511. $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
  1512. }
  1513. protected function reduceRule208() {
  1514. $this->semValue = new Stmt\ElseIf_($this->semStack[$this->stackPos-(3-2)], is_array($this->semStack[$this->stackPos-(3-3)]) ? $this->semStack[$this->stackPos-(3-3)] : array($this->semStack[$this->stackPos-(3-3)]), $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1515. }
  1516. protected function reduceRule209() {
  1517. $this->semValue = array();
  1518. }
  1519. protected function reduceRule210() {
  1520. $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
  1521. }
  1522. protected function reduceRule211() {
  1523. $this->semValue = new Stmt\ElseIf_($this->semStack[$this->stackPos-(4-2)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
  1524. }
  1525. protected function reduceRule212() {
  1526. $this->semValue = null;
  1527. }
  1528. protected function reduceRule213() {
  1529. $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);
  1530. }
  1531. protected function reduceRule214() {
  1532. $this->semValue = null;
  1533. }
  1534. protected function reduceRule215() {
  1535. $this->semValue = new Stmt\Else_($this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1536. }
  1537. protected function reduceRule216() {
  1538. $this->semValue = array($this->semStack[$this->stackPos-(1-1)], false);
  1539. }
  1540. protected function reduceRule217() {
  1541. $this->semValue = array($this->semStack[$this->stackPos-(2-2)], true);
  1542. }
  1543. protected function reduceRule218() {
  1544. $this->semValue = array($this->semStack[$this->stackPos-(1-1)], false);
  1545. }
  1546. protected function reduceRule219() {
  1547. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1548. }
  1549. protected function reduceRule220() {
  1550. $this->semValue = array();
  1551. }
  1552. protected function reduceRule221() {
  1553. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  1554. }
  1555. protected function reduceRule222() {
  1556. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  1557. }
  1558. protected function reduceRule223() {
  1559. $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);
  1560. }
  1561. protected function reduceRule224() {
  1562. $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);
  1563. }
  1564. protected function reduceRule225() {
  1565. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1566. }
  1567. protected function reduceRule226() {
  1568. $this->semValue = 'array';
  1569. }
  1570. protected function reduceRule227() {
  1571. $this->semValue = 'callable';
  1572. }
  1573. protected function reduceRule228() {
  1574. $this->semValue = null;
  1575. }
  1576. protected function reduceRule229() {
  1577. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1578. }
  1579. protected function reduceRule230() {
  1580. $this->semValue = null;
  1581. }
  1582. protected function reduceRule231() {
  1583. $this->semValue = $this->semStack[$this->stackPos-(2-2)];
  1584. }
  1585. protected function reduceRule232() {
  1586. $this->semValue = array();
  1587. }
  1588. protected function reduceRule233() {
  1589. $this->semValue = $this->semStack[$this->stackPos-(3-2)];
  1590. }
  1591. protected function reduceRule234() {
  1592. $this->semValue = array(new Node\Arg($this->semStack[$this->stackPos-(3-2)], false, false, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes));
  1593. }
  1594. protected function reduceRule235() {
  1595. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  1596. }
  1597. protected function reduceRule236() {
  1598. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  1599. }
  1600. protected function reduceRule237() {
  1601. $this->semValue = new Node\Arg($this->semStack[$this->stackPos-(1-1)], false, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  1602. }
  1603. protected function reduceRule238() {
  1604. $this->semValue = new Node\Arg($this->semStack[$this->stackPos-(2-2)], true, false, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1605. }
  1606. protected function reduceRule239() {
  1607. $this->semValue = new Node\Arg($this->semStack[$this->stackPos-(2-2)], false, true, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1608. }
  1609. protected function reduceRule240() {
  1610. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  1611. }
  1612. protected function reduceRule241() {
  1613. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  1614. }
  1615. protected function reduceRule242() {
  1616. $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  1617. }
  1618. protected function reduceRule243() {
  1619. $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1620. }
  1621. protected function reduceRule244() {
  1622. $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
  1623. }
  1624. protected function reduceRule245() {
  1625. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  1626. }
  1627. protected function reduceRule246() {
  1628. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  1629. }
  1630. protected function reduceRule247() {
  1631. $this->semValue = new Stmt\StaticVar(substr($this->semStack[$this->stackPos-(1-1)], 1), null, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  1632. }
  1633. protected function reduceRule248() {
  1634. $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);
  1635. }
  1636. protected function reduceRule249() {
  1637. $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
  1638. }
  1639. protected function reduceRule250() {
  1640. $this->semValue = array();
  1641. }
  1642. protected function reduceRule251() {
  1643. $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));
  1644. }
  1645. protected function reduceRule252() {
  1646. $this->semValue = new Stmt\ClassConst($this->semStack[$this->stackPos-(3-2)], 0, $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1647. }
  1648. protected function reduceRule253() {
  1649. $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);
  1650. $this->checkClassMethod($this->semValue, $this->stackPos-(9-1));
  1651. }
  1652. protected function reduceRule254() {
  1653. $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);
  1654. }
  1655. protected function reduceRule255() {
  1656. $this->semValue = array();
  1657. }
  1658. protected function reduceRule256() {
  1659. $this->semValue = $this->semStack[$this->stackPos-(3-2)];
  1660. }
  1661. protected function reduceRule257() {
  1662. $this->semValue = array();
  1663. }
  1664. protected function reduceRule258() {
  1665. $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
  1666. }
  1667. protected function reduceRule259() {
  1668. $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);
  1669. }
  1670. protected function reduceRule260() {
  1671. $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);
  1672. }
  1673. protected function reduceRule261() {
  1674. $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);
  1675. }
  1676. protected function reduceRule262() {
  1677. $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);
  1678. }
  1679. protected function reduceRule263() {
  1680. $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);
  1681. }
  1682. protected function reduceRule264() {
  1683. $this->semValue = array($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-3)]);
  1684. }
  1685. protected function reduceRule265() {
  1686. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1687. }
  1688. protected function reduceRule266() {
  1689. $this->semValue = array(null, $this->semStack[$this->stackPos-(1-1)]);
  1690. }
  1691. protected function reduceRule267() {
  1692. $this->semValue = null;
  1693. }
  1694. protected function reduceRule268() {
  1695. $this->semValue = $this->semStack[$this->stackPos-(3-2)];
  1696. }
  1697. protected function reduceRule269() {
  1698. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1699. }
  1700. protected function reduceRule270() {
  1701. $this->semValue = 0;
  1702. }
  1703. protected function reduceRule271() {
  1704. $this->semValue = 0;
  1705. }
  1706. protected function reduceRule272() {
  1707. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1708. }
  1709. protected function reduceRule273() {
  1710. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1711. }
  1712. protected function reduceRule274() {
  1713. $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)];
  1714. }
  1715. protected function reduceRule275() {
  1716. $this->semValue = Stmt\Class_::MODIFIER_PUBLIC;
  1717. }
  1718. protected function reduceRule276() {
  1719. $this->semValue = Stmt\Class_::MODIFIER_PROTECTED;
  1720. }
  1721. protected function reduceRule277() {
  1722. $this->semValue = Stmt\Class_::MODIFIER_PRIVATE;
  1723. }
  1724. protected function reduceRule278() {
  1725. $this->semValue = Stmt\Class_::MODIFIER_STATIC;
  1726. }
  1727. protected function reduceRule279() {
  1728. $this->semValue = Stmt\Class_::MODIFIER_ABSTRACT;
  1729. }
  1730. protected function reduceRule280() {
  1731. $this->semValue = Stmt\Class_::MODIFIER_FINAL;
  1732. }
  1733. protected function reduceRule281() {
  1734. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  1735. }
  1736. protected function reduceRule282() {
  1737. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  1738. }
  1739. protected function reduceRule283() {
  1740. $this->semValue = new Stmt\PropertyProperty(substr($this->semStack[$this->stackPos-(1-1)], 1), null, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  1741. }
  1742. protected function reduceRule284() {
  1743. $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);
  1744. }
  1745. protected function reduceRule285() {
  1746. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  1747. }
  1748. protected function reduceRule286() {
  1749. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  1750. }
  1751. protected function reduceRule287() {
  1752. $this->semValue = array();
  1753. }
  1754. protected function reduceRule288() {
  1755. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1756. }
  1757. protected function reduceRule289() {
  1758. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1759. }
  1760. protected function reduceRule290() {
  1761. $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);
  1762. }
  1763. protected function reduceRule291() {
  1764. $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);
  1765. }
  1766. protected function reduceRule292() {
  1767. $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);
  1768. }
  1769. protected function reduceRule293() {
  1770. $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);
  1771. }
  1772. protected function reduceRule294() {
  1773. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1774. }
  1775. protected function reduceRule295() {
  1776. $this->semValue = new Expr\Clone_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1777. }
  1778. protected function reduceRule296() {
  1779. $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);
  1780. }
  1781. protected function reduceRule297() {
  1782. $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);
  1783. }
  1784. protected function reduceRule298() {
  1785. $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);
  1786. }
  1787. protected function reduceRule299() {
  1788. $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);
  1789. }
  1790. protected function reduceRule300() {
  1791. $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);
  1792. }
  1793. protected function reduceRule301() {
  1794. $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);
  1795. }
  1796. protected function reduceRule302() {
  1797. $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);
  1798. }
  1799. protected function reduceRule303() {
  1800. $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);
  1801. }
  1802. protected function reduceRule304() {
  1803. $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);
  1804. }
  1805. protected function reduceRule305() {
  1806. $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);
  1807. }
  1808. protected function reduceRule306() {
  1809. $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);
  1810. }
  1811. protected function reduceRule307() {
  1812. $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);
  1813. }
  1814. protected function reduceRule308() {
  1815. $this->semValue = new Expr\PostInc($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1816. }
  1817. protected function reduceRule309() {
  1818. $this->semValue = new Expr\PreInc($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1819. }
  1820. protected function reduceRule310() {
  1821. $this->semValue = new Expr\PostDec($this->semStack[$this->stackPos-(2-1)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1822. }
  1823. protected function reduceRule311() {
  1824. $this->semValue = new Expr\PreDec($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1825. }
  1826. protected function reduceRule312() {
  1827. $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);
  1828. }
  1829. protected function reduceRule313() {
  1830. $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);
  1831. }
  1832. protected function reduceRule314() {
  1833. $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);
  1834. }
  1835. protected function reduceRule315() {
  1836. $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);
  1837. }
  1838. protected function reduceRule316() {
  1839. $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);
  1840. }
  1841. protected function reduceRule317() {
  1842. $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);
  1843. }
  1844. protected function reduceRule318() {
  1845. $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);
  1846. }
  1847. protected function reduceRule319() {
  1848. $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);
  1849. }
  1850. protected function reduceRule320() {
  1851. $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);
  1852. }
  1853. protected function reduceRule321() {
  1854. $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);
  1855. }
  1856. protected function reduceRule322() {
  1857. $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);
  1858. }
  1859. protected function reduceRule323() {
  1860. $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);
  1861. }
  1862. protected function reduceRule324() {
  1863. $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);
  1864. }
  1865. protected function reduceRule325() {
  1866. $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);
  1867. }
  1868. protected function reduceRule326() {
  1869. $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);
  1870. }
  1871. protected function reduceRule327() {
  1872. $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);
  1873. }
  1874. protected function reduceRule328() {
  1875. $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);
  1876. }
  1877. protected function reduceRule329() {
  1878. $this->semValue = new Expr\UnaryPlus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1879. }
  1880. protected function reduceRule330() {
  1881. $this->semValue = new Expr\UnaryMinus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1882. }
  1883. protected function reduceRule331() {
  1884. $this->semValue = new Expr\BooleanNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1885. }
  1886. protected function reduceRule332() {
  1887. $this->semValue = new Expr\BitwiseNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1888. }
  1889. protected function reduceRule333() {
  1890. $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);
  1891. }
  1892. protected function reduceRule334() {
  1893. $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);
  1894. }
  1895. protected function reduceRule335() {
  1896. $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);
  1897. }
  1898. protected function reduceRule336() {
  1899. $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);
  1900. }
  1901. protected function reduceRule337() {
  1902. $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);
  1903. }
  1904. protected function reduceRule338() {
  1905. $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);
  1906. }
  1907. protected function reduceRule339() {
  1908. $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);
  1909. }
  1910. protected function reduceRule340() {
  1911. $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);
  1912. }
  1913. protected function reduceRule341() {
  1914. $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);
  1915. }
  1916. protected function reduceRule342() {
  1917. $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);
  1918. }
  1919. protected function reduceRule343() {
  1920. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1921. }
  1922. protected function reduceRule344() {
  1923. $this->semValue = $this->semStack[$this->stackPos-(3-2)];
  1924. }
  1925. protected function reduceRule345() {
  1926. $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);
  1927. }
  1928. protected function reduceRule346() {
  1929. $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);
  1930. }
  1931. protected function reduceRule347() {
  1932. $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);
  1933. }
  1934. protected function reduceRule348() {
  1935. $this->semValue = new Expr\Isset_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
  1936. }
  1937. protected function reduceRule349() {
  1938. $this->semValue = new Expr\Empty_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
  1939. }
  1940. protected function reduceRule350() {
  1941. $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1942. }
  1943. protected function reduceRule351() {
  1944. $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_INCLUDE_ONCE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1945. }
  1946. protected function reduceRule352() {
  1947. $this->semValue = new Expr\Eval_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1948. }
  1949. protected function reduceRule353() {
  1950. $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1951. }
  1952. protected function reduceRule354() {
  1953. $this->semValue = new Expr\Include_($this->semStack[$this->stackPos-(2-2)], Expr\Include_::TYPE_REQUIRE_ONCE, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1954. }
  1955. protected function reduceRule355() {
  1956. $this->semValue = new Expr\Cast\Int_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1957. }
  1958. protected function reduceRule356() {
  1959. $this->semValue = new Expr\Cast\Double($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1960. }
  1961. protected function reduceRule357() {
  1962. $this->semValue = new Expr\Cast\String_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1963. }
  1964. protected function reduceRule358() {
  1965. $this->semValue = new Expr\Cast\Array_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1966. }
  1967. protected function reduceRule359() {
  1968. $this->semValue = new Expr\Cast\Object_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1969. }
  1970. protected function reduceRule360() {
  1971. $this->semValue = new Expr\Cast\Bool_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1972. }
  1973. protected function reduceRule361() {
  1974. $this->semValue = new Expr\Cast\Unset_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1975. }
  1976. protected function reduceRule362() {
  1977. $attrs = $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes;
  1978. $attrs['kind'] = strtolower($this->semStack[$this->stackPos-(2-1)]) === 'exit' ? Expr\Exit_::KIND_EXIT : Expr\Exit_::KIND_DIE;
  1979. $this->semValue = new Expr\Exit_($this->semStack[$this->stackPos-(2-2)], $attrs);
  1980. }
  1981. protected function reduceRule363() {
  1982. $this->semValue = new Expr\ErrorSuppress($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1983. }
  1984. protected function reduceRule364() {
  1985. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1986. }
  1987. protected function reduceRule365() {
  1988. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1989. }
  1990. protected function reduceRule366() {
  1991. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  1992. }
  1993. protected function reduceRule367() {
  1994. $this->semValue = new Expr\ShellExec($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  1995. }
  1996. protected function reduceRule368() {
  1997. $this->semValue = new Expr\Print_($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  1998. }
  1999. protected function reduceRule369() {
  2000. $this->semValue = new Expr\Yield_(null, null, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2001. }
  2002. protected function reduceRule370() {
  2003. $this->semValue = new Expr\YieldFrom($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  2004. }
  2005. protected function reduceRule371() {
  2006. $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);
  2007. }
  2008. protected function reduceRule372() {
  2009. $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);
  2010. }
  2011. protected function reduceRule373() {
  2012. $this->semValue = $this->semStack[$this->stackPos-(3-2)];
  2013. }
  2014. protected function reduceRule374() {
  2015. $this->semValue = $this->semStack[$this->stackPos-(3-2)];
  2016. }
  2017. protected function reduceRule375() {
  2018. $this->semValue = new Expr\Yield_($this->semStack[$this->stackPos-(2-2)], null, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  2019. }
  2020. protected function reduceRule376() {
  2021. $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);
  2022. }
  2023. protected function reduceRule377() {
  2024. $attrs = $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes; $attrs['kind'] = Expr\Array_::KIND_LONG;
  2025. $this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(4-3)], $attrs);
  2026. }
  2027. protected function reduceRule378() {
  2028. $attrs = $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes; $attrs['kind'] = Expr\Array_::KIND_SHORT;
  2029. $this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(3-2)], $attrs);
  2030. }
  2031. protected function reduceRule379() {
  2032. $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);
  2033. }
  2034. protected function reduceRule380() {
  2035. $attrs = $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes; $attrs['kind'] = ($this->semStack[$this->stackPos-(4-1)][0] === "'" || ($this->semStack[$this->stackPos-(4-1)][1] === "'" && ($this->semStack[$this->stackPos-(4-1)][0] === 'b' || $this->semStack[$this->stackPos-(4-1)][0] === 'B')) ? Scalar\String_::KIND_SINGLE_QUOTED : Scalar\String_::KIND_DOUBLE_QUOTED);
  2036. $this->semValue = new Expr\ArrayDimFetch(new Scalar\String_(Scalar\String_::parse($this->semStack[$this->stackPos-(4-1)]), $attrs), $this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
  2037. }
  2038. protected function reduceRule381() {
  2039. $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);
  2040. }
  2041. protected function reduceRule382() {
  2042. $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);
  2043. }
  2044. protected function reduceRule383() {
  2045. $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)]);
  2046. $this->checkClass($this->semValue[0], -1);
  2047. }
  2048. protected function reduceRule384() {
  2049. $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);
  2050. }
  2051. protected function reduceRule385() {
  2052. list($class, $ctorArgs) = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = new Expr\New_($class, $ctorArgs, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  2053. }
  2054. protected function reduceRule386() {
  2055. $this->semValue = array();
  2056. }
  2057. protected function reduceRule387() {
  2058. $this->semValue = $this->semStack[$this->stackPos-(4-3)];
  2059. }
  2060. protected function reduceRule388() {
  2061. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  2062. }
  2063. protected function reduceRule389() {
  2064. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  2065. }
  2066. protected function reduceRule390() {
  2067. $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);
  2068. }
  2069. protected function reduceRule391() {
  2070. $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);
  2071. }
  2072. protected function reduceRule392() {
  2073. $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);
  2074. }
  2075. protected function reduceRule393() {
  2076. $this->semValue = new Expr\StaticCall($this->semStack[$this->stackPos-(6-1)], $this->semStack[$this->stackPos-(6-4)], $this->semStack[$this->stackPos-(6-6)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes);
  2077. }
  2078. protected function reduceRule394() {
  2079. if ($this->semStack[$this->stackPos-(2-1)] instanceof Node\Expr\StaticPropertyFetch) {
  2080. $this->semValue = new Expr\StaticCall($this->semStack[$this->stackPos-(2-1)]->class, new Expr\Variable($this->semStack[$this->stackPos-(2-1)]->name, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes), $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  2081. } elseif ($this->semStack[$this->stackPos-(2-1)] instanceof Node\Expr\ArrayDimFetch) {
  2082. $tmp = $this->semStack[$this->stackPos-(2-1)];
  2083. while ($tmp->var instanceof Node\Expr\ArrayDimFetch) {
  2084. $tmp = $tmp->var;
  2085. }
  2086. $this->semValue = new Expr\StaticCall($tmp->var->class, $this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  2087. $tmp->var = new Expr\Variable($tmp->var->name, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  2088. } else {
  2089. throw new \Exception;
  2090. }
  2091. }
  2092. protected function reduceRule395() {
  2093. $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);
  2094. }
  2095. protected function reduceRule396() {
  2096. $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);
  2097. }
  2098. protected function reduceRule397() {
  2099. $this->semValue = new Name($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2100. }
  2101. protected function reduceRule398() {
  2102. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2103. }
  2104. protected function reduceRule399() {
  2105. $this->semValue = new Name($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2106. }
  2107. protected function reduceRule400() {
  2108. $this->semValue = new Name\FullyQualified($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  2109. }
  2110. protected function reduceRule401() {
  2111. $this->semValue = new Name\Relative($this->semStack[$this->stackPos-(3-3)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  2112. }
  2113. protected function reduceRule402() {
  2114. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2115. }
  2116. protected function reduceRule403() {
  2117. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2118. }
  2119. protected function reduceRule404() {
  2120. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2121. }
  2122. protected function reduceRule405() {
  2123. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2124. }
  2125. protected function reduceRule406() {
  2126. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2127. }
  2128. protected function reduceRule407() {
  2129. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2130. }
  2131. protected function reduceRule408() {
  2132. $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);
  2133. }
  2134. protected function reduceRule409() {
  2135. $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);
  2136. }
  2137. protected function reduceRule410() {
  2138. $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);
  2139. }
  2140. protected function reduceRule411() {
  2141. $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);
  2142. }
  2143. protected function reduceRule412() {
  2144. $this->semValue = null;
  2145. }
  2146. protected function reduceRule413() {
  2147. $this->semValue = null;
  2148. }
  2149. protected function reduceRule414() {
  2150. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2151. }
  2152. protected function reduceRule415() {
  2153. $this->semValue = array();
  2154. }
  2155. protected function reduceRule416() {
  2156. $this->semValue = array(new Scalar\EncapsedStringPart(Scalar\String_::parseEscapeSequences($this->semStack[$this->stackPos-(1-1)], '`', false), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes));
  2157. }
  2158. protected function reduceRule417() {
  2159. foreach ($this->semStack[$this->stackPos-(1-1)] as $s) { if ($s instanceof Node\Scalar\EncapsedStringPart) { $s->value = Node\Scalar\String_::parseEscapeSequences($s->value, '`', false); } }; $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2160. }
  2161. protected function reduceRule418() {
  2162. $this->semValue = array();
  2163. }
  2164. protected function reduceRule419() {
  2165. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2166. }
  2167. protected function reduceRule420() {
  2168. $this->semValue = $this->parseLNumber($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes, true);
  2169. }
  2170. protected function reduceRule421() {
  2171. $this->semValue = new Scalar\DNumber(Scalar\DNumber::parse($this->semStack[$this->stackPos-(1-1)]), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2172. }
  2173. protected function reduceRule422() {
  2174. $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);
  2175. $this->semValue = new Scalar\String_(Scalar\String_::parse($this->semStack[$this->stackPos-(1-1)], false), $attrs);
  2176. }
  2177. protected function reduceRule423() {
  2178. $this->semValue = new Scalar\MagicConst\Line($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2179. }
  2180. protected function reduceRule424() {
  2181. $this->semValue = new Scalar\MagicConst\File($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2182. }
  2183. protected function reduceRule425() {
  2184. $this->semValue = new Scalar\MagicConst\Dir($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2185. }
  2186. protected function reduceRule426() {
  2187. $this->semValue = new Scalar\MagicConst\Class_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2188. }
  2189. protected function reduceRule427() {
  2190. $this->semValue = new Scalar\MagicConst\Trait_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2191. }
  2192. protected function reduceRule428() {
  2193. $this->semValue = new Scalar\MagicConst\Method($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2194. }
  2195. protected function reduceRule429() {
  2196. $this->semValue = new Scalar\MagicConst\Function_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2197. }
  2198. protected function reduceRule430() {
  2199. $this->semValue = new Scalar\MagicConst\Namespace_($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2200. }
  2201. protected function reduceRule431() {
  2202. $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];;
  2203. $this->semValue = new Scalar\String_(Scalar\String_::parseDocString($this->semStack[$this->stackPos-(3-1)], $this->semStack[$this->stackPos-(3-2)], false), $attrs);
  2204. }
  2205. protected function reduceRule432() {
  2206. $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];;
  2207. $this->semValue = new Scalar\String_('', $attrs);
  2208. }
  2209. protected function reduceRule433() {
  2210. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2211. }
  2212. protected function reduceRule434() {
  2213. $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);
  2214. }
  2215. protected function reduceRule435() {
  2216. $this->semValue = new Expr\ConstFetch($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2217. }
  2218. protected function reduceRule436() {
  2219. $this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
  2220. }
  2221. protected function reduceRule437() {
  2222. $this->semValue = new Expr\Array_($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  2223. }
  2224. protected function reduceRule438() {
  2225. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2226. }
  2227. protected function reduceRule439() {
  2228. $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);
  2229. }
  2230. protected function reduceRule440() {
  2231. $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);
  2232. }
  2233. protected function reduceRule441() {
  2234. $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);
  2235. }
  2236. protected function reduceRule442() {
  2237. $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);
  2238. }
  2239. protected function reduceRule443() {
  2240. $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);
  2241. }
  2242. protected function reduceRule444() {
  2243. $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);
  2244. }
  2245. protected function reduceRule445() {
  2246. $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);
  2247. }
  2248. protected function reduceRule446() {
  2249. $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);
  2250. }
  2251. protected function reduceRule447() {
  2252. $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);
  2253. }
  2254. protected function reduceRule448() {
  2255. $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);
  2256. }
  2257. protected function reduceRule449() {
  2258. $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);
  2259. }
  2260. protected function reduceRule450() {
  2261. $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);
  2262. }
  2263. protected function reduceRule451() {
  2264. $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);
  2265. }
  2266. protected function reduceRule452() {
  2267. $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);
  2268. }
  2269. protected function reduceRule453() {
  2270. $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);
  2271. }
  2272. protected function reduceRule454() {
  2273. $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);
  2274. }
  2275. protected function reduceRule455() {
  2276. $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);
  2277. }
  2278. protected function reduceRule456() {
  2279. $this->semValue = new Expr\UnaryPlus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  2280. }
  2281. protected function reduceRule457() {
  2282. $this->semValue = new Expr\UnaryMinus($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  2283. }
  2284. protected function reduceRule458() {
  2285. $this->semValue = new Expr\BooleanNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  2286. }
  2287. protected function reduceRule459() {
  2288. $this->semValue = new Expr\BitwiseNot($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  2289. }
  2290. protected function reduceRule460() {
  2291. $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);
  2292. }
  2293. protected function reduceRule461() {
  2294. $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);
  2295. }
  2296. protected function reduceRule462() {
  2297. $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);
  2298. }
  2299. protected function reduceRule463() {
  2300. $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);
  2301. }
  2302. protected function reduceRule464() {
  2303. $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);
  2304. }
  2305. protected function reduceRule465() {
  2306. $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);
  2307. }
  2308. protected function reduceRule466() {
  2309. $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);
  2310. }
  2311. protected function reduceRule467() {
  2312. $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);
  2313. }
  2314. protected function reduceRule468() {
  2315. $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);
  2316. }
  2317. protected function reduceRule469() {
  2318. $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);
  2319. }
  2320. protected function reduceRule470() {
  2321. $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);
  2322. }
  2323. protected function reduceRule471() {
  2324. $this->semValue = $this->semStack[$this->stackPos-(3-2)];
  2325. }
  2326. protected function reduceRule472() {
  2327. $this->semValue = new Expr\ConstFetch($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2328. }
  2329. protected function reduceRule473() {
  2330. $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);
  2331. }
  2332. protected function reduceRule474() {
  2333. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2334. }
  2335. protected function reduceRule475() {
  2336. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2337. }
  2338. protected function reduceRule476() {
  2339. $attrs = $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes; $attrs['kind'] = Scalar\String_::KIND_DOUBLE_QUOTED;
  2340. 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);
  2341. }
  2342. protected function reduceRule477() {
  2343. $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];;
  2344. 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);
  2345. }
  2346. protected function reduceRule478() {
  2347. $this->semValue = array();
  2348. }
  2349. protected function reduceRule479() {
  2350. $this->semValue = $this->semStack[$this->stackPos-(2-1)];
  2351. }
  2352. protected function reduceRule480() {
  2353. $this->semValue = $this->semStack[$this->stackPos];
  2354. }
  2355. protected function reduceRule481() {
  2356. $this->semValue = $this->semStack[$this->stackPos];
  2357. }
  2358. protected function reduceRule482() {
  2359. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  2360. }
  2361. protected function reduceRule483() {
  2362. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  2363. }
  2364. protected function reduceRule484() {
  2365. $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);
  2366. }
  2367. protected function reduceRule485() {
  2368. $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2369. }
  2370. protected function reduceRule486() {
  2371. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2372. }
  2373. protected function reduceRule487() {
  2374. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2375. }
  2376. protected function reduceRule488() {
  2377. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2378. }
  2379. protected function reduceRule489() {
  2380. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2381. }
  2382. protected function reduceRule490() {
  2383. $this->semValue = new Expr\ArrayDimFetch($this->semStack[$this->stackPos-(6-2)], $this->semStack[$this->stackPos-(6-5)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes);
  2384. }
  2385. protected function reduceRule491() {
  2386. $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);
  2387. }
  2388. protected function reduceRule492() {
  2389. $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);
  2390. }
  2391. protected function reduceRule493() {
  2392. $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);
  2393. }
  2394. protected function reduceRule494() {
  2395. $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);
  2396. }
  2397. protected function reduceRule495() {
  2398. $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);
  2399. }
  2400. protected function reduceRule496() {
  2401. $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);
  2402. }
  2403. protected function reduceRule497() {
  2404. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2405. }
  2406. protected function reduceRule498() {
  2407. $this->semValue = $this->semStack[$this->stackPos-(3-2)];
  2408. }
  2409. protected function reduceRule499() {
  2410. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2411. }
  2412. protected function reduceRule500() {
  2413. $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(2-2)], $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  2414. }
  2415. protected function reduceRule501() {
  2416. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2417. }
  2418. protected function reduceRule502() {
  2419. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2420. }
  2421. protected function reduceRule503() {
  2422. $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(4-1)], $this->semStack[$this->stackPos-(4-4)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
  2423. }
  2424. protected function reduceRule504() {
  2425. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2426. }
  2427. protected function reduceRule505() {
  2428. $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(3-1)], substr($this->semStack[$this->stackPos-(3-3)], 1), $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  2429. }
  2430. protected function reduceRule506() {
  2431. $this->semValue = new Expr\StaticPropertyFetch($this->semStack[$this->stackPos-(6-1)], $this->semStack[$this->stackPos-(6-5)], $this->startAttributeStack[$this->stackPos-(6-1)] + $this->endAttributes);
  2432. }
  2433. protected function reduceRule507() {
  2434. $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);
  2435. }
  2436. protected function reduceRule508() {
  2437. $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);
  2438. }
  2439. protected function reduceRule509() {
  2440. $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);
  2441. }
  2442. protected function reduceRule510() {
  2443. $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);
  2444. }
  2445. protected function reduceRule511() {
  2446. $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2447. }
  2448. protected function reduceRule512() {
  2449. $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
  2450. }
  2451. protected function reduceRule513() {
  2452. $this->semValue = null;
  2453. }
  2454. protected function reduceRule514() {
  2455. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2456. }
  2457. protected function reduceRule515() {
  2458. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2459. }
  2460. protected function reduceRule516() {
  2461. $this->semValue = $this->semStack[$this->stackPos-(3-2)];
  2462. }
  2463. protected function reduceRule517() {
  2464. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2465. }
  2466. protected function reduceRule518() {
  2467. $this->semValue = new Expr\Error($this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes); $this->errorState = 2;
  2468. }
  2469. protected function reduceRule519() {
  2470. $this->semValue = new Expr\List_($this->semStack[$this->stackPos-(4-3)], $this->startAttributeStack[$this->stackPos-(4-1)] + $this->endAttributes);
  2471. }
  2472. protected function reduceRule520() {
  2473. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  2474. }
  2475. protected function reduceRule521() {
  2476. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  2477. }
  2478. protected function reduceRule522() {
  2479. $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2480. }
  2481. protected function reduceRule523() {
  2482. $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2483. }
  2484. protected function reduceRule524() {
  2485. $this->semValue = null;
  2486. }
  2487. protected function reduceRule525() {
  2488. $this->semValue = array();
  2489. }
  2490. protected function reduceRule526() {
  2491. $this->semValue = $this->semStack[$this->stackPos-(2-1)];
  2492. }
  2493. protected function reduceRule527() {
  2494. $this->semStack[$this->stackPos-(3-1)][] = $this->semStack[$this->stackPos-(3-3)]; $this->semValue = $this->semStack[$this->stackPos-(3-1)];
  2495. }
  2496. protected function reduceRule528() {
  2497. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  2498. }
  2499. protected function reduceRule529() {
  2500. $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);
  2501. }
  2502. protected function reduceRule530() {
  2503. $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(1-1)], null, false, $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2504. }
  2505. protected function reduceRule531() {
  2506. $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);
  2507. }
  2508. protected function reduceRule532() {
  2509. $this->semValue = new Expr\ArrayItem($this->semStack[$this->stackPos-(2-2)], null, true, $this->startAttributeStack[$this->stackPos-(2-1)] + $this->endAttributes);
  2510. }
  2511. protected function reduceRule533() {
  2512. $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
  2513. }
  2514. protected function reduceRule534() {
  2515. $this->semStack[$this->stackPos-(2-1)][] = $this->semStack[$this->stackPos-(2-2)]; $this->semValue = $this->semStack[$this->stackPos-(2-1)];
  2516. }
  2517. protected function reduceRule535() {
  2518. $this->semValue = array($this->semStack[$this->stackPos-(1-1)]);
  2519. }
  2520. protected function reduceRule536() {
  2521. $this->semValue = array($this->semStack[$this->stackPos-(2-1)], $this->semStack[$this->stackPos-(2-2)]);
  2522. }
  2523. protected function reduceRule537() {
  2524. $this->semValue = new Scalar\EncapsedStringPart($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2525. }
  2526. protected function reduceRule538() {
  2527. $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2528. }
  2529. protected function reduceRule539() {
  2530. $this->semValue = $this->semStack[$this->stackPos-(1-1)];
  2531. }
  2532. protected function reduceRule540() {
  2533. $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);
  2534. }
  2535. protected function reduceRule541() {
  2536. $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);
  2537. }
  2538. protected function reduceRule542() {
  2539. $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  2540. }
  2541. protected function reduceRule543() {
  2542. $this->semValue = new Expr\Variable($this->semStack[$this->stackPos-(3-2)], $this->startAttributeStack[$this->stackPos-(3-1)] + $this->endAttributes);
  2543. }
  2544. protected function reduceRule544() {
  2545. $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);
  2546. }
  2547. protected function reduceRule545() {
  2548. $this->semValue = $this->semStack[$this->stackPos-(3-2)];
  2549. }
  2550. protected function reduceRule546() {
  2551. $this->semValue = new Scalar\String_($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2552. }
  2553. protected function reduceRule547() {
  2554. $this->semValue = $this->parseNumString($this->semStack[$this->stackPos-(1-1)], $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2555. }
  2556. protected function reduceRule548() {
  2557. $this->semValue = new Expr\Variable(substr($this->semStack[$this->stackPos-(1-1)], 1), $this->startAttributeStack[$this->stackPos-(1-1)] + $this->endAttributes);
  2558. }
  2559. }