Changes in src/ControlStruct/MLEMutator.h [5cdeecd:d62806c]
- File:
-
- 1 edited
-
src/ControlStruct/MLEMutator.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/MLEMutator.h
r5cdeecd rd62806c 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : T ue Jan 21 10:33:00 202013 // Update Count : 4 712 // Last Modified On : Thr Jan 16 12:46:00 2020 13 // Update Count : 46 14 14 // 15 16 // Can anyone figure out what MLE stands for? 15 17 16 18 #pragma once … … 30 32 class LabelGenerator; 31 33 32 class MultiLevelExitMutator : public WithVisitorRef<MultiLevelExitMutator>, 33 public WithShortCircuiting, public WithGuards { 34 class MLEMutator : public WithVisitorRef<MLEMutator>, public WithShortCircuiting, public WithGuards { 34 35 public: 35 36 class Entry; 36 MultiLevelExitMutator( std::map<Label, Statement *> *t, LabelGenerator *gen = 0 ) : 37 targetTable( t ), breakLabel(std::string("")), generator( gen ) {} 38 ~MultiLevelExitMutator(); 37 MLEMutator( std::map<Label, Statement *> *t, LabelGenerator *gen = 0 ) : targetTable( t ), breakLabel(std::string("")), generator( gen ) {} 38 ~MLEMutator(); 39 39 40 40 void premutate( CompoundStmt *cmpndStmt );
Note:
See TracChangeset
for help on using the changeset viewer.