Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Mutator.h

    r2a4b088 r630a82a  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Nov 19 22:26:16 2015
    13 // Update Count     : 8
     12// Last Modified On : Fri Apr  1 17:26:56 2016
     13// Update Count     : 10
    1414//
    1515#include <cassert>
     
    3131        virtual Declaration* mutate( UnionDecl *aggregateDecl );
    3232        virtual Declaration* mutate( EnumDecl *aggregateDecl );
    33         virtual Declaration* mutate( ContextDecl *aggregateDecl );
     33        virtual Declaration* mutate( TraitDecl *aggregateDecl );
    3434        virtual TypeDecl* mutate( TypeDecl *typeDecl );
    3535        virtual Declaration* mutate( TypedefDecl *typeDecl );
     
    7676        virtual Expression* mutate( AsmExpr *asmExpr );
    7777        virtual Expression* mutate( UntypedValofExpr *valofExpr );
     78        virtual Expression* mutate( CompoundLiteralExpr *compLitExpr );
    7879
    7980        virtual Type* mutate( VoidType *basicType );
     
    8586        virtual Type* mutate( UnionInstType *aggregateUseType );
    8687        virtual Type* mutate( EnumInstType *aggregateUseType );
    87         virtual Type* mutate( ContextInstType *aggregateUseType );
     88        virtual Type* mutate( TraitInstType *aggregateUseType );
    8889        virtual Type* mutate( TypeInstType *aggregateUseType );
    8990        virtual Type* mutate( TupleType *tupleType );
    9091        virtual Type* mutate( TypeofType *typeofType );
    9192        virtual Type* mutate( AttrType *attrType );
     93        virtual Type* mutate( VarArgsType *varArgsType );
    9294
    9395        virtual Initializer* mutate( SingleInit *singleInit );
Note: See TracChangeset for help on using the changeset viewer.