| 3742 | |
| 3743 | template <typename T> |
| 3744 | inline uint32_t Reference<T>::Ref() const { |
| 3745 | uint32_t result; |
| 3746 | napi_status status = napi_reference_ref(_env, _ref, &result); |
| 3747 | NAPI_THROW_IF_FAILED(_env, status, 0); |
| 3748 | return result; |
| 3749 | } |
| 3750 | |
| 3751 | template <typename T> |
| 3752 | inline uint32_t Reference<T>::Unref() const { |
no outgoing calls