ReportError records an error at a source location.
(l Location, format string, args ...any)
| 43 | |
| 44 | // ReportError records an error at a source location. |
| 45 | func (e *Errors) ReportError(l Location, format string, args ...any) { |
| 46 | e.ReportErrorAtID(0, l, format, args...) |
| 47 | } |
| 48 | |
| 49 | // ReportErrorString records an error at a source location. |
| 50 | func (e *Errors) ReportErrorString(l Location, message string) { |