@@ -362,7 +362,6 @@ class ContextifyContext{
362362 Local<String> property,
363363const PropertyCallbackInfo<Value>& args){
364364 Isolate* isolate = args.GetIsolate ();
365- HandleScope scope (isolate);
366365
367366 ContextifyContext* ctx =
368367 Unwrap<ContextifyContext>(args.Data ().As <Object>());
@@ -387,7 +386,6 @@ class ContextifyContext{
387386 Local<Value> value,
388387const PropertyCallbackInfo<Value>& args){
389388 Isolate* isolate = args.GetIsolate ();
390- HandleScope scope (isolate);
391389
392390 ContextifyContext* ctx =
393391 Unwrap<ContextifyContext>(args.Data ().As <Object>());
@@ -400,7 +398,6 @@ class ContextifyContext{
400398 Local<String> property,
401399const PropertyCallbackInfo<Integer>& args){
402400 Isolate* isolate = args.GetIsolate ();
403- HandleScope scope (isolate);
404401
405402 ContextifyContext* ctx =
406403 Unwrap<ContextifyContext>(args.Data ().As <Object>());
@@ -422,7 +419,6 @@ class ContextifyContext{
422419 Local<String> property,
423420const PropertyCallbackInfo<Boolean>& args){
424421 Isolate* isolate = args.GetIsolate ();
425- HandleScope scope (isolate);
426422
427423 ContextifyContext* ctx =
428424 Unwrap<ContextifyContext>(args.Data ().As <Object>());
@@ -435,8 +431,6 @@ class ContextifyContext{
435431
436432static void GlobalPropertyEnumeratorCallback (
437433const PropertyCallbackInfo<Array>& args){
438- HandleScope scope (args.GetIsolate ());
439-
440434 ContextifyContext* ctx =
441435 Unwrap<ContextifyContext>(args.Data ().As <Object>());
442436
0 commit comments