(message string)
| 29 | } |
| 30 | |
| 31 | func (e *parseErrors) internalError(message string) { |
| 32 | e.errs.ReportErrorAtID(0, common.NoLocation, "%s", message) |
| 33 | } |
| 34 | |
| 35 | func (e *parseErrors) syntaxError(l common.Location, message string) { |
| 36 | e.errs.ReportErrorAtID(0, l, "Syntax error: %s", message) |