or2 builds a binary OR.
(left, right ConditionNode)
| 41 | |
| 42 | // or2 builds a binary OR. |
| 43 | func or2(left, right ConditionNode) *OrNode { return &OrNode{Left: left, Right: right} } |
| 44 | |
| 45 | // not1 builds a NOT node. |
| 46 | func not1(child ConditionNode) *NotNode { return &NotNode{Child: child} } |
no outgoing calls
no test coverage detected