1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
// Copyright 2015 Google Inc. All Rights Reserved.
// This file is available under the Apache license.
package errors
import (
"fmt"
"strings"
"github.com/jaqx0r/mtail/internal/runtime/compiler/position"
"github.com/pkg/errors"
)
type compileError struct {
pos position.Position
msg string
}
func (e compileError) Error() string {
return e.pos.String() + ": " + e.msg
}
// ErrorList contains a list of compile errors.
type ErrorList []*compileError
// Add appends an error at a position to the list of errors.
func (p *ErrorList) Add(pos *position.Position, msg string) {
if pos == nil {
pos = &position.Position{"", -1, -1, -1}
}
*p = append(*p, &compileError{*pos, msg})
}
// Append puts an ErrorList on the end of this ErrorList.
func (p *ErrorList) Append(l ErrorList) {
*p = append(*p, l...)
}
// ErrorList implements the error interface.
func (p *ErrorList) Error() string {
switch len(*p) {
case 0:
return "no errors"
case 1:
return (*p)[0].Error()
}
var r strings.Builder
for _, e := range *p {
r.WriteString(fmt.Sprintf("%s\n", e))
}
return r.String()[:r.Len()-1]
}
func Errorf(format string, args ...interface{}) error {
return errors.Errorf(format, args...)
}
|