From 713c30b389602eda5c70b696e8c640487cc8b2cb Mon Sep 17 00:00:00 2001 From: Sam McCall Date: Fri, 15 Nov 2019 15:08:16 +0100 Subject: [PATCH] [clangd] Don't consider class template params part of constructor name. Summary: This is shorter and usually the extra info is noise. There are cases where the params become type-parameter-0-0 that are hard to fix. This affects a few features: - 'name' field in structured hover API (not exposed yet) - 'name' field in locateSymbolAt (not exposed in LSP) - 'document/symbol' - the symbol is hierarchically nested in the class template, or written as foo::foo when defined out-of-line. Added a test case for hover from https://github.com/clangd/clangd/issues/76. This patch fixes one field, but no fewer than four others are wrong! I'll fix them... Reviewers: hokein Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D70308 --- clang-tools-extra/clangd/AST.cpp | 2 ++ clang-tools-extra/clangd/XRefs.cpp | 1 + clang-tools-extra/clangd/unittests/XRefsTests.cpp | 17 ++++++++++++++++- 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/clang-tools-extra/clangd/AST.cpp b/clang-tools-extra/clangd/AST.cpp index 1958ebf8..af04fbd 100644 --- a/clang-tools-extra/clangd/AST.cpp +++ b/clang-tools-extra/clangd/AST.cpp @@ -127,6 +127,8 @@ std::string printName(const ASTContext &Ctx, const NamedDecl &ND) { std::string Name; llvm::raw_string_ostream Out(Name); PrintingPolicy PP(Ctx.getLangOpts()); + // We don't consider a class template's args part of the constructor name. + PP.SuppressTemplateArgsInCXXConstructors = true; // Handle 'using namespace'. They all have the same name - . if (auto *UD = llvm::dyn_cast(&ND)) { diff --git a/clang-tools-extra/clangd/XRefs.cpp b/clang-tools-extra/clangd/XRefs.cpp index dc5d5db..2f4cfc2 100644 --- a/clang-tools-extra/clangd/XRefs.cpp +++ b/clang-tools-extra/clangd/XRefs.cpp @@ -417,6 +417,7 @@ static std::string getLocalScope(const Decl *D) { auto GetName = [](const Decl *D) { const NamedDecl *ND = dyn_cast(D); std::string Name = ND->getNameAsString(); + // FIXME(sammccall): include template params/specialization args?. if (!Name.empty()) return Name; if (auto RD = dyn_cast(D)) diff --git a/clang-tools-extra/clangd/unittests/XRefsTests.cpp b/clang-tools-extra/clangd/unittests/XRefsTests.cpp index 0de1127..e896096 100644 --- a/clang-tools-extra/clangd/unittests/XRefsTests.cpp +++ b/clang-tools-extra/clangd/unittests/XRefsTests.cpp @@ -897,7 +897,7 @@ void foo())cpp"; HI.Definition = "int test"; HI.Type = "int"; }}, - // Partially-specialized class decl. (formerly type-parameter-0-0) + // Partially-specialized class template. (formerly type-parameter-0-0) {R"cpp( template class X; template class [[^X]] {}; @@ -908,6 +908,21 @@ void foo())cpp"; HI.Kind = SymbolKind::Class; HI.Definition = "template class X {}"; }}, + // Constructor of partially-specialized class template + {R"cpp( + template struct X; + template struct X{ [[^X]](); }; + )cpp", + [](HoverInfo &HI) { + HI.NamespaceScope = ""; + HI.Name = "X"; + HI.LocalScope = "X::"; // FIXME: Should be X:: + HI.Kind = SymbolKind::Method; // FIXME: Should be Constructor + HI.Type = "void ()"; // FIXME: Should be None + HI.ReturnType = "void"; // FIXME: Should be None or X + HI.Definition = "X()"; // FIXME: --> X() + HI.Parameters.emplace(); + }}, // auto on lambda {R"cpp( -- 2.7.4