| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index bd762cbc24674eb62a98db28c99fae4ffe8bef29..965d83670ecc44c90c489136a0c64007f17220b8 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -1964,9 +1964,6 @@ class JSReceiver: public HeapObject {
|
| PropertyAttributes attributes,
|
| StrictModeFlag strict_mode);
|
|
|
| - MUST_USE_RESULT MaybeObject* SetPropertyWithDefinedSetter(JSReceiver* setter,
|
| - Object* value);
|
| -
|
| // Implementation of [[HasProperty]], ECMA-262 5th edition, section 8.12.6.
|
| static inline bool HasProperty(Handle<JSReceiver> object, Handle<Name> name);
|
| static inline bool HasLocalProperty(Handle<JSReceiver>, Handle<Name> name);
|
| @@ -2018,6 +2015,10 @@ class JSReceiver: public HeapObject {
|
| protected:
|
| Smi* GenerateIdentityHash();
|
|
|
| + static Handle<Object> SetPropertyWithDefinedSetter(Handle<JSReceiver> object,
|
| + Handle<JSReceiver> setter,
|
| + Handle<Object> value);
|
| +
|
| private:
|
| PropertyAttributes GetPropertyAttributeForResult(JSReceiver* receiver,
|
| LookupResult* result,
|
|
|