Error returns the string of the first error in the list of errors.
()
| 50 | |
| 51 | // Error returns the string of the first error in the list of errors. |
| 52 | func (e *Error) Error() string { |
| 53 | return e.Pos.String() + ": " + e.Err.Error() |
| 54 | } |
| 55 | |
| 56 | // errorAt returns an error value for the currently interpreted package at the |
| 57 | // location of the instruction. The location information may not be complete as |