Changes in src/SynTree/Mutator.h [af5c204a:ce8c12f]
- File:
-
- 1 edited
-
src/SynTree/Mutator.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Mutator.h
raf5c204a rce8c12f 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Andrew Beach12 // Last Modified On : Thu Jun 8 15:45:00201713 // Update Count : 1 411 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Feb 9 14:23:23 2017 13 // Update Count : 13 14 14 // 15 15 #include <cassert> … … 46 46 virtual Statement* mutate( BranchStmt *branchStmt ); 47 47 virtual Statement* mutate( ReturnStmt *returnStmt ); 48 virtual Statement* mutate( ThrowStmt *throwStmt ); 49 virtual Statement* mutate( TryStmt *tryStmt ); 48 virtual Statement* mutate( TryStmt *returnStmt ); 50 49 virtual Statement* mutate( CatchStmt *catchStmt ); 51 50 virtual Statement* mutate( FinallyStmt *catchStmt ); … … 78 77 virtual Expression* mutate( ConstructorExpr *ctorExpr ); 79 78 virtual Expression* mutate( CompoundLiteralExpr *compLitExpr ); 79 virtual Expression* mutate( UntypedValofExpr *valofExpr ); 80 80 virtual Expression* mutate( RangeExpr *rangeExpr ); 81 81 virtual Expression* mutate( UntypedTupleExpr *tupleExpr ); 82 82 virtual Expression* mutate( TupleExpr *tupleExpr ); 83 83 virtual Expression* mutate( TupleIndexExpr *tupleExpr ); 84 virtual Expression* mutate( MemberTupleExpr *tupleExpr ); 84 85 virtual Expression* mutate( TupleAssignExpr *assignExpr ); 85 86 virtual Expression* mutate( StmtExpr * stmtExpr ); … … 90 91 virtual Type* mutate( PointerType *pointerType ); 91 92 virtual Type* mutate( ArrayType *arrayType ); 93 virtual Type* mutate( ReferenceType *refType ); 92 94 virtual Type* mutate( FunctionType *functionType ); 93 95 virtual Type* mutate( StructInstType *aggregateUseType );
Note:
See TracChangeset
for help on using the changeset viewer.