| 610 | } |
| 611 | |
| 612 | void Client::docSemanticTokensRange(const QString &filePath, lsp::Range range) |
| 613 | { |
| 614 | d->callMethod(lsp::V_TEXTDOCUMENT_SEMANTICTOKENS_RANGE, lsp::documentSemanticTokensRange(filePath, range), filePath); |
| 615 | } |
| 616 | |
| 617 | void Client::docHoverRequest(const QString &filePath, const lsp::Position &pos) |
| 618 | { |
nothing calls this directly
no test coverage detected