| Index: src/property.h
|
| diff --git a/src/property.h b/src/property.h
|
| index 0f78ba478ec8512e8d94fd57a502a42a470c582a..3244b21050b633332a9493535a5802952f9212df 100644
|
| --- a/src/property.h
|
| +++ b/src/property.h
|
| @@ -469,7 +469,8 @@ class LookupResult BASE_EMBEDDED {
|
| }
|
| // In the dictionary case, the data is held in the value field.
|
| ASSERT(lookup_type_ == DICTIONARY_TYPE);
|
| - return holder()->GetNormalizedProperty(this);
|
| + HandleScope scope(holder()->GetIsolate());
|
| + return *JSObject::GetNormalizedProperty(handle(holder()), this);
|
| }
|
|
|
| Object* GetValueFromMap(Map* map) const {
|
|
|