tolerant-php-parser
tolerant-php-parser copied to clipboard
RHS of byref assignment must be a variable
trafficstars
While looking at an example related to #19, I also came across this new bug:
Sample code:
$c =& $a + $b
Expected: ($c =& $a) + $b
Actual: $c =& ($a + $b)