location.go 213 B

12345678910111213141516171819
  1. package reflectwalk
  2. //go:generate stringer -type=Location location.go
  3. type Location uint
  4. const (
  5. None Location = iota
  6. Map
  7. MapKey
  8. MapValue
  9. Slice
  10. SliceElem
  11. Array
  12. ArrayElem
  13. Struct
  14. StructField
  15. WalkLoc
  16. )