summaryrefslogtreecommitdiff
path: root/deps/v8/src/objects/maybe-object.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/objects/maybe-object.h')
-rw-r--r--deps/v8/src/objects/maybe-object.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/objects/maybe-object.h b/deps/v8/src/objects/maybe-object.h
index efbf3862f4..0d8751b652 100644
--- a/deps/v8/src/objects/maybe-object.h
+++ b/deps/v8/src/objects/maybe-object.h
@@ -43,6 +43,7 @@ class MaybeObject {
inline HeapObject* GetHeapObject();
inline Object* GetHeapObjectOrSmi();
+ inline bool IsObject();
inline Object* ToObject();
static MaybeObject* FromSmi(Smi* smi) {
@@ -58,7 +59,7 @@ class MaybeObject {
static inline MaybeObject* MakeWeak(MaybeObject* object);
#ifdef VERIFY_HEAP
- static void VerifyMaybeObjectPointer(MaybeObject* p);
+ static void VerifyMaybeObjectPointer(Isolate* isolate, MaybeObject* p);
#endif
// Prints this object without details.
@@ -71,7 +72,6 @@ class MaybeObject {
#ifdef OBJECT_PRINT
void Print();
-
void Print(std::ostream& os);
#else
void Print() { ShortPrint(); }