...

Package findcall

import "golang.org/x/tools/go/analysis/passes/findcall"
Overview
Index
Subdirectories

Overview ▾

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.

Index ▾

Package files

findcall.go

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,
    Run:              run,
    RunDespiteErrors: true,
    FactTypes:        []analysis.Fact{new(foundFact)},
}

Subdirectories

Name Synopsis
..
cmd
findcall The findcall command runs the findcall analyzer.