| 48 | } |
| 49 | |
| 50 | type encoder struct { |
| 51 | val interface{} |
| 52 | lowercaseFields bool |
| 53 | } |
| 54 | |
| 55 | func (e *encoder) EncodeNil() { e.val = nil } |
| 56 | func (e *encoder) EncodeBool(x bool) { e.val = x } |
nothing calls this directly
no outgoing calls
no test coverage detected