Searched refs:MethodCall (Results 1 – 11 of 11) sorted by relevance
/PHP-Parser/test/PhpParser/Node/Expr/ |
H A D | CallableLikeTest.php | 27 [new MethodCall(new Variable('this'), 'test', $normalArgs), false], 28 [new MethodCall(new Variable('this'), 'test', $callableArgs), true],
|
/PHP-Parser/test/code/formatPreservation/ |
H A D | listInsertionIndentation.test | 12 $stmts[2] = new Stmt\Expression(new Expr\MethodCall($var, $outerCall->name));
|
/PHP-Parser/lib/PhpParser/Node/Expr/ |
H A D | MethodCall.php | 11 class MethodCall extends CallLike { class
|
/PHP-Parser/test/PhpParser/ |
H A D | BuilderFactoryTest.php | 141 new Expr\MethodCall( 150 new Expr\MethodCall( 158 new Expr\MethodCall(
|
/PHP-Parser/lib/PhpParser/ |
H A D | BuilderFactory.php | 275 public function methodCall(Expr $var, $name, array $args = []): Expr\MethodCall { 276 return new Expr\MethodCall(
|
H A D | PrettyPrinterAbstract.php | 1149 || $node instanceof Expr\MethodCall 1183 || $node instanceof Expr\MethodCall 1341 Expr\MethodCall::class => [ 1522 Expr\MethodCall::class . '->args' => ', ', 1617 Expr\MethodCall::class . '->args' => ['(', '', ''],
|
/PHP-Parser/ |
H A D | UPGRADE-4.0.md | 25 * `Expr\MethodCall::$name`
|
/PHP-Parser/grammar/ |
H A D | php.y | 1290 { $$ = Expr\MethodCall[$1, $3, $4]; }
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 527 protected function pExpr_MethodCall(Expr\MethodCall $node): string {
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 2629 …$self->semValue = new Expr\MethodCall($self->semStack[$stackPos-(4-1)], $self->semStack[$stackPos-…
|
H A D | Php8.php | 2628 …$self->semValue = new Expr\MethodCall($self->semStack[$stackPos-(4-1)], $self->semStack[$stackPos-…
|
Completed in 52 milliseconds