FunctionCallNode represents a function call expression like contains(array, value)
| 141 | |
| 142 | // FunctionCallNode represents a function call expression like contains(array, value) |
| 143 | type FunctionCallNode struct { |
| 144 | FunctionName string |
| 145 | Arguments []ConditionNode |
| 146 | } |
| 147 | |
| 148 | func (f *FunctionCallNode) Render() string { |
| 149 | var args []string |
nothing calls this directly
no outgoing calls
no test coverage detected