| 118 | } |
| 119 | |
| 120 | void |
| 121 | ExpressionComma::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 | |
| 135 | void |
| 136 | ExpressionComma::indented_output(std::ostream &out, int indent) const |
nothing calls this directly
no test coverage detected