MCPcopy Create free account
hub / github.com/csmith-project/csmith / OutputStatementList

Function OutputStatementList

src/Block.cpp:274–284  ·  view source on GitHub ↗

* */

Source from the content-addressed store, hash-verified

272 *
273 */
274static void
275OutputStatementList(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 *

Callers 1

OutputMethod · 0.85

Calls 4

sizeMethod · 0.80
pre_outputMethod · 0.80
post_outputMethod · 0.80
OutputMethod · 0.45

Tested by

no test coverage detected