(funcName string, argNum int, check argChecker)
| 269 | type argChecker func(env *Env, call, arg ast.Expr) error |
| 270 | |
| 271 | func newFormatValidator(funcName string, argNum int, check argChecker) formatValidator { |
| 272 | return formatValidator{ |
| 273 | funcName: funcName, |
| 274 | check: check, |
| 275 | argNum: argNum, |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | type formatValidator struct { |
| 280 | funcName string |
no outgoing calls
no test coverage detected