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.php164 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.php1151 || $node instanceof Expr\PropertyFetch
1174 if ($node instanceof Expr\ArrayDimFetch || $node instanceof Expr\PropertyFetch ||
1322 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.y1260 { $$ = Expr\PropertyFetch[$1, $3]; }
1286 | new_variable T_OBJECT_OPERATOR property_name { $$ = Expr\PropertyFetch[$1, $3]; }
1364 { $$ = Expr\PropertyFetch[$1, $3]; }
/PHP-Parser/lib/PhpParser/Parser/
H A DPhp7.php2594 …$self->semValue = new Expr\PropertyFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stackP…
2623 …$self->semValue = new Expr\PropertyFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stackP…
2714 …$self->semValue = new Expr\PropertyFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stackP…
H A DPhp8.php2588 …$self->semValue = new Expr\PropertyFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stackP…
2617 …$self->semValue = new Expr\PropertyFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stackP…
2708 …$self->semValue = new Expr\PropertyFetch($self->semStack[$stackPos-(3-1)], $self->semStack[$stackP…
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php634 protected function pExpr_PropertyFetch(Expr\PropertyFetch $node): string {

Completed in 54 milliseconds