From 7bfcaa8f9117ac1923644346b33a8c493b895a7f Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 13 May 2013 06:45:05 +0200 Subject: [PATCH] test: fix up weakref.cc after v8 api change --- test/gc/node_modules/weak/src/weakref.cc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/gc/node_modules/weak/src/weakref.cc b/test/gc/node_modules/weak/src/weakref.cc index c2267a0..6906142 100644 --- a/test/gc/node_modules/weak/src/weakref.cc +++ b/test/gc/node_modules/weak/src/weakref.cc @@ -134,8 +134,8 @@ void AddCallback(Handle proxy, Handle callback) { } -void TargetCallback(Persistent target, void* arg) { - HandleScope scope; +void TargetCallback(Isolate* isolate, Persistent target, void* arg) { + HandleScope scope(isolate); assert(target.IsNearDeath()); @@ -187,7 +187,9 @@ Handle Create(const Arguments& args) { cont->proxy = Persistent::New(proxyClass->NewInstance()); cont->proxy->SetAlignedPointerInInternalField(0, cont); - cont->target.MakeWeak(cont, TargetCallback); + cont->target.MakeWeak(Isolate::GetCurrent(), + static_cast(cont), + TargetCallback); if (args.Length() >= 2) { AddCallback(cont->proxy, Handle::Cast(args[1])); -- 2.7.4