]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - vendor/github.com/mitchellh/reflectwalk/location.go
Merge branch 'fix_read_test' of github.com:alexandreFre/terraform-provider-statuscake
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / mitchellh / reflectwalk / location.go
1 package reflectwalk
2
3 //go:generate stringer -type=Location location.go
4
5 type Location uint
6
7 const (
8 None Location = iota
9 Map
10 MapKey
11 MapValue
12 Slice
13 SliceElem
14 Array
15 ArrayElem
16 Struct
17 StructField
18 WalkLoc
19 )