mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-04 10:18:09 +01:00
81e53ce0ff
This changset also adds unit tests for Comments and adds a way to test the pretty printer.
70 lines
1.3 KiB
Plaintext
70 lines
1.3 KiB
Plaintext
New expression dereferencing
|
|
-----
|
|
<?php
|
|
|
|
(new A)->b;
|
|
(new A)->b();
|
|
(new A)['b'];
|
|
(new A)['b']['c'];
|
|
-----
|
|
array(
|
|
0: Expr_PropertyFetch(
|
|
var: Expr_New(
|
|
class: Name(
|
|
parts: array(
|
|
0: A
|
|
)
|
|
)
|
|
args: array(
|
|
)
|
|
)
|
|
name: b
|
|
)
|
|
1: Expr_MethodCall(
|
|
var: Expr_New(
|
|
class: Name(
|
|
parts: array(
|
|
0: A
|
|
)
|
|
)
|
|
args: array(
|
|
)
|
|
)
|
|
name: b
|
|
args: array(
|
|
)
|
|
)
|
|
2: Expr_ArrayDimFetch(
|
|
var: Expr_New(
|
|
class: Name(
|
|
parts: array(
|
|
0: A
|
|
)
|
|
)
|
|
args: array(
|
|
)
|
|
)
|
|
dim: Scalar_String(
|
|
value: b
|
|
)
|
|
)
|
|
3: 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
|
|
)
|
|
)
|
|
) |