Searched refs:BitwiseNot (Results 1 – 7 of 7) sorted by relevance
/PHP-Parser/lib/PhpParser/Node/Expr/ |
H A D | BitwiseNot.php | 7 class BitwiseNot extends Expr { class
|
/PHP-Parser/lib/PhpParser/ |
H A D | ConstExprEvaluator.php | 128 if ($expr instanceof Expr\BitwiseNot) {
|
H A D | PrettyPrinterAbstract.php | 44 Expr\BitwiseNot::class => [ 10, -1, -1], 1385 …Expr\Clone_::class, Expr\BitwiseNot::class, Expr\BooleanNot::class, Expr\UnaryPlus::class, Expr\Un…
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 441 …protected function pExpr_BitwiseNot(Expr\BitwiseNot $node, int $precedence, int $lhsPrecedence): s… 442 … return $this->pPrefixOp(Expr\BitwiseNot::class, '~', $node->expr, $precedence, $lhsPrecedence);
|
/PHP-Parser/grammar/ |
H A D | php.y | 1049 | '~' expr { $$ = Expr\BitwiseNot[$2]; }
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 2300 …$self->semValue = new Expr\BitwiseNot($self->semStack[$stackPos-(2-2)], $self->getAttributes($self…
|
H A D | Php8.php | 2302 …$self->semValue = new Expr\BitwiseNot($self->semStack[$stackPos-(2-2)], $self->getAttributes($self…
|
Completed in 116 milliseconds