Changes in src/SynTree/Mutator.h [71f4e4f:2a4b088]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Mutator.h
r71f4e4f r2a4b088 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // Mutator.h -- 7 // Mutator.h -- 8 8 // 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Rob Schluntz12 // Last Modified On : Wed Jan 13 15:24:26 201613 // Update Count : 911 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Nov 19 22:26:16 2015 13 // Update Count : 8 14 14 // 15 15 #include <cassert> 16 16 17 17 #include "SynTree.h" 18 #include " SemanticError.h"18 #include "Common/SemanticError.h" 19 19 20 20 #ifndef MUTATOR_H … … 62 62 virtual Expression* mutate( MemberExpr *memberExpr ); 63 63 virtual Expression* mutate( VariableExpr *variableExpr ); 64 virtual Expression* mutate( ConstantExpr *constantExpr ); 64 virtual Expression* mutate( ConstantExpr *constantExpr ); 65 65 virtual Expression* mutate( SizeofExpr *sizeofExpr ); 66 66 virtual Expression* mutate( AlignofExpr *alignofExpr ); 67 virtual Expression* mutate( UntypedOffsetofExpr *offsetofExpr ); 68 virtual Expression* mutate( OffsetofExpr *offsetofExpr ); 67 69 virtual Expression* mutate( AttrExpr *attrExpr ); 68 70 virtual Expression* mutate( LogicalExpr *logicalExpr ); … … 91 93 virtual Initializer* mutate( SingleInit *singleInit ); 92 94 virtual Initializer* mutate( ListInit *listInit ); 93 virtual Initializer* mutate( ConstructorInit *ctorInit );94 95 95 96 virtual Subrange *mutate( Subrange *subrange );
Note:
See TracChangeset
for help on using the changeset viewer.