Home
last modified time | relevance | path

Searched refs:PropertyFetch (Results 1 – 11 of 11) sorted by relevance

/PHP-Parser/lib/PhpParser/Node/Expr/
H A DPropertyFetch.php9 class PropertyFetch extends Expr { class
/PHP-Parser/test/PhpParser/
H A DBuilderFactoryTest.php233 new Expr\PropertyFetch(new Expr\Variable('foo'), 'bar'),
237 new Expr\PropertyFetch(new Expr\Variable('foo'), 'bar'),
241 new Expr\PropertyFetch(new Expr\Variable('foo'), new Expr\Variable('bar')),
H A DPrettyPrinterTest.php172 new Expr\PropertyFetch(new Expr\Variable('a'), new Expr\Error())
/PHP-Parser/lib/PhpParser/
H A DBuilderFactory.php326 public function propertyFetch(Expr $var, $name): Expr\PropertyFetch {
327 return new Expr\PropertyFetch($var, BuilderHelpers::normalizeIdentifierOrExpr($name));
H A DPrettyPrinterAbstract.php1179 || $node instanceof Expr\PropertyFetch
1202 if ($node instanceof Expr\ArrayDimFetch || $node instanceof Expr\PropertyFetch ||
1353 Expr\PropertyFetch::class => [
/PHP-Parser/doc/component/
H A DConstant_expression_evaluation.markdown73 * `Expr\PropertyFetch` (since PHP 8.2)
/PHP-Parser/
H A DUPGRADE-4.0.md26 * `Expr\PropertyFetch::$name`
/PHP-Parser/grammar/
H A Dphp.y1304 { $$ = Expr\PropertyFetch[$1, $3]; }
1332 | new_variable T_OBJECT_OPERATOR property_name { $$ = Expr\PropertyFetch[$1, $3]; }
1410 { $$ = Expr\PropertyFetch[$1, $3]; }
/PHP-Parser/lib/PhpParser/Parser/
H A DPhp7.php2641 …$self->semValue = new Expr\PropertyFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stackP…
2670 …$self->semValue = new Expr\PropertyFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stackP…
2761 …$self->semValue = new Expr\PropertyFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stackP…
H A DPhp8.php2640 …$self->semValue = new Expr\PropertyFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stackP…
2666 …$self->semValue = new Expr\PropertyFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stackP…
2757 …$self->semValue = new Expr\PropertyFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stackP…
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php639 protected function pExpr_PropertyFetch(Expr\PropertyFetch $node): string {

Completed in 77 milliseconds