Documentation ¶ Index ¶ type Error func New() *Error func (e *Error) Add(filename, in string, loc int, err error) func (e *Error) Error() string func (e *Error) Errs() []*FileError type FileError func (e *FileError) Unwrap() error Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Error ¶ type Error struct { // contains filtered or unexported fields } func New ¶ func New() *Error func (*Error) Add ¶ func (e *Error) Add(filename, in string, loc int, err error) func (*Error) Error ¶ func (e *Error) Error() string func (*Error) Errs ¶ func (e *Error) Errs() []*FileError type FileError ¶ type FileError struct { Filename string Line int Column int Err error } func (*FileError) Unwrap ¶ func (e *FileError) Unwrap() error Source Files ¶ View all Source files error.go Click to show internal directories. Click to hide internal directories.