(key string, val time.Time)
| 198 | } |
| 199 | |
| 200 | func (enc *jsonEncoder) AddTime(key string, val time.Time) { |
| 201 | enc.addKey(key) |
| 202 | enc.AppendTime(val) |
| 203 | } |
| 204 | |
| 205 | func (enc *jsonEncoder) AddUint64(key string, val uint64) { |
| 206 | enc.addKey(key) |
nothing calls this directly
no test coverage detected