Home
last modified time | relevance | path

Searched refs:FuncCall (Results 1 – 15 of 15) sorted by relevance

/PHP-Parser/test/PhpParser/Node/Expr/
H A DCallableLikeTest.php25 [new FuncCall(new Name('test'), $normalArgs), false],
26 [new FuncCall(new Name('test'), $callableArgs), true],
/PHP-Parser/lib/PhpParser/Node/Expr/
H A DFuncCall.php8 class FuncCall extends CallLike { class
/PHP-Parser/test/PhpParser/NodeVisitor/
H A DNameResolverTest.php402 new Expr\FuncCall(new Name('foo')),
406 new Expr\FuncCall(new Name('foo')),
537 new Expr\FuncCall($n2),
556 new Expr\FuncCall($n2),
/PHP-Parser/lib/PhpParser/
H A DBuilderFactory.php261 public function funcCall($name, array $args = []): Expr\FuncCall {
262 return new Expr\FuncCall(
H A DPrettyPrinterAbstract.php1148 || $node instanceof Expr\FuncCall
1182 || $node instanceof Expr\FuncCall
1333 Expr\FuncCall::class => ['name' => self::FIXUP_CALL_LHS],
1519 Expr\FuncCall::class . '->args' => ', ',
1616 Expr\FuncCall::class . '->args' => ['(', '', ''],
H A DParserAbstract.php1222 return new Expr\FuncCall(new Name($name, $this->getAttributesAt($namePos)), $args, $attrs);
/PHP-Parser/test/PhpParser/
H A DBuilderFactoryTest.php127 new Expr\FuncCall(
135 new Expr\FuncCall(new Expr\Variable('fn')),
/PHP-Parser/lib/PhpParser/NodeVisitor/
H A DNameResolver.php143 } elseif ($node instanceof Expr\FuncCall) {
/PHP-Parser/grammar/
H A Dphp.y1155 name argument_list { $$ = Expr\FuncCall[$1, $2]; }
1156 | name_readonly argument_list { $$ = Expr\FuncCall[$1, $2]; }
1157 | callable_expr argument_list { $$ = Expr\FuncCall[$1, $2]; }
/PHP-Parser/doc/component/
H A DWalking_the_AST.markdown165 && $node->expr instanceof Node\Expr\FuncCall
/PHP-Parser/doc/
H A D2_Usage_of_basic_components.markdown185 (`PhpParser\Node\Expr\Variable`) and `func()` (`PhpParser\Node\Expr\FuncCall`).
/PHP-Parser/lib/PhpParser/Parser/
H A DPhp8.php2482 …$self->semValue = new Expr\FuncCall($self->semStack[$stackPos-(2-1)], $self->semStack[$stackPos-(2…
2485 …$self->semValue = new Expr\FuncCall($self->semStack[$stackPos-(2-1)], $self->semStack[$stackPos-(2…
2488 …$self->semValue = new Expr\FuncCall($self->semStack[$stackPos-(2-1)], $self->semStack[$stackPos-(2…
H A DPhp7.php2466 …$self->semValue = new Expr\FuncCall($self->semStack[$stackPos-(2-1)], $self->semStack[$stackPos-(2…
2469 …$self->semValue = new Expr\FuncCall($self->semStack[$stackPos-(2-1)], $self->semStack[$stackPos-(2…
2472 …$self->semValue = new Expr\FuncCall($self->semStack[$stackPos-(2-1)], $self->semStack[$stackPos-(2…
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php522 protected function pExpr_FuncCall(Expr\FuncCall $node): string {
/PHP-Parser/
H A DCHANGELOG.md14 if a named argument is used) it will be represented as a plain `Node\Expr\FuncCall`.

Completed in 65 milliseconds