summaryrefslogtreecommitdiff
path: root/vendor/github.com/mitchellh/reflectwalk/location.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mitchellh/reflectwalk/location.go')
-rw-r--r--vendor/github.com/mitchellh/reflectwalk/location.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/vendor/github.com/mitchellh/reflectwalk/location.go b/vendor/github.com/mitchellh/reflectwalk/location.go
deleted file mode 100644
index 6a7f17611..000000000
--- a/vendor/github.com/mitchellh/reflectwalk/location.go
+++ /dev/null
@@ -1,19 +0,0 @@
-package reflectwalk
-
-//go:generate stringer -type=Location location.go
-
-type Location uint
-
-const (
- None Location = iota
- Map
- MapKey
- MapValue
- Slice
- SliceElem
- Array
- ArrayElem
- Struct
- StructField
- WalkLoc
-)