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