(env *EvaluationEnvironment, config Config)
| 72 | } |
| 73 | |
| 74 | func NewInterpeter(env *EvaluationEnvironment, config Config) Interpreter { |
| 75 | return &interperterImpl{ |
| 76 | env: env, |
| 77 | config: config, |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | func (impl *interperterImpl) Evaluate(input string, defaultStatusCheck DefaultStatusCheck) (interface{}, error) { |
| 82 | input = strings.TrimPrefix(input, "${{") |
no outgoing calls
searching dependent graphs…