...
Package findcall
Package findcall defines an Analyzer that serves as a trivial
example and test of the Analysis API. It reports a diagnostic for
every call to a function or method of the name specified by its
-name flag. It also exports a fact for each declaration that
matches the name, plus a package-level fact if the package contained
one or more such declarations.
Constants
const Doc = `find calls to a particular function
The findcall analysis reports calls to functions or methods
of a particular name.`
Variables
var Analyzer = &analysis.Analyzer{
Name: "findcall",
Doc: Doc,
URL: "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/findcall",
Run: run,
RunDespiteErrors: true,
FactTypes: []analysis.Fact{new(foundFact)},
}
Subdirectories
Name |
Synopsis |
.. |
cmd
|
|
findcall
|
The findcall command runs the findcall analyzer.
|