ReportErrorAtID reports an error message with an optional set of formatting arguments. The source metadata for the expression at `id`, if present, is attached to the error report. To ensure that source metadata is attached to error reports, use NewIssuesWithSourceInfo.
(id int64, message string, args ...any)
| 1069 | // The source metadata for the expression at `id`, if present, is attached to the error report. |
| 1070 | // To ensure that source metadata is attached to error reports, use NewIssuesWithSourceInfo. |
| 1071 | func (i *Issues) ReportErrorAtID(id int64, message string, args ...any) { |
| 1072 | i.errs.ReportErrorAtID(id, i.info.GetStartLocation(id), message, args...) |
| 1073 | } |
| 1074 | |
| 1075 | // getStdEnv lazy initializes the CEL standard environment. |
| 1076 | func getStdEnv() (*Env, error) { |
nothing calls this directly
no test coverage detected