php icon indicating copy to clipboard operation
php copied to clipboard

Parser issue with nested if/else blocks.

Open gleamingthecube opened this issue 9 years ago • 0 comments

test file:

<?php
if (true)
    if (true)
        echo 1;
    else
        echo 2;

if (true) echo 1;
?>

got:

Found echo:"echo", expected [;]

gleamingthecube avatar Jul 27 '15 10:07 gleamingthecube