(context.Context, string, exprparser.DefaultStatusCheck)
| 22 | // ExpressionEvaluator is the interface for evaluating expressions |
| 23 | type ExpressionEvaluator interface { |
| 24 | evaluate(context.Context, string, exprparser.DefaultStatusCheck) (interface{}, error) |
| 25 | EvaluateYamlNode(context.Context, *yaml.Node) error |
| 26 | Interpolate(context.Context, string) string |
| 27 | } |
no outgoing calls