Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index 10ceb58407f57ac86c41887655903e4490d44c2a..3fcfbb1ca5cecb4e8965efa61443149c9de18933 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -1945,7 +1945,7 @@ void HeapObject::HeapObjectShortPrint(std::ostream& os) { // NOLINT |
StringStream accumulator(&allocator); |
PropertyCell* cell = PropertyCell::cast(this); |
cell->value()->ShortPrint(&accumulator); |
- os << accumulator.ToCString().get() << " " << cell->property_details(); |
+ os << accumulator.ToCString().get(); |
break; |
} |
case WEAK_CELL_TYPE: { |
@@ -14686,14 +14686,13 @@ void Dictionary<Derived, Shape, Key>::Print(std::ostream& os) { // NOLINT |
for (int i = 0; i < capacity; i++) { |
Object* k = this->KeyAt(i); |
if (this->IsKey(k)) { |
- os << " "; |
+ os << "\n "; |
if (k->IsString()) { |
String::cast(k)->StringPrint(os); |
} else { |
os << Brief(k); |
} |
- os << ": " << Brief(this->ValueAt(i)) << " " << this->DetailsAt(i) |
- << "\n"; |
+ os << ": " << Brief(this->ValueAt(i)) << " " << this->DetailsAt(i); |
} |
} |
} |