| 7129 | |
| 7130 | template <class Hook, class Arg> |
| 7131 | bool Env::CleanupHook<Hook, Arg>::Remove(BasicEnv env) { |
| 7132 | napi_status status = napi_remove_env_cleanup_hook(env, wrapper, data); |
| 7133 | delete data; |
| 7134 | data = nullptr; |
| 7135 | return status == napi_ok; |
| 7136 | } |
| 7137 | |
| 7138 | template <class Hook, class Arg> |
| 7139 | bool Env::CleanupHook<Hook, Arg>::IsEmpty() const { |
no outgoing calls
no test coverage detected