[Function.Construct.begin]
| 210 | |
| 211 | // [Function.Construct.begin] |
| 212 | TVMFFIObject* Function_Construct(void* self, TVMFFISafeCallType safe_call, |
| 213 | void (*deleter)(void* self)) { |
| 214 | int err_code; |
| 215 | TVMFFIObject* out = NULL; |
| 216 | err_code = TVMFFIFunctionCreate(self, safe_call, deleter, (void**)(&out)); |
| 217 | assert(err_code == 0); |
| 218 | return out; |
| 219 | } |
| 220 | // [Function.Construct.end] |
| 221 | |
| 222 | // [Function.Call.begin] |
nothing calls this directly
no test coverage detected