(b []byte, t reflect.Type)
| 991 | } |
| 992 | |
| 993 | func unmarshalOverflow(b []byte, t reflect.Type) error { |
| 994 | return &UnmarshalTypeError{Value: "number " + prefix(b) + " overflows", Type: t} |
| 995 | } |
| 996 | |
| 997 | func unexpectedEOF(b []byte) error { |
| 998 | return syntaxError(b, "unexpected end of JSON input") |
no test coverage detected
searching dependent graphs…