Searched refs:LogicalOr (Results 1 – 6 of 6) sorted by relevance
/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/ |
H A D | LogicalOr.php | 7 class LogicalOr extends BinaryOp { class
|
/PHP-Parser/lib/PhpParser/ |
H A D | PrettyPrinterAbstract.php | 101 BinaryOp\LogicalOr::class => [210, 211, 210], 1375 BinaryOp\LogicalXor::class, BinaryOp\LogicalOr::class,
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 380 …protected function pExpr_BinaryOp_LogicalOr(BinaryOp\LogicalOr $node, int $precedence, int $lhsPre… 381 …return $this->pInfixOp(BinaryOp\LogicalOr::class, $node->left, ' or ', $node->right, $precedence, …
|
/PHP-Parser/grammar/ |
H A D | php.y | 1030 … | expr T_LOGICAL_OR expr { $$ = Expr\BinaryOp\LogicalOr [$1, $3]; }
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 2243 …$self->semValue = new Expr\BinaryOp\LogicalOr($self->semStack[$stackPos-(3-1)], $self->semStack[$s…
|
H A D | Php8.php | 2245 …$self->semValue = new Expr\BinaryOp\LogicalOr($self->semStack[$stackPos-(3-1)], $self->semStack[$s…
|
Completed in 42 milliseconds