| 3758 | |
| 3759 | template <typename T> |
| 3760 | inline void Reference<T>::Reset() { |
| 3761 | if (_ref != nullptr) { |
| 3762 | napi_status status = napi_delete_reference(_env, _ref); |
| 3763 | NAPI_THROW_IF_FAILED_VOID(_env, status); |
| 3764 | _ref = nullptr; |
| 3765 | } |
| 3766 | } |
| 3767 | |
| 3768 | template <typename T> |
| 3769 | inline void Reference<T>::Reset(const T& value, uint32_t refcount) { |