Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index a2cc6d5b305506d441cc99cc35f0aadb4a9f40d6..91d0ab767b0b0fc5e133d307d2984e52943ef5ed 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -10202,6 +10202,9 @@ class AccessorInfo: public Struct { |
inline bool is_special_data_property(); |
inline void set_is_special_data_property(bool value); |
+ inline bool is_sloppy(); |
+ inline void set_is_sloppy(bool value); |
+ |
inline PropertyAttributes property_attributes(); |
inline void set_property_attributes(PropertyAttributes attributes); |
@@ -10239,7 +10242,8 @@ class AccessorInfo: public Struct { |
static const int kAllCanReadBit = 0; |
static const int kAllCanWriteBit = 1; |
static const int kSpecialDataProperty = 2; |
- class AttributesField : public BitField<PropertyAttributes, 3, 3> {}; |
+ static const int kIsSloppy = 3; |
+ class AttributesField : public BitField<PropertyAttributes, 4, 3> {}; |
DISALLOW_IMPLICIT_CONSTRUCTORS(AccessorInfo); |
}; |