| Index: src/objects.h | 
| diff --git a/src/objects.h b/src/objects.h | 
| index f830cb33958ae3be7c069f4f8bbd985c3d524637..99f261765f7ecedd277bb8a6fc8d460d956361d7 100644 | 
| --- a/src/objects.h | 
| +++ b/src/objects.h | 
| @@ -11218,6 +11218,9 @@ class AccessorInfo: public Struct { | 
| inline bool is_special_data_property(); | 
| inline void set_is_special_data_property(bool value); | 
|  | 
| +  inline bool replace_on_access(); | 
| +  inline void set_replace_on_access(bool value); | 
| + | 
| inline bool is_sloppy(); | 
| inline void set_is_sloppy(bool value); | 
|  | 
| @@ -11259,7 +11262,8 @@ class AccessorInfo: public Struct { | 
| static const int kAllCanWriteBit = 1; | 
| static const int kSpecialDataProperty = 2; | 
| static const int kIsSloppy = 3; | 
| -  class AttributesField : public BitField<PropertyAttributes, 4, 3> {}; | 
| +  static const int kReplaceOnAccess = 4; | 
| +  class AttributesField : public BitField<PropertyAttributes, 5, 3> {}; | 
|  | 
| DISALLOW_IMPLICIT_CONSTRUCTORS(AccessorInfo); | 
| }; | 
|  |