| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index fef2d77f618a57d761f6076afe6562ba8158773c..7244d17b0cceaf663bb107656d6642062127ba68 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -10258,6 +10258,9 @@
|
| inline bool was_neutered();
|
| inline void set_was_neutered(bool value);
|
|
|
| + // [weak_next]: linked list of array buffers.
|
| + DECL_ACCESSORS(weak_next, Object)
|
| +
|
| DECLARE_CAST(JSArrayBuffer)
|
|
|
| void Neuter();
|
| @@ -10274,7 +10277,8 @@
|
| #else
|
| static const int kBitFieldOffset = kBitFieldSlot + kIntSize;
|
| #endif
|
| - static const int kSize = kBitFieldSlot + kPointerSize;
|
| + static const int kWeakNextOffset = kBitFieldSlot + kPointerSize;
|
| + static const int kSize = kWeakNextOffset + kPointerSize;
|
|
|
| static const int kSizeWithInternalFields =
|
| kSize + v8::ArrayBuffer::kInternalFieldCount * kPointerSize;
|
|
|