mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 22:34:55 +00: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
|
||
|
)
|