blob: 6a7f176117f914a2a9e28baca5a67d2b565347ec [file] [log] [blame]
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
)