| 585 | } |
| 586 | |
| 587 | void Client::completionRequest(const QString &filePath, const lsp::Position &pos, const lsp::CompletionContext &context) |
| 588 | { |
| 589 | d->callMethod(lsp::V_TEXTDOCUMENT_COMPLETION, lsp::completion(filePath, pos, context), filePath); |
| 590 | } |
| 591 | |
| 592 | void Client::signatureHelpRequest(const QString &filePath, const lsp::Position &pos) |
| 593 | { |
no test coverage detected