(id int64, badType string)
| 629 | } |
| 630 | |
| 631 | func stringFormatErrorV2(id int64, badType string) error { |
| 632 | return newFormatError(id, "string clause can only be used on strings, bools, bytes, ints, doubles, maps, lists, types, durations, and timestamps, was given %s", badType) |
| 633 | } |
| 634 | |
| 635 | // formatStringInterpolatorV2 is an interface that allows user-defined behavior |
| 636 | // for formatting clause implementations, as well as argument retrieval. |
no test coverage detected