(v int8)
| 337 | func (enc *jsonEncoder) AppendInt32(v int32) { enc.AppendInt64(int64(v)) } |
| 338 | func (enc *jsonEncoder) AppendInt16(v int16) { enc.AppendInt64(int64(v)) } |
| 339 | func (enc *jsonEncoder) AppendInt8(v int8) { enc.AppendInt64(int64(v)) } |
| 340 | func (enc *jsonEncoder) AppendUint(v uint) { enc.AppendUint64(uint64(v)) } |
| 341 | func (enc *jsonEncoder) AppendUint32(v uint32) { enc.AppendUint64(uint64(v)) } |
| 342 | func (enc *jsonEncoder) AppendUint16(v uint16) { enc.AppendUint64(uint64(v)) } |
nothing calls this directly
no test coverage detected