bufio | Package bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O. |
bytes | Package bytes implements functions for the manipulation of byte slices. |
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/tools/go/analysis | Package analysis defines the interface between a modular static analysis and an analysis driver program. |
honnef.co/go/tools/functions | |
honnef.co/go/tools/internal/passes/buildir | Package buildir defines an Analyzer that constructs the IR of an error-free package and returns the set of all functions within it. |
honnef.co/go/tools/ir | |
io | Package io provides basic interfaces to I/O primitives. |
os | Package os provides a platform-independent interface to operating system functionality. |
reflect | Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. |
strings | Package strings implements simple functions to manipulate UTF-8 encoded strings. |