(mc MatchCompiler, m *Match, p *Policy)
| 432 | } |
| 433 | |
| 434 | func defaultCompileMatchOutput(mc MatchCompiler, m *Match, p *Policy) (*cel.Ast, *cel.Issues) { |
| 435 | outSrc := mc.RelSource(m.Output()) |
| 436 | return mc.Env().CompileSource(outSrc) |
| 437 | } |
| 438 | |
| 439 | func (c *compiler) checkMatchOutputTypesAgree(rule *CompiledRule, iss *cel.Issues) { |
| 440 | var outputType *cel.Type |
nothing calls this directly
no test coverage detected