(name string, argCount int)
| 355 | } |
| 356 | |
| 357 | func overlappingMacroError(name string, argCount int) errorMsg { |
| 358 | return errorMsg(fmt.Sprintf( |
| 359 | "overlapping macro for name '%s' with %d args", name, argCount)) |
| 360 | } |
| 361 | |
| 362 | func formatError(errMsgs []errorMsg) error { |
| 363 | errStrs := make([]string, 0) |
no test coverage detected