Home
last modified time | relevance | path

Searched refs:ShiftRight (Results 1 – 7 of 7) sorted by relevance

/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/
H A DShiftRight.php7 class ShiftRight extends AssignOp { class
/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/
H A DShiftRight.php7 class ShiftRight extends BinaryOp { class
/PHP-Parser/lib/PhpParser/
H A DPrettyPrinterAbstract.php64 BinaryOp\ShiftRight::class => [ 60, 61, 60],
93 AssignOp\ShiftRight::class => [160, -1, -1],
1369 BinaryOp\ShiftLeft::class, BinaryOp\ShiftRight::class, BinaryOp\Smaller::class,
1392 …AssignOp\ShiftLeft::class, AssignOp\ShiftRight::class, AssignOp\Pow::class, AssignOp\Coalesce::cla…
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php306 …protected function pExpr_AssignOp_ShiftRight(AssignOp\ShiftRight $node, int $precedence, int $lhsP…
307 …return $this->pPrefixOp(AssignOp\ShiftRight::class, $this->p($node->var) . ' >>= ', $node->expr, $…
368 …protected function pExpr_BinaryOp_ShiftRight(BinaryOp\ShiftRight $node, int $precedence, int $lhsP…
369 …return $this->pInfixOp(BinaryOp\ShiftRight::class, $node->left, ' >> ', $node->right, $precedence,…
/PHP-Parser/grammar/
H A Dphp.y1021 … | variable T_SR_EQUAL expr { $$ = Expr\AssignOp\ShiftRight[$1, $3]; }
1044 … | expr T_SR expr { $$ = Expr\BinaryOp\ShiftRight[$1, $3]; }
/PHP-Parser/lib/PhpParser/Parser/
H A DPhp7.php2216 …$self->semValue = new Expr\AssignOp\ShiftRight($self->semStack[$stackPos-(3-1)], $self->semStack[$…
2285 …$self->semValue = new Expr\BinaryOp\ShiftRight($self->semStack[$stackPos-(3-1)], $self->semStack[$…
H A DPhp8.php2218 …$self->semValue = new Expr\AssignOp\ShiftRight($self->semStack[$stackPos-(3-1)], $self->semStack[$…
2287 …$self->semValue = new Expr\BinaryOp\ShiftRight($self->semStack[$stackPos-(3-1)], $self->semStack[$…

Completed in 60 milliseconds