Index: src/heap-snapshot-generator.cc |
diff --git a/src/heap-snapshot-generator.cc b/src/heap-snapshot-generator.cc |
index f1bdc71cca03dc3cf1d0277d65a5f2997595f495..1965f0a90519f5f280d7a8adb4081a57e2a5b007 100644 |
--- a/src/heap-snapshot-generator.cc |
+++ b/src/heap-snapshot-generator.cc |
@@ -856,10 +856,8 @@ HeapEntry* V8HeapExplorer::AddEntry(HeapObject* object) { |
return AddEntry(object, HeapEntry::kHidden, "system / NativeContext"); |
} else if (object->IsContext()) { |
return AddEntry(object, HeapEntry::kObject, "system / Context"); |
- } else if (object->IsFixedArray() || |
- object->IsFixedDoubleArray() || |
- object->IsByteArray() || |
- object->IsExternalArray()) { |
+ } else if (object->IsFixedArray() || object->IsFixedDoubleArray() || |
+ object->IsByteArray()) { |
return AddEntry(object, HeapEntry::kArray, ""); |
} else if (object->IsHeapNumber()) { |
return AddEntry(object, HeapEntry::kHeapNumber, "number"); |