| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 8d3d2be03ebc233203286e0590fee5c8fc81191b..063555e03d6212967cba92f137ef76915930666a 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -593,7 +593,6 @@ class MaybeObject BASE_EMBEDDED {
|
| inline bool IsOutOfMemory();
|
| inline bool IsException();
|
| INLINE(bool IsTheHole());
|
| - INLINE(bool IsArgumentsMarker());
|
| inline bool ToObject(Object** obj) {
|
| if (IsFailure()) return false;
|
| *obj = reinterpret_cast<Object*>(this);
|
| @@ -710,6 +709,7 @@ class Object : public MaybeObject {
|
| INLINE(bool IsNull());
|
| INLINE(bool IsTrue());
|
| INLINE(bool IsFalse());
|
| + inline bool IsArgumentsMarker();
|
|
|
| // Extract the number.
|
| inline double Number();
|
|
|