Codebase list golang-github-mitchellh-reflectwalk / 36fea59f-ec57-4513-a639-21571bdc9746/upstream location.go
36fea59f-ec57-4513-a639-21571bdc9746/upstream

Tree @36fea59f-ec57-4513-a639-21571bdc9746/upstream (Download .tar.gz)

location.go @36fea59f-ec57-4513-a639-21571bdc9746/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
)