Imports of deadcode command

PathSynopsis
bytesPackage bytes implements functions for the manipulation of byte slices.
embedPackage embed provides access to files embedded in the running Go program.
encoding/jsonPackage json implements encoding and decoding of JSON as defined in RFC 7159.
flagPackage flag implements command-line flag parsing.
fmtPackage fmt implements formatted I/O with functions analogous to C's printf and scanf.
go/astPackage ast declares the types used to represent syntax trees for Go packages.
go/tokenPackage token defines constants representing the lexical tokens of the Go programming language and basic operations on tokens (printing, predicates).
go/typesPackage types declares the data types and implements the algorithms for type-checking of Go packages.
golang.org/x/telemetry
golang.org/x/tools/go/callgraphPackage callgraph defines the call graph and various algorithms and utilities to operate on it.
golang.org/x/tools/go/callgraph/rtaThis 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/packagesPackage packages loads Go packages for inspection and analysis.
golang.org/x/tools/go/ssaPackage 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/typesinternalPackage typesinternal provides access to internal go/types APIs that are not yet exported.
ioPackage io provides basic interfaces to I/O primitives.
logPackage log implements a simple logging package.
mapsPackage maps defines various functions useful with maps of any type.
osPackage os provides a platform-independent interface to operating system functionality.
path/filepathPackage filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths.
regexpPackage regexp implements regular expression search.
runtimePackage runtime contains operations that interact with Go's runtime system, such as functions to control goroutines.
runtime/pprofPackage pprof writes runtime profiling data in the format expected by the pprof visualization tool.
slicesPackage slices defines various functions useful with slices of any type.
sortPackage sort provides primitives for sorting slices and user-defined collections.
stringsPackage strings implements simple functions to manipulate UTF-8 encoded strings.
text/templatePackage template implements data-driven templates for generating textual output.