Changes in src/SynTree/Mutator.h [630a82a:2a4b088]
- File:
-
- 1 edited
-
src/SynTree/Mutator.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Mutator.h
r630a82a r2a4b088 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Apr 1 17:26:56 201613 // Update Count : 1012 // Last Modified On : Thu Nov 19 22:26:16 2015 13 // Update Count : 8 14 14 // 15 15 #include <cassert> … … 31 31 virtual Declaration* mutate( UnionDecl *aggregateDecl ); 32 32 virtual Declaration* mutate( EnumDecl *aggregateDecl ); 33 virtual Declaration* mutate( TraitDecl *aggregateDecl );33 virtual Declaration* mutate( ContextDecl *aggregateDecl ); 34 34 virtual TypeDecl* mutate( TypeDecl *typeDecl ); 35 35 virtual Declaration* mutate( TypedefDecl *typeDecl ); … … 76 76 virtual Expression* mutate( AsmExpr *asmExpr ); 77 77 virtual Expression* mutate( UntypedValofExpr *valofExpr ); 78 virtual Expression* mutate( CompoundLiteralExpr *compLitExpr );79 78 80 79 virtual Type* mutate( VoidType *basicType ); … … 86 85 virtual Type* mutate( UnionInstType *aggregateUseType ); 87 86 virtual Type* mutate( EnumInstType *aggregateUseType ); 88 virtual Type* mutate( TraitInstType *aggregateUseType );87 virtual Type* mutate( ContextInstType *aggregateUseType ); 89 88 virtual Type* mutate( TypeInstType *aggregateUseType ); 90 89 virtual Type* mutate( TupleType *tupleType ); 91 90 virtual Type* mutate( TypeofType *typeofType ); 92 91 virtual Type* mutate( AttrType *attrType ); 93 virtual Type* mutate( VarArgsType *varArgsType );94 92 95 93 virtual Initializer* mutate( SingleInit *singleInit );
Note:
See TracChangeset
for help on using the changeset viewer.