Index: src/accessors.cc |
diff --git a/src/accessors.cc b/src/accessors.cc |
index 669c02baf36d48118cb971dfbd1ac337cf27f4a9..f8cb0c86963d37dc0cea8e3544659061dbeb72bd 100644 |
--- a/src/accessors.cc |
+++ b/src/accessors.cc |
@@ -113,7 +113,7 @@ MaybeObject* Accessors::ArraySetLength(Isolate* isolate, |
// object does not have a 'length' property. Calling SetProperty |
// causes an infinite loop. |
if (!object->IsJSArray()) { |
- return object->SetLocalPropertyIgnoreAttributesTrampoline( |
+ return object->SetLocalPropertyIgnoreAttributes( |
isolate->heap()->length_string(), value, NONE); |
} |
@@ -531,8 +531,9 @@ MaybeObject* Accessors::FunctionSetPrototype(Isolate* isolate, |
if (function_raw == NULL) return heap->undefined_value(); |
if (!function_raw->should_have_prototype()) { |
// Since we hit this accessor, object will have no prototype property. |
- return object->SetLocalPropertyIgnoreAttributesTrampoline( |
- heap->prototype_string(), value_raw, NONE); |
+ return object->SetLocalPropertyIgnoreAttributes(heap->prototype_string(), |
+ value_raw, |
+ NONE); |
} |
HandleScope scope(isolate); |