mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-01-03 21:39:36 -05:00
Updated via: go get github.com/hashicorp/terraform@sdk-v0.11-with-go-modules and go mod tidy
19 lines
213 B
Go
19 lines
213 B
Go
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
|
|
)
|