[PATCH] D55206: [clangd] Get rid of AST matchers in CodeComplete, NFC
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Dec 3 04:57:12 PST 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL348130: [clangd] Get rid of AST matchers in CodeComplete, NFC (authored by hokein, committed by ).
Herald added a subscriber: llvm-commits.
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55206/new/
https://reviews.llvm.org/D55206
Files:
clang-tools-extra/trunk/clangd/CodeComplete.cpp
Index: clang-tools-extra/trunk/clangd/CodeComplete.cpp
===================================================================
--- clang-tools-extra/trunk/clangd/CodeComplete.cpp
+++ clang-tools-extra/trunk/clangd/CodeComplete.cpp
@@ -37,7 +37,6 @@
#include "index/Index.h"
#include "clang/AST/Decl.h"
#include "clang/AST/DeclBase.h"
-#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/Basic/LangOptions.h"
#include "clang/Basic/SourceLocation.h"
#include "clang/Format/Format.h"
@@ -1645,14 +1644,24 @@
}
bool isIndexedForCodeCompletion(const NamedDecl &ND, ASTContext &ASTCtx) {
- using namespace clang::ast_matchers;
- auto InTopLevelScope = hasDeclContext(
- anyOf(namespaceDecl(), translationUnitDecl(), linkageSpecDecl()));
- return !match(decl(anyOf(InTopLevelScope,
- hasDeclContext(
- enumDecl(InTopLevelScope, unless(isScoped()))))),
- ND, ASTCtx)
- .empty();
+ auto InTopLevelScope = [](const NamedDecl &ND) {
+ switch (ND.getDeclContext()->getDeclKind()) {
+ case Decl::TranslationUnit:
+ case Decl::Namespace:
+ case Decl::LinkageSpec:
+ return true;
+ default:
+ break;
+ };
+ return false;
+ };
+ if (InTopLevelScope(ND))
+ return true;
+
+ if (const auto *EnumDecl = dyn_cast<clang::EnumDecl>(ND.getDeclContext()))
+ return InTopLevelScope(*EnumDecl) && !EnumDecl->isScoped();
+
+ return false;
}
CompletionItem CodeCompletion::render(const CodeCompleteOptions &Opts) const {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D55206.176371.patch
Type: text/x-patch
Size: 1547 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20181203/6ba293fe/attachment.bin>
More information about the cfe-commits
mailing list