Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Print.cpp

    r857b5f9 r37c3db8  
    12071207        }
    12081208
    1209         virtual const ast::Expr * visit( const ast::CountofExpr * node ) override final {
     1209        virtual const ast::Expr * visit( const ast::CountExpr * node ) override final {
    12101210                os << "Count Expression on: ";
    12111211                ++indent;
    1212                 safe_print( node->type );
     1212                if ( node->type ) node->type->accept( *this );
     1213                else safe_print( node->expr );
    12131214                --indent;
    12141215                postprint( node );
Note: See TracChangeset for help on using the changeset viewer.