Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/GenPoly/DeclMutator.cc

    r4e06c1e rdbd8652  
    99// Author           : Aaron B. Moss
    1010// Created On       : Fri Nov 27 14:44:00 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Jul 12 17:38:46 2016
    13 // Update Count     : 2
     11// Last Modified By : Aaron B. Moss
     12// Last Modified On : Fri Nov 27 14:44:00 2015
     13// Update Count     : 1
    1414//
    1515
     
    167167        }
    168168       
     169        Statement* DeclMutator::mutate(ChooseStmt *chooseStmt) {
     170                chooseStmt->set_condition( maybeMutate( chooseStmt->get_condition(), *this ) );
     171                mutateAll( chooseStmt->get_branches(), *this );
     172                return chooseStmt;
     173        }
     174       
    169175        Statement* DeclMutator::mutate(CaseStmt *caseStmt) {
    170176                caseStmt->set_condition( maybeMutate( caseStmt->get_condition(), *this ) );
Note: See TracChangeset for help on using the changeset viewer.