| Index: src/execution.cc | 
| diff --git a/src/execution.cc b/src/execution.cc | 
| index 96c88c3a3104ea5f168c690e3bcfb7b2bd70c6a1..243bb8a9117ae5998384b1146c21e8a0ec4f923e 100644 | 
| --- a/src/execution.cc | 
| +++ b/src/execution.cc | 
| @@ -140,7 +140,8 @@ MaybeHandle<Object> Execution::Call(Isolate* isolate, Handle<Object> callable, | 
| SaveContext save(isolate); | 
| isolate->set_context(function->context()); | 
| DCHECK(function->context()->global_object()->IsJSGlobalObject()); | 
| -    auto value = Builtins::InvokeApiFunction(function, receiver, argc, argv); | 
| +    auto value = | 
| +        Builtins::InvokeApiFunction(isolate, function, receiver, argc, argv); | 
| bool has_exception = value.is_null(); | 
| DCHECK(has_exception == isolate->has_pending_exception()); | 
| if (has_exception) { | 
|  |