Searched defs:formatState (Results 1 – 1 of 1) sorted by relevance
521 type formatState struct { struct522 verb rune // the format verb: 'd' for "%d"523 format string // the full format directive from % through verb, "%.3d".524 name string // Printf, Sprintf etc.525 flags []byte // the list of # + etc.526 …]int // the successive argument numbers that are consumed, adjusted to refer to actual arg in call527 firstArg int // Index of first argument after the format in the Printf call.529 pass *analysis.Pass530 call *ast.CallExpr531 argNum int // Which argument we're expecting to format now.[all …]