| Index: src/runtime/runtime-function.cc
|
| diff --git a/src/runtime/runtime-function.cc b/src/runtime/runtime-function.cc
|
| index 6585b4f06349e5e9a99f85a2f49e02a2dc15e3a1..6666ba4026b02f308e8c246be9d34a18db7b08cf 100644
|
| --- a/src/runtime/runtime-function.cc
|
| +++ b/src/runtime/runtime-function.cc
|
| @@ -522,7 +522,7 @@
|
| Handle<Object> result;
|
| ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
|
| isolate, result,
|
| - Execution::Call(isolate, target, receiver, argc, argv.start()));
|
| + Execution::Call(isolate, target, receiver, argc, argv.start(), true));
|
| return *result;
|
| }
|
|
|
| @@ -559,7 +559,8 @@
|
|
|
| Handle<Object> result;
|
| ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
|
| - isolate, result, Execution::Call(isolate, fun, receiver, argc, argv));
|
| + isolate, result,
|
| + Execution::Call(isolate, fun, receiver, argc, argv, true));
|
| return *result;
|
| }
|
|
|
| @@ -626,7 +627,8 @@
|
| Handle<Object> hreceiver(receiver, isolate);
|
| Handle<Object> result;
|
| ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
|
| - isolate, result, Execution::Call(isolate, hfun, hreceiver, argc, argv));
|
| + isolate, result,
|
| + Execution::Call(isolate, hfun, hreceiver, argc, argv, true));
|
| return *result;
|
| }
|
|
|
|
|