| 158 | } |
| 159 | |
| 160 | void WriteKeyValue(const std::string& key, const std::string& value) { |
| 161 | writer_->StartObject(); |
| 162 | |
| 163 | writer_->Key("key"); |
| 164 | writer_->String(key.c_str()); |
| 165 | |
| 166 | writer_->Key("value"); |
| 167 | writer_->String(value.c_str()); |
| 168 | |
| 169 | writer_->EndObject(); |
| 170 | } |
| 171 | |
| 172 | Status WriteDictionaryMetadata(int64_t id, const DictionaryType& type) { |
| 173 | writer_->Key("dictionary"); |
nothing calls this directly
no test coverage detected