dgoldman updated this revision to Diff 407287.
dgoldman added a comment.
Minor lint fixes
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D119366/new/
https://reviews.llvm.org/D119366
Files:
clang-tools-extra/clangd/FindTarget.cpp
clang-tools-extra/clangd/Selection.cpp
clang-tools-extra/clangd/unittests/FindTargetTests.cpp
Index: clang-tools-extra/clangd/unittests/FindTargetTests.cpp
===================================================================
--- clang-tools-extra/clangd/unittests/FindTargetTests.cpp
+++ clang-tools-extra/clangd/unittests/FindTargetTests.cpp
@@ -946,11 +946,9 @@
EXPECT_DECLS("ObjCCategoryImplDecl", "@interface Foo(Ext)");
Code = R"cpp(
- @protocol Foo
- @end
- void test([[id<Foo>]] p);
+ void test(id</*error-ok*/[[InvalidProtocol]]> p);
)cpp";
- EXPECT_DECLS("ObjCObjectTypeLoc", "@protocol Foo");
+ EXPECT_DECLS("ParmVarDecl", "id p");
Code = R"cpp(
@class C;
@@ -966,7 +964,7 @@
@end
void test(C<[[Foo]]> *p);
)cpp";
- EXPECT_DECLS("ObjCObjectTypeLoc", "@protocol Foo");
+ EXPECT_DECLS("ObjCProtocolLoc", "@protocol Foo");
Code = R"cpp(
@class C;
@@ -976,8 +974,17 @@
@end
void test(C<[[Foo]], Bar> *p);
)cpp";
- // FIXME: We currently can't disambiguate between multiple protocols.
- EXPECT_DECLS("ObjCObjectTypeLoc", "@protocol Foo", "@protocol Bar");
+ EXPECT_DECLS("ObjCProtocolLoc", "@protocol Foo");
+
+ Code = R"cpp(
+ @class C;
+ @protocol Foo
+ @end
+ @protocol Bar
+ @end
+ void test(C<Foo, [[Bar]]> *p);
+ )cpp";
+ EXPECT_DECLS("ObjCProtocolLoc", "@protocol Bar");
Code = R"cpp(
@interface Foo
Index: clang-tools-extra/clangd/Selection.cpp
===================================================================
--- clang-tools-extra/clangd/Selection.cpp
+++ clang-tools-extra/clangd/Selection.cpp
@@ -684,6 +684,9 @@
return traverseNode<TypeLoc>(
&QX, [&] { return TraverseTypeLoc(QX.getUnqualifiedLoc()); });
}
+ bool TraverseObjCProtocolLoc(ObjCProtocolLoc PL) {
+ return traverseNode(&PL, [&] { return Base::TraverseObjCProtocolLoc(PL); });
+ }
// Uninteresting parts of the AST that don't have locations within them.
bool TraverseNestedNameSpecifier(NestedNameSpecifier *) { return true; }
bool TraverseType(QualType) { return true; }
Index: clang-tools-extra/clangd/FindTarget.cpp
===================================================================
--- clang-tools-extra/clangd/FindTarget.cpp
+++ clang-tools-extra/clangd/FindTarget.cpp
@@ -453,15 +453,6 @@
void VisitObjCInterfaceType(const ObjCInterfaceType *OIT) {
Outer.add(OIT->getDecl(), Flags);
}
- void VisitObjCObjectType(const ObjCObjectType *OOT) {
- // Make all of the protocols targets since there's no child nodes for
- // protocols. This isn't needed for the base type, which *does* have a
- // child `ObjCInterfaceTypeLoc`. This structure is a hack, but it works
- // well for go-to-definition.
- unsigned NumProtocols = OOT->getNumProtocols();
- for (unsigned I = 0; I < NumProtocols; I++)
- Outer.add(OOT->getProtocol(I), Flags);
- }
};
Visitor(*this, Flags).Visit(T.getTypePtr());
}
@@ -547,6 +538,8 @@
Finder.add(TAL->getArgument(), Flags);
else if (const CXXBaseSpecifier *CBS = N.get<CXXBaseSpecifier>())
Finder.add(CBS->getTypeSourceInfo()->getType(), Flags);
+ else if (const ObjCProtocolLoc *PL = N.get<ObjCProtocolLoc>())
+ Finder.add(PL->Protocol, Flags);
return Finder.takeDecls();
}
@@ -669,25 +662,7 @@
{OMD}});
}
- void visitProtocolList(
- llvm::iterator_range<ObjCProtocolList::iterator> Protocols,
- llvm::iterator_range<const SourceLocation *> Locations) {
- for (const auto &P : llvm::zip(Protocols, Locations)) {
- Refs.push_back(ReferenceLoc{NestedNameSpecifierLoc(),
- std::get<1>(P),
- /*IsDecl=*/false,
- {std::get<0>(P)}});
- }
- }
-
- void VisitObjCInterfaceDecl(const ObjCInterfaceDecl *OID) {
- if (OID->isThisDeclarationADefinition())
- visitProtocolList(OID->protocols(), OID->protocol_locs());
- Base::VisitObjCInterfaceDecl(OID); // Visit the interface's name.
- }
-
void VisitObjCCategoryDecl(const ObjCCategoryDecl *OCD) {
- visitProtocolList(OCD->protocols(), OCD->protocol_locs());
// getLocation is the extended class's location, not the category's.
Refs.push_back(ReferenceLoc{NestedNameSpecifierLoc(),
OCD->getLocation(),
@@ -709,12 +684,6 @@
/*IsDecl=*/true,
{OCID->getCategoryDecl()}});
}
-
- void VisitObjCProtocolDecl(const ObjCProtocolDecl *OPD) {
- if (OPD->isThisDeclarationADefinition())
- visitProtocolList(OPD->protocols(), OPD->protocol_locs());
- Base::VisitObjCProtocolDecl(OPD); // Visit the protocol's name.
- }
};
Visitor V{Resolver};
@@ -944,16 +913,6 @@
/*IsDecl=*/false,
{L.getIFaceDecl()}});
}
-
- void VisitObjCObjectTypeLoc(ObjCObjectTypeLoc L) {
- unsigned NumProtocols = L.getNumProtocols();
- for (unsigned I = 0; I < NumProtocols; I++) {
- Refs.push_back(ReferenceLoc{NestedNameSpecifierLoc(),
- L.getProtocolLoc(I),
- /*IsDecl=*/false,
- {L.getProtocol(I)}});
- }
- }
};
Visitor V{Resolver};
@@ -1049,6 +1008,11 @@
return RecursiveASTVisitor::TraverseNestedNameSpecifierLoc(L);
}
+ bool TraverseObjCProtocolLoc(ObjCProtocolLoc ProtocolLoc) {
+ visitNode(DynTypedNode::create(ProtocolLoc));
+ return true;
+ }
+
bool TraverseConstructorInitializer(CXXCtorInitializer *Init) {
visitNode(DynTypedNode::create(*Init));
return RecursiveASTVisitor::TraverseConstructorInitializer(Init);
@@ -1094,6 +1058,12 @@
{CCI->getAnyMember()}}};
}
}
+ if (const ObjCProtocolLoc *PL = N.get<ObjCProtocolLoc>())
+ return {ReferenceLoc{NestedNameSpecifierLoc(),
+ PL->Loc,
+ /*IsDecl=*/false,
+ {PL->Protocol}}};
+
// We do not have location information for other nodes (QualType, etc)
return {};
}
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits