Searched refs:FuncCall (Results 1 – 15 of 15) sorted by relevance
/PHP-Parser/test/PhpParser/Node/Expr/ |
H A D | CallableLikeTest.php | 25 [new FuncCall(new Name('test'), $normalArgs), false], 26 [new FuncCall(new Name('test'), $callableArgs), true],
|
/PHP-Parser/lib/PhpParser/Node/Expr/ |
H A D | FuncCall.php | 8 class FuncCall extends CallLike { class
|
/PHP-Parser/test/PhpParser/NodeVisitor/ |
H A D | NameResolverTest.php | 402 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 D | BuilderFactory.php | 261 public function funcCall($name, array $args = []): Expr\FuncCall { 262 return new Expr\FuncCall(
|
H A D | PrettyPrinterAbstract.php | 1148 || $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 D | ParserAbstract.php | 1220 return new Expr\FuncCall(new Name($name, $this->getAttributesAt($namePos)), $args, $attrs);
|
/PHP-Parser/test/PhpParser/ |
H A D | BuilderFactoryTest.php | 127 new Expr\FuncCall( 135 new Expr\FuncCall(new Expr\Variable('fn')),
|
/PHP-Parser/lib/PhpParser/NodeVisitor/ |
H A D | NameResolver.php | 143 } elseif ($node instanceof Expr\FuncCall) {
|
/PHP-Parser/grammar/ |
H A D | php.y | 1156 name argument_list { $$ = Expr\FuncCall[$1, $2]; } 1157 | name_readonly argument_list { $$ = Expr\FuncCall[$1, $2]; } 1158 | callable_expr argument_list { $$ = Expr\FuncCall[$1, $2]; }
|
/PHP-Parser/doc/component/ |
H A D | Walking_the_AST.markdown | 165 && $node->expr instanceof Node\Expr\FuncCall
|
/PHP-Parser/doc/ |
H A D | 2_Usage_of_basic_components.markdown | 185 (`PhpParser\Node\Expr\Variable`) and `func()` (`PhpParser\Node\Expr\FuncCall`).
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 2475 …$self->semValue = new Expr\FuncCall($self->semStack[$stackPos-(2-1)], $self->semStack[$stackPos-(2… 2478 …$self->semValue = new Expr\FuncCall($self->semStack[$stackPos-(2-1)], $self->semStack[$stackPos-(2… 2481 …$self->semValue = new Expr\FuncCall($self->semStack[$stackPos-(2-1)], $self->semStack[$stackPos-(2…
|
H A D | Php8.php | 2477 …$self->semValue = new Expr\FuncCall($self->semStack[$stackPos-(2-1)], $self->semStack[$stackPos-(2… 2480 …$self->semValue = new Expr\FuncCall($self->semStack[$stackPos-(2-1)], $self->semStack[$stackPos-(2… 2483 …$self->semValue = new Expr\FuncCall($self->semStack[$stackPos-(2-1)], $self->semStack[$stackPos-(2…
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 522 protected function pExpr_FuncCall(Expr\FuncCall $node): string {
|
/PHP-Parser/ |
H A D | CHANGELOG.md | 37 if a named argument is used) it will be represented as a plain `Node\Expr\FuncCall`.
|
Completed in 46 milliseconds