- Notifications
You must be signed in to change notification settings - Fork2.3k
golang/tools
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This repository provides thegolang.org/x/tools module, comprisingvarious 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 thegolang.org/x/tools/goplsmodule, whose root package is a language-server protocol (LSP) server for Go.An LSP server analyses the source code of a project andresponds to requests from a wide range of editors such as VSCode andVim, allowing them to support IDE-like functionality.
Selected commands:
cmd/goimportsformats a Go program likego fmtand additionallyinserts import statements for any packages required by the fileafter it is edited.cmd/callgraphprints the call graph of a Go program.cmd/digraphis a utility for manipulating directed graphs in textual notation.cmd/stringergenerates declarations (including aStringmethod) for "enum" types.cmd/toolstashis 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@latestSelected packages:
go/ssaprovides a static single-assignment form (SSA) intermediaterepresentation (IR) for Go programs, similar to a typical compiler,for use by analysis tools.go/packagesprovides a simple interface for loading, parsing, andtype checking a complete Go program from source code.go/analysisprovides a framework for modular static analysis of Goprograms.go/callgraphprovides call graphs of Go programs using a varietyof algorithms with different trade-offs.go/ast/inspectorprovides an optimized means of traversing a Goparse tree for use in analysis tools.go/cfgprovides a simple control-flow graph (CFG) for a Go function.go/gcexportdataandgo/gccgoexportdataread and write the binaryfiles containing type information used by the standard andgccgocompilers.go/types/objectpathprovides a stable naming scheme for namedentities ("objects") in thego/typesAPI.
Numerous other packages provide more esoteric functionality.
This repository uses Gerrit for code changes.To learn how to submit changes, seehttps://go.dev/doc/contribute.
The git repository ishttps://go.googlesource.com/tools.
The main issue tracker for the tools repository is located athttps://go.dev/issues. Prefix your issue with "x/tools/(yoursubdir):" in the subject line, so it is easy to find.
This repository usesprettier to format JS and CSS files.
The version ofprettier used is 1.18.2.
It is encouraged that all JS and CSS code be run through this before submittinga change. However, it is not a strict requirement enforced by CI.
About
[mirror] Go Tools
Resources
License
Contributing
Uh oh!
There was an error while loading.Please reload this page.