open-nomad/vendor/github.com/mitchellh/reflectwalk/location.go

20 lines
213 B
Go
Raw Normal View History

2016-02-12 18:02:16 +00:00
package reflectwalk
//go:generate stringer -type=Location location.go
type Location uint
const (
None Location = iota
Map
MapKey
MapValue
Slice
SliceElem
2017-07-18 00:53:21 +00:00
Array
ArrayElem
2016-02-12 18:02:16 +00:00
Struct
StructField
WalkLoc
)