| 2425 | } |
| 2426 | |
| 2427 | void LSPClientServer::documentCodeAction( const URI& document, const TextRange& range, |
| 2428 | const std::vector<std::string>& kinds, |
| 2429 | const nlohmann::json& diagnostics, |
| 2430 | const JsonReplyHandler& h ) { |
| 2431 | auto params = codeActionParams( document, range, kinds, diagnostics ); |
| 2432 | sendAsync( newRequest( "textDocument/codeAction", params ), h ); |
| 2433 | } |
| 2434 | |
| 2435 | void LSPClientServer::documentCodeAction( const URI& document, const TextRange& range, |
| 2436 | const std::vector<std::string>& kinds, |
no test coverage detected