OrNode represents an OR operation between two conditions
| 55 | |
| 56 | // OrNode represents an OR operation between two conditions |
| 57 | type OrNode struct { |
| 58 | Left, Right ConditionNode |
| 59 | } |
| 60 | |
| 61 | // || has the lowest precedence of any boolean operator, so no child of an OR |
| 62 | // expression ever needs explicit parentheses to preserve evaluation order. |
nothing calls this directly
no outgoing calls
no test coverage detected