Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index bf598307a2f456dd618289aa0b431255f4e816ee..71ef5069e67eb7ea5c690c7bca93114912d8478a 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -1579,7 +1579,8 @@ class JSObject: public HeapObject { |
void LookupRealNamedProperty(String* name, LookupResult* result); |
void LookupRealNamedPropertyInPrototypes(String* name, LookupResult* result); |
void LookupCallbackSetterInPrototypes(String* name, LookupResult* result); |
- bool SetElementWithCallbackSetterInPrototypes(uint32_t index, Object* value); |
+ MUST_USE_RESULT MaybeObject* SetElementWithCallbackSetterInPrototypes( |
+ uint32_t index, Object* value, bool* found); |
void LookupCallback(String* name, LookupResult* result); |
// Returns the number of properties on this object filtering out properties |