| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index eac7f9208ed5676fec3c29bda43c87b87368c0ed..1e7a226d8075ccea5a4645c4c00b9deb3f8748df 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -1341,7 +1341,8 @@ class JSObject: public HeapObject {
|
| MUST_USE_RESULT MaybeObject* SetPropertyWithFailedAccessCheck(
|
| LookupResult* result,
|
| String* name,
|
| - Object* value);
|
| + Object* value,
|
| + bool check_prototype);
|
| MUST_USE_RESULT MaybeObject* SetPropertyWithCallback(Object* structure,
|
| String* name,
|
| Object* value,
|
| @@ -1356,7 +1357,7 @@ class JSObject: public HeapObject {
|
| String* name,
|
| Object* value,
|
| PropertyAttributes attributes);
|
| - MUST_USE_RESULT MaybeObject* IgnoreAttributesAndSetLocalProperty(
|
| + MUST_USE_RESULT MaybeObject* SetLocalPropertyIgnoreAttributes(
|
| String* key,
|
| Object* value,
|
| PropertyAttributes attributes);
|
|
|