* */
| 272 | * |
| 273 | */ |
| 274 | static void |
| 275 | OutputStatementList(const vector<Statement*> &stms, std::ostream &out, FactMgr* fm, int indent) |
| 276 | { |
| 277 | size_t i; |
| 278 | for (i=0; i<stms.size(); i++) { |
| 279 | const Statement* stm = stms[i]; |
| 280 | stm->pre_output(out, fm, indent); |
| 281 | stm->Output(out, fm, indent); |
| 282 | stm->post_output(out, fm, indent); |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | /* |
| 287 | * |
no test coverage detected