Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/StatementNode.hpp

    rc92bdcc r525f7ad  
    6363struct ForCtrl {
    6464        ForCtrl( StatementNode * stmt, ExpressionNode * condition, ExpressionNode * change ) :
    65                 init( stmt ), condition( condition ), change( change ) {}
     65                init( stmt ), condition( condition ), change( change ), range_over( nullptr ) {}
     66        ForCtrl( StatementNode * decl, ExpressionNode * _range_over) :
     67                init( decl ), condition( nullptr ), change( nullptr ),  range_over( _range_over ) {}
    6668
    6769        StatementNode * init;
    6870        ExpressionNode * condition;
    6971        ExpressionNode * change;
     72        ExpressionNode * range_over;
    7073};
    7174
Note: See TracChangeset for help on using the changeset viewer.