| 580 | } |
| 581 | |
| 582 | void Client::definitionRequest(const QString &filePath, const lsp::Position &pos) |
| 583 | { |
| 584 | d->callMethod(lsp::V_TEXTDOCUMENT_DEFINITION, lsp::definition(filePath, pos), filePath); |
| 585 | } |
| 586 | |
| 587 | void Client::completionRequest(const QString &filePath, const lsp::Position &pos, const lsp::CompletionContext &context) |
| 588 | { |
no test coverage detected