Codebase list golang-github-mitchellh-reflectwalk / debian/0.0_git20161004.0.9ad27c4-1 location.go
debian/0.0_git20161004.0.9ad27c4-1

Tree @debian/0.0_git20161004.0.9ad27c4-1 (Download .tar.gz)

location.go @debian/0.0_git20161004.0.9ad27c4-1raw · history · blame

package reflectwalk

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

type Location uint

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