ReportErrorAtID exposes the issue reporter for the match compiler.
(id int64, message string, args ...any)
| 237 | |
| 238 | // ReportErrorAtID exposes the issue reporter for the match compiler. |
| 239 | func (mc *matchCompilerImpl) ReportErrorAtID(id int64, message string, args ...any) { |
| 240 | mc.iss.ReportErrorAtID(id, message, args...) |
| 241 | } |
| 242 | |
| 243 | // CompileMatchOutputFunc is a function that compiles the output of a match. |
| 244 | type CompileMatchOutputFunc func(mc MatchCompiler, m *Match, p *Policy) (*cel.Ast, *cel.Issues) |
nothing calls this directly
no test coverage detected