| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 336c9c3db77a43280caa1f9cb30d2cfc3118e161..99d79425073dce2ead9b910fad7503e2e600757a 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -2839,7 +2839,7 @@ class FixedArray: public FixedArrayBase {
|
|
|
| // Setter that uses write barrier.
|
| inline void set(int index, Object* value);
|
| - inline bool is_the_hole(int index);
|
| + inline bool is_the_hole(Isolate* isolate, int index);
|
|
|
| // Setter that doesn't need write barrier.
|
| inline void set(int index, Smi* value);
|
| @@ -2929,6 +2929,7 @@ class FixedDoubleArray: public FixedArrayBase {
|
| inline void set_the_hole(int index);
|
|
|
| // Checking for the hole.
|
| + inline bool is_the_hole(Isolate* isolate, int index);
|
| inline bool is_the_hole(int index);
|
|
|
| // Garbage collection support.
|
|
|