aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/modern-go/reflect2/safe_struct.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/modern-go/reflect2/safe_struct.go')
-rw-r--r--vendor/github.com/modern-go/reflect2/safe_struct.go29
1 files changed, 29 insertions, 0 deletions
diff --git a/vendor/github.com/modern-go/reflect2/safe_struct.go b/vendor/github.com/modern-go/reflect2/safe_struct.go
new file mode 100644
index 0000000..e5fb9b3
--- /dev/null
+++ b/vendor/github.com/modern-go/reflect2/safe_struct.go
@@ -0,0 +1,29 @@
1package reflect2
2
3type safeStructType struct {
4 safeType
5}
6
7func (type2 *safeStructType) FieldByName(name string) StructField {
8 field, found := type2.Type.FieldByName(name)
9 if !found {
10 panic("field " + name + " not found")
11 }
12 return &safeField{StructField: field}
13}
14
15func (type2 *safeStructType) Field(i int) StructField {
16 return &safeField{StructField: type2.Type.Field(i)}
17}
18
19func (type2 *safeStructType) FieldByIndex(index []int) StructField {
20 return &safeField{StructField: type2.Type.FieldByIndex(index)}
21}
22
23func (type2 *safeStructType) FieldByNameFunc(match func(string) bool) StructField {
24 field, found := type2.Type.FieldByNameFunc(match)
25 if !found {
26 panic("field match condition not found in " + type2.Type.String())
27 }
28 return &safeField{StructField: field}
29}