Changes in src/SynTree/Mutator.cc [f1b1e4c:4e06c1e]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Mutator.cc
rf1b1e4c r4e06c1e 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Rob Schluntz12 // Last Modified On : Wed Apr 27 17:07:29 201613 // Update Count : 1 611 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Jul 12 17:51:19 2016 13 // Update Count : 17 14 14 // 15 15 … … 130 130 } 131 131 132 Statement *Mutator::mutate( ChooseStmt *switchStmt ) {133 switchStmt->set_condition( maybeMutate( switchStmt->get_condition(), *this ) );134 mutateAll( switchStmt->get_branches(), *this );135 return switchStmt;136 }137 138 Statement *Mutator::mutate( FallthruStmt *fallthruStmt ) {139 return fallthruStmt;140 }141 142 132 Statement *Mutator::mutate( CaseStmt *caseStmt ) { 143 133 caseStmt->set_condition( maybeMutate( caseStmt->get_condition(), *this ) );
Note:
See TracChangeset
for help on using the changeset viewer.