Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Print.cpp

    r446dde5 r857b5f9  
    14061406                os << "Statement Expression:" << endl << indent;
    14071407                safe_print( node->stmts );
     1408                if ( ! node->returnDecls.empty() ) {
     1409                        os << indent << "... with returnDecls: ";
     1410                        printAll( node->returnDecls );
     1411                }
     1412                if ( ! node->dtors.empty() ) {
     1413                        os << indent << "... with dtors: ";
     1414                        printAll( node->dtors );
     1415                }
    14081416                --indent;
    14091417                postprint( node );
Note: See TracChangeset for help on using the changeset viewer.