Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Mutator.cc

    re4d829b r25a8631  
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Mar 30 16:45:19 2017
    13 // Update Count     : 22
     11// Last Modified By : Andrew Beach
     12// Last Modified On : Thu Jun 22 13:43:00 2017
     13// Update Count     : 24
    1414//
    1515
     
    153153}
    154154
     155Statement *Mutator::mutate( ThrowStmt *throwStmt ) {
     156        throwStmt->set_expr( maybeMutate( throwStmt->get_expr(), *this ) );
     157        throwStmt->set_target( maybeMutate( throwStmt->get_target(), *this ) );
     158        return throwStmt;
     159}
     160
    155161Statement *Mutator::mutate( TryStmt *tryStmt ) {
    156162        tryStmt->set_block( maybeMutate( tryStmt->get_block(), *this ) );
    157163        mutateAll( tryStmt->get_catchers(), *this );
     164        tryStmt->set_finally( maybeMutate( tryStmt->get_finally(), *this ) );
    158165        return tryStmt;
    159166}
     
    161168Statement *Mutator::mutate( CatchStmt *catchStmt ) {
    162169        catchStmt->set_decl( maybeMutate( catchStmt->get_decl(), *this ) );
     170        catchStmt->set_cond( maybeMutate( catchStmt->get_cond(), *this ) );
    163171        catchStmt->set_body( maybeMutate( catchStmt->get_body(), *this ) );
    164172        return catchStmt;
     
    374382}
    375383
    376 Expression *Mutator::mutate( UntypedValofExpr *valofExpr ) {
    377         valofExpr->set_env( maybeMutate( valofExpr->get_env(), *this ) );
    378         valofExpr->set_result( maybeMutate( valofExpr->get_result(), *this ) );
    379         return valofExpr;
    380 }
    381 
    382384Expression *Mutator::mutate( RangeExpr *rangeExpr ) {
    383385        rangeExpr->set_env( maybeMutate( rangeExpr->get_env(), *this ) );
     
    405407        tupleExpr->set_result( maybeMutate( tupleExpr->get_result(), *this ) );
    406408        tupleExpr->set_tuple( maybeMutate( tupleExpr->get_tuple(), *this ) );
    407         return tupleExpr;
    408 }
    409 
    410 Expression *Mutator::mutate( MemberTupleExpr *tupleExpr ) {
    411         tupleExpr->set_env( maybeMutate( tupleExpr->get_env(), *this ) );
    412         tupleExpr->set_result( maybeMutate( tupleExpr->get_result(), *this ) );
    413         tupleExpr->set_member( maybeMutate( tupleExpr->get_member(), *this ) );
    414         tupleExpr->set_aggregate( maybeMutate( tupleExpr->get_aggregate(), *this ) );
    415409        return tupleExpr;
    416410}
     
    437431        uniqueExpr->set_expr( maybeMutate( uniqueExpr->get_expr(), *this ) );
    438432        return uniqueExpr;
    439 }
    440 
    441 Expression *Mutator::mutate( UntypedInitExpr * initExpr ) {
    442         initExpr->set_env( maybeMutate( initExpr->get_env(), *this ) );
    443         initExpr->set_result( maybeMutate( initExpr->get_result(), *this ) );
    444         initExpr->set_expr( maybeMutate( initExpr->get_expr(), *this ) );
    445         // not currently mutating initAlts, but this doesn't matter since this node is only used in the resolver.
    446         return initExpr;
    447 }
    448 
    449 Expression *Mutator::mutate( InitExpr * initExpr ) {
    450         initExpr->set_env( maybeMutate( initExpr->get_env(), *this ) );
    451         initExpr->set_result( maybeMutate( initExpr->get_result(), *this ) );
    452         initExpr->set_expr( maybeMutate( initExpr->get_expr(), *this ) );
    453         initExpr->set_designation( maybeMutate( initExpr->get_designation(), *this ) );
    454         return initExpr;
    455433}
    456434
     
    557535
    558536
    559 Designation *Mutator::mutate( Designation * designation ) {
    560         mutateAll( designation->get_designators(), *this );
    561         return designation;
    562 }
    563 
    564537Initializer *Mutator::mutate( SingleInit *singleInit ) {
    565538        singleInit->set_value( singleInit->get_value()->acceptMutator( *this ) );
     
    568541
    569542Initializer *Mutator::mutate( ListInit *listInit ) {
    570         mutateAll( listInit->get_designations(), *this );
     543        mutateAll( listInit->get_designators(), *this );
    571544        mutateAll( listInit->get_initializers(), *this );
    572545        return listInit;
Note: See TracChangeset for help on using the changeset viewer.