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

Method OutputFormalParamList

src/Function.cpp:510–522  ·  view source on GitHub ↗

* */

Source from the content-addressed store, hash-verified

508 *
509 */
510void
511Function::OutputFormalParamList(std::ostream &out)
512{
513 if (param.size() == 0) {
514 assert(Type::void_type);
515 Type::void_type->Output(out);
516 } else {
517 param_first = true;
518 for_each(param.begin(),
519 param.end(),
520 std::bind2nd(std::ptr_fun(OutputFormalParam), &out));
521 }
522}
523
524/*
525 *

Callers

nothing calls this directly

Calls 4

sizeMethod · 0.80
beginMethod · 0.80
endMethod · 0.80
OutputMethod · 0.45

Tested by

no test coverage detected