| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index 0492436903b7cd572168b46b7954effefc5d8f41..dd2d2df384bd4c64ab41759832154472cf59f8ff 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -7218,6 +7218,11 @@ void AccessorInfo::set_is_special_data_property(bool value) {
|
| set_flag(BooleanBit::set(flag(), kSpecialDataProperty, value));
|
| }
|
|
|
| +bool AccessorInfo::is_sloppy() { return BooleanBit::get(flag(), kIsSloppy); }
|
| +
|
| +void AccessorInfo::set_is_sloppy(bool value) {
|
| + set_flag(BooleanBit::set(flag(), kIsSloppy, value));
|
| +}
|
|
|
| PropertyAttributes AccessorInfo::property_attributes() {
|
| return AttributesField::decode(static_cast<uint32_t>(flag()));
|
|
|