Changes in src/SynTree/Statement.cc [ee3c93d:cc32d83]
- File:
-
- 1 edited
-
src/SynTree/Statement.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Statement.cc
ree3c93d rcc32d83 243 243 } 244 244 245 WhileStmt::WhileStmt( Expression *condition, Statement *body, std::list< Statement * > & initialization,bool isDoWhile ):246 Statement(), condition( condition), body( body), i nitialization( initialization ), isDoWhile( isDoWhile) {245 WhileStmt::WhileStmt( Expression *condition, Statement *body, bool isDoWhile ): 246 Statement(), condition( condition), body( body), isDoWhile( isDoWhile) { 247 247 } 248 248
Note:
See TracChangeset
for help on using the changeset viewer.