Searched refs:Mul (Results 1 – 10 of 10) sorted by relevance
/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/ |
H A D | Mul.php | 7 class Mul extends AssignOp { class
|
/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/ |
H A D | Mul.php | 7 class Mul extends BinaryOp { class
|
/PHP-Parser/test/PhpParser/ |
H A D | NodeFinderTest.php | 37 $this->assertSame([], $finder->findInstanceOf($stmts, Expr\BinaryOp\Mul::class)); 60 $this->assertNull($finder->findFirstInstanceOf($stmts, Expr\BinaryOp\Mul::class));
|
H A D | NodeTraverserTest.php | 184 $mulNode = new Expr\BinaryOp\Mul($varNode, $varNode); 220 $mulNode = new Expr\BinaryOp\Mul($varNode, $varNode); 261 $mulNode = new Expr\BinaryOp\Mul($varNode1, $varNode2);
|
H A D | PrettyPrinterTest.php | 61 $expr = new Expr\BinaryOp\Mul(
|
/PHP-Parser/lib/PhpParser/ |
H A D | PrettyPrinterAbstract.php | 57 BinaryOp\Mul::class => [ 40, 41, 40], 85 AssignOp\Mul::class => [160, -1, -1], 1367 BinaryOp\Pow::class, BinaryOp\Mul::class, BinaryOp\Div::class, BinaryOp\Mod::class, 1390 AssignOp\Mul::class, AssignOp\Div::class, AssignOp\Concat::class, AssignOp\Mod::class,
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 274 …protected function pExpr_AssignOp_Mul(AssignOp\Mul $node, int $precedence, int $lhsPrecedence): st… 275 …return $this->pPrefixOp(AssignOp\Mul::class, $this->p($node->var) . ' *= ', $node->expr, $preceden… 328 …protected function pExpr_BinaryOp_Mul(BinaryOp\Mul $node, int $precedence, int $lhsPrecedence): st… 329 …return $this->pInfixOp(BinaryOp\Mul::class, $node->left, ' * ', $node->right, $precedence, $lhsPre…
|
/PHP-Parser/grammar/ |
H A D | php.y | 1013 … | variable T_MUL_EQUAL expr { $$ = Expr\AssignOp\Mul [$1, $3]; } 1040 … | expr '*' expr { $$ = Expr\BinaryOp\Mul [$1, $3]; }
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 2192 …$self->semValue = new Expr\AssignOp\Mul($self->semStack[$stackPos-(3-1)], $self->semStack[$stackPo… 2273 …$self->semValue = new Expr\BinaryOp\Mul($self->semStack[$stackPos-(3-1)], $self->semStack[$stackPo…
|
H A D | Php8.php | 2194 …$self->semValue = new Expr\AssignOp\Mul($self->semStack[$stackPos-(3-1)], $self->semStack[$stackPo… 2275 …$self->semValue = new Expr\BinaryOp\Mul($self->semStack[$stackPos-(3-1)], $self->semStack[$stackPo…
|
Completed in 75 milliseconds