packer-cn/vendor/github.com/mitchellh/reflectwalk/location.go

18 lines
195 B
Go
Raw Normal View History

2016-02-04 20:33:36 -05:00
package reflectwalk
//go:generate stringer -type=Location location.go
type Location uint
const (
None Location = iota
Map
MapKey
MapValue
Slice
SliceElem
Struct
StructField
WalkLoc
)