[PATCH] D104540: [clangd] Dont index ObjCCategoryDecls for completion
Kadir Cetinkaya via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jun 22 08:22:41 PDT 2021
kadircet added inline comments.
================
Comment at: clang-tools-extra/clangd/CodeComplete.cpp:1918
+ // from the index, we reduce the noise in all the other completion scopes.
+ if (llvm::isa<ObjCCategoryDecl>(&ND))
+ return false;
----------------
dgoldman wrote:
> Seems like we should also ignore ObjCCategoryImplDecl, I think those would have the same issue (although only from other .m files in the project, not from SDK headers)?
we actually never index those, as symbolcollector canonicalizes ObjcCategoryImplDecls to ObjcCategoryDecl, so we can't really test it. but adding here for completeness.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D104540/new/
https://reviews.llvm.org/D104540
More information about the cfe-commits
mailing list