Searched refs:LogicalAnd (Results 1 – 6 of 6) sorted by relevance
/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/ |
H A D | LogicalAnd.php | 7 class LogicalAnd extends BinaryOp { class
|
/PHP-Parser/lib/PhpParser/ |
H A D | PrettyPrinterAbstract.php | 99 BinaryOp\LogicalAnd::class => [190, 191, 190], 1374 BinaryOp\BooleanOr::class, BinaryOp\Coalesce::class, BinaryOp\LogicalAnd::class,
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 376 …protected function pExpr_BinaryOp_LogicalAnd(BinaryOp\LogicalAnd $node, int $precedence, int $lhsP… 377 …return $this->pInfixOp(BinaryOp\LogicalAnd::class, $node->left, ' and ', $node->right, $precedence…
|
/PHP-Parser/grammar/ |
H A D | php.y | 1031 … | expr T_LOGICAL_AND expr { $$ = Expr\BinaryOp\LogicalAnd[$1, $3]; }
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 2246 …$self->semValue = new Expr\BinaryOp\LogicalAnd($self->semStack[$stackPos-(3-1)], $self->semStack[$…
|
H A D | Php8.php | 2248 …$self->semValue = new Expr\BinaryOp\LogicalAnd($self->semStack[$stackPos-(3-1)], $self->semStack[$…
|
Completed in 77 milliseconds