(key string, val []byte)
| 112 | } |
| 113 | |
| 114 | func (enc *jsonEncoder) AddByteString(key string, val []byte) { |
| 115 | enc.addKey(key) |
| 116 | enc.AppendByteString(val) |
| 117 | } |
| 118 | |
| 119 | func (enc *jsonEncoder) AddBool(key string, val bool) { |
| 120 | enc.addKey(key) |
nothing calls this directly
no test coverage detected