- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/ForExprMutator.h
r3b0bc16 ree3c93d 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T ue Feb 1 09:18:50 202213 // Update Count : 712 // Last Modified On : Thu Aug 17 15:32:48 2017 13 // Update Count : 5 14 14 // 15 15 … … 18 18 class IfStmt; 19 19 class ForStmt; 20 class While DoStmt;20 class WhileStmt; 21 21 class Statement; 22 22 … … 24 24 class ForExprMutator { 25 25 public: 26 Statement * 27 Statement * 28 Statement * postmutate( WhileDoStmt * );26 Statement *postmutate( IfStmt * ); 27 Statement *postmutate( ForStmt * ); 28 Statement *postmutate( WhileStmt * ); 29 29 }; 30 30 } // namespace ControlStruct
Note:
See TracChangeset
for help on using the changeset viewer.