Changeset a97b9ed for src/AST/Print.cpp
- Timestamp:
- Oct 16, 2023, 8:09:51 AM (14 months ago)
- Branches:
- master
- Children:
- 2bf46a5, 54e59dd, 61e5d99
- Parents:
- 946a6e4 (diff), 8cbe732 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Print.cpp
r946a6e4 ra97b9ed 209 209 } 210 210 211 211 void print( const ast::WaitStmt * node ) { 212 212 if ( node->timeout_time ) { 213 213 os << indent-1 << "timeout of:" << endl; … … 860 860 } 861 861 862 862 virtual const ast::Stmt * visit( const ast::WaitUntilStmt * node ) override final { 863 863 os << "Waituntil Statement" << endl; 864 864 indent += 2; … … 866 866 clause->accept( *this ); 867 867 } 868 print(node); // calls print( const ast::WaitStmt * node ) 868 // calls print( const ast::WaitStmt * node ) 869 print(node); 869 870 return node; 870 871 } … … 913 914 printAll( node->mutexObjs ); 914 915 --indent; 916 os << indent << "... with Statement: "; 917 ++indent; 918 safe_print( node->stmt ); 919 --indent; 920 os << endl; 921 922 return node; 923 } 924 925 virtual const ast::Stmt * visit( const ast::CorunStmt * node ) override final { 926 os << "Corun Statement" << endl; 915 927 os << indent << "... with Statement: "; 916 928 ++indent;
Note: See TracChangeset
for help on using the changeset viewer.