Index: src/profiler/heap-snapshot-generator.cc |
diff --git a/src/profiler/heap-snapshot-generator.cc b/src/profiler/heap-snapshot-generator.cc |
index 2fd682e567945f989edb32fe6dce95fd63fee81a..d6f01058b0d6e51585025619a201f0ab7003cb2e 100644 |
--- a/src/profiler/heap-snapshot-generator.cc |
+++ b/src/profiler/heap-snapshot-generator.cc |
@@ -1168,6 +1168,10 @@ void V8HeapExplorer::ExtractStringReferences(int entry, String* string) { |
SlicedString* ss = SlicedString::cast(string); |
SetInternalReference(ss, entry, "parent", ss->parent(), |
SlicedString::kParentOffset); |
+ } else if (string->IsThinString()) { |
+ ThinString* ts = ThinString::cast(string); |
+ SetInternaleReference(ts, entry, "actual", ts->actual(), |
+ ThinString::kActualOffset); |
} |
} |