[clang-tools-extra] 8401713 - [clangd] Ignore ObjC `id` and `instancetype` in FindTarget
David Goldman via cfe-commits
cfe-commits at lists.llvm.org
Tue Sep 14 07:07:30 PDT 2021
Author: David Goldman
Date: 2021-09-14T09:53:42-04:00
New Revision: 8401713b3ef1456a603874d96a99b2d5953df49c
URL: https://github.com/llvm/llvm-project/commit/8401713b3ef1456a603874d96a99b2d5953df49c
DIFF: https://github.com/llvm/llvm-project/commit/8401713b3ef1456a603874d96a99b2d5953df49c.diff
LOG: [clangd] Ignore ObjC `id` and `instancetype` in FindTarget
Even though they're implemented via typedefs, we typically
want to treat them like keywords.
We could add hover information / xrefs, but it's very unlikely
to provide any value.
Differential Revision: https://reviews.llvm.org/D108556
Added:
Modified:
clang-tools-extra/clangd/FindTarget.cpp
clang-tools-extra/clangd/unittests/FindTargetTests.cpp
clang-tools-extra/clangd/unittests/SemanticHighlightingTests.cpp
Removed:
################################################################################
diff --git a/clang-tools-extra/clangd/FindTarget.cpp b/clang-tools-extra/clangd/FindTarget.cpp
index b68e5c6c1e899..8419043f4462a 100644
--- a/clang-tools-extra/clangd/FindTarget.cpp
+++ b/clang-tools-extra/clangd/FindTarget.cpp
@@ -94,6 +94,16 @@ const NamedDecl *getTemplatePattern(const NamedDecl *D) {
return nullptr;
}
+// Returns true if the `TypedefNameDecl` should not be reported.
+bool shouldSkipTypedef(const TypedefNameDecl *TD) {
+ // These should be treated as keywords rather than decls - the typedef is an
+ // odd implementation detail.
+ if (TD == TD->getASTContext().getObjCInstanceTypeDecl() ||
+ TD == TD->getASTContext().getObjCIdDecl())
+ return true;
+ return false;
+}
+
// TargetFinder locates the entities that an AST node refers to.
//
// Typically this is (possibly) one declaration and (possibly) one type, but
@@ -395,6 +405,8 @@ struct TargetFinder {
}
}
void VisitTypedefType(const TypedefType *TT) {
+ if (shouldSkipTypedef(TT->getDecl()))
+ return;
Outer.add(TT->getDecl(), Flags);
}
void
@@ -903,6 +915,8 @@ refInTypeLoc(TypeLoc L, const HeuristicResolver *Resolver) {
}
void VisitTypedefTypeLoc(TypedefTypeLoc L) {
+ if (shouldSkipTypedef(L.getTypedefNameDecl()))
+ return;
Refs.push_back(ReferenceLoc{NestedNameSpecifierLoc(),
L.getNameLoc(),
/*IsDecl=*/false,
diff --git a/clang-tools-extra/clangd/unittests/FindTargetTests.cpp b/clang-tools-extra/clangd/unittests/FindTargetTests.cpp
index bccf98ee07ab4..14cb15a7644b0 100644
--- a/clang-tools-extra/clangd/unittests/FindTargetTests.cpp
+++ b/clang-tools-extra/clangd/unittests/FindTargetTests.cpp
@@ -995,6 +995,20 @@ TEST_F(TargetDeclTest, ObjC) {
}
)cpp";
EXPECT_DECLS("ObjCPropertyRefExpr", "+ (id)sharedInstance");
+
+ Code = R"cpp(
+ @interface Foo
+ + ([[id]])sharedInstance;
+ @end
+ )cpp";
+ EXPECT_DECLS("TypedefTypeLoc");
+
+ Code = R"cpp(
+ @interface Foo
+ + ([[instancetype]])sharedInstance;
+ @end
+ )cpp";
+ EXPECT_DECLS("TypedefTypeLoc");
}
class FindExplicitReferencesTest : public ::testing::Test {
diff --git a/clang-tools-extra/clangd/unittests/SemanticHighlightingTests.cpp b/clang-tools-extra/clangd/unittests/SemanticHighlightingTests.cpp
index 646c6ec184652..1a9220e911e32 100644
--- a/clang-tools-extra/clangd/unittests/SemanticHighlightingTests.cpp
+++ b/clang-tools-extra/clangd/unittests/SemanticHighlightingTests.cpp
@@ -661,13 +661,15 @@ sizeof...($TemplateParameter[[Elements]]);
@interface $Class_decl[[Foo]]
@end
@interface $Class_decl[[Bar]] : $Class[[Foo]]
- -($Class[[id]]) $Method_decl[[x]]:(int)$Parameter_decl[[a]] $Method_decl[[y]]:(int)$Parameter_decl[[b]];
+ -(id) $Method_decl[[x]]:(int)$Parameter_decl[[a]] $Method_decl[[y]]:(int)$Parameter_decl[[b]];
+ +(instancetype)$StaticMethod_decl_static[[sharedInstance]];
+(void) $StaticMethod_decl_static[[explode]];
@end
@implementation $Class_decl[[Bar]]
- -($Class[[id]]) $Method_decl[[x]]:(int)$Parameter_decl[[a]] $Method_decl[[y]]:(int)$Parameter_decl[[b]] {
+ -(id) $Method_decl[[x]]:(int)$Parameter_decl[[a]] $Method_decl[[y]]:(int)$Parameter_decl[[b]] {
return self;
}
+ +(instancetype)$StaticMethod_decl_static[[sharedInstance]] { return 0; }
+(void) $StaticMethod_decl_static[[explode]] {}
@end
More information about the cfe-commits
mailing list