mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-04 18:38:05 +01:00
f8f1e17e41
Example: foreach ($coords as list($x, $y)) { ... } This change slightly breaks backwards compatability, as it changes the node structure for the previously existing `list(...) = $foo` assignments. Those no longer have a dedicated `AssignList` node; instead they are parsed as a normal `Assign` node with a `List` as `var`. Similarly the use in `foreach` will generate a `List` for `valueVar`.
22 lines
533 B
PHP
22 lines
533 B
PHP
<?php
|
|
|
|
/**
|
|
* @property array $vars List of variables to assign to
|
|
*/
|
|
class PHPParser_Node_Expr_List extends PHPParser_Node_Expr
|
|
{
|
|
/**
|
|
* Constructs a list() destructuring node.
|
|
*
|
|
* @param array $vars List of variables to assign to
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(array $vars, array $attributes = array()) {
|
|
parent::__construct(
|
|
array(
|
|
'vars' => $vars,
|
|
),
|
|
$attributes
|
|
);
|
|
}
|
|
} |