Changes in src/GenPoly/DeclMutator.h [5f98ce5:4e06c1e]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/DeclMutator.h
r5f98ce5 r4e06c1e 28 28 class DeclMutator : public Mutator { 29 29 public: 30 typedef Mutator Parent;31 32 30 DeclMutator(); 33 31 virtual ~DeclMutator(); 34 35 using Parent::mutate; 32 36 33 virtual CompoundStmt* mutate(CompoundStmt *compoundStmt); 37 34 virtual Statement* mutate(IfStmt *ifStmt); … … 45 42 /// Mutates a list of declarations with this visitor 46 43 void mutateDeclarationList(std::list< Declaration* >& decls); 47 44 48 45 /// Called on entry to a new scope; overriders should call this as a super-class call 49 46 virtual void doBeginScope();
Note:
See TracChangeset
for help on using the changeset viewer.