================
@@ -271,6 +271,9 @@ void TextNodeDumper::Visit(const Decl *D) {
OS << " hidden";
if (D->isImplicit())
OS << " implicit";
+ if (const VarDecl *ND = dyn_cast<VarDecl>(D))
+ if (ND->isEllipsisVariable())
+ OS << " catch_all";
----------------
ChuanqiXu9 wrote:ditto https://github.com/llvm/llvm-project/pull/80976 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
