| 2444 | } |
| 2445 | |
| 2446 | void LSPClientServer::documentCodeLens( const URI& document, const JsonReplyHandler& h ) { |
| 2447 | sendAsync( newRequest( "textDocument/codeLens", textDocumentParams( document ) ), h ); |
| 2448 | } |
| 2449 | |
| 2450 | void LSPClientServer::documentCodeLens( const URI& document, const CodeLensHandler& h ) { |
| 2451 | documentCodeLens( document, [h]( const IdType& id, const json& json ) { |
no test coverage detected