Changes in src/SynTree/Visitor.cc [25a8631:daf1af8]
- File:
-
- 1 edited
-
src/SynTree/Visitor.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Visitor.cc
r25a8631 rdaf1af8 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 } … … 301 299 maybeAccept( compLitExpr->get_result(), *this ); 302 300 maybeAccept( compLitExpr->get_initializer(), *this ); 301 } 302 303 void Visitor::visit( UntypedValofExpr *valofExpr ) { 304 maybeAccept( valofExpr->get_result(), *this ); 305 maybeAccept( valofExpr->get_body(), *this ); 303 306 } 304 307
Note:
See TracChangeset
for help on using the changeset viewer.