(val bool)
| 230 | } |
| 231 | |
| 232 | func (enc *jsonEncoder) AppendBool(val bool) { |
| 233 | enc.addElementSeparator() |
| 234 | enc.buf.AppendBool(val) |
| 235 | } |
| 236 | |
| 237 | func (enc *jsonEncoder) AppendByteString(val []byte) { |
| 238 | enc.addElementSeparator() |
no test coverage detected