Home
last modified time | relevance | path

Searched refs:precedence (Results 1 – 9 of 9) sorted by relevance

/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php258 … protected function pExpr_Assign(Expr\Assign $node, int $precedence, int $lhsPrecedence): string { argument
432 $precedence, $lhsPrecedence);
450 … return $this->pPrefixOp(Expr\UnaryPlus::class, '+', $node->expr, $precedence, $lhsPrecedence);
477 protected function pExpr_Print(Expr\Print_ $node, int $precedence, int $lhsPrecedence): string { argument
483 … protected function pExpr_Cast_Int(Cast\Int_ $node, int $precedence, int $lhsPrecedence): string { argument
694 $node->expr, $precedence, $lhsPrecedence);
710 protected function pExpr_Clone(Expr\Clone_ $node, int $precedence, int $lhsPrecedence): string { argument
719 $precedence, $lhsPrecedence
729 protected function pExpr_Throw(Expr\Throw_ $node, int $precedence, int $lhsPrecedence): string { argument
733 protected function pExpr_Yield(Expr\Yield_ $node, int $precedence, int $lhsPrecedence): string { argument
[all …]
/PHP-Parser/lib/PhpParser/
H A DPrettyPrinterAbstract.php380 * @param int $precedence Precedence of parent operator
387 int $precedence, int $lhsPrecedence argument
392 if ($opPrecedence >= $precedence) {
407 * @param int $precedence Precedence of parent operator
437 * @param int $precedence Precedence of parent operator
446 if ($opPrecedence >= $precedence) {
594 * @param int $precedence Precedence of parent operator
612 return $this->pFallback($node, $precedence, $lhsPrecedence);
1047 return $this->p($subNode, $precedence, $precedence);
1053 return $this->p($subNode, $precedence, $precedence);
[all …]
/PHP-Parser/test/code/parser/expr/
H A DternaryAndCoalesce.test9 // precedence
68 0: // precedence
H A Dlogic.test16 // precedence
116 0: // precedence
H A Dmath.test28 // precedence
232 0: // precedence
/PHP-Parser/
H A DUPGRADE-5.0.md400 ### Changes to precedence handling in the pretty printer
402 The pretty printer now more accurately models operator precedence. Especially for unary operators, …
404 To support these changes, precedence is now handled differently in the pretty printer. The internal…
407 Node $node, int $precedence = self::MAX_PRECEDENCE, int $lhsPrecedence = self::MAX_PRECEDENCE,
412 The `$precedence` is the precedence of the direct parent operator (if any), while `$lhsPrecedence` …
414 …ers. However, pretty-printer methods for operators that participate in precedence resolution need …
418 BinaryOp\Plus $node, int $precedence, int $lhsPrecedence
421 BinaryOp\Plus::class, $node->left, ' + ', $node->right, $precedence, $lhsPrecedence);
425 Expr\UnaryPlus $node, int $precedence, int $lhsPrecedence
427 return $this->pPrefixOp(Expr\UnaryPlus::class, '+', $node->expr, $precedence, $lhsPrecedence);
[all …]
H A DCHANGELOG.md205 * The pretty printer now uses a more accurate treatment of unary operator precedence, and will only
206 wrap them in parentheses if required. This allowed fixing a number of other precedence related
208 * The pretty printer now respects the precedence of `clone`, `throw` and arrow functions.
246 * Added PHP 8 parser though it only differs from the PHP 7 parser in concatenation precedence.
378 * Fixed precedence of arrow functions.
/PHP-Parser/test/code/parser/stmt/generator/
H A DyieldPrecedence.test1 Yield operator precedence
/PHP-Parser/test/code/formatPreservation/
H A Dfixup.test1 Fixup for precedence and some special syntax

Completed in 31 milliseconds