[PATCH] D45482: [clangd] Match AST and Index label for template Symbols
Phabricator via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Apr 13 04:06:31 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rCTE330004: [clangd] Match AST and Index label for template Symbols (authored by ibiryukov, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D45482?vs=142372&id=142373#toc
Repository:
rL LLVM
https://reviews.llvm.org/D45482
Files:
clangd/index/SymbolCollector.cpp
unittests/clangd/FileIndexTests.cpp
Index: clangd/index/SymbolCollector.cpp
===================================================================
--- clangd/index/SymbolCollector.cpp
+++ clangd/index/SymbolCollector.cpp
@@ -14,6 +14,7 @@
#include "../URI.h"
#include "CanonicalIncludes.h"
#include "clang/AST/DeclCXX.h"
+#include "clang/AST/DeclTemplate.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/Basic/SourceManager.h"
#include "clang/Index/IndexSymbol.h"
@@ -26,6 +27,19 @@
namespace clangd {
namespace {
+/// If \p ND is a template specialization, returns the primary template.
+/// Otherwise, returns \p ND.
+const NamedDecl &getTemplateOrThis(const NamedDecl &ND) {
+ if (auto Cls = dyn_cast<CXXRecordDecl>(&ND)) {
+ if (auto T = Cls->getDescribedTemplate())
+ return *T;
+ } else if (auto Func = dyn_cast<FunctionDecl>(&ND)) {
+ if (auto T = Func->getPrimaryTemplate())
+ return *T;
+ }
+ return ND;
+}
+
// Returns a URI of \p Path. Firstly, this makes the \p Path absolute using the
// current working directory of the given SourceManager if the Path is not an
// absolute path. If failed, this resolves relative paths against \p FallbackDir
@@ -325,7 +339,8 @@
// Add completion info.
// FIXME: we may want to choose a different redecl, or combine from several.
assert(ASTCtx && PP.get() && "ASTContext and Preprocessor must be set.");
- CodeCompletionResult SymbolCompletion(&ND, 0);
+ // We use the primary template, as clang does during code completion.
+ CodeCompletionResult SymbolCompletion(&getTemplateOrThis(ND), 0);
const auto *CCS = SymbolCompletion.CreateCodeCompletionString(
*ASTCtx, *PP, CodeCompletionContext::CCC_Name, *CompletionAllocator,
*CompletionTUInfo,
Index: unittests/clangd/FileIndexTests.cpp
===================================================================
--- unittests/clangd/FileIndexTests.cpp
+++ unittests/clangd/FileIndexTests.cpp
@@ -195,6 +195,44 @@
EXPECT_TRUE(SeenSymbol);
}
+TEST(FileIndexTest, TemplateParamsInLabel) {
+ auto Source = R"cpp(
+template <class Ty>
+class vector {
+};
+
+template <class Ty>
+vector<Ty> make_vector(Ty* begin, Ty* end) {}
+)cpp";
+
+ FileIndex M;
+ M.update("f", build("f", Source).getPointer());
+
+ FuzzyFindRequest Req;
+ Req.Query = "";
+ bool SeenVector = false;
+ bool SeenMakeVector = false;
+ M.fuzzyFind(Req, [&](const Symbol &Sym) {
+ if (Sym.Name == "vector") {
+ EXPECT_EQ(Sym.CompletionLabel, "vector<class Ty>");
+ EXPECT_EQ(Sym.CompletionSnippetInsertText, "vector<${1:class Ty}>");
+ EXPECT_EQ(Sym.CompletionPlainInsertText, "vector");
+ SeenVector = true;
+ return;
+ }
+
+ if (Sym.Name == "make_vector") {
+ EXPECT_EQ(Sym.CompletionLabel, "make_vector(Ty *begin, Ty *end)");
+ EXPECT_EQ(Sym.CompletionSnippetInsertText,
+ "make_vector(${1:Ty *begin}, ${2:Ty *end})");
+ EXPECT_EQ(Sym.CompletionPlainInsertText, "make_vector");
+ SeenMakeVector = true;
+ }
+ });
+ EXPECT_TRUE(SeenVector);
+ EXPECT_TRUE(SeenMakeVector);
+}
+
} // namespace
} // namespace clangd
} // namespace clang
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D45482.142373.patch
Type: text/x-patch
Size: 3121 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180413/65b193b6/attachment-0001.bin>
More information about the cfe-commits
mailing list