Searched refs:ShiftLeft (Results 1 – 7 of 7) sorted by relevance
/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/ |
H A D | ShiftLeft.php | 7 class ShiftLeft extends AssignOp { class
|
/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/ |
H A D | ShiftLeft.php | 7 class ShiftLeft extends BinaryOp { class
|
/PHP-Parser/lib/PhpParser/ |
H A D | PrettyPrinterAbstract.php | 63 BinaryOp\ShiftLeft::class => [ 60, 61, 60], 92 AssignOp\ShiftLeft::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 D | Standard.php | 302 …protected function pExpr_AssignOp_ShiftLeft(AssignOp\ShiftLeft $node, int $precedence, int $lhsPre… 303 …return $this->pPrefixOp(AssignOp\ShiftLeft::class, $this->p($node->var) . ' <<= ', $node->expr, $p… 364 …protected function pExpr_BinaryOp_ShiftLeft(BinaryOp\ShiftLeft $node, int $precedence, int $lhsPre… 365 …return $this->pInfixOp(BinaryOp\ShiftLeft::class, $node->left, ' << ', $node->right, $precedence, …
|
/PHP-Parser/grammar/ |
H A D | php.y | 1020 … | variable T_SL_EQUAL expr { $$ = Expr\AssignOp\ShiftLeft [$1, $3]; } 1043 … | expr T_SL expr { $$ = Expr\BinaryOp\ShiftLeft [$1, $3]; }
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 2213 …$self->semValue = new Expr\AssignOp\ShiftLeft($self->semStack[$stackPos-(3-1)], $self->semStack[$s… 2282 …$self->semValue = new Expr\BinaryOp\ShiftLeft($self->semStack[$stackPos-(3-1)], $self->semStack[$s…
|
H A D | Php8.php | 2215 …$self->semValue = new Expr\AssignOp\ShiftLeft($self->semStack[$stackPos-(3-1)], $self->semStack[$s… 2284 …$self->semValue = new Expr\BinaryOp\ShiftLeft($self->semStack[$stackPos-(3-1)], $self->semStack[$s…
|
Completed in 92 milliseconds