mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00: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
 |