[PATCH] D118976: clangd: Set a diagnostic on a code action resulting from a tweak
Kadir Cetinkaya via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Feb 10 06:58:52 PST 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rGbd6c6974f5ea: clangd: Set a diagnostic on a code action resulting from a tweak (authored by ckandeler, committed by kadircet).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D118976/new/
https://reviews.llvm.org/D118976
Files:
clang-tools-extra/clangd/ClangdLSPServer.cpp
Index: clang-tools-extra/clangd/ClangdLSPServer.cpp
===================================================================
--- clang-tools-extra/clangd/ClangdLSPServer.cpp
+++ clang-tools-extra/clangd/ClangdLSPServer.cpp
@@ -986,8 +986,8 @@
// Now enumerate the semantic code actions.
auto ConsumeActions =
- [Reply = std::move(Reply), File, Selection = Params.range,
- FixIts = std::move(FixIts), this](
+ [Diags = Params.context.diagnostics, Reply = std::move(Reply), File,
+ Selection = Params.range, FixIts = std::move(FixIts), this](
llvm::Expected<std::vector<ClangdServer::TweakRef>> Tweaks) mutable {
if (!Tweaks)
return Reply(Tweaks.takeError());
@@ -1003,13 +1003,17 @@
for (auto &Action : Actions) {
if (Action.kind && *Action.kind == CodeAction::QUICKFIX_KIND) {
if (OnlyFix) {
- OnlyFix->isPreferred = false;
+ OnlyFix = nullptr;
break;
}
- Action.isPreferred = true;
OnlyFix = &Action;
}
}
+ if (OnlyFix) {
+ OnlyFix->isPreferred = true;
+ if (Diags.size() == 1 && Diags.front().range == Selection)
+ OnlyFix->diagnostics = {Diags.front()};
+ }
if (SupportsCodeAction)
return Reply(llvm::json::Array(Actions));
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D118976.407524.patch
Type: text/x-patch
Size: 1379 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220210/7c739659/attachment.bin>
More information about the cfe-commits
mailing list