Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Statement.h

    rcc32d83 ree3c93d  
    220220        Expression *condition;
    221221        Statement *body;
     222        std::list<Statement *> initialization;
    222223        bool isDoWhile;
    223224
    224225        WhileStmt( Expression *condition,
    225                Statement *body, bool isDoWhile = false );
     226               Statement *body, std::list<Statement *> & initialization, bool isDoWhile = false );
    226227        WhileStmt( const WhileStmt &other );
    227228        virtual ~WhileStmt();
Note: See TracChangeset for help on using the changeset viewer.