mirror of
https://github.com/kemko/nomad.git
synced 2026-01-08 11:25:41 +03:00
18 lines
195 B
Go
18 lines
195 B
Go
package reflectwalk
|
|
|
|
//go:generate stringer -type=Location location.go
|
|
|
|
type Location uint
|
|
|
|
const (
|
|
None Location = iota
|
|
Map
|
|
MapKey
|
|
MapValue
|
|
Slice
|
|
SliceElem
|
|
Struct
|
|
StructField
|
|
WalkLoc
|
|
)
|