Home
last modified time | relevance | path

Searched refs:ClosureUse (Results 1 – 13 of 13) sorted by relevance

/PHP-Parser/lib/PhpParser/Node/
H A DClosureUse.php7 class ClosureUse extends NodeAbstract { class
36 class_alias(ClosureUse::class, Expr\ClosureUse::class);
/PHP-Parser/test/PhpParser/
H A DCompatibilityTest.php18 $node = new Node\ClosureUse($var);
19 $this->assertTrue($node instanceof Expr\ClosureUse);
46 $node = new Node\Expr\ClosureUse($var);
47 $this->assertTrue($node instanceof Node\ClosureUse);
/PHP-Parser/lib/PhpParser/Node/Expr/
H A DClosure.php6 use PhpParser\Node\ClosureUse; alias
17 /** @var ClosureUse[] use()s */
/PHP-Parser/test/code/parser/expr/
H A Dclosure.test70 0: ClosureUse(
91 0: ClosureUse(
97 1: ClosureUse(
193 0: ClosureUse(
H A Dclosure_use_trailing_comma.test16 0: ClosureUse(
/PHP-Parser/
H A DUPGRADE-4.0.md50 * The `var` subnode of `ClosureUse` now contains a `Variable` rather than a plain string.
H A DUPGRADE-5.0.md286 * `Node\Expr\ClosureUse` is now `Node\ClosureUse` and no longer extends `Node\Expr`.
292 …he `Node::getType()` method will now always return the new name (e.g. `ClosureUse` instead of `Exp…
H A DCHANGELOG.md780 * The `var` subnode of `ClosureUse` now contains a `Variable` rather than a plain string.
/PHP-Parser/test/code/parser/expr/uvs/
H A DindirectCall.test299 0: ClosureUse(
/PHP-Parser/grammar/
H A Dphp.y1147 optional_ref plain_variable { $$ = Node\ClosureUse[$2, $1]; }
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php697 protected function pClosureUse(Node\ClosureUse $node): string {
/PHP-Parser/lib/PhpParser/Parser/
H A DPhp8.php2476 …$self->semValue = new Node\ClosureUse($self->semStack[$stackPos-(2-2)], $self->semStack[$stackPos-…
H A DPhp7.php2460 …$self->semValue = new Node\ClosureUse($self->semStack[$stackPos-(2-2)], $self->semStack[$stackPos-…

Completed in 77 milliseconds