(funcName string, argNum int, check argChecker)
| 263 | type argChecker func(env *Env, call, arg ast.Expr) error |
| 264 | |
| 265 | func newFormatValidator(funcName string, argNum int, check argChecker) formatValidator { |
| 266 | return formatValidator{ |
| 267 | funcName: funcName, |
| 268 | check: check, |
| 269 | argNum: argNum, |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | type formatValidator struct { |
| 274 | funcName string |
no outgoing calls
no test coverage detected