| 392 | } |
| 393 | |
| 394 | void |
| 395 | StatementFor::output_header(std::ostream& out, int indent) const |
| 396 | { |
| 397 | output_tab(out, indent); |
| 398 | out << "for ("; |
| 399 | init.OutputAsExpr(out); |
| 400 | out << "; "; |
| 401 | test.Output(out); |
| 402 | out << "; "; |
| 403 | incr.OutputAsExpr(out); |
| 404 | out << ")"; |
| 405 | outputln(out); |
| 406 | } |
| 407 | |
| 408 | /* |
| 409 | * |
no test coverage detected