-
Notifications
You must be signed in to change notification settings - Fork 40
Open
Description
function foo( a, b, c, d ) {
return ( a + b ) * ( c + d );
}
is incorrectly converted to
<?php
function foo($a, $b, $c, $d) {
return $a + $b * $c + $d; //should be ($a + $b) * ($c + $d)
}
the brackets are lost.
tested on http://endel.me/js2php/
Metadata
Metadata
Assignees
Labels
No labels