| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index ea376eae94bc16d43450926fb5b05656f36935d8..af0a8911c873bfeff4a74b79cca91d109ccef6a2 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -2188,6 +2188,13 @@ 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,
|
| @@ -2729,15 +2736,6 @@ 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,
|
|
|