| 3750 | |
| 3751 | template <typename T> |
| 3752 | inline uint32_t Reference<T>::Unref() const { |
| 3753 | uint32_t result; |
| 3754 | napi_status status = napi_reference_unref(_env, _ref, &result); |
| 3755 | NAPI_THROW_IF_FAILED(_env, status, 0); |
| 3756 | return result; |
| 3757 | } |
| 3758 | |
| 3759 | template <typename T> |
| 3760 | inline void Reference<T>::Reset() { |
no outgoing calls