Changes in src/ControlStruct/MLEMutator.h [9bdb8b7:720a007]
- File:
-
- 1 edited
-
src/ControlStruct/MLEMutator.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/MLEMutator.h
r9bdb8b7 r720a007 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 Oct 22 17:22:47 201913 // Update Count : 4 512 // Last Modified On : Thu Mar 8 16:42:32 2018 13 // Update Count : 41 14 14 // 15 15 … … 47 47 void premutate( SwitchStmt *switchStmt ); 48 48 Statement * postmutate( SwitchStmt *switchStmt ); 49 void premutate( TryStmt *tryStmt );50 Statement * postmutate( TryStmt *tryStmt );51 49 52 50 Statement *mutateLoop( Statement *bodyLoop, Entry &e ); … … 75 73 explicit Entry( SwitchStmt *stmt, Label breakExit, Label fallDefaultExit ) : 76 74 stmt( stmt ), breakExit( breakExit ), fallDefaultExit( fallDefaultExit ) {} 77 78 explicit Entry( TryStmt *stmt, Label breakExit ) :79 stmt( stmt ), breakExit( breakExit ) {}80 75 81 76 bool operator==( const Statement *other ) { return stmt == other; }
Note:
See TracChangeset
for help on using the changeset viewer.