mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-04 02:07:59 +01:00
a6846e3b71
The parser will now always generate Identifier nodes (for non-namespaced identifiers). This obsoletes the useIdentifierNodes parser option. Node constructors still accepts strings and will implicitly create an Identifier wrapper. Identifier implement __toString(), so that outside of strict-mode many things continue to work without changes.
82 lines
1.7 KiB
Plaintext
82 lines
1.7 KiB
Plaintext
New expression dereferencing
|
|
-----
|
|
<?php
|
|
|
|
(new A)->b;
|
|
(new A)->b();
|
|
(new A)['b'];
|
|
(new A)['b']['c'];
|
|
-----
|
|
array(
|
|
0: Stmt_Expression(
|
|
expr: Expr_PropertyFetch(
|
|
var: Expr_New(
|
|
class: Name(
|
|
parts: array(
|
|
0: A
|
|
)
|
|
)
|
|
args: array(
|
|
)
|
|
)
|
|
name: Identifier(
|
|
name: b
|
|
)
|
|
)
|
|
)
|
|
1: Stmt_Expression(
|
|
expr: Expr_MethodCall(
|
|
var: Expr_New(
|
|
class: Name(
|
|
parts: array(
|
|
0: A
|
|
)
|
|
)
|
|
args: array(
|
|
)
|
|
)
|
|
name: Identifier(
|
|
name: b
|
|
)
|
|
args: array(
|
|
)
|
|
)
|
|
)
|
|
2: Stmt_Expression(
|
|
expr: Expr_ArrayDimFetch(
|
|
var: Expr_New(
|
|
class: Name(
|
|
parts: array(
|
|
0: A
|
|
)
|
|
)
|
|
args: array(
|
|
)
|
|
)
|
|
dim: Scalar_String(
|
|
value: b
|
|
)
|
|
)
|
|
)
|
|
3: Stmt_Expression(
|
|
expr: Expr_ArrayDimFetch(
|
|
var: Expr_ArrayDimFetch(
|
|
var: Expr_New(
|
|
class: Name(
|
|
parts: array(
|
|
0: A
|
|
)
|
|
)
|
|
args: array(
|
|
)
|
|
)
|
|
dim: Scalar_String(
|
|
value: b
|
|
)
|
|
)
|
|
dim: Scalar_String(
|
|
value: c
|
|
)
|
|
)
|
|
)
|
|
) |