| 7067 | |
| 7068 | template <typename T> |
| 7069 | inline void Addon<T>::DefineAddon( |
| 7070 | Object exports, const std::initializer_list<AddonProp>& props) { |
| 7071 | DefineProperties(exports, props); |
| 7072 | entry_point_ = exports; |
| 7073 | } |
| 7074 | |
| 7075 | template <typename T> |
| 7076 | inline Napi::Object Addon<T>::DefineProperties( |
nothing calls this directly
no test coverage detected