[PATCH] D89098: [clang] Fix returning the underlying VarDecl as top-level decl for VarTemplateDecl.
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Oct 12 02:06:23 PDT 2020
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG702529d899c8: [clang] Fix returning the underlying VarDecl as top-level decl for… (authored by hokein).
Changed prior to commit:
https://reviews.llvm.org/D89098?vs=297512&id=297514#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D89098/new/
https://reviews.llvm.org/D89098
Files:
clang-tools-extra/clangd/unittests/ParsedASTTests.cpp
clang/lib/Parse/ParseDecl.cpp
Index: clang/lib/Parse/ParseDecl.cpp
===================================================================
--- clang/lib/Parse/ParseDecl.cpp
+++ clang/lib/Parse/ParseDecl.cpp
@@ -2195,6 +2195,7 @@
// Inform the current actions module that we just parsed this declarator.
Decl *ThisDecl = nullptr;
+ Decl *OuterDecl = nullptr;
switch (TemplateInfo.Kind) {
case ParsedTemplateInfo::NonTemplate:
ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
@@ -2205,10 +2206,12 @@
ThisDecl = Actions.ActOnTemplateDeclarator(getCurScope(),
*TemplateInfo.TemplateParams,
D);
- if (VarTemplateDecl *VT = dyn_cast_or_null<VarTemplateDecl>(ThisDecl))
+ if (VarTemplateDecl *VT = dyn_cast_or_null<VarTemplateDecl>(ThisDecl)) {
// Re-direct this decl to refer to the templated decl so that we can
// initialize it.
ThisDecl = VT->getTemplatedDecl();
+ OuterDecl = VT;
+ }
break;
}
case ParsedTemplateInfo::ExplicitInstantiation: {
@@ -2385,8 +2388,7 @@
}
Actions.FinalizeDeclaration(ThisDecl);
-
- return ThisDecl;
+ return OuterDecl ? OuterDecl : ThisDecl;
}
/// ParseSpecifierQualifierList
Index: clang-tools-extra/clangd/unittests/ParsedASTTests.cpp
===================================================================
--- clang-tools-extra/clangd/unittests/ParsedASTTests.cpp
+++ clang-tools-extra/clangd/unittests/ParsedASTTests.cpp
@@ -57,6 +57,12 @@
return false;
}
+MATCHER_P(DeclKind, Kind, "") {
+ if (NamedDecl *ND = dyn_cast<NamedDecl>(arg))
+ return ND->getDeclKindName() == Kind;
+ return false;
+}
+
// Matches if the Decl has template args equal to ArgName. If the decl is a
// NamedDecl and ArgName is an empty string it also matches.
MATCHER_P(WithTemplateArgs, ArgName, "") {
@@ -99,9 +105,15 @@
int header1();
int header2;
)";
- TU.Code = "int main();";
+ TU.Code = R"cpp(
+ int main();
+ template <typename> bool X = true;
+ )cpp";
auto AST = TU.build();
- EXPECT_THAT(AST.getLocalTopLevelDecls(), ElementsAre(DeclNamed("main")));
+ EXPECT_THAT(
+ AST.getLocalTopLevelDecls(),
+ ElementsAreArray({AllOf(DeclNamed("main"), DeclKind("Function")),
+ AllOf(DeclNamed("X"), DeclKind("VarTemplate"))}));
}
TEST(ParsedASTTest, DoesNotGetIncludedTopDecls) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D89098.297514.patch
Type: text/x-patch
Size: 2410 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20201012/b33b7858/attachment.bin>
More information about the cfe-commits
mailing list