Mercurial > hg > isophonics-drupal-site
view vendor/nikic/php-parser/test/code/parser/expr/uvs/new.test @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 5fb285c0d0e3 |
children |
line wrap: on
line source
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( ) ) ) )