ConditionNode represents a node in a condition expression tree
| 10 | |
| 11 | // ConditionNode represents a node in a condition expression tree |
| 12 | type ConditionNode interface { |
| 13 | Render() string |
| 14 | } |
| 15 | |
| 16 | // ExpressionNode represents a leaf expression |
| 17 | type ExpressionNode struct { |
no outgoing calls
no test coverage detected