| 39 | namespace { |
| 40 | |
| 41 | std::string toString( |
| 42 | const std::string& functionName, |
| 43 | const std::vector<TypePtr>& argTypes) { |
| 44 | std::ostringstream signature; |
| 45 | signature << functionName << "("; |
| 46 | for (auto i = 0; i < argTypes.size(); i++) { |
| 47 | if (i > 0) { |
| 48 | signature << ", "; |
| 49 | } |
| 50 | signature << argTypes[i]->toString(); |
| 51 | } |
| 52 | signature << ")"; |
| 53 | return signature.str(); |
| 54 | } |
| 55 | |
| 56 | std::string toString( |
| 57 | const std::vector<std::shared_ptr<const exec::FunctionSignature>>& |
no test coverage detected