(key string, val bool)
| 117 | } |
| 118 | |
| 119 | func (enc *jsonEncoder) AddBool(key string, val bool) { |
| 120 | enc.addKey(key) |
| 121 | enc.AppendBool(val) |
| 122 | } |
| 123 | |
| 124 | func (enc *jsonEncoder) AddComplex128(key string, val complex128) { |
| 125 | enc.addKey(key) |
nothing calls this directly
no test coverage detected