| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index bc6217ba5ebe66ae613719d5c67c06a91952c363..176be9b6ed903e691eac60f0c668867d8579cd57 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -1988,7 +1988,8 @@ AccessorDescriptor* DescriptorArray::GetCallbacks(int descriptor_number) {
|
|
|
|
|
| bool DescriptorArray::IsProperty(int descriptor_number) {
|
| - return IsRealProperty(GetType(descriptor_number));
|
| + Entry entry(this, descriptor_number);
|
| + return IsPropertyDescriptor(&entry);
|
| }
|
|
|
|
|
|
|