File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -2012,15 +2012,7 @@ class PrintExpr : public ExprVisitor<PrintExpr> {
2012
2012
<< E->getDecls ()[0 ]->getBaseName ();
2013
2013
PrintWithColorRAII (OS, ExprModifierColor)
2014
2014
<< " number_of_decls=" << E->getDecls ().size ()
2015
- << " function_ref=" << getFunctionRefKindStr (E->getFunctionRefKind ())
2016
- << " decls=[\n " ;
2017
- interleave (E->getDecls (),
2018
- [&](ValueDecl *D) {
2019
- OS.indent (Indent + 2 );
2020
- D->dumpRef (PrintWithColorRAII (OS, DeclModifierColor).getOS ());
2021
- },
2022
- [&] { PrintWithColorRAII (OS, DeclModifierColor) << " ,\n " ; });
2023
- PrintWithColorRAII (OS, ExprModifierColor) << " ]" ;
2015
+ << " function_ref=" << getFunctionRefKindStr (E->getFunctionRefKind ());
2024
2016
PrintWithColorRAII (OS, ParenthesisColor) << ' )' ;
2025
2017
}
2026
2018
void visitUnresolvedDeclRefExpr (UnresolvedDeclRefExpr *E) {
You can’t perform that action at this time.
0 commit comments