Searched refs:PropertyFetch (Results 1 – 11 of 11) sorted by relevance
/PHP-Parser/lib/PhpParser/Node/Expr/ |
H A D | PropertyFetch.php | 9 class PropertyFetch extends Expr { class
|
/PHP-Parser/test/PhpParser/ |
H A D | BuilderFactoryTest.php | 233 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 D | PrettyPrinterTest.php | 172 new Expr\PropertyFetch(new Expr\Variable('a'), new Expr\Error())
|
/PHP-Parser/lib/PhpParser/ |
H A D | BuilderFactory.php | 326 public function propertyFetch(Expr $var, $name): Expr\PropertyFetch { 327 return new Expr\PropertyFetch($var, BuilderHelpers::normalizeIdentifierOrExpr($name));
|
H A D | PrettyPrinterAbstract.php | 1179 || $node instanceof Expr\PropertyFetch 1202 if ($node instanceof Expr\ArrayDimFetch || $node instanceof Expr\PropertyFetch || 1353 Expr\PropertyFetch::class => [
|
/PHP-Parser/doc/component/ |
H A D | Constant_expression_evaluation.markdown | 73 * `Expr\PropertyFetch` (since PHP 8.2)
|
/PHP-Parser/ |
H A D | UPGRADE-4.0.md | 26 * `Expr\PropertyFetch::$name`
|
/PHP-Parser/grammar/ |
H A D | php.y | 1304 { $$ = 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 D | Php7.php | 2641 …$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 D | Php8.php | 2640 …$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 D | Standard.php | 639 protected function pExpr_PropertyFetch(Expr\PropertyFetch $node): string {
|
Completed in 41 milliseconds