* */
| 450 | * |
| 451 | */ |
| 452 | void |
| 453 | FunctionInvocationUser::indented_output(std::ostream &out, int indent) const |
| 454 | { |
| 455 | if (has_simple_params()) { |
| 456 | output_tab(out, indent); |
| 457 | Output(out); |
| 458 | return; |
| 459 | } |
| 460 | output_tab(out, indent); |
| 461 | out << func->name; |
| 462 | outputln(out); |
| 463 | output_open_encloser("(", out, indent); |
| 464 | size_t i; |
| 465 | for (i=0; i<param_value.size(); i++) { |
| 466 | if (i > 0) outputln(out); |
| 467 | param_value[i]->indented_output(out, indent); |
| 468 | out << ","; |
| 469 | } |
| 470 | output_close_encloser(")", out, indent); |
| 471 | } |
| 472 | /////////////////////////////////////////////////////////////////////////////// |
| 473 | |
| 474 | // Local Variables: |
nothing calls this directly
no test coverage detected