Searched refs:Relative (Results 1 – 10 of 10) sorted by relevance
/PHP-Parser/lib/PhpParser/Node/Name/ |
H A D | Relative.php | 5 class Relative extends \PhpParser\Node\Name { class
|
/PHP-Parser/test/PhpParser/Node/ |
H A D | NameTest.php | 92 new Name\Relative('foo\bar\baz', $attributes), 93 Name\Relative::concat(new Name\FullyQualified('foo\bar'), 'baz', $attributes) 123 $name = new Name\Relative('foo');
|
/PHP-Parser/test/PhpParser/NodeVisitor/ |
H A D | NameResolverTest.php | 462 new Expr\New_(new Name\Relative('self', ['startLine' => 3])), 470 new Expr\New_(new Name\Relative('STATIC', ['startLine' => 3])),
|
/PHP-Parser/test/PhpParser/ |
H A D | BuilderHelpersTest.php | 76 new Node\Name\Relative(['Test']), 103 new Node\Name\Relative(['Test']),
|
/PHP-Parser/test/PhpParser/Builder/ |
H A D | ClassTest.php | 36 new Name\Relative('NamespaceRelative'),
|
/PHP-Parser/lib/PhpParser/ |
H A D | BuilderHelpers.php | 121 return new Name\Relative(substr($name, strlen('namespace\\')));
|
/PHP-Parser/grammar/ |
H A D | php.y | 1172 | T_NAME_RELATIVE { $$ = Name\Relative[substr($1, 10)]; }
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 91 protected function pName_Relative(Name\Relative $node): string {
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 2500 …$self->semValue = new Name\Relative(substr($self->semStack[$stackPos-(1-1)], 10), $self->getAttrib…
|
H A D | Php8.php | 2502 …$self->semValue = new Name\Relative(substr($self->semStack[$stackPos-(1-1)], 10), $self->getAttrib…
|
Completed in 38 milliseconds