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