forked from expr-lang/expr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.go
More file actions
84 lines (73 loc) · 1.44 KB
/
error.go
File metadata and controls
84 lines (73 loc) · 1.44 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package file
import (
"fmt"
"strings"
)
type Error struct {
Location
Line int `json:"line"`
Column int `json:"column"`
Message string `json:"message"`
Snippet string `json:"snippet"`
Prev error `json:"prev"`
}
func (e *Error) Error() string {
return e.format()
}
var tabReplacer = strings.NewReplacer("\t", " ")
func (e *Error) Bind(source Source) *Error {
src := source.String()
var runeCount, lineStart int
e.Line = 1
e.Column = 0
for i, r := range src {
if runeCount == e.From {
break
}
if r == '\n' {
lineStart = i
e.Line++
e.Column = 0
}
runeCount++
e.Column++
}
lineEnd := lineStart + strings.IndexByte(src[lineStart:], '\n')
if lineEnd < lineStart {
lineEnd = len(src)
}
if lineStart == lineEnd {
return e
}
const prefix = "\n | "
line := src[lineStart:lineEnd]
snippet := new(strings.Builder)
snippet.Grow(2*len(prefix) + len(line) + e.Column + 1)
snippet.WriteString(prefix)
tabReplacer.WriteString(snippet, line)
snippet.WriteString(prefix)
for i := 0; i < e.Column; i++ {
snippet.WriteByte('.')
}
snippet.WriteByte('^')
e.Snippet = snippet.String()
return e
}
func (e *Error) Unwrap() error {
return e.Prev
}
func (e *Error) Wrap(err error) {
e.Prev = err
}
func (e *Error) format() string {
if e.Snippet == "" {
return e.Message
}
return fmt.Sprintf(
"%s (%d:%d)%s",
e.Message,
e.Line,
e.Column+1, // add one to the 0-based column for display
e.Snippet,
)
}