implementation of call
| 182 | private: |
| 183 | // implementation of call |
| 184 | static void CppCall(const FunctionObj* func, const AnyView* args, int32_t num_args, Any* result) { |
| 185 | (static_cast<const TSelf*>(func))->callable_(args, num_args, result); |
| 186 | } |
| 187 | /// \cond Doxygen_Suppress |
| 188 | // Implementing safe call style |
| 189 | static int SafeCall(void* func, const TVMFFIAny* args, int32_t num_args, TVMFFIAny* result) { |
nothing calls this directly
no outgoing calls
no test coverage detected