Changes in src/ControlStruct/MLEMutator.h [3b0bc16:9d6317f]
- File:
-
- 1 edited
-
src/ControlStruct/MLEMutator.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/MLEMutator.h
r3b0bc16 r9d6317f 9 9 // Author : Rodolfo G. Esteves 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Tue Feb 1 09:27:24 202213 // Update Count : 5011 // Last Modified By : Andrew Beach 12 // Last Modified On : Wed Jan 22 11:50:00 2020 13 // Update Count : 48 14 14 // 15 15 … … 42 42 void premutate( CompoundStmt *cmpndStmt ); 43 43 Statement * postmutate( BranchStmt *branchStmt ) throw ( SemanticErrorException ); 44 void premutate( While DoStmt *whileDoStmt );45 Statement * postmutate( While DoStmt *whileDoStmt );44 void premutate( WhileStmt *whileStmt ); 45 Statement * postmutate( WhileStmt *whileStmt ); 46 46 void premutate( ForStmt *forStmt ); 47 47 Statement * postmutate( ForStmt *forStmt ); … … 67 67 stmt( stmt ), breakExit( breakExit ), contExit( contExit ) {} 68 68 69 explicit Entry( While DoStmt *stmt, Label breakExit, Label contExit ) :69 explicit Entry( WhileStmt *stmt, Label breakExit, Label contExit ) : 70 70 stmt( stmt ), breakExit( breakExit ), contExit( contExit ) {} 71 71
Note:
See TracChangeset
for help on using the changeset viewer.