Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index 3d18e3d8acb54503d51f913c375bac97d50a9a8a..81eec5e3df5cf87ec111ee876bc222f5881f2c63 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -15295,7 +15295,7 @@ bool Dictionary<Derived, Shape, Key>::HasComplexElements() { |
if (details.IsDeleted()) continue; |
if (details.type() == CALLBACKS) return true; |
PropertyAttributes attr = details.attributes(); |
- if (attr & (READ_ONLY | DONT_DELETE)) return true; |
+ if (attr & (READ_ONLY | DONT_DELETE | DONT_ENUM)) return true; |
} |
} |
return false; |