Changes in src/AST/Print.cpp [59c8dff:3d9d017]
- File:
-
- 1 edited
-
src/AST/Print.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Print.cpp
r59c8dff r3d9d017 1183 1183 } 1184 1184 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 1194 1185 virtual const ast::Expr * visit( const ast::LogicalExpr * node ) override final { 1195 1186 os << "Short-circuited operation (" << (node->isAnd ? "and" : "or") << ") on: ";
Note:
See TracChangeset
for help on using the changeset viewer.