| 58 | } |
| 59 | |
| 60 | void DebuggerConnection::submitMessage(const Valdi::Value& value) { |
| 61 | auto json = Valdi::valueToJson(value); |
| 62 | submitJson(std::string_view(reinterpret_cast<const char*>(json->data()), json->size())); |
| 63 | } |
| 64 | |
| 65 | void DebuggerConnection::submitJson(const std::string_view& json) { |
| 66 | if constexpr (kDebugRequests) { |
no test coverage detected