Home
last modified time | relevance | path

Searched refs:FullyQualified (Results 1 – 16 of 16) sorted by relevance

/PHP-Parser/lib/PhpParser/
H A DNameContext.php6 use PhpParser\Node\Name\FullyQualified; alias
126 return new FullyQualified($name, $name->getAttributes());
134 return FullyQualified::concat($this->namespace, $name, $name->getAttributes());
167 $possibleNames = [new FullyQualified($name)];
229 private function resolveAlias(Name $name, int $type): ?FullyQualified {
237 return FullyQualified::concat($alias, $name->slice(1), $name->getAttributes());
244 … return new FullyQualified($this->aliases[$type][$checkName], $name->getAttributes());
H A DBuilderHelpers.php116 return new Name\FullyQualified(substr($name, 1));
/PHP-Parser/lib/PhpParser/Node/Name/
H A DFullyQualified.php5 class FullyQualified extends \PhpParser\Node\Name { class
/PHP-Parser/test/PhpParser/Node/
H A DNameTest.php86 new Name\FullyQualified('foo\bar'),
87 Name\FullyQualified::concat(['foo'], new Name('bar'))
93 Name\Relative::concat(new Name\FullyQualified('foo\bar'), 'baz', $attributes)
116 $name = new Name\FullyQualified('foo');
/PHP-Parser/test/PhpParser/NodeVisitor/
H A DNameResolverTest.php434 new Expr\New_(new Name\FullyQualified('self', ['startLine' => 3])),
442 new Expr\New_(new Name\FullyQualified('PARENT', ['startLine' => 3])),
539 new Name\FullyQualified('Foo\Bar'), $n1->getAttribute('resolvedName'));
542 new Name\FullyQualified('Foo\bar'), $n2->getAttribute('namespacedName'));
/PHP-Parser/test/PhpParser/Builder/
H A DParamTest.php124 ['\Foo', new Node\Name\FullyQualified('Foo')],
161 new Node\Name\FullyQualified('Foo')
166 new Node\Name\FullyQualified('Foo')
H A DClassTest.php35 new Name\FullyQualified('Fully\Qualified'),
/PHP-Parser/lib/PhpParser/NodeVisitor/
H A DNameResolver.php10 use PhpParser\Node\Name\FullyQualified; alias
221 $name->setAttribute('namespacedName', FullyQualified::concat(
241 $name->setAttribute('namespacedName', FullyQualified::concat(
/PHP-Parser/test/PhpParser/
H A DBuilderHelpersTest.php71 new Node\Name\FullyQualified(['Namespace', 'Test']),
98 new Node\Name\FullyQualified(['Namespace', 'Test']),
H A DBuilderFactoryTest.php168 new Name\FullyQualified('Foo'),
185 new Expr\New_(new Name\FullyQualified('stdClass')),
/PHP-Parser/test/code/formatPreservation/
H A DinsertionOfNullable.test90 $stmts[10]->extends = new Node\Name\FullyQualified('Bar');
/PHP-Parser/doc/component/
H A DName_resolution.markdown31 `Node\Name\FullyQualified`.
/PHP-Parser/grammar/
H A Dphp.y1125 …| T_NAME_FULLY_QUALIFIED { $$ = Name\FullyQualified[substr($1, 1)];…
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php86 protected function pName_FullyQualified(Name\FullyQualified $node): string {
/PHP-Parser/lib/PhpParser/Parser/
H A DPhp7.php2447 …$self->semValue = new Name\FullyQualified(substr($self->semStack[$stackPos-(1-1)], 1), $self->getA…
H A DPhp8.php2441 …$self->semValue = new Name\FullyQualified(substr($self->semStack[$stackPos-(1-1)], 1), $self->getA…

Completed in 53 milliseconds