| bytes | Package bytes implements functions for the manipulation of byte slices. |
| embed | Package embed provides access to files embedded in the running Go program. |
| encoding/json | Package json implements encoding and decoding of JSON as defined in RFC 7159. |
| flag | Package flag implements command-line flag parsing. |
| fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
| go/ast | Package ast declares the types used to represent syntax trees for Go packages. |
| go/token | Package token defines constants representing the lexical tokens of the Go programming language and basic operations on tokens (printing, predicates). |
| go/types | Package types declares the data types and implements the algorithms for type-checking of Go packages. |
| golang.org/x/telemetry | |
| golang.org/x/tools/go/callgraph | Package callgraph defines the call graph and various algorithms and utilities to operate on it. |
| golang.org/x/tools/go/callgraph/rta | This package provides Rapid Type Analysis (RTA) for Go, a fast algorithm for call graph construction and discovery of reachable code (and hence dead code) and runtime types. |
| golang.org/x/tools/go/packages | Package packages loads Go packages for inspection and analysis. |
| golang.org/x/tools/go/ssa | Package ssa defines a representation of the elements of Go programs (packages, types, functions, variables and constants) using a static single-assignment (SSA) form intermediate representation (IR) for the bodies of functions. |
| golang.org/x/tools/go/ssa/ssautil | |
| golang.org/x/tools/internal/typesinternal | Package typesinternal provides helpful operators for dealing with go/types: |
| io | Package io provides basic interfaces to I/O primitives. |
| log | Package log implements a simple logging package. |
| maps | Package maps defines various functions useful with maps of any type. |
| os | Package os provides a platform-independent interface to operating system functionality. |
| path/filepath | Package filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths. |
| regexp | Package regexp implements regular expression search. |
| runtime | Package runtime contains operations that interact with Go's runtime system, such as functions to control goroutines. |
| runtime/pprof | Package pprof writes runtime profiling data in the format expected by the pprof visualization tool. |
| slices | Package slices defines various functions useful with slices of any type. |
| sort | Package sort provides primitives for sorting slices and user-defined collections. |
| strings | Package strings implements simple functions to manipulate UTF-8 encoded strings. |
| text/template | Package template implements data-driven templates for generating textual output. |