php5.y 50 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025
  1. %pure_parser
  2. %expect 6
  3. %tokens
  4. %%
  5. start:
  6. top_statement_list { $$ = $this->handleNamespaces($1); }
  7. ;
  8. top_statement_list_ex:
  9. top_statement_list_ex top_statement { pushNormalizing($1, $2); }
  10. | /* empty */ { init(); }
  11. ;
  12. top_statement_list:
  13. top_statement_list_ex
  14. { makeNop($nop, $this->lookaheadStartAttributes, $this->endAttributes);
  15. if ($nop !== null) { $1[] = $nop; } $$ = $1; }
  16. ;
  17. reserved_non_modifiers:
  18. T_INCLUDE | T_INCLUDE_ONCE | T_EVAL | T_REQUIRE | T_REQUIRE_ONCE | T_LOGICAL_OR | T_LOGICAL_XOR | T_LOGICAL_AND
  19. | T_INSTANCEOF | T_NEW | T_CLONE | T_EXIT | T_IF | T_ELSEIF | T_ELSE | T_ENDIF | T_ECHO | T_DO | T_WHILE
  20. | T_ENDWHILE | T_FOR | T_ENDFOR | T_FOREACH | T_ENDFOREACH | T_DECLARE | T_ENDDECLARE | T_AS | T_TRY | T_CATCH
  21. | T_FINALLY | T_THROW | T_USE | T_INSTEADOF | T_GLOBAL | T_VAR | T_UNSET | T_ISSET | T_EMPTY | T_CONTINUE | T_GOTO
  22. | T_FUNCTION | T_CONST | T_RETURN | T_PRINT | T_YIELD | T_LIST | T_SWITCH | T_ENDSWITCH | T_CASE | T_DEFAULT
  23. | T_BREAK | T_ARRAY | T_CALLABLE | T_EXTENDS | T_IMPLEMENTS | T_NAMESPACE | T_TRAIT | T_INTERFACE | T_CLASS
  24. | T_CLASS_C | T_TRAIT_C | T_FUNC_C | T_METHOD_C | T_LINE | T_FILE | T_DIR | T_NS_C | T_HALT_COMPILER
  25. ;
  26. semi_reserved:
  27. reserved_non_modifiers
  28. | T_STATIC | T_ABSTRACT | T_FINAL | T_PRIVATE | T_PROTECTED | T_PUBLIC
  29. ;
  30. identifier_ex:
  31. T_STRING { $$ = Node\Identifier[$1]; }
  32. | semi_reserved { $$ = Node\Identifier[$1]; }
  33. ;
  34. identifier:
  35. T_STRING { $$ = Node\Identifier[$1]; }
  36. ;
  37. reserved_non_modifiers_identifier:
  38. reserved_non_modifiers { $$ = Node\Identifier[$1]; }
  39. ;
  40. namespace_name_parts:
  41. T_STRING { init($1); }
  42. | namespace_name_parts T_NS_SEPARATOR T_STRING { push($1, $3); }
  43. ;
  44. namespace_name:
  45. namespace_name_parts { $$ = Name[$1]; }
  46. ;
  47. plain_variable:
  48. T_VARIABLE { $$ = Expr\Variable[parseVar($1)]; }
  49. ;
  50. top_statement:
  51. statement { $$ = $1; }
  52. | function_declaration_statement { $$ = $1; }
  53. | class_declaration_statement { $$ = $1; }
  54. | T_HALT_COMPILER
  55. { $$ = Stmt\HaltCompiler[$this->lexer->handleHaltCompiler()]; }
  56. | T_NAMESPACE namespace_name ';'
  57. { $$ = Stmt\Namespace_[$2, null];
  58. $$->setAttribute('kind', Stmt\Namespace_::KIND_SEMICOLON);
  59. $this->checkNamespace($$); }
  60. | T_NAMESPACE namespace_name '{' top_statement_list '}'
  61. { $$ = Stmt\Namespace_[$2, $4];
  62. $$->setAttribute('kind', Stmt\Namespace_::KIND_BRACED);
  63. $this->checkNamespace($$); }
  64. | T_NAMESPACE '{' top_statement_list '}'
  65. { $$ = Stmt\Namespace_[null, $3];
  66. $$->setAttribute('kind', Stmt\Namespace_::KIND_BRACED);
  67. $this->checkNamespace($$); }
  68. | T_USE use_declarations ';' { $$ = Stmt\Use_[$2, Stmt\Use_::TYPE_NORMAL]; }
  69. | T_USE use_type use_declarations ';' { $$ = Stmt\Use_[$3, $2]; }
  70. | group_use_declaration ';' { $$ = $1; }
  71. | T_CONST constant_declaration_list ';' { $$ = Stmt\Const_[$2]; }
  72. ;
  73. use_type:
  74. T_FUNCTION { $$ = Stmt\Use_::TYPE_FUNCTION; }
  75. | T_CONST { $$ = Stmt\Use_::TYPE_CONSTANT; }
  76. ;
  77. /* Using namespace_name_parts here to avoid s/r conflict on T_NS_SEPARATOR */
  78. group_use_declaration:
  79. T_USE use_type namespace_name_parts T_NS_SEPARATOR '{' unprefixed_use_declarations '}'
  80. { $$ = Stmt\GroupUse[new Name($3, stackAttributes(#3)), $6, $2]; }
  81. | T_USE use_type T_NS_SEPARATOR namespace_name_parts T_NS_SEPARATOR '{' unprefixed_use_declarations '}'
  82. { $$ = Stmt\GroupUse[new Name($4, stackAttributes(#4)), $7, $2]; }
  83. | T_USE namespace_name_parts T_NS_SEPARATOR '{' inline_use_declarations '}'
  84. { $$ = Stmt\GroupUse[new Name($2, stackAttributes(#2)), $5, Stmt\Use_::TYPE_UNKNOWN]; }
  85. | T_USE T_NS_SEPARATOR namespace_name_parts T_NS_SEPARATOR '{' inline_use_declarations '}'
  86. { $$ = Stmt\GroupUse[new Name($3, stackAttributes(#3)), $6, Stmt\Use_::TYPE_UNKNOWN]; }
  87. ;
  88. unprefixed_use_declarations:
  89. unprefixed_use_declarations ',' unprefixed_use_declaration
  90. { push($1, $3); }
  91. | unprefixed_use_declaration { init($1); }
  92. ;
  93. use_declarations:
  94. use_declarations ',' use_declaration { push($1, $3); }
  95. | use_declaration { init($1); }
  96. ;
  97. inline_use_declarations:
  98. inline_use_declarations ',' inline_use_declaration { push($1, $3); }
  99. | inline_use_declaration { init($1); }
  100. ;
  101. unprefixed_use_declaration:
  102. namespace_name
  103. { $$ = Stmt\UseUse[$1, null, Stmt\Use_::TYPE_UNKNOWN]; $this->checkUseUse($$, #1); }
  104. | namespace_name T_AS identifier
  105. { $$ = Stmt\UseUse[$1, $3, Stmt\Use_::TYPE_UNKNOWN]; $this->checkUseUse($$, #3); }
  106. ;
  107. use_declaration:
  108. unprefixed_use_declaration { $$ = $1; }
  109. | T_NS_SEPARATOR unprefixed_use_declaration { $$ = $2; }
  110. ;
  111. inline_use_declaration:
  112. unprefixed_use_declaration { $$ = $1; $$->type = Stmt\Use_::TYPE_NORMAL; }
  113. | use_type unprefixed_use_declaration { $$ = $2; $$->type = $1; }
  114. ;
  115. constant_declaration_list:
  116. constant_declaration_list ',' constant_declaration { push($1, $3); }
  117. | constant_declaration { init($1); }
  118. ;
  119. constant_declaration:
  120. identifier '=' static_scalar { $$ = Node\Const_[$1, $3]; }
  121. ;
  122. class_const_list:
  123. class_const_list ',' class_const { push($1, $3); }
  124. | class_const { init($1); }
  125. ;
  126. class_const:
  127. identifier_ex '=' static_scalar { $$ = Node\Const_[$1, $3]; }
  128. ;
  129. inner_statement_list_ex:
  130. inner_statement_list_ex inner_statement { pushNormalizing($1, $2); }
  131. | /* empty */ { init(); }
  132. ;
  133. inner_statement_list:
  134. inner_statement_list_ex
  135. { makeNop($nop, $this->lookaheadStartAttributes, $this->endAttributes);
  136. if ($nop !== null) { $1[] = $nop; } $$ = $1; }
  137. ;
  138. inner_statement:
  139. statement { $$ = $1; }
  140. | function_declaration_statement { $$ = $1; }
  141. | class_declaration_statement { $$ = $1; }
  142. | T_HALT_COMPILER
  143. { throw new Error('__HALT_COMPILER() can only be used from the outermost scope', attributes()); }
  144. ;
  145. non_empty_statement:
  146. '{' inner_statement_list '}'
  147. {
  148. if ($2) {
  149. $$ = $2; prependLeadingComments($$);
  150. } else {
  151. makeNop($$, $this->startAttributeStack[#1], $this->endAttributes);
  152. if (null === $$) { $$ = array(); }
  153. }
  154. }
  155. | T_IF parentheses_expr statement elseif_list else_single
  156. { $$ = Stmt\If_[$2, ['stmts' => toArray($3), 'elseifs' => $4, 'else' => $5]]; }
  157. | T_IF parentheses_expr ':' inner_statement_list new_elseif_list new_else_single T_ENDIF ';'
  158. { $$ = Stmt\If_[$2, ['stmts' => $4, 'elseifs' => $5, 'else' => $6]]; }
  159. | T_WHILE parentheses_expr while_statement { $$ = Stmt\While_[$2, $3]; }
  160. | T_DO statement T_WHILE parentheses_expr ';' { $$ = Stmt\Do_ [$4, toArray($2)]; }
  161. | T_FOR '(' for_expr ';' for_expr ';' for_expr ')' for_statement
  162. { $$ = Stmt\For_[['init' => $3, 'cond' => $5, 'loop' => $7, 'stmts' => $9]]; }
  163. | T_SWITCH parentheses_expr switch_case_list { $$ = Stmt\Switch_[$2, $3]; }
  164. | T_BREAK ';' { $$ = Stmt\Break_[null]; }
  165. | T_BREAK expr ';' { $$ = Stmt\Break_[$2]; }
  166. | T_CONTINUE ';' { $$ = Stmt\Continue_[null]; }
  167. | T_CONTINUE expr ';' { $$ = Stmt\Continue_[$2]; }
  168. | T_RETURN ';' { $$ = Stmt\Return_[null]; }
  169. | T_RETURN expr ';' { $$ = Stmt\Return_[$2]; }
  170. | T_GLOBAL global_var_list ';' { $$ = Stmt\Global_[$2]; }
  171. | T_STATIC static_var_list ';' { $$ = Stmt\Static_[$2]; }
  172. | T_ECHO expr_list ';' { $$ = Stmt\Echo_[$2]; }
  173. | T_INLINE_HTML { $$ = Stmt\InlineHTML[$1]; }
  174. | yield_expr ';' { $$ = Stmt\Expression[$1]; }
  175. | expr ';' { $$ = Stmt\Expression[$1]; }
  176. | T_UNSET '(' variables_list ')' ';' { $$ = Stmt\Unset_[$3]; }
  177. | T_FOREACH '(' expr T_AS foreach_variable ')' foreach_statement
  178. { $$ = Stmt\Foreach_[$3, $5[0], ['keyVar' => null, 'byRef' => $5[1], 'stmts' => $7]]; }
  179. | T_FOREACH '(' expr T_AS variable T_DOUBLE_ARROW foreach_variable ')' foreach_statement
  180. { $$ = Stmt\Foreach_[$3, $7[0], ['keyVar' => $5, 'byRef' => $7[1], 'stmts' => $9]]; }
  181. | T_DECLARE '(' declare_list ')' declare_statement { $$ = Stmt\Declare_[$3, $5]; }
  182. | T_TRY '{' inner_statement_list '}' catches optional_finally
  183. { $$ = Stmt\TryCatch[$3, $5, $6]; $this->checkTryCatch($$); }
  184. | T_THROW expr ';' { $$ = Stmt\Throw_[$2]; }
  185. | T_GOTO identifier ';' { $$ = Stmt\Goto_[$2]; }
  186. | identifier ':' { $$ = Stmt\Label[$1]; }
  187. | expr error { $$ = Stmt\Expression[$1]; }
  188. | error { $$ = array(); /* means: no statement */ }
  189. ;
  190. statement:
  191. non_empty_statement { $$ = $1; }
  192. | ';'
  193. { makeNop($$, $this->startAttributeStack[#1], $this->endAttributes);
  194. if ($$ === null) $$ = array(); /* means: no statement */ }
  195. ;
  196. catches:
  197. /* empty */ { init(); }
  198. | catches catch { push($1, $2); }
  199. ;
  200. catch:
  201. T_CATCH '(' name plain_variable ')' '{' inner_statement_list '}'
  202. { $$ = Stmt\Catch_[array($3), $4, $7]; }
  203. ;
  204. optional_finally:
  205. /* empty */ { $$ = null; }
  206. | T_FINALLY '{' inner_statement_list '}' { $$ = Stmt\Finally_[$3]; }
  207. ;
  208. variables_list:
  209. variable { init($1); }
  210. | variables_list ',' variable { push($1, $3); }
  211. ;
  212. optional_ref:
  213. /* empty */ { $$ = false; }
  214. | '&' { $$ = true; }
  215. ;
  216. optional_ellipsis:
  217. /* empty */ { $$ = false; }
  218. | T_ELLIPSIS { $$ = true; }
  219. ;
  220. function_declaration_statement:
  221. T_FUNCTION optional_ref identifier '(' parameter_list ')' optional_return_type '{' inner_statement_list '}'
  222. { $$ = Stmt\Function_[$3, ['byRef' => $2, 'params' => $5, 'returnType' => $7, 'stmts' => $9]]; }
  223. ;
  224. class_declaration_statement:
  225. class_entry_type identifier extends_from implements_list '{' class_statement_list '}'
  226. { $$ = Stmt\Class_[$2, ['type' => $1, 'extends' => $3, 'implements' => $4, 'stmts' => $6]];
  227. $this->checkClass($$, #2); }
  228. | T_INTERFACE identifier interface_extends_list '{' class_statement_list '}'
  229. { $$ = Stmt\Interface_[$2, ['extends' => $3, 'stmts' => $5]];
  230. $this->checkInterface($$, #2); }
  231. | T_TRAIT identifier '{' class_statement_list '}'
  232. { $$ = Stmt\Trait_[$2, ['stmts' => $4]]; }
  233. ;
  234. class_entry_type:
  235. T_CLASS { $$ = 0; }
  236. | T_ABSTRACT T_CLASS { $$ = Stmt\Class_::MODIFIER_ABSTRACT; }
  237. | T_FINAL T_CLASS { $$ = Stmt\Class_::MODIFIER_FINAL; }
  238. ;
  239. extends_from:
  240. /* empty */ { $$ = null; }
  241. | T_EXTENDS class_name { $$ = $2; }
  242. ;
  243. interface_extends_list:
  244. /* empty */ { $$ = array(); }
  245. | T_EXTENDS class_name_list { $$ = $2; }
  246. ;
  247. implements_list:
  248. /* empty */ { $$ = array(); }
  249. | T_IMPLEMENTS class_name_list { $$ = $2; }
  250. ;
  251. class_name_list:
  252. class_name { init($1); }
  253. | class_name_list ',' class_name { push($1, $3); }
  254. ;
  255. for_statement:
  256. statement { $$ = toArray($1); }
  257. | ':' inner_statement_list T_ENDFOR ';' { $$ = $2; }
  258. ;
  259. foreach_statement:
  260. statement { $$ = toArray($1); }
  261. | ':' inner_statement_list T_ENDFOREACH ';' { $$ = $2; }
  262. ;
  263. declare_statement:
  264. non_empty_statement { $$ = toArray($1); }
  265. | ';' { $$ = null; }
  266. | ':' inner_statement_list T_ENDDECLARE ';' { $$ = $2; }
  267. ;
  268. declare_list:
  269. declare_list_element { init($1); }
  270. | declare_list ',' declare_list_element { push($1, $3); }
  271. ;
  272. declare_list_element:
  273. identifier '=' static_scalar { $$ = Stmt\DeclareDeclare[$1, $3]; }
  274. ;
  275. switch_case_list:
  276. '{' case_list '}' { $$ = $2; }
  277. | '{' ';' case_list '}' { $$ = $3; }
  278. | ':' case_list T_ENDSWITCH ';' { $$ = $2; }
  279. | ':' ';' case_list T_ENDSWITCH ';' { $$ = $3; }
  280. ;
  281. case_list:
  282. /* empty */ { init(); }
  283. | case_list case { push($1, $2); }
  284. ;
  285. case:
  286. T_CASE expr case_separator inner_statement_list_ex { $$ = Stmt\Case_[$2, $4]; }
  287. | T_DEFAULT case_separator inner_statement_list_ex { $$ = Stmt\Case_[null, $3]; }
  288. ;
  289. case_separator:
  290. ':'
  291. | ';'
  292. ;
  293. while_statement:
  294. statement { $$ = toArray($1); }
  295. | ':' inner_statement_list T_ENDWHILE ';' { $$ = $2; }
  296. ;
  297. elseif_list:
  298. /* empty */ { init(); }
  299. | elseif_list elseif { push($1, $2); }
  300. ;
  301. elseif:
  302. T_ELSEIF parentheses_expr statement { $$ = Stmt\ElseIf_[$2, toArray($3)]; }
  303. ;
  304. new_elseif_list:
  305. /* empty */ { init(); }
  306. | new_elseif_list new_elseif { push($1, $2); }
  307. ;
  308. new_elseif:
  309. T_ELSEIF parentheses_expr ':' inner_statement_list { $$ = Stmt\ElseIf_[$2, $4]; }
  310. ;
  311. else_single:
  312. /* empty */ { $$ = null; }
  313. | T_ELSE statement { $$ = Stmt\Else_[toArray($2)]; }
  314. ;
  315. new_else_single:
  316. /* empty */ { $$ = null; }
  317. | T_ELSE ':' inner_statement_list { $$ = Stmt\Else_[$3]; }
  318. ;
  319. foreach_variable:
  320. variable { $$ = array($1, false); }
  321. | '&' variable { $$ = array($2, true); }
  322. | list_expr { $$ = array($1, false); }
  323. ;
  324. parameter_list:
  325. non_empty_parameter_list { $$ = $1; }
  326. | /* empty */ { $$ = array(); }
  327. ;
  328. non_empty_parameter_list:
  329. parameter { init($1); }
  330. | non_empty_parameter_list ',' parameter { push($1, $3); }
  331. ;
  332. parameter:
  333. optional_param_type optional_ref optional_ellipsis plain_variable
  334. { $$ = Node\Param[$4, null, $1, $2, $3]; $this->checkParam($$); }
  335. | optional_param_type optional_ref optional_ellipsis plain_variable '=' static_scalar
  336. { $$ = Node\Param[$4, $6, $1, $2, $3]; $this->checkParam($$); }
  337. ;
  338. type:
  339. name { $$ = $1; }
  340. | T_ARRAY { $$ = Node\Identifier['array']; }
  341. | T_CALLABLE { $$ = Node\Identifier['callable']; }
  342. ;
  343. optional_param_type:
  344. /* empty */ { $$ = null; }
  345. | type { $$ = $1; }
  346. ;
  347. optional_return_type:
  348. /* empty */ { $$ = null; }
  349. | ':' type { $$ = $2; }
  350. ;
  351. argument_list:
  352. '(' ')' { $$ = array(); }
  353. | '(' non_empty_argument_list ')' { $$ = $2; }
  354. | '(' yield_expr ')' { $$ = array(Node\Arg[$2, false, false]); }
  355. ;
  356. non_empty_argument_list:
  357. argument { init($1); }
  358. | non_empty_argument_list ',' argument { push($1, $3); }
  359. ;
  360. argument:
  361. expr { $$ = Node\Arg[$1, false, false]; }
  362. | '&' variable { $$ = Node\Arg[$2, true, false]; }
  363. | T_ELLIPSIS expr { $$ = Node\Arg[$2, false, true]; }
  364. ;
  365. global_var_list:
  366. global_var_list ',' global_var { push($1, $3); }
  367. | global_var { init($1); }
  368. ;
  369. global_var:
  370. plain_variable { $$ = $1; }
  371. | '$' variable { $$ = Expr\Variable[$2]; }
  372. | '$' '{' expr '}' { $$ = Expr\Variable[$3]; }
  373. ;
  374. static_var_list:
  375. static_var_list ',' static_var { push($1, $3); }
  376. | static_var { init($1); }
  377. ;
  378. static_var:
  379. plain_variable { $$ = Stmt\StaticVar[$1, null]; }
  380. | plain_variable '=' static_scalar { $$ = Stmt\StaticVar[$1, $3]; }
  381. ;
  382. class_statement_list_ex:
  383. class_statement_list_ex class_statement { if ($2 !== null) { push($1, $2); } }
  384. | /* empty */ { init(); }
  385. ;
  386. class_statement_list:
  387. class_statement_list_ex
  388. { makeNop($nop, $this->lookaheadStartAttributes, $this->endAttributes);
  389. if ($nop !== null) { $1[] = $nop; } $$ = $1; }
  390. ;
  391. class_statement:
  392. variable_modifiers property_declaration_list ';'
  393. { $$ = Stmt\Property[$1, $2]; $this->checkProperty($$, #1); }
  394. | T_CONST class_const_list ';' { $$ = Stmt\ClassConst[$2, 0]; }
  395. | method_modifiers T_FUNCTION optional_ref identifier_ex '(' parameter_list ')' optional_return_type method_body
  396. { $$ = Stmt\ClassMethod[$4, ['type' => $1, 'byRef' => $3, 'params' => $6, 'returnType' => $8, 'stmts' => $9]];
  397. $this->checkClassMethod($$, #1); }
  398. | T_USE class_name_list trait_adaptations { $$ = Stmt\TraitUse[$2, $3]; }
  399. ;
  400. trait_adaptations:
  401. ';' { $$ = array(); }
  402. | '{' trait_adaptation_list '}' { $$ = $2; }
  403. ;
  404. trait_adaptation_list:
  405. /* empty */ { init(); }
  406. | trait_adaptation_list trait_adaptation { push($1, $2); }
  407. ;
  408. trait_adaptation:
  409. trait_method_reference_fully_qualified T_INSTEADOF class_name_list ';'
  410. { $$ = Stmt\TraitUseAdaptation\Precedence[$1[0], $1[1], $3]; }
  411. | trait_method_reference T_AS member_modifier identifier_ex ';'
  412. { $$ = Stmt\TraitUseAdaptation\Alias[$1[0], $1[1], $3, $4]; }
  413. | trait_method_reference T_AS member_modifier ';'
  414. { $$ = Stmt\TraitUseAdaptation\Alias[$1[0], $1[1], $3, null]; }
  415. | trait_method_reference T_AS identifier ';'
  416. { $$ = Stmt\TraitUseAdaptation\Alias[$1[0], $1[1], null, $3]; }
  417. | trait_method_reference T_AS reserved_non_modifiers_identifier ';'
  418. { $$ = Stmt\TraitUseAdaptation\Alias[$1[0], $1[1], null, $3]; }
  419. ;
  420. trait_method_reference_fully_qualified:
  421. name T_PAAMAYIM_NEKUDOTAYIM identifier_ex { $$ = array($1, $3); }
  422. ;
  423. trait_method_reference:
  424. trait_method_reference_fully_qualified { $$ = $1; }
  425. | identifier_ex { $$ = array(null, $1); }
  426. ;
  427. method_body:
  428. ';' /* abstract method */ { $$ = null; }
  429. | '{' inner_statement_list '}' { $$ = $2; }
  430. ;
  431. variable_modifiers:
  432. non_empty_member_modifiers { $$ = $1; }
  433. | T_VAR { $$ = 0; }
  434. ;
  435. method_modifiers:
  436. /* empty */ { $$ = 0; }
  437. | non_empty_member_modifiers { $$ = $1; }
  438. ;
  439. non_empty_member_modifiers:
  440. member_modifier { $$ = $1; }
  441. | non_empty_member_modifiers member_modifier { $this->checkModifier($1, $2, #2); $$ = $1 | $2; }
  442. ;
  443. member_modifier:
  444. T_PUBLIC { $$ = Stmt\Class_::MODIFIER_PUBLIC; }
  445. | T_PROTECTED { $$ = Stmt\Class_::MODIFIER_PROTECTED; }
  446. | T_PRIVATE { $$ = Stmt\Class_::MODIFIER_PRIVATE; }
  447. | T_STATIC { $$ = Stmt\Class_::MODIFIER_STATIC; }
  448. | T_ABSTRACT { $$ = Stmt\Class_::MODIFIER_ABSTRACT; }
  449. | T_FINAL { $$ = Stmt\Class_::MODIFIER_FINAL; }
  450. ;
  451. property_declaration_list:
  452. property_declaration { init($1); }
  453. | property_declaration_list ',' property_declaration { push($1, $3); }
  454. ;
  455. property_decl_name:
  456. T_VARIABLE { $$ = Node\VarLikeIdentifier[parseVar($1)]; }
  457. ;
  458. property_declaration:
  459. property_decl_name { $$ = Stmt\PropertyProperty[$1, null]; }
  460. | property_decl_name '=' static_scalar { $$ = Stmt\PropertyProperty[$1, $3]; }
  461. ;
  462. expr_list:
  463. expr_list ',' expr { push($1, $3); }
  464. | expr { init($1); }
  465. ;
  466. for_expr:
  467. /* empty */ { $$ = array(); }
  468. | expr_list { $$ = $1; }
  469. ;
  470. expr:
  471. variable { $$ = $1; }
  472. | list_expr '=' expr { $$ = Expr\Assign[$1, $3]; }
  473. | variable '=' expr { $$ = Expr\Assign[$1, $3]; }
  474. | variable '=' '&' variable { $$ = Expr\AssignRef[$1, $4]; }
  475. | variable '=' '&' new_expr { $$ = Expr\AssignRef[$1, $4]; }
  476. | new_expr { $$ = $1; }
  477. | T_CLONE expr { $$ = Expr\Clone_[$2]; }
  478. | variable T_PLUS_EQUAL expr { $$ = Expr\AssignOp\Plus [$1, $3]; }
  479. | variable T_MINUS_EQUAL expr { $$ = Expr\AssignOp\Minus [$1, $3]; }
  480. | variable T_MUL_EQUAL expr { $$ = Expr\AssignOp\Mul [$1, $3]; }
  481. | variable T_DIV_EQUAL expr { $$ = Expr\AssignOp\Div [$1, $3]; }
  482. | variable T_CONCAT_EQUAL expr { $$ = Expr\AssignOp\Concat [$1, $3]; }
  483. | variable T_MOD_EQUAL expr { $$ = Expr\AssignOp\Mod [$1, $3]; }
  484. | variable T_AND_EQUAL expr { $$ = Expr\AssignOp\BitwiseAnd[$1, $3]; }
  485. | variable T_OR_EQUAL expr { $$ = Expr\AssignOp\BitwiseOr [$1, $3]; }
  486. | variable T_XOR_EQUAL expr { $$ = Expr\AssignOp\BitwiseXor[$1, $3]; }
  487. | variable T_SL_EQUAL expr { $$ = Expr\AssignOp\ShiftLeft [$1, $3]; }
  488. | variable T_SR_EQUAL expr { $$ = Expr\AssignOp\ShiftRight[$1, $3]; }
  489. | variable T_POW_EQUAL expr { $$ = Expr\AssignOp\Pow [$1, $3]; }
  490. | variable T_COALESCE_EQUAL expr { $$ = Expr\AssignOp\Coalesce [$1, $3]; }
  491. | variable T_INC { $$ = Expr\PostInc[$1]; }
  492. | T_INC variable { $$ = Expr\PreInc [$2]; }
  493. | variable T_DEC { $$ = Expr\PostDec[$1]; }
  494. | T_DEC variable { $$ = Expr\PreDec [$2]; }
  495. | expr T_BOOLEAN_OR expr { $$ = Expr\BinaryOp\BooleanOr [$1, $3]; }
  496. | expr T_BOOLEAN_AND expr { $$ = Expr\BinaryOp\BooleanAnd[$1, $3]; }
  497. | expr T_LOGICAL_OR expr { $$ = Expr\BinaryOp\LogicalOr [$1, $3]; }
  498. | expr T_LOGICAL_AND expr { $$ = Expr\BinaryOp\LogicalAnd[$1, $3]; }
  499. | expr T_LOGICAL_XOR expr { $$ = Expr\BinaryOp\LogicalXor[$1, $3]; }
  500. | expr '|' expr { $$ = Expr\BinaryOp\BitwiseOr [$1, $3]; }
  501. | expr '&' expr { $$ = Expr\BinaryOp\BitwiseAnd[$1, $3]; }
  502. | expr '^' expr { $$ = Expr\BinaryOp\BitwiseXor[$1, $3]; }
  503. | expr '.' expr { $$ = Expr\BinaryOp\Concat [$1, $3]; }
  504. | expr '+' expr { $$ = Expr\BinaryOp\Plus [$1, $3]; }
  505. | expr '-' expr { $$ = Expr\BinaryOp\Minus [$1, $3]; }
  506. | expr '*' expr { $$ = Expr\BinaryOp\Mul [$1, $3]; }
  507. | expr '/' expr { $$ = Expr\BinaryOp\Div [$1, $3]; }
  508. | expr '%' expr { $$ = Expr\BinaryOp\Mod [$1, $3]; }
  509. | expr T_SL expr { $$ = Expr\BinaryOp\ShiftLeft [$1, $3]; }
  510. | expr T_SR expr { $$ = Expr\BinaryOp\ShiftRight[$1, $3]; }
  511. | expr T_POW expr { $$ = Expr\BinaryOp\Pow [$1, $3]; }
  512. | '+' expr %prec T_INC { $$ = Expr\UnaryPlus [$2]; }
  513. | '-' expr %prec T_INC { $$ = Expr\UnaryMinus[$2]; }
  514. | '!' expr { $$ = Expr\BooleanNot[$2]; }
  515. | '~' expr { $$ = Expr\BitwiseNot[$2]; }
  516. | expr T_IS_IDENTICAL expr { $$ = Expr\BinaryOp\Identical [$1, $3]; }
  517. | expr T_IS_NOT_IDENTICAL expr { $$ = Expr\BinaryOp\NotIdentical [$1, $3]; }
  518. | expr T_IS_EQUAL expr { $$ = Expr\BinaryOp\Equal [$1, $3]; }
  519. | expr T_IS_NOT_EQUAL expr { $$ = Expr\BinaryOp\NotEqual [$1, $3]; }
  520. | expr T_SPACESHIP expr { $$ = Expr\BinaryOp\Spaceship [$1, $3]; }
  521. | expr '<' expr { $$ = Expr\BinaryOp\Smaller [$1, $3]; }
  522. | expr T_IS_SMALLER_OR_EQUAL expr { $$ = Expr\BinaryOp\SmallerOrEqual[$1, $3]; }
  523. | expr '>' expr { $$ = Expr\BinaryOp\Greater [$1, $3]; }
  524. | expr T_IS_GREATER_OR_EQUAL expr { $$ = Expr\BinaryOp\GreaterOrEqual[$1, $3]; }
  525. | expr T_INSTANCEOF class_name_reference { $$ = Expr\Instanceof_[$1, $3]; }
  526. | parentheses_expr { $$ = $1; }
  527. /* we need a separate '(' new_expr ')' rule to avoid problems caused by a s/r conflict */
  528. | '(' new_expr ')' { $$ = $2; }
  529. | expr '?' expr ':' expr { $$ = Expr\Ternary[$1, $3, $5]; }
  530. | expr '?' ':' expr { $$ = Expr\Ternary[$1, null, $4]; }
  531. | expr T_COALESCE expr { $$ = Expr\BinaryOp\Coalesce[$1, $3]; }
  532. | T_ISSET '(' variables_list ')' { $$ = Expr\Isset_[$3]; }
  533. | T_EMPTY '(' expr ')' { $$ = Expr\Empty_[$3]; }
  534. | T_INCLUDE expr { $$ = Expr\Include_[$2, Expr\Include_::TYPE_INCLUDE]; }
  535. | T_INCLUDE_ONCE expr { $$ = Expr\Include_[$2, Expr\Include_::TYPE_INCLUDE_ONCE]; }
  536. | T_EVAL parentheses_expr { $$ = Expr\Eval_[$2]; }
  537. | T_REQUIRE expr { $$ = Expr\Include_[$2, Expr\Include_::TYPE_REQUIRE]; }
  538. | T_REQUIRE_ONCE expr { $$ = Expr\Include_[$2, Expr\Include_::TYPE_REQUIRE_ONCE]; }
  539. | T_INT_CAST expr { $$ = Expr\Cast\Int_ [$2]; }
  540. | T_DOUBLE_CAST expr
  541. { $attrs = attributes();
  542. $attrs['kind'] = $this->getFloatCastKind($1);
  543. $$ = new Expr\Cast\Double($2, $attrs); }
  544. | T_STRING_CAST expr { $$ = Expr\Cast\String_ [$2]; }
  545. | T_ARRAY_CAST expr { $$ = Expr\Cast\Array_ [$2]; }
  546. | T_OBJECT_CAST expr { $$ = Expr\Cast\Object_ [$2]; }
  547. | T_BOOL_CAST expr { $$ = Expr\Cast\Bool_ [$2]; }
  548. | T_UNSET_CAST expr { $$ = Expr\Cast\Unset_ [$2]; }
  549. | T_EXIT exit_expr
  550. { $attrs = attributes();
  551. $attrs['kind'] = strtolower($1) === 'exit' ? Expr\Exit_::KIND_EXIT : Expr\Exit_::KIND_DIE;
  552. $$ = new Expr\Exit_($2, $attrs); }
  553. | '@' expr { $$ = Expr\ErrorSuppress[$2]; }
  554. | scalar { $$ = $1; }
  555. | array_expr { $$ = $1; }
  556. | scalar_dereference { $$ = $1; }
  557. | '`' backticks_expr '`' { $$ = Expr\ShellExec[$2]; }
  558. | T_PRINT expr { $$ = Expr\Print_[$2]; }
  559. | T_YIELD { $$ = Expr\Yield_[null, null]; }
  560. | T_YIELD_FROM expr { $$ = Expr\YieldFrom[$2]; }
  561. | T_FUNCTION optional_ref '(' parameter_list ')' lexical_vars optional_return_type
  562. '{' inner_statement_list '}'
  563. { $$ = Expr\Closure[['static' => false, 'byRef' => $2, 'params' => $4, 'uses' => $6, 'returnType' => $7, 'stmts' => $9]]; }
  564. | T_STATIC T_FUNCTION optional_ref '(' parameter_list ')' lexical_vars optional_return_type
  565. '{' inner_statement_list '}'
  566. { $$ = Expr\Closure[['static' => true, 'byRef' => $3, 'params' => $5, 'uses' => $7, 'returnType' => $8, 'stmts' => $10]]; }
  567. ;
  568. parentheses_expr:
  569. '(' expr ')' { $$ = $2; }
  570. | '(' yield_expr ')' { $$ = $2; }
  571. ;
  572. yield_expr:
  573. T_YIELD expr { $$ = Expr\Yield_[$2, null]; }
  574. | T_YIELD expr T_DOUBLE_ARROW expr { $$ = Expr\Yield_[$4, $2]; }
  575. ;
  576. array_expr:
  577. T_ARRAY '(' array_pair_list ')'
  578. { $attrs = attributes(); $attrs['kind'] = Expr\Array_::KIND_LONG;
  579. $$ = new Expr\Array_($3, $attrs); }
  580. | '[' array_pair_list ']'
  581. { $attrs = attributes(); $attrs['kind'] = Expr\Array_::KIND_SHORT;
  582. $$ = new Expr\Array_($2, $attrs); }
  583. ;
  584. scalar_dereference:
  585. array_expr '[' dim_offset ']' { $$ = Expr\ArrayDimFetch[$1, $3]; }
  586. | T_CONSTANT_ENCAPSED_STRING '[' dim_offset ']'
  587. { $attrs = attributes(); $attrs['kind'] = strKind($1);
  588. $$ = Expr\ArrayDimFetch[new Scalar\String_(Scalar\String_::parse($1), $attrs), $3]; }
  589. | constant '[' dim_offset ']' { $$ = Expr\ArrayDimFetch[$1, $3]; }
  590. | scalar_dereference '[' dim_offset ']' { $$ = Expr\ArrayDimFetch[$1, $3]; }
  591. /* alternative array syntax missing intentionally */
  592. ;
  593. anonymous_class:
  594. T_CLASS ctor_arguments extends_from implements_list '{' class_statement_list '}'
  595. { $$ = array(Stmt\Class_[null, ['type' => 0, 'extends' => $3, 'implements' => $4, 'stmts' => $6]], $2);
  596. $this->checkClass($$[0], -1); }
  597. ;
  598. new_expr:
  599. T_NEW class_name_reference ctor_arguments { $$ = Expr\New_[$2, $3]; }
  600. | T_NEW anonymous_class
  601. { list($class, $ctorArgs) = $2; $$ = Expr\New_[$class, $ctorArgs]; }
  602. ;
  603. lexical_vars:
  604. /* empty */ { $$ = array(); }
  605. | T_USE '(' lexical_var_list ')' { $$ = $3; }
  606. ;
  607. lexical_var_list:
  608. lexical_var { init($1); }
  609. | lexical_var_list ',' lexical_var { push($1, $3); }
  610. ;
  611. lexical_var:
  612. optional_ref plain_variable { $$ = Expr\ClosureUse[$2, $1]; }
  613. ;
  614. function_call:
  615. name argument_list { $$ = Expr\FuncCall[$1, $2]; }
  616. | class_name_or_var T_PAAMAYIM_NEKUDOTAYIM identifier_ex argument_list
  617. { $$ = Expr\StaticCall[$1, $3, $4]; }
  618. | class_name_or_var T_PAAMAYIM_NEKUDOTAYIM '{' expr '}' argument_list
  619. { $$ = Expr\StaticCall[$1, $4, $6]; }
  620. | static_property argument_list
  621. { $$ = $this->fixupPhp5StaticPropCall($1, $2, attributes()); }
  622. | variable_without_objects argument_list
  623. { $$ = Expr\FuncCall[$1, $2]; }
  624. | function_call '[' dim_offset ']' { $$ = Expr\ArrayDimFetch[$1, $3]; }
  625. /* alternative array syntax missing intentionally */
  626. ;
  627. class_name:
  628. T_STATIC { $$ = Name[$1]; }
  629. | name { $$ = $1; }
  630. ;
  631. name:
  632. namespace_name_parts { $$ = Name[$1]; }
  633. | T_NS_SEPARATOR namespace_name_parts { $$ = Name\FullyQualified[$2]; }
  634. | T_NAMESPACE T_NS_SEPARATOR namespace_name_parts { $$ = Name\Relative[$3]; }
  635. ;
  636. class_name_reference:
  637. class_name { $$ = $1; }
  638. | dynamic_class_name_reference { $$ = $1; }
  639. ;
  640. dynamic_class_name_reference:
  641. object_access_for_dcnr { $$ = $1; }
  642. | base_variable { $$ = $1; }
  643. ;
  644. class_name_or_var:
  645. class_name { $$ = $1; }
  646. | reference_variable { $$ = $1; }
  647. ;
  648. object_access_for_dcnr:
  649. base_variable T_OBJECT_OPERATOR object_property
  650. { $$ = Expr\PropertyFetch[$1, $3]; }
  651. | object_access_for_dcnr T_OBJECT_OPERATOR object_property
  652. { $$ = Expr\PropertyFetch[$1, $3]; }
  653. | object_access_for_dcnr '[' dim_offset ']' { $$ = Expr\ArrayDimFetch[$1, $3]; }
  654. | object_access_for_dcnr '{' expr '}' { $$ = Expr\ArrayDimFetch[$1, $3]; }
  655. ;
  656. exit_expr:
  657. /* empty */ { $$ = null; }
  658. | '(' ')' { $$ = null; }
  659. | parentheses_expr { $$ = $1; }
  660. ;
  661. backticks_expr:
  662. /* empty */ { $$ = array(); }
  663. | T_ENCAPSED_AND_WHITESPACE
  664. { $$ = array(Scalar\EncapsedStringPart[Scalar\String_::parseEscapeSequences($1, '`', false)]); }
  665. | encaps_list { parseEncapsed($1, '`', false); $$ = $1; }
  666. ;
  667. ctor_arguments:
  668. /* empty */ { $$ = array(); }
  669. | argument_list { $$ = $1; }
  670. ;
  671. common_scalar:
  672. T_LNUMBER { $$ = $this->parseLNumber($1, attributes(), true); }
  673. | T_DNUMBER { $$ = Scalar\DNumber[Scalar\DNumber::parse($1)]; }
  674. | T_CONSTANT_ENCAPSED_STRING
  675. { $attrs = attributes(); $attrs['kind'] = strKind($1);
  676. $$ = new Scalar\String_(Scalar\String_::parse($1, false), $attrs); }
  677. | T_LINE { $$ = Scalar\MagicConst\Line[]; }
  678. | T_FILE { $$ = Scalar\MagicConst\File[]; }
  679. | T_DIR { $$ = Scalar\MagicConst\Dir[]; }
  680. | T_CLASS_C { $$ = Scalar\MagicConst\Class_[]; }
  681. | T_TRAIT_C { $$ = Scalar\MagicConst\Trait_[]; }
  682. | T_METHOD_C { $$ = Scalar\MagicConst\Method[]; }
  683. | T_FUNC_C { $$ = Scalar\MagicConst\Function_[]; }
  684. | T_NS_C { $$ = Scalar\MagicConst\Namespace_[]; }
  685. | T_START_HEREDOC T_ENCAPSED_AND_WHITESPACE T_END_HEREDOC
  686. { $$ = $this->parseDocString($1, $2, $3, attributes(), stackAttributes(#3), false); }
  687. | T_START_HEREDOC T_END_HEREDOC
  688. { $$ = $this->parseDocString($1, '', $2, attributes(), stackAttributes(#2), false); }
  689. ;
  690. static_scalar:
  691. common_scalar { $$ = $1; }
  692. | class_name T_PAAMAYIM_NEKUDOTAYIM identifier_ex { $$ = Expr\ClassConstFetch[$1, $3]; }
  693. | name { $$ = Expr\ConstFetch[$1]; }
  694. | T_ARRAY '(' static_array_pair_list ')' { $$ = Expr\Array_[$3]; }
  695. | '[' static_array_pair_list ']' { $$ = Expr\Array_[$2]; }
  696. | static_operation { $$ = $1; }
  697. ;
  698. static_operation:
  699. static_scalar T_BOOLEAN_OR static_scalar { $$ = Expr\BinaryOp\BooleanOr [$1, $3]; }
  700. | static_scalar T_BOOLEAN_AND static_scalar { $$ = Expr\BinaryOp\BooleanAnd[$1, $3]; }
  701. | static_scalar T_LOGICAL_OR static_scalar { $$ = Expr\BinaryOp\LogicalOr [$1, $3]; }
  702. | static_scalar T_LOGICAL_AND static_scalar { $$ = Expr\BinaryOp\LogicalAnd[$1, $3]; }
  703. | static_scalar T_LOGICAL_XOR static_scalar { $$ = Expr\BinaryOp\LogicalXor[$1, $3]; }
  704. | static_scalar '|' static_scalar { $$ = Expr\BinaryOp\BitwiseOr [$1, $3]; }
  705. | static_scalar '&' static_scalar { $$ = Expr\BinaryOp\BitwiseAnd[$1, $3]; }
  706. | static_scalar '^' static_scalar { $$ = Expr\BinaryOp\BitwiseXor[$1, $3]; }
  707. | static_scalar '.' static_scalar { $$ = Expr\BinaryOp\Concat [$1, $3]; }
  708. | static_scalar '+' static_scalar { $$ = Expr\BinaryOp\Plus [$1, $3]; }
  709. | static_scalar '-' static_scalar { $$ = Expr\BinaryOp\Minus [$1, $3]; }
  710. | static_scalar '*' static_scalar { $$ = Expr\BinaryOp\Mul [$1, $3]; }
  711. | static_scalar '/' static_scalar { $$ = Expr\BinaryOp\Div [$1, $3]; }
  712. | static_scalar '%' static_scalar { $$ = Expr\BinaryOp\Mod [$1, $3]; }
  713. | static_scalar T_SL static_scalar { $$ = Expr\BinaryOp\ShiftLeft [$1, $3]; }
  714. | static_scalar T_SR static_scalar { $$ = Expr\BinaryOp\ShiftRight[$1, $3]; }
  715. | static_scalar T_POW static_scalar { $$ = Expr\BinaryOp\Pow [$1, $3]; }
  716. | '+' static_scalar %prec T_INC { $$ = Expr\UnaryPlus [$2]; }
  717. | '-' static_scalar %prec T_INC { $$ = Expr\UnaryMinus[$2]; }
  718. | '!' static_scalar { $$ = Expr\BooleanNot[$2]; }
  719. | '~' static_scalar { $$ = Expr\BitwiseNot[$2]; }
  720. | static_scalar T_IS_IDENTICAL static_scalar { $$ = Expr\BinaryOp\Identical [$1, $3]; }
  721. | static_scalar T_IS_NOT_IDENTICAL static_scalar { $$ = Expr\BinaryOp\NotIdentical [$1, $3]; }
  722. | static_scalar T_IS_EQUAL static_scalar { $$ = Expr\BinaryOp\Equal [$1, $3]; }
  723. | static_scalar T_IS_NOT_EQUAL static_scalar { $$ = Expr\BinaryOp\NotEqual [$1, $3]; }
  724. | static_scalar '<' static_scalar { $$ = Expr\BinaryOp\Smaller [$1, $3]; }
  725. | static_scalar T_IS_SMALLER_OR_EQUAL static_scalar { $$ = Expr\BinaryOp\SmallerOrEqual[$1, $3]; }
  726. | static_scalar '>' static_scalar { $$ = Expr\BinaryOp\Greater [$1, $3]; }
  727. | static_scalar T_IS_GREATER_OR_EQUAL static_scalar { $$ = Expr\BinaryOp\GreaterOrEqual[$1, $3]; }
  728. | static_scalar '?' static_scalar ':' static_scalar { $$ = Expr\Ternary[$1, $3, $5]; }
  729. | static_scalar '?' ':' static_scalar { $$ = Expr\Ternary[$1, null, $4]; }
  730. | static_scalar '[' static_scalar ']' { $$ = Expr\ArrayDimFetch[$1, $3]; }
  731. | '(' static_scalar ')' { $$ = $2; }
  732. ;
  733. constant:
  734. name { $$ = Expr\ConstFetch[$1]; }
  735. | class_name_or_var T_PAAMAYIM_NEKUDOTAYIM identifier_ex
  736. { $$ = Expr\ClassConstFetch[$1, $3]; }
  737. ;
  738. scalar:
  739. common_scalar { $$ = $1; }
  740. | constant { $$ = $1; }
  741. | '"' encaps_list '"'
  742. { $attrs = attributes(); $attrs['kind'] = Scalar\String_::KIND_DOUBLE_QUOTED;
  743. parseEncapsed($2, '"', true); $$ = new Scalar\Encapsed($2, $attrs); }
  744. | T_START_HEREDOC encaps_list T_END_HEREDOC
  745. { $$ = $this->parseDocString($1, $2, $3, attributes(), stackAttributes(#3), true); }
  746. ;
  747. static_array_pair_list:
  748. /* empty */ { $$ = array(); }
  749. | non_empty_static_array_pair_list optional_comma { $$ = $1; }
  750. ;
  751. optional_comma:
  752. /* empty */
  753. | ','
  754. ;
  755. non_empty_static_array_pair_list:
  756. non_empty_static_array_pair_list ',' static_array_pair { push($1, $3); }
  757. | static_array_pair { init($1); }
  758. ;
  759. static_array_pair:
  760. static_scalar T_DOUBLE_ARROW static_scalar { $$ = Expr\ArrayItem[$3, $1, false]; }
  761. | static_scalar { $$ = Expr\ArrayItem[$1, null, false]; }
  762. ;
  763. variable:
  764. object_access { $$ = $1; }
  765. | base_variable { $$ = $1; }
  766. | function_call { $$ = $1; }
  767. | new_expr_array_deref { $$ = $1; }
  768. ;
  769. new_expr_array_deref:
  770. '(' new_expr ')' '[' dim_offset ']' { $$ = Expr\ArrayDimFetch[$2, $5]; }
  771. | new_expr_array_deref '[' dim_offset ']' { $$ = Expr\ArrayDimFetch[$1, $3]; }
  772. /* alternative array syntax missing intentionally */
  773. ;
  774. object_access:
  775. variable_or_new_expr T_OBJECT_OPERATOR object_property
  776. { $$ = Expr\PropertyFetch[$1, $3]; }
  777. | variable_or_new_expr T_OBJECT_OPERATOR object_property argument_list
  778. { $$ = Expr\MethodCall[$1, $3, $4]; }
  779. | object_access argument_list { $$ = Expr\FuncCall[$1, $2]; }
  780. | object_access '[' dim_offset ']' { $$ = Expr\ArrayDimFetch[$1, $3]; }
  781. | object_access '{' expr '}' { $$ = Expr\ArrayDimFetch[$1, $3]; }
  782. ;
  783. variable_or_new_expr:
  784. variable { $$ = $1; }
  785. | '(' new_expr ')' { $$ = $2; }
  786. ;
  787. variable_without_objects:
  788. reference_variable { $$ = $1; }
  789. | '$' variable_without_objects { $$ = Expr\Variable[$2]; }
  790. ;
  791. base_variable:
  792. variable_without_objects { $$ = $1; }
  793. | static_property { $$ = $1; }
  794. ;
  795. static_property:
  796. class_name_or_var T_PAAMAYIM_NEKUDOTAYIM '$' reference_variable
  797. { $$ = Expr\StaticPropertyFetch[$1, $4]; }
  798. | static_property_with_arrays { $$ = $1; }
  799. ;
  800. static_property_simple_name:
  801. T_VARIABLE
  802. { $var = parseVar($1); $$ = \is_string($var) ? Node\VarLikeIdentifier[$var] : $var; }
  803. ;
  804. static_property_with_arrays:
  805. class_name_or_var T_PAAMAYIM_NEKUDOTAYIM static_property_simple_name
  806. { $$ = Expr\StaticPropertyFetch[$1, $3]; }
  807. | class_name_or_var T_PAAMAYIM_NEKUDOTAYIM '$' '{' expr '}'
  808. { $$ = Expr\StaticPropertyFetch[$1, $5]; }
  809. | static_property_with_arrays '[' dim_offset ']' { $$ = Expr\ArrayDimFetch[$1, $3]; }
  810. | static_property_with_arrays '{' expr '}' { $$ = Expr\ArrayDimFetch[$1, $3]; }
  811. ;
  812. reference_variable:
  813. reference_variable '[' dim_offset ']' { $$ = Expr\ArrayDimFetch[$1, $3]; }
  814. | reference_variable '{' expr '}' { $$ = Expr\ArrayDimFetch[$1, $3]; }
  815. | plain_variable { $$ = $1; }
  816. | '$' '{' expr '}' { $$ = Expr\Variable[$3]; }
  817. ;
  818. dim_offset:
  819. /* empty */ { $$ = null; }
  820. | expr { $$ = $1; }
  821. ;
  822. object_property:
  823. identifier { $$ = $1; }
  824. | '{' expr '}' { $$ = $2; }
  825. | variable_without_objects { $$ = $1; }
  826. | error { $$ = Expr\Error[]; $this->errorState = 2; }
  827. ;
  828. list_expr:
  829. T_LIST '(' list_expr_elements ')' { $$ = Expr\List_[$3]; }
  830. ;
  831. list_expr_elements:
  832. list_expr_elements ',' list_expr_element { push($1, $3); }
  833. | list_expr_element { init($1); }
  834. ;
  835. list_expr_element:
  836. variable { $$ = Expr\ArrayItem[$1, null, false]; }
  837. | list_expr { $$ = Expr\ArrayItem[$1, null, false]; }
  838. | /* empty */ { $$ = null; }
  839. ;
  840. array_pair_list:
  841. /* empty */ { $$ = array(); }
  842. | non_empty_array_pair_list optional_comma { $$ = $1; }
  843. ;
  844. non_empty_array_pair_list:
  845. non_empty_array_pair_list ',' array_pair { push($1, $3); }
  846. | array_pair { init($1); }
  847. ;
  848. array_pair:
  849. expr T_DOUBLE_ARROW expr { $$ = Expr\ArrayItem[$3, $1, false]; }
  850. | expr { $$ = Expr\ArrayItem[$1, null, false]; }
  851. | expr T_DOUBLE_ARROW '&' variable { $$ = Expr\ArrayItem[$4, $1, true]; }
  852. | '&' variable { $$ = Expr\ArrayItem[$2, null, true]; }
  853. ;
  854. encaps_list:
  855. encaps_list encaps_var { push($1, $2); }
  856. | encaps_list encaps_string_part { push($1, $2); }
  857. | encaps_var { init($1); }
  858. | encaps_string_part encaps_var { init($1, $2); }
  859. ;
  860. encaps_string_part:
  861. T_ENCAPSED_AND_WHITESPACE { $$ = Scalar\EncapsedStringPart[$1]; }
  862. ;
  863. encaps_str_varname:
  864. T_STRING_VARNAME { $$ = Expr\Variable[$1]; }
  865. ;
  866. encaps_var:
  867. plain_variable { $$ = $1; }
  868. | plain_variable '[' encaps_var_offset ']' { $$ = Expr\ArrayDimFetch[$1, $3]; }
  869. | plain_variable T_OBJECT_OPERATOR identifier { $$ = Expr\PropertyFetch[$1, $3]; }
  870. | T_DOLLAR_OPEN_CURLY_BRACES expr '}' { $$ = Expr\Variable[$2]; }
  871. | T_DOLLAR_OPEN_CURLY_BRACES T_STRING_VARNAME '}' { $$ = Expr\Variable[$2]; }
  872. | T_DOLLAR_OPEN_CURLY_BRACES encaps_str_varname '[' expr ']' '}'
  873. { $$ = Expr\ArrayDimFetch[$2, $4]; }
  874. | T_CURLY_OPEN variable '}' { $$ = $2; }
  875. ;
  876. encaps_var_offset:
  877. T_STRING { $$ = Scalar\String_[$1]; }
  878. | T_NUM_STRING { $$ = $this->parseNumString($1, attributes()); }
  879. | plain_variable { $$ = $1; }
  880. ;
  881. %%