summaryrefslogtreecommitdiff
path: root/vendor/github.com/mitchellh/reflectwalk/location.go
blob: 6a7f176117f914a2a9e28baca5a67d2b565347ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
)