Changeset 11b7028
- Timestamp:
- Feb 2, 2018, 3:49:55 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 3ce0c915
- Parents:
- c20b0fea
- git-author:
- Rob Schluntz <rschlunt@…> (02/02/18 15:48:50)
- git-committer:
- Rob Schluntz <rschlunt@…> (02/02/18 15:49:55)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.impl.h
rc20b0fea r11b7028 998 998 template< typename pass_type > 999 999 void PassVisitor< pass_type >::visit( FinallyStmt * node ) { 1000 VISIT_BODY( node ); 1000 VISIT_START( node ); 1001 1002 maybeAccept_impl( node->block, *this ); 1003 1004 VISIT_END( node ); 1001 1005 } 1002 1006 1003 1007 template< typename pass_type > 1004 1008 Statement * PassVisitor< pass_type >::mutate( FinallyStmt * node ) { 1005 MUTATE_BODY( Statement, node ); 1009 MUTATE_START( node ); 1010 1011 maybeMutate_impl( node->block, *this ); 1012 1013 MUTATE_END( Statement, node ); 1006 1014 } 1007 1015
Note: See TracChangeset
for help on using the changeset viewer.