Changes in src/AST/Print.cpp [857b5f9:37c3db8]
- File:
-
- 1 edited
-
src/AST/Print.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Print.cpp
r857b5f9 r37c3db8 1207 1207 } 1208 1208 1209 virtual const ast::Expr * visit( const ast::Count ofExpr * node ) override final {1209 virtual const ast::Expr * visit( const ast::CountExpr * node ) override final { 1210 1210 os << "Count Expression on: "; 1211 1211 ++indent; 1212 safe_print( node->type ); 1212 if ( node->type ) node->type->accept( *this ); 1213 else safe_print( node->expr ); 1213 1214 --indent; 1214 1215 postprint( node );
Note:
See TracChangeset
for help on using the changeset viewer.