Searched refs:pInfixOp (Results 1 – 3 of 3) sorted by relevance
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 321 …return $this->pInfixOp(BinaryOp\Plus::class, $node->left, ' + ', $node->right, $precedence, $lhsPr… 325 …return $this->pInfixOp(BinaryOp\Minus::class, $node->left, ' - ', $node->right, $precedence, $lhsP… 329 …return $this->pInfixOp(BinaryOp\Mul::class, $node->left, ' * ', $node->right, $precedence, $lhsPre… 333 …return $this->pInfixOp(BinaryOp\Div::class, $node->left, ' / ', $node->right, $precedence, $lhsPre… 337 …return $this->pInfixOp(BinaryOp\Concat::class, $node->left, ' . ', $node->right, $precedence, $lhs… 341 …return $this->pInfixOp(BinaryOp\Mod::class, $node->left, ' % ', $node->right, $precedence, $lhsPre… 373 …return $this->pInfixOp(BinaryOp\Pow::class, $node->left, ' ** ', $node->right, $precedence, $lhsPr… 389 …return $this->pInfixOp(BinaryOp\Equal::class, $node->left, ' == ', $node->right, $precedence, $lhs… 409 …return $this->pInfixOp(BinaryOp\Greater::class, $node->left, ' > ', $node->right, $precedence, $lh… 417 …return $this->pInfixOp(BinaryOp\Smaller::class, $node->left, ' < ', $node->right, $precedence, $lh… [all …]
|
/PHP-Parser/ |
H A D | UPGRADE-5.0.md | 420 return $this->pInfixOp( 431 The new `$precedence` and `$lhsPrecedence` arguments need to be passed down to the `pInfixOp()`, `p…
|
/PHP-Parser/lib/PhpParser/ |
H A D | PrettyPrinterAbstract.php | 385 protected function pInfixOp( function in PhpParser\\PrettyPrinterAbstract
|
Completed in 22 milliseconds