* */
| 471 | * |
| 472 | */ |
| 473 | void |
| 474 | StatementAssign::Output(std::ostream &out, FactMgr* /*fm*/, int indent) const |
| 475 | { |
| 476 | output_tab(out, indent); |
| 477 | OutputAsExpr(out); |
| 478 | out << ";"; |
| 479 | outputln(out); |
| 480 | } |
| 481 | |
| 482 | void |
| 483 | StatementAssign::OutputSimple(std::ostream &out) const |
no test coverage detected