(t testing.TB, envOpts []cel.EnvOption, compilerOpts []CompilerOption)
| 306 | } |
| 307 | |
| 308 | func (r *runner) compile(t testing.TB, envOpts []cel.EnvOption, compilerOpts []CompilerOption) (*cel.Env, *cel.Ast, *cel.Issues) { |
| 309 | policy := parsePolicy(t, r.name, r.parseOpts) |
| 310 | return compile(t, r.name, policy, envOpts, compilerOpts) |
| 311 | } |
| 312 | |
| 313 | func (r *runner) compileRule(t testing.TB) (*cel.Env, *CompiledRule, *cel.Issues) { |
| 314 | t.Helper() |
no test coverage detected