php icon indicating copy to clipboard operation
php copied to clipboard

unary operators aren't being ordered correctly with regard to operator precedence

Open stephens2424 opened this issue 10 years ago • 0 comments

We are currently parsing

echo (int)"0" || false;

As if it was

echo (int)("0" || false);

stephens2424 avatar Feb 02 '15 22:02 stephens2424