ExpressionNode represents a leaf expression
| 15 | |
| 16 | // ExpressionNode represents a leaf expression |
| 17 | type ExpressionNode struct { |
| 18 | Expression string |
| 19 | Description string // Optional comment/description for the expression |
| 20 | } |
| 21 | |
| 22 | func (e *ExpressionNode) Render() string { |
| 23 | return e.Expression |
nothing calls this directly
no outgoing calls
no test coverage detected