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

Method Output

src/ExpressionComma.cpp:120–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118}
119
120void
121ExpressionComma::Output(std::ostream &out) const
122{
123 output_cast(out);
124 Reducer* reducer = CGOptions::get_reducer();
125 if (reducer && reducer->output_expr(this, out)) {
126 return;
127 }
128 out << "(";
129 lhs.Output(out);
130 out << " , ";
131 rhs.Output(out);
132 out << ")";
133}
134
135void
136ExpressionComma::indented_output(std::ostream &out, int indent) const

Callers

nothing calls this directly

Calls 1

output_exprMethod · 0.80

Tested by

no test coverage detected