| Index: src/stub-cache.cc
|
| diff --git a/src/stub-cache.cc b/src/stub-cache.cc
|
| index 0c9f4512326eaef114b11cbbf97b7564d5bdeea2..5612bf2bd96c8314627421e8bfe2df661968bd19 100644
|
| --- a/src/stub-cache.cc
|
| +++ b/src/stub-cache.cc
|
| @@ -581,8 +581,8 @@ RUNTIME_FUNCTION(StoreInterceptorProperty) {
|
| ASSERT(receiver->HasNamedInterceptor());
|
| Handle<Object> result;
|
| ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
|
| - isolate, result, JSObject::SetPropertyWithInterceptor(
|
| - receiver, name, value, ic.strict_mode()));
|
| + isolate, result,
|
| + JSObject::SetProperty(receiver, name, value, ic.strict_mode()));
|
| return *result;
|
| }
|
|
|
|
|