Codebase list golang-github-mitchellh-reflectwalk / 04e854dc-8597-4746-9be6-83af643dc8aa/upstream location.go
04e854dc-8597-4746-9be6-83af643dc8aa/upstream

Tree @04e854dc-8597-4746-9be6-83af643dc8aa/upstream (Download .tar.gz)

location.go @04e854dc-8597-4746-9be6-83af643dc8aa/upstreamraw · history · blame

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
)