* */
| 353 | * |
| 354 | */ |
| 355 | StatementFor::StatementFor(Block* b, const StatementAssign &init, |
| 356 | const Expression &test, |
| 357 | const StatementAssign &incr, |
| 358 | const Block &body) |
| 359 | : Statement(eFor, b), |
| 360 | init(init), |
| 361 | test(test), |
| 362 | incr(incr), |
| 363 | body(body) |
| 364 | { |
| 365 | // Nothing else to do. |
| 366 | } |
| 367 | |
| 368 | #if 0 |
| 369 | /* |