@@ -26,6 +26,10 @@ using v8::HandleScope;
26
26
using v8::Integer;
27
27
using v8::Isolate;
28
28
using v8::Local;
29
+ using v8::Maybe;
30
+ using v8::MaybeLocal;
31
+ using v8::Name;
32
+ using v8::NamedPropertyHandlerConfiguration;
29
33
using v8::None;
30
34
using v8::Object;
31
35
using v8::ObjectTemplate;
@@ -202,12 +206,14 @@ class ContextifyContext {
202
206
203
207
Local<ObjectTemplate> object_template =
204
208
function_template->InstanceTemplate ();
205
- object_template->SetNamedPropertyHandler (GlobalPropertyGetterCallback,
209
+
210
+ NamedPropertyHandlerConfiguration config (GlobalPropertyGetterCallback,
206
211
GlobalPropertySetterCallback,
207
212
GlobalPropertyQueryCallback,
208
213
GlobalPropertyDeleterCallback,
209
214
GlobalPropertyEnumeratorCallback,
210
215
CreateDataWrapper (env));
216
+ object_template->SetHandler (config);
211
217
212
218
Local<Context> ctx = Context::New (env->isolate (), nullptr , object_template);
213
219
if (!ctx.IsEmpty ())
@@ -342,7 +348,7 @@ class ContextifyContext {
342
348
343
349
344
350
static void GlobalPropertyGetterCallback (
345
- Local<String > property,
351
+ Local<Name > property,
346
352
const PropertyCallbackInfo<Value>& args) {
347
353
Isolate* isolate = args.GetIsolate ();
348
354
HandleScope scope (isolate);
@@ -351,22 +357,26 @@ class ContextifyContext {
351
357
Unwrap<ContextifyContext>(args.Data ().As <Object>());
352
358
353
359
Local<Object> sandbox = PersistentToLocal (isolate, ctx->sandbox_ );
354
- Local<Value> rv = sandbox->GetRealNamedProperty (property);
355
- if (rv.IsEmpty ()) {
360
+ MaybeLocal<Value> maybe_rv =
361
+ sandbox->GetRealNamedProperty (ctx->context (), property);
362
+ if (maybe_rv.IsEmpty ()) {
356
363
Local<Object> proxy_global = PersistentToLocal (isolate,
357
364
ctx->proxy_global_ );
358
- rv = proxy_global->GetRealNamedProperty (property);
359
- }
360
- if (!rv.IsEmpty () && rv == ctx->sandbox_ ) {
361
- rv = PersistentToLocal (isolate, ctx->proxy_global_ );
365
+ maybe_rv = proxy_global->GetRealNamedProperty (ctx->context (), property);
362
366
}
363
367
364
- args.GetReturnValue ().Set (rv);
368
+ Local<Value> rv;
369
+ if (maybe_rv.ToLocal (&rv)) {
370
+ if (rv == ctx->sandbox_ )
371
+ rv = PersistentToLocal (isolate, ctx->proxy_global_ );
372
+
373
+ args.GetReturnValue ().Set (rv);
374
+ }
365
375
}
366
376
367
377
368
378
static void GlobalPropertySetterCallback (
369
- Local<String > property,
379
+ Local<Name > property,
370
380
Local<Value> value,
371
381
const PropertyCallbackInfo<Value>& args) {
372
382
Isolate* isolate = args.GetIsolate ();
@@ -380,7 +390,7 @@ class ContextifyContext {
380
390
381
391
382
392
static void GlobalPropertyQueryCallback (
383
- Local<String > property,
393
+ Local<Name > property,
384
394
const PropertyCallbackInfo<Integer>& args) {
385
395
Isolate* isolate = args.GetIsolate ();
386
396
HandleScope scope (isolate);
@@ -389,35 +399,39 @@ class ContextifyContext {
389
399
Unwrap<ContextifyContext>(args.Data ().As <Object>());
390
400
391
401
Local<Object> sandbox = PersistentToLocal (isolate, ctx->sandbox_ );
392
- Local<Object> proxy_global = PersistentToLocal (isolate,
393
- ctx->proxy_global_ );
394
-
395
- if (sandbox->HasRealNamedProperty (property)) {
396
- PropertyAttribute propAttr =
397
- sandbox->GetRealNamedPropertyAttributes (property).FromJust ();
398
- args.GetReturnValue ().Set (propAttr);
399
- } else if (proxy_global->HasRealNamedProperty (property)) {
400
- PropertyAttribute propAttr =
401
- proxy_global->GetRealNamedPropertyAttributes (property).FromJust ();
402
- args.GetReturnValue ().Set (propAttr);
403
- } else {
404
- args.GetReturnValue ().Set (None);
402
+ Maybe<PropertyAttribute> maybe_prop_attr =
403
+ sandbox->GetRealNamedPropertyAttributes (ctx->context (), property);
404
+
405
+ if (maybe_prop_attr.IsNothing ()) {
406
+ Local<Object> proxy_global = PersistentToLocal (isolate,
407
+ ctx->proxy_global_ );
408
+
409
+ maybe_prop_attr =
410
+ proxy_global->GetRealNamedPropertyAttributes (ctx->context (),
411
+ property);
412
+ }
413
+
414
+ if (maybe_prop_attr.IsJust ()) {
415
+ PropertyAttribute prop_attr = maybe_prop_attr.FromJust ();
416
+ args.GetReturnValue ().Set (prop_attr);
405
417
}
406
418
}
407
419
408
420
409
421
static void GlobalPropertyDeleterCallback (
410
- Local<String > property,
422
+ Local<Name > property,
411
423
const PropertyCallbackInfo<Boolean >& args) {
412
424
Isolate* isolate = args.GetIsolate ();
413
425
HandleScope scope (isolate);
414
426
415
427
ContextifyContext* ctx =
416
428
Unwrap<ContextifyContext>(args.Data ().As <Object>());
429
+ Local<Object> sandbox = PersistentToLocal (isolate, ctx->sandbox_ );
430
+
431
+ Maybe<bool > success = sandbox->Delete (ctx->context (), property);
417
432
418
- bool success = PersistentToLocal (isolate,
419
- ctx->sandbox_ )->Delete (property);
420
- args.GetReturnValue ().Set (success);
433
+ if (success.IsJust ())
434
+ args.GetReturnValue ().Set (success.FromJust ());
421
435
}
422
436
423
437
0 commit comments