Index: src/runtime/runtime-object.cc |
diff --git a/src/runtime/runtime-object.cc b/src/runtime/runtime-object.cc |
index 3b302d160964044fb7e85e1d578e87db11e34496..de4e81248866601bad2a4f25dfdf237330c7a272 100644 |
--- a/src/runtime/runtime-object.cc |
+++ b/src/runtime/runtime-object.cc |
@@ -617,7 +617,7 @@ RUNTIME_FUNCTION(Runtime_KeyedGetProperty) { |
NameDictionary* dictionary = receiver->property_dictionary(); |
int entry = dictionary->FindEntry(key); |
if ((entry != NameDictionary::kNotFound) && |
- (dictionary->DetailsAt(entry).type() == NORMAL)) { |
+ (dictionary->DetailsAt(entry).type() == FIELD)) { |
Object* value = dictionary->ValueAt(entry); |
if (!receiver->IsGlobalObject()) return value; |
value = PropertyCell::cast(value)->value(); |