| 102 | } |
| 103 | |
| 104 | std::shared_ptr<const Type> resolveSimpleFunction( |
| 105 | const std::string& functionName, |
| 106 | const std::vector<TypePtr>& argTypes) { |
| 107 | if (auto resolvedFunction = |
| 108 | exec::simpleFunctions().resolveFunction(functionName, argTypes)) { |
| 109 | return resolvedFunction->type(); |
| 110 | } |
| 111 | |
| 112 | return nullptr; |
| 113 | } |
| 114 | |
| 115 | std::shared_ptr<const Type> resolveVectorFunction( |
| 116 | const std::string& functionName, |
no test coverage detected