| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index 565b31e018377e9eabfa56b3e5a345ae8354e3ad..77cd78ab9817d204f485a644890040a8661d5913 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -6999,6 +6999,13 @@ void JSArrayBuffer::set_is_shared(bool value) {
|
| set_bit_field(IsShared::update(bit_field(), value));
|
| }
|
|
|
| +bool JSArrayBuffer::has_guard_region() {
|
| + return HasGuardRegion::decode(bit_field());
|
| +}
|
| +
|
| +void JSArrayBuffer::set_has_guard_region(bool value) {
|
| + set_bit_field(HasGuardRegion::update(bit_field(), value));
|
| +}
|
|
|
| Object* JSArrayBufferView::byte_offset() const {
|
| if (WasNeutered()) return Smi::kZero;
|
|
|