| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index dab4057eb19b9799ba1728dc1e2739fda34ead66..8f38b1f6d4aedaf873dd1e223bb214e23bd818a0 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -11007,6 +11007,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();
|
| @@ -11046,6 +11049,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);
|
|
|