Index: src/objects-printer.cc |
diff --git a/src/objects-printer.cc b/src/objects-printer.cc |
index 54a7b5532bb31e4129597de1aa916e4dca5a672f..19010098ebb0072cacbf861072d41a92802d759b 100644 |
--- a/src/objects-printer.cc |
+++ b/src/objects-printer.cc |
@@ -415,7 +415,7 @@ void JSObject::PrintTransitions(FILE* out) { |
void JSObject::JSObjectPrint(FILE* out) { |
- PrintF(out, "%p: [JSObject]\n", reinterpret_cast<void*>(this)); |
+ HeapObject::PrintHeader(out, "JSObject"); |
PrintF(out, " - map = %p [", reinterpret_cast<void*>(map())); |
// Don't call GetElementsKind, its validation code can cause the printer to |
// fail when debugging. |