1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-03 17:57:59 +01:00
PHP-Parser/test/code/parser/stmt/loop
nikic f8f1e17e41 Add support for list() in foreach (PHP 5.5)
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`.
2012-09-07 23:41:55 +02:00
..
do.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
for.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
foreach.test Add support for list() in foreach (PHP 5.5) 2012-09-07 23:41:55 +02:00
while.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00