Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Mutator.cc

    re994912 r907eccb  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Feb  9 14:22:56 2017
    13 // Update Count     : 20
     12// Last Modified On : Thu Aug  4 11:23:21 2016
     13// Update Count     : 19
    1414//
    1515
     
    8686}
    8787
    88 AsmDecl *Mutator::mutate( AsmDecl *asmDecl ) {
    89         asmDecl->set_stmt( maybeMutate( asmDecl->get_stmt(), *this ) );
    90         return asmDecl;
    91 }
    92 
    93 
    9488CompoundStmt *Mutator::mutate( CompoundStmt *compoundStmt ) {
    9589        mutateAll( compoundStmt->get_kids(), *this );
     
    183177        return impCtorDtorStmt;
    184178}
    185 
    186179
    187180Expression *Mutator::mutate( ApplicationExpr *applicationExpr ) {
     
    440433}
    441434
    442 
    443435Type *Mutator::mutate( VoidType *voidType ) {
    444436        mutateAll( voidType->get_forall(), *this );
     
    541533}
    542534
    543 
    544535Initializer *Mutator::mutate( SingleInit *singleInit ) {
    545536        singleInit->set_value( singleInit->get_value()->acceptMutator( *this ) );
     
    560551}
    561552
    562 
    563553Subrange *Mutator::mutate( Subrange *subrange ) {
    564554        return subrange;
    565555}
    566 
    567556
    568557Constant *Mutator::mutate( Constant *constant ) {
Note: See TracChangeset for help on using the changeset viewer.