ReportErrorAtID exposes the issue reporter for the match compiler.
(id int64, message string, args ...any)
| 223 | |
| 224 | // ReportErrorAtID exposes the issue reporter for the match compiler. |
| 225 | func (mc *matchCompilerImpl) ReportErrorAtID(id int64, message string, args ...any) { |
| 226 | mc.iss.ReportErrorAtID(id, message, args...) |
| 227 | } |
| 228 | |
| 229 | // CompileMatchOutputFunc is a function that compiles the output of a match. |
| 230 | type CompileMatchOutputFunc func(mc MatchCompiler, m *Match, p *Policy) (*cel.Ast, *cel.Issues) |
nothing calls this directly
no test coverage detected