(b []byte, t reflect.Type)
| 987 | } |
| 988 | |
| 989 | func unmarshalTypeError(b []byte, t reflect.Type) error { |
| 990 | return &UnmarshalTypeError{Value: strconv.Quote(prefix(b)), Type: t} |
| 991 | } |
| 992 | |
| 993 | func unmarshalOverflow(b []byte, t reflect.Type) error { |
| 994 | return &UnmarshalTypeError{Value: "number " + prefix(b) + " overflows", Type: t} |
no test coverage detected
searching dependent graphs…