| Index: src/objects.h
 | 
| diff --git a/src/objects.h b/src/objects.h
 | 
| index a7aabe23e0f856b18734e09f3fe4f40c7b4b508d..694b93265a67b5d1042f42b74c3fbf8f9ecbb4c3 100644
 | 
| --- a/src/objects.h
 | 
| +++ b/src/objects.h
 | 
| @@ -2853,7 +2853,8 @@ class ArrayList : public FixedArray {
 | 
|    inline void SetLength(int length);
 | 
|    inline Object* Get(int index);
 | 
|    inline Object** Slot(int index);
 | 
| -  inline void Set(int index, Object* obj);
 | 
| +  inline void Set(int index, Object* obj,
 | 
| +                  WriteBarrierMode mode = UPDATE_WRITE_BARRIER);
 | 
|    inline void Clear(int index, Object* undefined);
 | 
|    bool IsFull();
 | 
|    DECLARE_CAST(ArrayList)
 | 
| 
 |