Codebase list golang-github-mitchellh-reflectwalk / lintian-fixes/main location.go
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

location.go @lintian-fixes/mainraw · 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
)