Index: src/objects-inl.h |
diff --git a/src/objects-inl.h b/src/objects-inl.h |
index 0c61686085402f8edf214116a08d70eca95a636a..12e30481d8e0723de87c6cfb82f648b1251e0d95 100644 |
--- a/src/objects-inl.h |
+++ b/src/objects-inl.h |
@@ -7210,6 +7210,13 @@ Handle<FixedArray> NameDictionary::DoGenerateNewEnumerationIndices( |
} |
+template <typename Dictionary> |
+bool GlobalDictionaryShape::IsDeleted(Dictionary* dict, int entry) { |
+ DCHECK(dict->ValueAt(entry)->IsPropertyCell()); |
+ return PropertyCell::cast(dict->ValueAt(entry))->value()->IsTheHole(); |
+} |
+ |
+ |
bool ObjectHashTableShape::IsMatch(Handle<Object> key, Object* other) { |
return key->SameValue(other); |
} |