(l common.Location, message string)
| 33 | } |
| 34 | |
| 35 | func (e *parseErrors) syntaxError(l common.Location, message string) { |
| 36 | e.errs.ReportErrorAtID(0, l, "Syntax error: %s", message) |
| 37 | } |
| 38 | |
| 39 | func (e *parseErrors) reportErrorAtID(id int64, l common.Location, message string, args ...any) { |
| 40 | e.errs.ReportErrorAtID(id, l, message, args...) |
no test coverage detected