Changes in src/Parser/StatementNode.cpp [c92bdcc:525f7ad]
- File:
-
- 1 edited
-
src/Parser/StatementNode.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/StatementNode.cpp
rc92bdcc r525f7ad 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 213 224 ast::Expr * astcond = nullptr; // maybe empty 214 225 astcond = maybeMoveBuild( forctl->condition );
Note:
See TracChangeset
for help on using the changeset viewer.