Searched refs:GroupUse (Results 1 – 10 of 10) sorted by relevance
/PHP-Parser/lib/PhpParser/Node/Stmt/ |
H A D | GroupUse.php | 9 class GroupUse extends Stmt { class
|
/PHP-Parser/lib/PhpParser/ |
H A D | NodeDumper.php | 11 use PhpParser\Node\Stmt\GroupUse; alias 94 … && ($node instanceof Use_ || $node instanceof UseItem || $node instanceof GroupUse)) {
|
H A D | PrettyPrinterAbstract.php | 1540 Stmt\GroupUse::class . '->uses' => ', ',
|
/PHP-Parser/tools/fuzzing/ |
H A D | target.php | 93 if ($node instanceof Stmt\GroupUse && $node->prefix->isUnqualified() &&
|
/PHP-Parser/lib/PhpParser/NodeVisitor/ |
H A D | NameResolver.php | 62 } elseif ($node instanceof Stmt\GroupUse) {
|
/PHP-Parser/grammar/ |
H A D | php.y | 270 { $$ = Stmt\GroupUse[$3, $6, $2]; } 272 { $$ = Stmt\GroupUse[$2, $5, Stmt\Use_::TYPE_UNKNOWN]; }
|
/PHP-Parser/ |
H A D | CHANGELOG.md | 19 * Include the trailing semicolon inside `Stmt\GroupUse` nodes, making them consistent with 1001 * Fixed attribute assignment for `GroupUse` prefix and variables in interpolated strings. 1215 * Group use declarations. These are represented using `Stmt\GroupUse` nodes. Furthermore a `type`
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 764 protected function pStmt_GroupUse(Stmt\GroupUse $node): string {
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 1384 …$self->semValue = new Stmt\GroupUse($self->semStack[$stackPos-(8-3)], $self->semStack[$stackPos-(8… 1387 …$self->semValue = new Stmt\GroupUse($self->semStack[$stackPos-(7-2)], $self->semStack[$stackPos-(7…
|
H A D | Php8.php | 1379 …$self->semValue = new Stmt\GroupUse($self->semStack[$stackPos-(8-3)], $self->semStack[$stackPos-(8… 1382 …$self->semValue = new Stmt\GroupUse($self->semStack[$stackPos-(7-2)], $self->semStack[$stackPos-(7…
|
Completed in 48 milliseconds