20 lines
213 B
Go
Raw Normal View History

package reflectwalk
//go:generate stringer -type=Location location.go
type Location uint
const (
None Location = iota
Map
MapKey
MapValue
Slice
SliceElem
2018-06-21 10:49:35 -04:00
Array
ArrayElem
Struct
StructField
WalkLoc
)