I've got a "pre to 19.1" conversion program that fixes most of the "grunt" types of code changes to avoid compiler errors. With the new stuff being added to the language, do we want to run everything through equations, ie: ()s.

Code:
if itest ;
  do something

if (itest) ;
  do something

move itest to there
move (itest) to there
Is the second version prefered in 19.1?