| 182 | } |
| 183 | |
| 184 | void LLMClientInterface::handleShutdown(const QJsonObject &request) |
| 185 | { |
| 186 | QJsonObject response; |
| 187 | response["jsonrpc"] = "2.0"; |
| 188 | response["id"] = request["id"]; |
| 189 | response["result"] = QJsonValue(); |
| 190 | |
| 191 | emit messageReceived(LanguageServerProtocol::JsonRpcMessage(response)); |
| 192 | } |
| 193 | |
| 194 | void LLMClientInterface::handleTextDocumentDidOpen(const QJsonObject &request) {} |
| 195 |
nothing calls this directly
no outgoing calls
no test coverage detected