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)
| 1123 | // The source metadata for the expression at `id`, if present, is attached to the error report. |
| 1124 | // To ensure that source metadata is attached to error reports, use NewIssuesWithSourceInfo. |
| 1125 | func (i *Issues) ReportErrorAtID(id int64, message string, args ...any) { |
| 1126 | i.errs.ReportErrorAtID(id, i.info.GetStartLocation(id), message, args...) |
| 1127 | } |
| 1128 | |
| 1129 | // getStdEnv lazy initializes the CEL standard environment. |
| 1130 | func getStdEnv() (*Env, error) { |
nothing calls this directly
no test coverage detected