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