| 273 | } |
| 274 | |
| 275 | void LanguageClientHandlerPrivate::handleTokenFull(const QList<lsp::Data> &tokens, const QString &filePath) |
| 276 | { |
| 277 | if (!editor || editor->getFile() != filePath || !editor->lexer()) |
| 278 | return; |
| 279 | |
| 280 | metaObject()->invokeMethod(languageWorker, |
| 281 | "handleDocumentSemanticTokens", |
| 282 | Qt::QueuedConnection, |
| 283 | Q_ARG(QList<lsp::Data>, tokens)); |
| 284 | } |
| 285 | |
| 286 | void LanguageClientHandlerPrivate::handleShowHoverInfo(const newlsp::Hover &hover) |
| 287 | { |