mirror of
https://github.com/golang/go
synced 2024-11-05 15:06:09 -07:00
2ee2e4c56a
Updates golang/go#16623. Updates golang/go#39072. Change-Id: I6612cdac14faa5ad724ceb805e1d6c823b4046ff Reviewed-on: https://go-review.googlesource.com/c/tools/+/237423 Run-TryBot: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Heschi Kreinick <heschi@google.com>
15 lines
390 B
Go
15 lines
390 B
Go
// 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
|