]> Cypherpunks repositories - gostls13.git/commit
cmd/go: split out cmd/go/internal/load
authorRuss Cox <rsc@golang.org>
Fri, 13 Jan 2017 21:24:19 +0000 (16:24 -0500)
committerRuss Cox <rsc@golang.org>
Fri, 3 Feb 2017 20:31:23 +0000 (20:31 +0000)
commiteb93b20c2ebb9cba89657437615957d5f45b5f6c
treefed8e5b9e541a0cd1dc62eead06b4e710ae08426
parent461c3e52633638ee6e385a6fed3d78dc0a02f210
cmd/go: split out cmd/go/internal/load

This is one CL in a long sequence of changes to break up the
go command from one package into a plausible group of packages.

This sequence is concerned only with moving code, not changing
or cleaning up code. There will still be more cleanup after this sequence.

The entire sequence will be submitted together: it is not a goal
for the tree to build at every step.

For #18653.

Change-Id: Ic802483e50598def638f1e2e706d5fdf7822d32d
Reviewed-on: https://go-review.googlesource.com/36196
Reviewed-by: David Crawshaw <crawshaw@golang.org>
24 files changed:
src/cmd/go/bug.go
src/cmd/go/build.go
src/cmd/go/clean.go
src/cmd/go/doc.go
src/cmd/go/env.go
src/cmd/go/fix.go
src/cmd/go/fmt.go
src/cmd/go/generate.go
src/cmd/go/get.go
src/cmd/go/internal/base/base.go
src/cmd/go/internal/cfg/cfg.go
src/cmd/go/internal/load/match_test.go [moved from src/cmd/go/match_test.go with 99% similarity]
src/cmd/go/internal/load/path.go [new file with mode: 0644]
src/cmd/go/internal/load/pkg.go [moved from src/cmd/go/pkg.go with 83% similarity]
src/cmd/go/internal/load/search.go [new file with mode: 0644]
src/cmd/go/internal/load/testgo.go [moved from src/cmd/go/testgo.go with 97% similarity]
src/cmd/go/list.go
src/cmd/go/main.go
src/cmd/go/pkg_test.go
src/cmd/go/run.go
src/cmd/go/test.go
src/cmd/go/testflag.go
src/cmd/go/tool.go
src/cmd/go/vet.go