@@ -362,7 +362,6 @@ class ContextifyContext {
362
362
Local<String> property,
363
363
const PropertyCallbackInfo<Value>& args) {
364
364
Isolate* isolate = args.GetIsolate ();
365
- HandleScope scope (isolate);
366
365
367
366
ContextifyContext* ctx =
368
367
Unwrap<ContextifyContext>(args.Data ().As <Object>());
@@ -387,7 +386,6 @@ class ContextifyContext {
387
386
Local<Value> value,
388
387
const PropertyCallbackInfo<Value>& args) {
389
388
Isolate* isolate = args.GetIsolate ();
390
- HandleScope scope (isolate);
391
389
392
390
ContextifyContext* ctx =
393
391
Unwrap<ContextifyContext>(args.Data ().As <Object>());
@@ -400,7 +398,6 @@ class ContextifyContext {
400
398
Local<String> property,
401
399
const PropertyCallbackInfo<Integer>& args) {
402
400
Isolate* isolate = args.GetIsolate ();
403
- HandleScope scope (isolate);
404
401
405
402
ContextifyContext* ctx =
406
403
Unwrap<ContextifyContext>(args.Data ().As <Object>());
@@ -422,7 +419,6 @@ class ContextifyContext {
422
419
Local<String> property,
423
420
const PropertyCallbackInfo<Boolean >& args) {
424
421
Isolate* isolate = args.GetIsolate ();
425
- HandleScope scope (isolate);
426
422
427
423
ContextifyContext* ctx =
428
424
Unwrap<ContextifyContext>(args.Data ().As <Object>());
@@ -435,8 +431,6 @@ class ContextifyContext {
435
431
436
432
static void GlobalPropertyEnumeratorCallback (
437
433
const PropertyCallbackInfo<Array>& args) {
438
- HandleScope scope (args.GetIsolate ());
439
-
440
434
ContextifyContext* ctx =
441
435
Unwrap<ContextifyContext>(args.Data ().As <Object>());
442
436
0 commit comments