php-parser/test/code/parser/expr
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
..
fetchAndCall Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
arrayDef.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
assign.test Add support for list() in foreach (PHP 5.5) 2012-09-07 23:41:55 +02:00
cast.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
clone.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
closure.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
comparison.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
errorSuppress.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
exit.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
includeAndEval.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
issetAndEmpty.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
logic.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
math.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
new.test Fix parsing of new expressions in parenthesis 2012-05-12 14:11:10 +02:00
print.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
shellExec.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
ternary.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00
variable.test Insert comments when pretty printing 2012-05-11 16:18:14 +02:00