| 2469 | } |
| 2470 | |
| 2471 | LSPClientServer::LSPRequestHandle LSPClientServer::documentCompletion( const URI& document, |
| 2472 | const TextPosition& pos, |
| 2473 | const JsonReplyHandler& h ) { |
| 2474 | auto params = textDocumentPositionParams( document, pos ); |
| 2475 | return send( newRequest( "textDocument/completion", params ), h ); |
| 2476 | } |
| 2477 | |
| 2478 | LSPClientServer::LSPRequestHandle |
| 2479 | LSPClientServer::documentCompletion( const URI& document, const TextPosition& pos, |
no test coverage detected