Searched refs:ClassConstFetch (Results 1 – 15 of 15) sorted by relevance
/PHP-Parser/lib/PhpParser/Node/Expr/ |
H A D | ClassConstFetch.php | 10 class ClassConstFetch extends Expr { class
|
/PHP-Parser/test/PhpParser/ |
H A D | BuilderFactoryTest.php | 205 new Expr\ClassConstFetch(new Name('Foo'), new Identifier('BAR')), 209 new Expr\ClassConstFetch(new Expr\Variable('foo'), new Identifier('BAR')), 213 new Expr\ClassConstFetch(new Name('Foo'), new Expr\Variable('foo')),
|
H A D | BuilderHelpersTest.php | 234 …$this->assertEquals(new Expr\ClassConstFetch(new FullyQualified(\Suit::class), new Identifier('Hea…
|
H A D | PrettyPrinterTest.php | 182 new Expr\ClassConstFetch(new Name('Foo'), new Expr\Error())
|
/PHP-Parser/doc/component/ |
H A D | Constant_expression_evaluation.markdown | 71 * `Expr\ClassConstFetch` 92 if ($expr instanceof Expr\ClassConstFetch) {
|
/PHP-Parser/lib/PhpParser/ |
H A D | BuilderFactory.php | 336 public function classConstFetch($class, $name): Expr\ClassConstFetch { 337 return new Expr\ClassConstFetch(
|
H A D | BuilderHelpers.php | 273 …return new Expr\ClassConstFetch(new FullyQualified(\get_class($value)), new Identifier($value->nam…
|
H A D | PrettyPrinterAbstract.php | 1188 || $node instanceof Expr\ClassConstFetch); 1336 Expr\ClassConstFetch::class => [
|
/PHP-Parser/test/PhpParser/NodeVisitor/ |
H A D | NameResolverTest.php | 536 new Expr\ClassConstFetch($n1, 'FOO'), 555 new Expr\ClassConstFetch($n1, 'FOO'),
|
/PHP-Parser/ |
H A D | UPGRADE-4.0.md | 23 * `Expr\ClassConstFetch::$name`
|
/PHP-Parser/lib/PhpParser/NodeVisitor/ |
H A D | NameResolver.php | 132 || $node instanceof Expr\ClassConstFetch
|
/PHP-Parser/grammar/ |
H A D | php.y | 1214 { $$ = Expr\ClassConstFetch[$1, $3]; } 1216 { $$ = Expr\ClassConstFetch[$1, $4]; } 1220 … { $$ = Expr\ClassConstFetch[$1, new Expr\Error(stackAttributes(#3))]; $this->errorState = 2; }
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 2556 …$self->semValue = new Expr\ClassConstFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stac… 2559 …$self->semValue = new Expr\ClassConstFetch($self->semStack[$stackPos-(5-1)], $self->semStack[$stac… 2562 …$self->semValue = new Expr\ClassConstFetch($self->semStack[$stackPos-(3-1)], new Expr\Error($self-…
|
H A D | Php8.php | 2558 …$self->semValue = new Expr\ClassConstFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stac… 2561 …$self->semValue = new Expr\ClassConstFetch($self->semStack[$stackPos-(5-1)], $self->semStack[$stac… 2564 …$self->semValue = new Expr\ClassConstFetch($self->semStack[$stackPos-(3-1)], new Expr\Error($self-…
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 635 protected function pExpr_ClassConstFetch(Expr\ClassConstFetch $node): string {
|
Completed in 76 milliseconds