commit | 8a1a3df092004fb36c16c80f6abee1271c2066bf | [log] [tgz] |
---|---|---|
author | Rebecca Stambler <rstambler@golang.org> | Tue Jan 07 18:00:43 2020 -0500 |
committer | Rebecca Stambler <rstambler@golang.org> | Thu Jan 09 21:49:23 2020 +0000 |
tree | 7308e69a9e1ae42ab5cd38850de75cdd02777c65 | |
parent | 700ee2612ca15baacbd7ae25d0462c496ff63511 [diff] |
internal/lsp: allow diagnostics to be computed per-file or per-package This change splits source.Diagnostics into source.FileDiagnostics and source.PackageDiagnostics. There isn't much difference in functionality, but this just simplifies the process of getting diagnostics if you only have a PackageHandle. Change-Id: I62c0de8778065a4c46cc5672e2834ce5c63fe012 Reviewed-on: https://go-review.googlesource.com/c/tools/+/213644 Run-TryBot: Rebecca Stambler <rstambler@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.