[PATCH] D44954: [clangd] Add "member" symbols to the index
Marc-Andre Laperle via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri May 11 12:44:07 PDT 2018
malaperle added inline comments.
================
Comment at: clangd/CodeComplete.cpp:932
Req.Query = Filter->pattern();
+ Req.DeclContexts = {Decl::Kind::Namespace, Decl::Kind::TranslationUnit,
+ Decl::Kind::LinkageSpec, Decl::Kind::Enum};
----------------
I want to add a comment here, but I want to make sure I understand why in the first place we were not indexing symbols outside these contexts for the purpose of code completion. Is it because those will be available by Sema code completion anyway?
Repository:
rCTE Clang Tools Extra
https://reviews.llvm.org/D44954
More information about the cfe-commits
mailing list