Index: src/objects-debug.cc |
diff --git a/src/objects-debug.cc b/src/objects-debug.cc |
index 29632317a5e9309ee456c2e0ce9042b0b4c48cdf..23857a16e9d9b00707a11f9990d47b94f1fdd5a8 100644 |
--- a/src/objects-debug.cc |
+++ b/src/objects-debug.cc |
@@ -349,6 +349,29 @@ void String::StringVerify() { |
if (IsSymbol()) { |
CHECK(!HEAP->InNewSpace(this)); |
} |
+ if (IsConsString()) { |
+ ConsString::cast(this)->ConsStringVerify(); |
+ } else if (IsSlicedString()) { |
+ SlicedString::cast(this)->SlicedStringVerify(); |
+ } |
+} |
+ |
+ |
+void ConsString::ConsStringVerify() { |
+ CHECK(this->first()->IsString()); |
+ CHECK(this->second() == GetHeap()->empty_string() || |
+ this->second()->IsString()); |
+ if (this->IsFlat()) { |
+ // A flat cons can only have a sequential string as first part because only |
+ // String::SlowTryFlatten can convert a cons into a flat cons. |
+ CHECK(this->first()->IsSeqString()); |
+ } |
+} |
+ |
+ |
+void SlicedString::SlicedStringVerify() { |
+ CHECK(!this->parent()->IsConsString()); |
+ CHECK(!this->parent()->IsSlicedString()); |
} |