| 590 | } |
| 591 | |
| 592 | void Client::signatureHelpRequest(const QString &filePath, const lsp::Position &pos) |
| 593 | { |
| 594 | d->callMethod(lsp::V_TEXTDOCUMENT_SIGNATUREHELP, lsp::signatureHelp(filePath, pos), filePath); |
| 595 | } |
| 596 | |
| 597 | void Client::referencesRequest(const QString &filePath, const lsp::Position &pos) |
| 598 | { |
nothing calls this directly
no test coverage detected