(key string)
| 187 | } |
| 188 | |
| 189 | func (enc *jsonEncoder) OpenNamespace(key string) { |
| 190 | enc.addKey(key) |
| 191 | enc.buf.AppendByte('{') |
| 192 | enc.openNamespaces++ |
| 193 | } |
| 194 | |
| 195 | func (enc *jsonEncoder) AddString(key, val string) { |
| 196 | enc.addKey(key) |
nothing calls this directly
no test coverage detected