(key string, val time.Duration)
| 132 | } |
| 133 | |
| 134 | func (enc *jsonEncoder) AddDuration(key string, val time.Duration) { |
| 135 | enc.addKey(key) |
| 136 | enc.AppendDuration(val) |
| 137 | } |
| 138 | |
| 139 | func (enc *jsonEncoder) AddFloat64(key string, val float64) { |
| 140 | enc.addKey(key) |
nothing calls this directly
no test coverage detected