mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-04 18:28:25 +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.
119 lines
2.8 KiB
Plaintext
119 lines
2.8 KiB
Plaintext
UVS new expressions
|
|
-----
|
|
<?php
|
|
new $className;
|
|
new $array['className'];
|
|
new $array{'className'};
|
|
new $obj->className;
|
|
new Test::$className;
|
|
new $test::$className;
|
|
new $weird[0]->foo::$className;
|
|
-----
|
|
!!php7
|
|
array(
|
|
0: Stmt_Expression(
|
|
expr: Expr_New(
|
|
class: Expr_Variable(
|
|
name: className
|
|
)
|
|
args: array(
|
|
)
|
|
)
|
|
)
|
|
1: Stmt_Expression(
|
|
expr: Expr_New(
|
|
class: Expr_ArrayDimFetch(
|
|
var: Expr_Variable(
|
|
name: array
|
|
)
|
|
dim: Scalar_String(
|
|
value: className
|
|
)
|
|
)
|
|
args: array(
|
|
)
|
|
)
|
|
)
|
|
2: Stmt_Expression(
|
|
expr: Expr_New(
|
|
class: Expr_ArrayDimFetch(
|
|
var: Expr_Variable(
|
|
name: array
|
|
)
|
|
dim: Scalar_String(
|
|
value: className
|
|
)
|
|
)
|
|
args: array(
|
|
)
|
|
)
|
|
)
|
|
3: Stmt_Expression(
|
|
expr: Expr_New(
|
|
class: Expr_PropertyFetch(
|
|
var: Expr_Variable(
|
|
name: obj
|
|
)
|
|
name: Identifier(
|
|
name: className
|
|
)
|
|
)
|
|
args: array(
|
|
)
|
|
)
|
|
)
|
|
4: Stmt_Expression(
|
|
expr: Expr_New(
|
|
class: Expr_StaticPropertyFetch(
|
|
class: Name(
|
|
parts: array(
|
|
0: Test
|
|
)
|
|
)
|
|
name: VarLikeIdentifier(
|
|
name: className
|
|
)
|
|
)
|
|
args: array(
|
|
)
|
|
)
|
|
)
|
|
5: Stmt_Expression(
|
|
expr: Expr_New(
|
|
class: Expr_StaticPropertyFetch(
|
|
class: Expr_Variable(
|
|
name: test
|
|
)
|
|
name: VarLikeIdentifier(
|
|
name: className
|
|
)
|
|
)
|
|
args: array(
|
|
)
|
|
)
|
|
)
|
|
6: Stmt_Expression(
|
|
expr: Expr_New(
|
|
class: Expr_StaticPropertyFetch(
|
|
class: Expr_PropertyFetch(
|
|
var: Expr_ArrayDimFetch(
|
|
var: Expr_Variable(
|
|
name: weird
|
|
)
|
|
dim: Scalar_LNumber(
|
|
value: 0
|
|
)
|
|
)
|
|
name: Identifier(
|
|
name: foo
|
|
)
|
|
)
|
|
name: VarLikeIdentifier(
|
|
name: className
|
|
)
|
|
)
|
|
args: array(
|
|
)
|
|
)
|
|
)
|
|
) |