Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Print.cpp

    r3d9d017 r59c8dff  
    11831183        }
    11841184
     1185        virtual const ast::Expr * visit( const ast::EnumPosExpr * node ) override final {
     1186                os << "Enum Position Expression on: ";
     1187                ++indent;
     1188                safe_print( node->type );
     1189                --indent;
     1190                postprint( node );
     1191                return node;
     1192        }
     1193
    11851194        virtual const ast::Expr * visit( const ast::LogicalExpr * node ) override final {
    11861195                os << "Short-circuited operation (" << (node->isAnd ? "and" : "or") << ") on: ";
Note: See TracChangeset for help on using the changeset viewer.