Changes in src/SynTree/Mutator.cc [ea6332d:6d49ea3]
- File:
-
- 1 edited
-
src/SynTree/Mutator.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Mutator.cc
rea6332d r6d49ea3 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Andrew Beach12 // Last Modified On : Mon Jul 24 16:32:00201713 // Update Count : 2 511 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Aug 17 15:39:37 2017 13 // Update Count : 27 14 14 // 15 15 … … 114 114 115 115 Statement *Mutator::mutate( IfStmt *ifStmt ) { 116 mutateAll( ifStmt->get_initialization(), *this ); 116 117 ifStmt->set_condition( maybeMutate( ifStmt->get_condition(), *this ) ); 117 118 ifStmt->set_thenPart( maybeMutate( ifStmt->get_thenPart(), *this ) );
Note:
See TracChangeset
for help on using the changeset viewer.