Changes in src/SynTree/Mutator.cc [843054c2:145f1fc]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Mutator.cc
r843054c2 r145f1fc 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 : Mon May 18 10:10:46201513 // Update Count : 111 // Last Modified By : Rob Schluntz 12 // Last Modified On : Tue Jul 14 12:31:39 2015 13 // Update Count : 2 14 14 // 15 15 … … 109 109 110 110 Statement *Mutator::mutate( ForStmt *forStmt ) { 111 forStmt->set_initialization( maybeMutate( forStmt->get_initialization(), *this ));111 mutateAll( forStmt->get_initialization(), *this ); 112 112 forStmt->set_condition( maybeMutate( forStmt->get_condition(), *this ) ); 113 113 forStmt->set_increment( maybeMutate( forStmt->get_increment(), *this ) );
Note:
See TracChangeset
for help on using the changeset viewer.