Checks for code with confusing && and || operator precedence
if (a && b || c) // bad if (a && (b || c)) // good
Visits a unittest.
The file name
See Implementation
Checks for code with confusing && and || operator precedence