Home
last modified time | relevance | path

Searched refs:MethodCall (Results 1 – 11 of 11) sorted by relevance

/PHP-Parser/test/PhpParser/Node/Expr/
H A DCallableLikeTest.php27 [new MethodCall(new Variable('this'), 'test', $normalArgs), false],
28 [new MethodCall(new Variable('this'), 'test', $callableArgs), true],
/PHP-Parser/test/code/formatPreservation/
H A DlistInsertionIndentation.test12 $stmts[2] = new Stmt\Expression(new Expr\MethodCall($var, $outerCall->name));
/PHP-Parser/lib/PhpParser/Node/Expr/
H A DMethodCall.php11 class MethodCall extends CallLike { class
/PHP-Parser/test/PhpParser/
H A DBuilderFactoryTest.php141 new Expr\MethodCall(
150 new Expr\MethodCall(
158 new Expr\MethodCall(
/PHP-Parser/lib/PhpParser/
H A DBuilderFactory.php275 public function methodCall(Expr $var, $name, array $args = []): Expr\MethodCall {
276 return new Expr\MethodCall(
H A DPrettyPrinterAbstract.php1149 || $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 DUPGRADE-4.0.md25 * `Expr\MethodCall::$name`
/PHP-Parser/grammar/
H A Dphp.y1290 { $$ = Expr\MethodCall[$1, $3, $4]; }
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php527 protected function pExpr_MethodCall(Expr\MethodCall $node): string {
/PHP-Parser/lib/PhpParser/Parser/
H A DPhp7.php2629 …$self->semValue = new Expr\MethodCall($self->semStack[$stackPos-(4-1)], $self->semStack[$stackPos-…
H A DPhp8.php2628 …$self->semValue = new Expr\MethodCall($self->semStack[$stackPos-(4-1)], $self->semStack[$stackPos-…

Completed in 55 milliseconds