AndNode represents an AND operation between two conditions
| 25 | |
| 26 | // AndNode represents an AND operation between two conditions |
| 27 | type AndNode struct { |
| 28 | Left, Right ConditionNode |
| 29 | } |
| 30 | |
| 31 | // needsParensAsAndOperand returns true when child must be wrapped in parentheses |
| 32 | // when it appears as an operand of an && expression. Or-level nodes and opaque |
nothing calls this directly
no outgoing calls
no test coverage detected