Searched refs:StaticCall (Results 1 – 12 of 12) sorted by relevance
/PHP-Parser/test/PhpParser/Node/Expr/ |
H A D | CallableLikeTest.php | 29 [new StaticCall(new Name('Test'), 'test', $normalArgs), false], 30 [new StaticCall(new Name('Test'), 'test', $callableArgs), true],
|
/PHP-Parser/lib/PhpParser/Node/Expr/ |
H A D | StaticCall.php | 11 class StaticCall extends CallLike { class
|
/PHP-Parser/test/code/formatPreservation/ |
H A D | indent.test | 48 $stmts[0]->expr = new Expr\StaticCall(new Node\Name\FullyQualified('Compat'), $call->name, $call->a…
|
/PHP-Parser/lib/PhpParser/ |
H A D | BuilderFactory.php | 290 public function staticCall($class, $name, array $args = []): Expr\StaticCall { 291 return new Expr\StaticCall(
|
H A D | PrettyPrinterAbstract.php | 1151 || $node instanceof Expr\StaticCall 1185 || $node instanceof Expr\StaticCall 1334 Expr\StaticCall::class => ['class' => self::FIXUP_STATIC_DEREF_LHS], 1526 Expr\StaticCall::class . '->args' => ', ', 1622 Expr\StaticCall::class . '->args' => ['(', '', ''],
|
/PHP-Parser/test/PhpParser/ |
H A D | BuilderFactoryTest.php | 167 new Expr\StaticCall( 176 new Expr\StaticCall(
|
/PHP-Parser/ |
H A D | UPGRADE-4.0.md | 27 * `Expr\StaticCall::$name`
|
/PHP-Parser/lib/PhpParser/NodeVisitor/ |
H A D | NameResolver.php | 130 } elseif ($node instanceof Expr\StaticCall
|
/PHP-Parser/grammar/ |
H A D | php.y | 1160 { $$ = Expr\StaticCall[$1, $3, $4]; }
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 537 protected function pExpr_StaticCall(Expr\StaticCall $node): string {
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 2484 …$self->semValue = new Expr\StaticCall($self->semStack[$stackPos-(4-1)], $self->semStack[$stackPos-…
|
H A D | Php8.php | 2486 …$self->semValue = new Expr\StaticCall($self->semStack[$stackPos-(4-1)], $self->semStack[$stackPos-…
|
Completed in 58 milliseconds