Index: src/handles.cc |
diff --git a/src/handles.cc b/src/handles.cc |
index f3928ebf779f7d98c404a032aa43c4bfdda6591e..42e53c68f4877721c913b8a9058a956fa9d0e0da 100644 |
--- a/src/handles.cc |
+++ b/src/handles.cc |
@@ -178,12 +178,8 @@ Handle<Object> ForceSetProperty(Handle<JSObject> object, |
Handle<Object> key, |
Handle<Object> value, |
PropertyAttributes attributes) { |
- Isolate* isolate = object->GetIsolate(); |
- CALL_HEAP_FUNCTION( |
- isolate, |
- Runtime::ForceSetObjectProperty( |
- isolate, object, key, value, attributes), |
- Object); |
+ return Runtime::ForceSetObjectProperty(object->GetIsolate(), object, key, |
+ value, attributes); |
} |