aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/mitchellh/reflectwalk/location.go
blob: 7c59d764c2a3ccb466948b2ad5f6de96c48ec335 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package reflectwalk

//go:generate stringer -type=Location location.go

type Location uint

const (
	None Location = iota
	Map
	MapKey
	MapValue
	Slice
	SliceElem
	Struct
	StructField
	WalkLoc
)