| Index: src/lookup-inl.h | 
| diff --git a/src/lookup-inl.h b/src/lookup-inl.h | 
| index d88f4e47f70dd6bfef316c7123dd9cb0e699f612..ff704aa06ef7e69262faf0bf503cb26c3614e75d 100644 | 
| --- a/src/lookup-inl.h | 
| +++ b/src/lookup-inl.h | 
| @@ -72,7 +72,7 @@ LookupIterator::State LookupIterator::LookupInHolder(Map* const map, | 
| DCHECK(dict->ValueAt(number_)->IsPropertyCell()); | 
| PropertyCell* cell = PropertyCell::cast(dict->ValueAt(number_)); | 
| if (cell->value()->IsTheHole()) return NOT_FOUND; | 
| -        property_details_ = dict->DetailsAt(number_); | 
| +        property_details_ = cell->property_details(); | 
| } else if (map->is_dictionary_map()) { | 
| NameDictionary* dict = JSObject::cast(holder)->property_dictionary(); | 
| int number = dict->FindEntry(name_); | 
|  |