| 409 | } |
| 410 | |
| 411 | static Error format_func_rets( |
| 412 | String& sb, |
| 413 | FormatFlags format_flags, |
| 414 | const BaseCompiler* cc, |
| 415 | const FuncDetail& fd) noexcept { |
| 416 | |
| 417 | return format_func_value_pack(sb, format_flags, cc, fd.ret_pack(), nullptr); |
| 418 | } |
| 419 | |
| 420 | static Error format_func_args( |
| 421 | String& sb, |
no test coverage detected