Searched refs:BooleanOr (Results 1 – 6 of 6) sorted by relevance
/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/ |
H A D | BooleanOr.php | 7 class BooleanOr extends BinaryOp { class
|
/PHP-Parser/lib/PhpParser/ |
H A D | PrettyPrinterAbstract.php | 78 BinaryOp\BooleanOr::class => [130, 131, 130], 1374 BinaryOp\BooleanOr::class, BinaryOp\Coalesce::class, BinaryOp\LogicalAnd::class,
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 348 …protected function pExpr_BinaryOp_BooleanOr(BinaryOp\BooleanOr $node, int $precedence, int $lhsPre… 349 …return $this->pInfixOp(BinaryOp\BooleanOr::class, $node->left, ' || ', $node->right, $precedence, …
|
/PHP-Parser/grammar/ |
H A D | php.y | 1028 … | expr T_BOOLEAN_OR expr { $$ = Expr\BinaryOp\BooleanOr [$1, $3]; }
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 2237 …$self->semValue = new Expr\BinaryOp\BooleanOr($self->semStack[$stackPos-(3-1)], $self->semStack[$s…
|
H A D | Php8.php | 2239 …$self->semValue = new Expr\BinaryOp\BooleanOr($self->semStack[$stackPos-(3-1)], $self->semStack[$s…
|
Completed in 40 milliseconds