| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 6c189947a7b17abd52a1c503a810e9c0c764532e..32ce0763e18e5e5b4beff2a93014e8f646bac55f 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -10971,6 +10971,9 @@ class JSArrayBuffer: public JSObject {
|
| inline bool is_shared();
|
| inline void set_is_shared(bool value);
|
|
|
| + inline bool has_guard_region();
|
| + inline void set_has_guard_region(bool value);
|
| +
|
| DECLARE_CAST(JSArrayBuffer)
|
|
|
| void Neuter();
|
| @@ -11010,6 +11013,7 @@ class JSArrayBuffer: public JSObject {
|
| class IsNeuterable : public BitField<bool, 2, 1> {};
|
| class WasNeutered : public BitField<bool, 3, 1> {};
|
| class IsShared : public BitField<bool, 4, 1> {};
|
| + class HasGuardRegion : public BitField<bool, 5, 1> {};
|
|
|
| private:
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(JSArrayBuffer);
|
|
|