(name, expr string, parseOpts []ParserOption, opts ...cel.EnvOption)
| 291 | } |
| 292 | |
| 293 | func newRunner(name, expr string, parseOpts []ParserOption, opts ...cel.EnvOption) *runner { |
| 294 | return &runner{ |
| 295 | name: name, |
| 296 | parseOpts: parseOpts, |
| 297 | expr: expr} |
| 298 | } |
| 299 | |
| 300 | type runner struct { |
| 301 | name string |
no outgoing calls
no test coverage detected