1
0
mirror of https://github.com/rancher/rke.git synced 2025-06-19 20:23:00 +00:00
rke/vendor/github.com/mitchellh/reflectwalk/location.go
2019-11-14 10:54:00 -08:00

20 lines
213 B
Go

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
)