Changeset 857b5f9 for src/AST/Print.cpp
- Timestamp:
- Jan 23, 2025, 12:09:40 PM (12 months ago)
- Branches:
- master
- Children:
- 9e72bae3
- Parents:
- 829821c
- File:
-
- 1 edited
-
src/AST/Print.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Print.cpp
r829821c r857b5f9 1207 1207 } 1208 1208 1209 virtual const ast::Expr * visit( const ast::Count Expr * node ) override final {1209 virtual const ast::Expr * visit( const ast::CountofExpr * node ) override final { 1210 1210 os << "Count Expression on: "; 1211 1211 ++indent; 1212 if ( node->type ) node->type->accept( *this ); 1213 else safe_print( node->expr ); 1212 safe_print( node->type ); 1214 1213 --indent; 1215 1214 postprint( node );
Note:
See TracChangeset
for help on using the changeset viewer.