Home
last modified time | relevance | path

Searched refs:ClassConstFetch (Results 1 – 15 of 15) sorted by relevance

/PHP-Parser/lib/PhpParser/Node/Expr/
H A DClassConstFetch.php10 class ClassConstFetch extends Expr { class
/PHP-Parser/test/PhpParser/
H A DBuilderFactoryTest.php205 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 DBuilderHelpersTest.php234 …$this->assertEquals(new Expr\ClassConstFetch(new FullyQualified(\Suit::class), new Identifier('Hea…
H A DPrettyPrinterTest.php182 new Expr\ClassConstFetch(new Name('Foo'), new Expr\Error())
/PHP-Parser/doc/component/
H A DConstant_expression_evaluation.markdown71 * `Expr\ClassConstFetch`
92 if ($expr instanceof Expr\ClassConstFetch) {
/PHP-Parser/lib/PhpParser/
H A DBuilderFactory.php336 public function classConstFetch($class, $name): Expr\ClassConstFetch {
337 return new Expr\ClassConstFetch(
H A DBuilderHelpers.php273 …return new Expr\ClassConstFetch(new FullyQualified(\get_class($value)), new Identifier($value->nam…
H A DPrettyPrinterAbstract.php1188 || $node instanceof Expr\ClassConstFetch);
1336 Expr\ClassConstFetch::class => [
/PHP-Parser/test/PhpParser/NodeVisitor/
H A DNameResolverTest.php536 new Expr\ClassConstFetch($n1, 'FOO'),
555 new Expr\ClassConstFetch($n1, 'FOO'),
/PHP-Parser/
H A DUPGRADE-4.0.md23 * `Expr\ClassConstFetch::$name`
/PHP-Parser/lib/PhpParser/NodeVisitor/
H A DNameResolver.php132 || $node instanceof Expr\ClassConstFetch
/PHP-Parser/grammar/
H A Dphp.y1213 { $$ = Expr\ClassConstFetch[$1, $3]; }
1215 { $$ = Expr\ClassConstFetch[$1, $4]; }
1219 … { $$ = Expr\ClassConstFetch[$1, new Expr\Error(stackAttributes(#3))]; $this->errorState = 2; }
/PHP-Parser/lib/PhpParser/Parser/
H A DPhp8.php2563 …$self->semValue = new Expr\ClassConstFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stac…
2566 …$self->semValue = new Expr\ClassConstFetch($self->semStack[$stackPos-(5-1)], $self->semStack[$stac…
2569 …$self->semValue = new Expr\ClassConstFetch($self->semStack[$stackPos-(3-1)], new Expr\Error($self-…
H A DPhp7.php2547 …$self->semValue = new Expr\ClassConstFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stac…
2550 …$self->semValue = new Expr\ClassConstFetch($self->semStack[$stackPos-(5-1)], $self->semStack[$stac…
2553 …$self->semValue = new Expr\ClassConstFetch($self->semStack[$stackPos-(3-1)], new Expr\Error($self-…
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php635 protected function pExpr_ClassConstFetch(Expr\ClassConstFetch $node): string {

Completed in 66 milliseconds