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/build | Package build gathers information about Go packages. |
go/types | Package types declares the data types and implements the algorithms for type-checking of Go packages. |
golang.org/x/tools/go/buildutil | Package buildutil provides utilities related to the go/build package in the standard library. |
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/interp | Package ssa/interp defines an interpreter for the SSA representation of Go programs. |
golang.org/x/tools/go/ssa/ssautil | |
os | Package os provides a platform-independent interface to operating system functionality. |
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. |