commit | ad41b8f9cb51d7d62fb1ba993d61c38424c3794f | [log] [tgz] |
---|---|---|
author | Robert Findley <rfindley@google.com> | Mon Jun 27 15:42:34 2022 -0400 |
committer | Robert Findley <rfindley@google.com> | Mon Jun 27 15:43:00 2022 -0400 |
tree | 862f7b82e9a30aa60e3844986141fc38a00b8e22 | |
parent | 8d6927617258f51d0bebc6763a3b473d86c12420 [diff] | |
parent | 7404bd2ffdbcd390fb7b678d9a82da10fcbf48f9 [diff] |
all: merge master (7404bd2) into gopls-release-branch.0.9 Also add back the gopls/go.mod replace directive, so that tests pass. Merge List: + 2022-06-27 7404bd2ff all: gofmt some recent file changes + 2022-06-27 ec0831a43 refactor/satisfy: don't crash on type parameters + 2022-06-27 66bbba3d5 internal/memoize: remove unused Store.generations map + 2022-06-27 56116ec01 internal/memoize: don't destroy reference counted handles + 2022-06-25 10494c735 cmd/digraph: fix typo + 2022-06-24 93a03c2c5 internal/lsp/cache: invalidate reverse closure when loading packages + 2022-06-24 c36379be2 internal/lsp/cache: don't set new metadata if existing is valid + 2022-06-24 e1ec1f323 internal/imports: use a module resolver if GOWORK is set + 2022-06-24 60ca6366e internal/lsp: use camel case for inlay hint config fields + 2022-06-24 2994e9941 internal/persistent: change map to use set/get as method names + 2022-06-23 22ab2538d internal/lsp: rename viewport to range + 2022-06-23 3f5f798e2 internal/lsp/cache: use persistent map for storing files in the snapshot + 2022-06-22 f60e9bc48 internal/lsp/cache: use persistent map for storing gofiles in the snapshot + 2022-06-22 871637b64 internal/lsp: add settings for inlay hints and enable + 2022-06-22 a44cc76dc cmd/stringer: use explicit NeedX values instead of deprecated LoadSyntax + 2022-06-22 4e231cb6f internal/lsp/cache: don't prune unreachable metadata on clone + 2022-06-22 a2de63544 internal/lsp/cache: honor the go.work for computing workspace packages + 2022-06-22 cbb8e8e92 internal/span: optimise URI.Filename to avoid allocation + 2022-06-21 63d8015eb internal/lsp/cache: minor simplifications to Symbols + 2022-06-21 59bd4faed internal/lsp: find references to package + 2022-06-21 a1303c83f internal/lsp: remove tooltip from inlay hints + 2022-06-21 641b30b3f internal/lsp: add inlay hints for inferred type params + 2022-06-21 70ccf57e4 go/packages: fix loading single file when outside of GOPATH, module + 2022-06-17 381ac87aa internal/lsp/debug: reduce critical sections in trace + 2022-06-17 1e14d994d internal/lsp: add inlay hints for composite literal types + 2022-06-16 e9870152b internal/lsp/cache: symbolize in parallel + 2022-06-16 88325aa06 internal/memoize: add trace region for Handle.run Change-Id: I7501b2d80d2f6983f6b32ae5733444f0fec52fcc
This repository provides the golang.org/x/tools
module, comprising various tools and packages mostly for static analysis of Go programs, some of which are listed below. Use the “Go reference” link above for more information about any package.
It also contains the golang.org/x/tools/gopls
module, whose root package is a language-server protocol (LSP) server for Go. An LSP server analyses the source code of a project and responds to requests from a wide range of editors such as VSCode and Vim, allowing them to support IDE-like functionality.
Selected commands:
cmd/goimports
formats a Go program like go fmt
and additionally inserts import statements for any packages required by the file after it is edited.cmd/callgraph
prints the call graph of a Go program.cmd/digraph
is a utility for manipulating directed graphs in textual notation.cmd/stringer
generates declarations (including a String
method) for “enum” types.cmd/toolstash
is a utility to simplify working with multiple versions of the Go toolchain.These commands may be fetched with a command such as go install golang.org/x/tools/cmd/goimports@latest
.
Selected packages:
go/ssa
provides a static single-assignment form (SSA) intermediate representation (IR) for Go programs, similar to a typical compiler, for use by analysis tools.
go/packages
provides a simple interface for loading, parsing, and type checking a complete Go program from source code.
go/analysis
provides a framework for modular static analysis of Go programs.
go/callgraph
provides call graphs of Go programs using a variety of algorithms with different trade-offs.
go/ast/inspector
provides an optimized means of traversing a Go parse tree for use in analysis tools.
go/cfg
provides a simple control-flow graph (CFG) for a Go function.
go/expect
reads Go source files used as test inputs and interprets special comments within them as queries or assertions for testing.
go/gcexportdata
and go/gccgoexportdata
read and write the binary files containing type information used by the standard and gccgo
compilers.
go/types/objectpath
provides a stable naming scheme for named entities (“objects”) in the go/types
API.
Numerous other packages provide more esoteric functionality.
This repository uses Gerrit for code changes. To learn how to submit changes, 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.
This repository uses prettier to format JS and CSS files.
The version of prettier
used is 1.18.2.
It is encouraged that all JS and CSS code be run through this before submitting a change. However, it is not a strict requirement enforced by CI.