commit | ee1fc86af278c9cc9211217ad2c8ca8f529bcf63 | [log] [tgz] |
---|---|---|
author | Suzy Mueller <suzmue@golang.org> | Fri Jul 19 15:21:23 2019 -0400 |
committer | Suzy Mueller <suzmue@golang.org> | Thu Aug 29 20:29:44 2019 +0000 |
tree | 2dd91112711165ff36e80e0278d1f7bf5adc501b | |
parent | 857b4dd9f8ebfc4d4ef02f3027f2526810b0428c [diff] |
internal/imports: use cache of mod cache pkgs in find packages To check if a package is in a module that is in scope, the module resolver checks if there are Go files that would be included in a package in the directory matching the import path in scope. If this directory is in the module cache and we have saved it as a package, we know this directory contains Go files, and do not have to read the directory. Change-Id: I7c9365ce42c760ab95bc68b036212120895c89fb Reviewed-on: https://go-review.googlesource.com/c/tools/+/186922 Run-TryBot: Suzy Mueller <suzmue@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Heschi Kreinick <heschi@google.com>
This subrepository holds the source for various packages and tools that support the Go programming language.
Some of the tools, godoc
and vet
for example, are included in binary Go distributions.
Others, including the Go guru
and the test coverage tool, can be fetched with go get
.
Packages include a type-checker for Go and an implementation of the Static Single Assignment form (SSA) representation for Go programs.
The easiest way to install is to run go get -u golang.org/x/tools/...
. You can also manually git clone the repository to $GOPATH/src/golang.org/x/tools
.
This repository uses Gerrit for code changes. To learn how to submit changes to this repository, see https://golang.org/doc/contribute.html.
The main issue tracker for the tools repository is located at https://github.com/golang/go/issues. Prefix your issue with “x/tools/(your subdir):” in the subject line, so it is easy to find.