Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Mutator.cc

    rfbcde64 rce8c12f  
    462462}
    463463
     464Type *Mutator::mutate( ReferenceType *refType ) {
     465        mutateAll( refType->get_forall(), *this );
     466        refType->set_base( maybeMutate( refType->get_base(), *this ) );
     467        return refType;
     468}
     469
    464470Type *Mutator::mutate( FunctionType *functionType ) {
    465471        mutateAll( functionType->get_forall(), *this );
Note: See TracChangeset for help on using the changeset viewer.