Ignore:
Timestamp:
Sep 10, 2016, 11:08:47 AM (8 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
5af62f1
Parents:
f5e81d1 (diff), 03e3117 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into tuples

Conflicts:

src/ResolvExpr/AlternativeFinder.cc
src/ResolvExpr/AlternativeFinder.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Mutator.cc

    rf5e81d1 radd7117  
    340340}
    341341
    342 Expression *Mutator::mutate( UntypedValofExpr *valofExpr ) {
    343         mutateAll( valofExpr->get_results(), *this );
    344         return valofExpr;
     342Expression* Mutator::mutate( ConstructorExpr *ctorExpr ) {
     343        mutateAll( ctorExpr->get_results(), *this );
     344        ctorExpr->set_callExpr( maybeMutate( ctorExpr->get_callExpr(), *this ) );
     345        return ctorExpr;
    345346}
    346347
     
    350351        compLitExpr->set_initializer( maybeMutate( compLitExpr->get_initializer(), *this ) );
    351352        return compLitExpr;
     353}
     354
     355Expression *Mutator::mutate( UntypedValofExpr *valofExpr ) {
     356        mutateAll( valofExpr->get_results(), *this );
     357        return valofExpr;
    352358}
    353359
Note: See TracChangeset for help on using the changeset viewer.