| 2517 | } |
| 2518 | |
| 2519 | void LSPClientServer::documentReferences( const URI& document, const TextPosition& pos, bool decl, |
| 2520 | const JsonReplyHandler& h ) { |
| 2521 | auto params = referenceParams( document, pos, decl ); |
| 2522 | sendAsync( newRequest( "textDocument/references", params ), h ); |
| 2523 | } |
| 2524 | |
| 2525 | void LSPClientServer::documentReferences( const URI& document, const TextPosition& pos, bool decl, |
| 2526 | const LocationHandler& h ) { |
no test coverage detected