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