| 173 | } |
| 174 | |
| 175 | type MapEntryEncoder struct { |
| 176 | keyBuf bytes.Buffer |
| 177 | valueBuf bytes.Buffer |
| 178 | |
| 179 | keyE *Encoder |
| 180 | valueE *Encoder |
| 181 | } |
| 182 | |
| 183 | func NewMapEntry() *MapEntryEncoder { |
| 184 | e := &MapEntryEncoder{} |
nothing calls this directly
no outgoing calls
no test coverage detected