type golang.org/x/tools/internal/gocommand.Runner

17 uses

	golang.org/x/tools/internal/gocommand (current package)
		invoke.go#L34: type Runner struct {
		invoke.go#L48: func (runner *Runner) initialize() {
		invoke.go#L71: func (runner *Runner) Run(ctx context.Context, inv Invocation) (*bytes.Buffer, error) {
		invoke.go#L81: func (runner *Runner) RunPiped(ctx context.Context, inv Invocation, stdout, stderr io.Writer) error {
		invoke.go#L92: func (runner *Runner) RunRaw(ctx context.Context, inv Invocation) (*bytes.Buffer, *bytes.Buffer, error, error) {
		invoke.go#L115: func (runner *Runner) runConcurrent(ctx context.Context, inv Invocation) (*bytes.Buffer, *bytes.Buffer, error, error) {
		invoke.go#L130: func (runner *Runner) runPiped(ctx context.Context, inv Invocation, stdout, stderr io.Writer) (error, error) {
		vendor.go#L41: func VendorEnabled(ctx context.Context, inv Invocation, r *Runner) (bool, *ModuleJSON, error) {
		vendor.go#L83: func getMainModuleAnd114(ctx context.Context, inv Invocation, r *Runner) (*ModuleJSON, bool, error) {
		vendor.go#L115: func WorkspaceVendorEnabled(ctx context.Context, inv Invocation, r *Runner) (bool, []*ModuleJSON, error) {
		vendor.go#L135: func getWorkspaceMainModules(ctx context.Context, inv Invocation, r *Runner) ([]*ModuleJSON, error) {
		version.go#L23: func GoVersion(ctx context.Context, inv Invocation, r *Runner) (int, error) {
		version.go#L52: func GoVersionOutput(ctx context.Context, inv Invocation, r *Runner) (string, error) {

	golang.org/x/tools/go/internal/packagesdriver
		sizes.go#L17: func GetSizesForArgsGolist(ctx context.Context, inv gocommand.Invocation, gocmdRunner *gocommand.Runner) (string, string, error) {

	golang.org/x/tools/go/packages
		golist.go#L857: 		gocmdRunner = &gocommand.Runner{}
		packages.go#L175: 	gocmdRunner *gocommand.Runner
		packages.go#L743: 		ld.Config.gocmdRunner = &gocommand.Runner{}