mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	* change to new code location * vendor * tagged version v0.2.0 * gitea-vet v0.2.1 Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			15 lines
		
	
	
		
			390 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			390 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
// Package packagesinternal exposes internal-only fields from go/packages.
 | 
						|
package packagesinternal
 | 
						|
 | 
						|
import (
 | 
						|
	"golang.org/x/tools/internal/gocommand"
 | 
						|
)
 | 
						|
 | 
						|
var GetForTest = func(p interface{}) string { return "" }
 | 
						|
 | 
						|
var GetGoCmdRunner = func(config interface{}) *gocommand.Runner { return nil }
 | 
						|
 | 
						|
var SetGoCmdRunner = func(config interface{}, runner *gocommand.Runner) {}
 | 
						|
 | 
						|
var TypecheckCgo int
 |