| 5455 | //////////////////////////////////////////////////////////////////////////////// |
| 5456 | |
| 5457 | inline EscapableHandleScope::EscapableHandleScope( |
| 5458 | napi_env env, napi_escapable_handle_scope scope) |
| 5459 | : _env(env), _scope(scope) {} |
| 5460 | |
| 5461 | inline EscapableHandleScope::EscapableHandleScope(Napi::Env env) : _env(env) { |
| 5462 | napi_status status = napi_open_escapable_handle_scope(_env, &_scope); |
nothing calls this directly
no outgoing calls
no test coverage detected