Home
last modified time | relevance | path

Searched refs:Mul (Results 1 – 10 of 10) sorted by relevance

/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/
H A DMul.php7 class Mul extends AssignOp { class
/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/
H A DMul.php7 class Mul extends BinaryOp { class
/PHP-Parser/test/PhpParser/
H A DNodeFinderTest.php37 $this->assertSame([], $finder->findInstanceOf($stmts, Expr\BinaryOp\Mul::class));
60 $this->assertNull($finder->findFirstInstanceOf($stmts, Expr\BinaryOp\Mul::class));
H A DNodeTraverserTest.php184 $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 DPrettyPrinterTest.php61 $expr = new Expr\BinaryOp\Mul(
/PHP-Parser/lib/PhpParser/
H A DPrettyPrinterAbstract.php57 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 DStandard.php274 …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 Dphp.y1013 … | 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 DPhp7.php2192 …$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 DPhp8.php2194 …$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