Changeset 9ddcee1 for src/AST/Print.cpp


Ignore:
Timestamp:
Feb 1, 2024, 5:13:04 PM (8 months ago)
Author:
JiadaL <j82liang@…>
Branches:
master
Children:
020fa10
Parents:
496ffc17
Message:

Remove EnumPosExpr?, an early design that no longer used. The implementation of the feature has been replaced by ReplacePseudoFunc?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Print.cpp

    r496ffc17 r9ddcee1  
    11861186        }
    11871187
    1188         virtual const ast::Expr * visit( const ast::EnumPosExpr * node ) override final {
    1189                 os << "Enum Position Expression on: ";
    1190                 ++indent;
    1191                 safe_print( node->type );
    1192                 --indent;
    1193                 postprint( node );
    1194                 return node;
    1195         }
    1196 
    11971188        virtual const ast::Expr * visit( const ast::LogicalExpr * node ) override final {
    11981189                os << "Short-circuited operation (" << (node->isAnd ? "and" : "or") << ") on: ";
Note: See TracChangeset for help on using the changeset viewer.