Chromium Code Reviews| Index: src/property.h |
| diff --git a/src/property.h b/src/property.h |
| index f853fc8ba035519cbcbfe1288a0027ee3cc91e8e..49af475289437e136e08b5080a8bc47cb7538548 100644 |
| --- a/src/property.h |
| +++ b/src/property.h |
| @@ -351,7 +351,7 @@ class LookupResult BASE_EMBEDDED { |
| Object* value; |
| value = holder()->property_dictionary()->ValueAt(GetDictionaryEntry()); |
| if (holder()->IsGlobalObject()) { |
| - value = JSGlobalPropertyCell::cast(value)->value(); |
| + value = PropertyCell::cast(value)->value(); |
| } |
| return value; |
| } |