Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 56ce497f839a5e33ea3005b416cf234eca95c2c4..596a27e8cff506bad1472ed1ae14826b540aa1ac 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -2188,13 +2188,6 @@ class JSObject: public JSReceiver { |
inline MUST_USE_RESULT MaybeObject* TryMigrateInstance(); |
// Can cause GC. |
- MUST_USE_RESULT MaybeObject* SetLocalPropertyIgnoreAttributes( |
- Name* key, |
- Object* value, |
- PropertyAttributes attributes, |
- ValueType value_type = OPTIMAL_REPRESENTATION, |
- StoreMode mode = ALLOW_AS_CONSTANT, |
- ExtensibilityCheck extensibility_check = PERFORM_EXTENSIBILITY_CHECK); |
MUST_USE_RESULT MaybeObject* SetLocalPropertyIgnoreAttributesTrampoline( |
Name* key, |
Object* value, |
@@ -2736,6 +2729,15 @@ class JSObject: public JSReceiver { |
friend class DictionaryElementsAccessor; |
friend class JSReceiver; |
+ // TODO(mstarzinger): Soon to be handlified. |
+ MUST_USE_RESULT MaybeObject* SetLocalPropertyIgnoreAttributes( |
+ Name* key, |
+ Object* value, |
+ PropertyAttributes attributes, |
+ ValueType value_type = OPTIMAL_REPRESENTATION, |
+ StoreMode mode = ALLOW_AS_CONSTANT, |
+ ExtensibilityCheck extensibility_check = PERFORM_EXTENSIBILITY_CHECK); |
+ |
MUST_USE_RESULT MaybeObject* GetElementWithCallback(Object* receiver, |
Object* structure, |
uint32_t index, |