| Index: src/handles.cc
 | 
| diff --git a/src/handles.cc b/src/handles.cc
 | 
| index 1ac77cc1c42f49f14b0326f2dc338256986c52d4..b3704df698970eb140f939f5e2a759112ac26833 100644
 | 
| --- a/src/handles.cc
 | 
| +++ b/src/handles.cc
 | 
| @@ -615,8 +615,12 @@ Handle<FixedArray> GetKeysInFixedArrayFor(Handle<JSReceiver> object,
 | 
|      if (p->IsJSProxy()) {
 | 
|        Handle<JSProxy> proxy(JSProxy::cast(*p), isolate);
 | 
|        Handle<Object> args[] = { proxy };
 | 
| -      Handle<Object> names = Execution::Call(
 | 
| -          isolate->proxy_enumerate(), object, ARRAY_SIZE(args), args, threw);
 | 
| +      Handle<Object> names = Execution::Call(isolate,
 | 
| +                                             isolate->proxy_enumerate(),
 | 
| +                                             object,
 | 
| +                                             ARRAY_SIZE(args),
 | 
| +                                             args,
 | 
| +                                             threw);
 | 
|        if (*threw) return content;
 | 
|        content = AddKeysFromJSArray(content, Handle<JSArray>::cast(names));
 | 
|        break;
 | 
| 
 |