| 6192 | typename DataType, |
| 6193 | void (*CallJs)(Napi::Env, Napi::Function, ContextType*, DataType*)> |
| 6194 | void TypedThreadSafeFunction<ContextType, DataType, CallJs>::CallJsInternal( |
| 6195 | napi_env env, napi_value jsCallback, void* context, void* data) { |
| 6196 | details::CallJsWrapper<ContextType, DataType, decltype(CallJs), CallJs>( |
| 6197 | env, jsCallback, context, data); |
| 6198 | } |
| 6199 | |
| 6200 | #if NAPI_VERSION == 4 |
| 6201 | // static |
nothing calls this directly
no outgoing calls
no test coverage detected