| 554 | } |
| 555 | |
| 556 | void LanguageClientHandlerPrivate::handleRename(const QString &text) |
| 557 | { |
| 558 | if (!editor || !documentIsOpened() || !renameCache.isValid()) |
| 559 | return; |
| 560 | |
| 561 | lsp::Position pos { renameCache.line, renameCache.column }; |
| 562 | getClient()->renameRequest(editor->getFile(), pos, text); |
| 563 | renameCache.clear(); |
| 564 | } |
| 565 | |
| 566 | void LanguageClientHandlerPrivate::gotoDefinition() |
| 567 | { |
nothing calls this directly
no test coverage detected