(mc MatchCompiler, m *Match, p *Policy)
| 413 | } |
| 414 | |
| 415 | func defaultCompileMatchOutput(mc MatchCompiler, m *Match, p *Policy) (*cel.Ast, *cel.Issues) { |
| 416 | outSrc := mc.RelSource(m.Output()) |
| 417 | return mc.Env().CompileSource(outSrc) |
| 418 | } |
| 419 | |
| 420 | func (c *compiler) checkMatchOutputTypesAgree(rule *CompiledRule, iss *cel.Issues) { |
| 421 | var outputType *cel.Type |
nothing calls this directly
no test coverage detected