Changes in src/Parser/StatementNode.hpp [525f7ad:c92bdcc]
- File:
-
- 1 edited
-
src/Parser/StatementNode.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/StatementNode.hpp
r525f7ad rc92bdcc 63 63 struct ForCtrl { 64 64 ForCtrl( StatementNode * stmt, ExpressionNode * condition, ExpressionNode * 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 ) {} 65 init( stmt ), condition( condition ), change( change ) {} 68 66 69 67 StatementNode * init; 70 68 ExpressionNode * condition; 71 69 ExpressionNode * change; 72 ExpressionNode * range_over;73 70 }; 74 71
Note:
See TracChangeset
for help on using the changeset viewer.