summaryrefslogtreecommitdiff
path: root/src/async_wrap-inl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/async_wrap-inl.h')
-rw-r--r--src/async_wrap-inl.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/async_wrap-inl.h b/src/async_wrap-inl.h
index f9c709aa21..c9f1233324 100644
--- a/src/async_wrap-inl.h
+++ b/src/async_wrap-inl.h
@@ -50,7 +50,6 @@ inline AsyncWrap::AsyncScope::AsyncScope(AsyncWrap* wrap)
Environment* env = wrap->env();
if (env->async_hooks()->fields()[Environment::AsyncHooks::kBefore] == 0)
return;
- v8::HandleScope handle_scope(env->isolate());
EmitBefore(env, wrap->get_async_id());
}
@@ -58,7 +57,6 @@ inline AsyncWrap::AsyncScope::~AsyncScope() {
Environment* env = wrap_->env();
if (env->async_hooks()->fields()[Environment::AsyncHooks::kAfter] == 0)
return;
- v8::HandleScope handle_scope(env->isolate());
EmitAfter(env, wrap_->get_async_id());
}