[PATCH] D110051: [clangd] Deduplicate inlay hints
Nathan Ridge via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Sep 21 00:22:20 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rGd87d1aa07612: [clangd] Deduplicate inlay hints (authored by nridge).
Changed prior to commit:
https://reviews.llvm.org/D110051?vs=373782&id=373790#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D110051/new/
https://reviews.llvm.org/D110051
Files:
clang-tools-extra/clangd/InlayHints.cpp
clang-tools-extra/clangd/Protocol.cpp
clang-tools-extra/clangd/Protocol.h
clang-tools-extra/clangd/unittests/InlayHintTests.cpp
Index: clang-tools-extra/clangd/unittests/InlayHintTests.cpp
===================================================================
--- clang-tools-extra/clangd/unittests/InlayHintTests.cpp
+++ clang-tools-extra/clangd/unittests/InlayHintTests.cpp
@@ -612,6 +612,18 @@
ExpectedHint{": A<float>", "var"});
}
+TEST(TypeHints, Deduplication) {
+ assertTypeHints(R"cpp(
+ template <typename T>
+ void foo() {
+ auto $var[[var]] = 42;
+ }
+ template void foo<int>();
+ template void foo<float>();
+ )cpp",
+ ExpectedHint{": int", "var"});
+}
+
// FIXME: Low-hanging fruit where we could omit a type hint:
// - auto x = TypeName(...);
// - auto x = (TypeName) (...);
@@ -625,4 +637,4 @@
} // namespace
} // namespace clangd
-} // namespace clang
\ No newline at end of file
+} // namespace clang
Index: clang-tools-extra/clangd/Protocol.h
===================================================================
--- clang-tools-extra/clangd/Protocol.h
+++ clang-tools-extra/clangd/Protocol.h
@@ -1548,6 +1548,8 @@
std::string label;
};
llvm::json::Value toJSON(const InlayHint &);
+bool operator==(const InlayHint &, const InlayHint &);
+bool operator<(const InlayHint &, const InlayHint &);
struct ReferenceContext {
/// Include the declaration of the current symbol.
Index: clang-tools-extra/clangd/Protocol.cpp
===================================================================
--- clang-tools-extra/clangd/Protocol.cpp
+++ clang-tools-extra/clangd/Protocol.cpp
@@ -1326,6 +1326,14 @@
return llvm::json::Object{
{"range", H.range}, {"kind", H.kind}, {"label", H.label}};
}
+bool operator==(const InlayHint &A, const InlayHint &B) {
+ return std::tie(A.kind, A.range, A.label) ==
+ std::tie(B.kind, B.range, B.label);
+}
+bool operator<(const InlayHint &A, const InlayHint &B) {
+ return std::tie(A.kind, A.range, A.label) <
+ std::tie(B.kind, B.range, B.label);
+}
static const char *toString(OffsetEncoding OE) {
switch (OE) {
Index: clang-tools-extra/clangd/InlayHints.cpp
===================================================================
--- clang-tools-extra/clangd/InlayHints.cpp
+++ clang-tools-extra/clangd/InlayHints.cpp
@@ -366,6 +366,12 @@
std::vector<InlayHint> Results;
InlayHintVisitor Visitor(Results, AST);
Visitor.TraverseAST(AST.getASTContext());
+
+ // De-duplicate hints. Duplicates can sometimes occur due to e.g. explicit
+ // template instantiations.
+ llvm::sort(Results);
+ Results.erase(std::unique(Results.begin(), Results.end()), Results.end());
+
return Results;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D110051.373790.patch
Type: text/x-patch
Size: 2620 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210921/fc4dedd6/attachment-0001.bin>
More information about the cfe-commits
mailing list