D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
t
/
a
/
t
/
tattooscyy
/
api
/
vendor
/
nikic
/
php-parser
/
test
/
code
/
formatPreservation
/
Filename :
listRemoval.test
back
Copy
Removing from list nodes ----- <?php $foo; $bar; $baz; ----- array_splice($stmts, 1, 1, []); ----- <?php $foo; $baz; ----- <?php function foo( $a, $b, $c ) {} ----- array_pop($stmts[0]->params); ----- <?php function foo( $a, $b ) {} ----- <?php function foo( $a, $b, $c ) {} ----- array_pop($stmts[0]->params); $stmts[0]->params[] = new Node\Param(new Expr\Variable('x')); $stmts[0]->params[] = new Node\Param(new Expr\Variable('y')); ----- <?php function foo( $a, $b, $x, $y ) {}