| 169 | } |
| 170 | |
| 171 | std::string JsonCppSerializer::dump() const { |
| 172 | Json::StreamWriterBuilder writer; |
| 173 | return Json::writeString(writer, *json); |
| 174 | } |
| 175 | |
| 176 | bool JsonCppSerializer::serialize(dap::boolean v) { |
| 177 | *json = (bool)v; |
nothing calls this directly
no test coverage detected