File: location.go

package info (click to toggle)
golang-github-mitchellh-reflectwalk 0.0~git20170726.63d60e9-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, buster-backports
  • size: 92 kB
  • sloc: makefile: 3
file content (19 lines) | stat: -rw-r--r-- 213 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
)