On 1/7/14 7:57 PM, Mark Finkle wrote:
Changing the line length policy would also avoid needing to wrap the multiple 
conditions onto separate lines.

I often wrap conditions just to make the more readable... Something like this:

  if ((x || y) && (z || w))

is a lot less readable for me than:

  if ((x || y) &&
      (z || w))

once the actual expressions around || get a bit longer, even if the former isn't hitting a line length limit.

-Boris

_______________________________________________
dev-platform mailing list
dev-platform@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-platform

Reply via email to