Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Print.cpp

    r59c8dff r3d9d017  
    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 
    11941185        virtual const ast::Expr * visit( const ast::LogicalExpr * node ) override final {
    11951186                os << "Short-circuited operation (" << (node->isAnd ? "and" : "or") << ") on: ";
Note: See TracChangeset for help on using the changeset viewer.