Ignore:
Timestamp:
Jan 21, 2020, 10:59:49 AM (5 years ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
09f357ec, 5518719
Parents:
5ee7d36
Message:

We think we figured out what MLE stood for and cleaned up some of the Multi-Level Exit helpers.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ControlStruct/MLEMutator.h

    r5ee7d36 r5cdeecd  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Andrew Beach
    12 // Last Modified On : Thr Jan 16 12:46:00 2020
    13 // Update Count     : 46
     12// Last Modified On : Tue Jan 21 10:33:00 2020
     13// Update Count     : 47
    1414//
    15 
    16 // Can anyone figure out what MLE stands for?
    1715
    1816#pragma once
     
    3230        class LabelGenerator;
    3331
    34         class MLEMutator : public WithVisitorRef<MLEMutator>, public WithShortCircuiting, public WithGuards {
     32        class MultiLevelExitMutator : public WithVisitorRef<MultiLevelExitMutator>,
     33                        public WithShortCircuiting, public WithGuards {
    3534          public:
    3635                class Entry;
    37                 MLEMutator( std::map<Label, Statement *> *t, LabelGenerator *gen = 0 ) : targetTable( t ), breakLabel(std::string("")), generator( gen ) {}
    38                 ~MLEMutator();
     36                MultiLevelExitMutator( std::map<Label, Statement *> *t, LabelGenerator *gen = 0 ) :
     37                        targetTable( t ), breakLabel(std::string("")), generator( gen ) {}
     38                ~MultiLevelExitMutator();
    3939
    4040                void premutate( CompoundStmt *cmpndStmt );
Note: See TracChangeset for help on using the changeset viewer.