* */
| 243 | * |
| 244 | */ |
| 245 | void |
| 246 | ExpressionFuncall::Output(std::ostream &out) const |
| 247 | { |
| 248 | output_cast(out); |
| 249 | Reducer* reducer = CGOptions::get_reducer(); |
| 250 | if (reducer && reducer->output_expr(this, out)) { |
| 251 | return; |
| 252 | } |
| 253 | invoke.Output(out); |
| 254 | } |
| 255 | |
| 256 | void |
| 257 | ExpressionFuncall::indented_output(std::ostream &out, int indent) const |
nothing calls this directly
no test coverage detected