Changes in src/SynTree/Visitor.cc [25a8631:af5c204a]
- File:
-
- 1 edited
-
src/SynTree/Visitor.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Visitor.cc
r25a8631 raf5c204a 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : Thu Jun 22 13:41:00 201713 // Update Count : 2 612 // Last Modified On : Thu Jun 8 16:31:00 2017 13 // Update Count : 25 14 14 // 15 15 … … 137 137 maybeAccept( tryStmt->get_block(), *this ); 138 138 acceptAll( tryStmt->get_catchers(), *this ); 139 maybeAccept( tryStmt->get_finally(), *this );140 139 } 141 140 142 141 void Visitor::visit( CatchStmt *catchStmt ) { 143 142 maybeAccept( catchStmt->get_decl(), *this ); 144 maybeAccept( catchStmt->get_cond(), *this );145 143 maybeAccept( catchStmt->get_body(), *this ); 146 144 }
Note:
See TracChangeset
for help on using the changeset viewer.