mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-12 09:29:47 +01:00
a0c216bf4b
Adding this as an option to avoid breaking people's tests. Some of the test results show pretty clearly that we are incorrectly assigning the same comment multiple times for nested nodes (mentioned in #36).
86 lines
1.6 KiB
Plaintext
86 lines
1.6 KiB
Plaintext
Static property fetches
|
|
-----
|
|
<?php
|
|
|
|
// property name variations
|
|
A::$b;
|
|
A::$$b;
|
|
A::${'b'};
|
|
|
|
// array access
|
|
A::$b['c'];
|
|
A::$b{'c'};
|
|
|
|
// class name variations can be found in staticCall.test
|
|
-----
|
|
array(
|
|
0: Expr_StaticPropertyFetch(
|
|
class: Name(
|
|
parts: array(
|
|
0: A
|
|
)
|
|
comments: array(
|
|
0: // property name variations
|
|
)
|
|
)
|
|
name: b
|
|
comments: array(
|
|
0: // property name variations
|
|
)
|
|
)
|
|
1: Expr_StaticPropertyFetch(
|
|
class: Name(
|
|
parts: array(
|
|
0: A
|
|
)
|
|
)
|
|
name: Expr_Variable(
|
|
name: b
|
|
)
|
|
)
|
|
2: Expr_StaticPropertyFetch(
|
|
class: Name(
|
|
parts: array(
|
|
0: A
|
|
)
|
|
)
|
|
name: Scalar_String(
|
|
value: b
|
|
)
|
|
)
|
|
3: Expr_ArrayDimFetch(
|
|
var: Expr_StaticPropertyFetch(
|
|
class: Name(
|
|
parts: array(
|
|
0: A
|
|
)
|
|
comments: array(
|
|
0: // array access
|
|
)
|
|
)
|
|
name: b
|
|
comments: array(
|
|
0: // array access
|
|
)
|
|
)
|
|
dim: Scalar_String(
|
|
value: c
|
|
)
|
|
comments: array(
|
|
0: // array access
|
|
)
|
|
)
|
|
4: Expr_ArrayDimFetch(
|
|
var: Expr_StaticPropertyFetch(
|
|
class: Name(
|
|
parts: array(
|
|
0: A
|
|
)
|
|
)
|
|
name: b
|
|
)
|
|
dim: Scalar_String(
|
|
value: c
|
|
)
|
|
)
|
|
) |