(val uint64)
| 316 | } |
| 317 | |
| 318 | func (enc *jsonEncoder) AppendUint64(val uint64) { |
| 319 | enc.addElementSeparator() |
| 320 | enc.buf.AppendUint(val) |
| 321 | } |
| 322 | |
| 323 | func (enc *jsonEncoder) AddInt(k string, v int) { enc.AddInt64(k, int64(v)) } |
| 324 | func (enc *jsonEncoder) AddInt32(k string, v int32) { enc.AddInt64(k, int64(v)) } |
no test coverage detected