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