Removed Location's dependency on Error

This commit is contained in:
Sasha Koshka 2022-08-18 00:50:57 -04:00
parent cce841f48e
commit abc6e44fb2
1 changed files with 0 additions and 5 deletions

View File

@ -9,11 +9,6 @@ type Location struct {
width int
}
// NewError creates a new error at this location.
func (location Location) NewError (message string, kind ErrorKind) (err Error) {
return NewError(location, message, kind)
}
// File returns the file the location is in
func (location Location) File () (file *File) {
return location.file