NotNode represents a NOT operation on a condition
| 66 | |
| 67 | // NotNode represents a NOT operation on a condition |
| 68 | type NotNode struct { |
| 69 | Child ConditionNode |
| 70 | } |
| 71 | |
| 72 | func (n *NotNode) Render() string { |
| 73 | // For simple function calls like cancelled(), render as !cancelled() instead of !(cancelled()) |
nothing calls this directly
no outgoing calls
no test coverage detected