Changes in src/Parser/StatementNode.cpp [525f7ad:c92bdcc]
- File:
-
- 1 edited
-
src/Parser/StatementNode.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/StatementNode.cpp
r525f7ad rc92bdcc 211 211 buildMoveList( forctl->init, astinit ); 212 212 213 if ( forctl->range_over ) {214 ast::Expr * range_over = maybeMoveBuild( forctl->range_over );215 delete forctl;216 return new ast::ForStmt( location,217 std::move( astinit ),218 range_over,219 buildMoveSingle( stmt ),220 buildMoveOptional( else_ )221 );222 }223 224 213 ast::Expr * astcond = nullptr; // maybe empty 225 214 astcond = maybeMoveBuild( forctl->condition );
Note:
See TracChangeset
for help on using the changeset viewer.