| 6203 | typename DataType, |
| 6204 | void (*CallJs)(Napi::Env, Napi::Function, ContextType*, DataType*)> |
| 6205 | Napi::Function |
| 6206 | TypedThreadSafeFunction<ContextType, DataType, CallJs>::EmptyFunctionFactory( |
| 6207 | Napi::Env env) { |
| 6208 | return Napi::Function::New(env, [](const CallbackInfo& cb) {}); |
| 6209 | } |
| 6210 | |
| 6211 | // static |
| 6212 | template <typename ContextType, |
nothing calls this directly
no outgoing calls
no test coverage detected