mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 10:03:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			213 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			20 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
 | 
						|
)
 |