| 112 | } |
| 113 | |
| 114 | std::string toStringInParentheses(TypePointers const& _types, bool _withoutDataLocation) |
| 115 | { |
| 116 | return '(' + util::joinHumanReadable( |
| 117 | _types | ranges::views::transform([&](auto const* _type) { return _type->toString(_withoutDataLocation); }), |
| 118 | "," |
| 119 | ) + ')'; |
| 120 | } |
| 121 | |
| 122 | } |
| 123 |
no test coverage detected