ReportErrorString records an error at a source location.
(l Location, message string)
| 48 | |
| 49 | // ReportErrorString records an error at a source location. |
| 50 | func (e *Errors) ReportErrorString(l Location, message string) { |
| 51 | e.ReportErrorAtID(0, l, "%s", message) |
| 52 | } |
| 53 | |
| 54 | // ReportErrorAtID records an error at a source location and expression id. |
| 55 | func (e *Errors) ReportErrorAtID(id int64, l Location, format string, args ...any) { |
no test coverage detected