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
..
2012-03-11 09:02:52 +01:00
2012-03-10 17:56:56 +01:00
2012-03-11 09:02:52 +01:00
2012-09-07 23:41:54 +02:00
2012-05-06 18:24:26 +02:00
2011-09-21 21:43:19 +02:00
2012-03-03 17:01:28 +01:00