| 194 | void LLMClientInterface::handleTextDocumentDidOpen(const QJsonObject &request) {} |
| 195 | |
| 196 | void LLMClientInterface::handleInitialized(const QJsonObject &request) |
| 197 | { |
| 198 | QJsonObject response; |
| 199 | response["jsonrpc"] = "2.0"; |
| 200 | response["method"] = "initialized"; |
| 201 | response["params"] = QJsonObject(); |
| 202 | |
| 203 | emit messageReceived(LanguageServerProtocol::JsonRpcMessage(response)); |
| 204 | } |
| 205 | |
| 206 | void LLMClientInterface::handleExit(const QJsonObject &request) |
| 207 | { |
nothing calls this directly
no test coverage detected