blob: ad506757425b474c003e61188d8dcde02cab0c1e (
plain)
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
|
//go:build errcaller
// +build errcaller
package errors
import (
_ "unsafe"
)
// IncludesCaller is a compile-time flag used to indicate whether
// to include calling function prefix on error wrap / creation.
const IncludesCaller = true
type caller string
// set will set the actual caller value
// only when correct build flag is set.
func (c *caller) set(v string) {
*c = caller(v)
}
// value returns the actual caller value
// only when correct build flag is set
func (c caller) value() string {
return string(c)
}
|