package printf
import "golang.org/x/tools/go/analysis/passes/printf"
Package printf defines an Analyzer that checks consistency of Printf format strings and arguments.
Index ¶
Constants ¶
const Doc = "" /* 1034 byte string literal not displayed */
Variables ¶
var Analyzer = &analysis.Analyzer{ Name: "printf", Doc: Doc, Requires: []*analysis.Analyzer{inspect.Analyzer}, Run: run, ResultType: reflect.TypeOf((*Result)(nil)), FactTypes: []analysis.Fact{new(isWrapper)}, }
Types ¶
type Kind ¶
type Kind int
Kind is a kind of fmt function behavior.
const ( KindNone Kind = iota // not a fmt wrapper function KindPrint // function behaves like fmt.Print KindPrintf // function behaves like fmt.Printf KindErrorf // function behaves like fmt.Errorf )
func (Kind) String ¶
type Result ¶
type Result struct {
// contains filtered or unexported fields
}
Result is the printf analyzer's result type. Clients may query the result to learn whether a function behaves like fmt.Print or fmt.Printf.
func (*Result) Kind ¶
Kind reports whether fn behaves like fmt.Print or fmt.Printf.
Source Files ¶
printf.go types.go
- Version
- v0.3.0
- Published
- Nov 9, 2022
- Platform
- js/wasm
- Imports
- 18 packages
- Last checked
- 5 hours ago –
Tools for package owners.