mirror of
https://github.com/hashicorp/vault.git
synced 2025-09-10 08:21:09 +02:00
This also removes `godep` calls from make scripts. Of note is that currently `./...` checking in acceptance tests is disabled.
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
|
|
)
|