php-parser/test/code/parser/expr/uvs/new.test

119 lines
2.8 KiB
Plaintext
Raw Normal View History

2015-06-13 15:42:09 +02:00
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(
2017-01-19 22:25:22 +01:00
0: Stmt_Expression(
expr: Expr_New(
class: Expr_Variable(
name: className
)
args: array(
)
2015-06-13 15:42:09 +02:00
)
)
2017-01-19 22:25:22 +01:00
1: Stmt_Expression(
expr: Expr_New(
class: Expr_ArrayDimFetch(
var: Expr_Variable(
name: array
)
dim: Scalar_String(
value: className
)
2015-06-13 15:42:09 +02:00
)
2017-01-19 22:25:22 +01:00
args: array(
2015-06-13 15:42:09 +02:00
)
)
)
2017-01-19 22:25:22 +01:00
2: Stmt_Expression(
expr: Expr_New(
class: Expr_ArrayDimFetch(
var: Expr_Variable(
name: array
)
dim: Scalar_String(
value: className
)
2015-06-13 15:42:09 +02:00
)
2017-01-19 22:25:22 +01:00
args: array(
2015-06-13 15:42:09 +02:00
)
)
)
2017-01-19 22:25:22 +01:00
3: Stmt_Expression(
expr: Expr_New(
class: Expr_PropertyFetch(
var: Expr_Variable(
name: obj
)
name: Identifier(
name: className
)
2017-01-19 22:25:22 +01:00
)
args: array(
2015-06-13 15:42:09 +02:00
)
)
)
2017-01-19 22:25:22 +01:00
4: Stmt_Expression(
expr: Expr_New(
class: Expr_StaticPropertyFetch(
class: Name(
parts: array(
0: Test
)
2015-06-13 15:42:09 +02:00
)
name: VarLikeIdentifier(
name: className
)
2017-01-19 22:25:22 +01:00
)
args: array(
2015-06-13 15:42:09 +02:00
)
)
)
2017-01-19 22:25:22 +01:00
5: Stmt_Expression(
expr: Expr_New(
class: Expr_StaticPropertyFetch(
class: Expr_Variable(
name: test
)
name: VarLikeIdentifier(
name: className
)
2017-01-19 22:25:22 +01:00
)
args: array(
2015-06-13 15:42:09 +02:00
)
)
)
2017-01-19 22:25:22 +01:00
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
)
2015-06-13 15:42:09 +02:00
)
name: Identifier(
name: foo
)
)
name: VarLikeIdentifier(
name: className
2015-06-13 15:42:09 +02:00
)
2017-01-19 22:25:22 +01:00
)
args: array(
2015-06-13 15:42:09 +02:00
)
)
)
2017-01-19 22:25:22 +01:00
)