terraform-provider-google/vendor/github.com/mitchellh/reflectwalk/location.go
2017-06-06 11:58:56 -04:00

18 lines
195 B
Go

package reflectwalk
//go:generate stringer -type=Location location.go
type Location uint
const (
None Location = iota
Map
MapKey
MapValue
Slice
SliceElem
Struct
StructField
WalkLoc
)