Update vendor/

This commit is contained in:
Daniele Rondina
2020-10-10 19:59:40 +02:00
parent 3261b2af98
commit 51f32c0614
1090 changed files with 466498 additions and 1050 deletions

19
vendor/github.com/mitchellh/reflectwalk/location.go generated vendored Normal file
View File

@@ -0,0 +1,19 @@
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
)