Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/GenPoly/PolyMutator.cc

    r25a8631 r45a4ea7  
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Andrew Beach
    12 // Last Modified On : Thu Jun 22 13:47:00 2017
    13 // Update Count     : 17
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Thu Aug  4 11:26:22 2016
     13// Update Count     : 16
    1414//
    1515
     
    123123
    124124        Statement * PolyMutator::mutate(TryStmt *tryStmt) {
    125                 tryStmt->set_block( maybeMutate( tryStmt->get_block(), *this ) );
     125                tryStmt->set_block(  maybeMutate( tryStmt->get_block(), *this ) );
    126126                mutateAll( tryStmt->get_catchers(), *this );
    127                 tryStmt->set_finally( maybeMutate( tryStmt->get_finally(), *this ) );
    128127                return tryStmt;
    129128        }
    130129
    131130        Statement * PolyMutator::mutate(CatchStmt *cathStmt) {
    132                 cathStmt->set_body( mutateStatement( cathStmt->get_body() ) );
    133                 cathStmt->set_cond( maybeMutate( cathStmt->get_cond(), *this ) );
    134                 cathStmt->set_decl( maybeMutate( cathStmt->get_decl(), *this ) );
     131                cathStmt->set_body(  mutateStatement( cathStmt->get_body() ) );
     132                cathStmt->set_decl(  maybeMutate( cathStmt->get_decl(), *this ) );
    135133                return cathStmt;
    136134        }
Note: See TracChangeset for help on using the changeset viewer.