Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Mutator.cc

    rbe9036d r135b431  
    502502}
    503503
    504 Type * Mutator::mutate( ReferenceType * refType ) {
    505         mutateAll( refType->get_forall(), *this );
    506         refType->set_base( maybeMutate( refType->get_base(), *this ) );
    507         return refType;
    508 }
    509 
    510 Type * Mutator::mutate( FunctionType * functionType ) {
     504Type * Mutator::mutate( FunctionType *functionType ) {
    511505        mutateAll( functionType->get_forall(), *this );
    512506        mutateAll( functionType->get_returnVals(), *this );
     
    538532Type * Mutator::mutate( TraitInstType *aggregateUseType ) {
    539533        handleReferenceToType( aggregateUseType );
     534        mutateAll( aggregateUseType->get_members(), *this );
    540535        return aggregateUseType;
    541536}
Note: See TracChangeset for help on using the changeset viewer.