...

Source file src/github.com/mitchellh/reflectwalk/location.go

Documentation: github.com/mitchellh/reflectwalk

     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  )
    20  

View as plain text