| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index 2f65cafb95be4d1acdc98ef296af651ad0a74771..07d7f59f6eeb3ce135848f8fdb90a8442dcf3b87 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -3783,11 +3783,10 @@ MaybeLocal<Array> v8::Object::GetPropertyNames(Local<Context> context) {
|
| !i::JSReceiver::GetKeys(self, i::INCLUDE_PROTOS, i::ENUMERABLE_STRINGS)
|
| .ToHandle(&value);
|
| RETURN_ON_FAILED_EXECUTION(Array);
|
| - // Because we use caching to speed up enumeration it is important
|
| - // to never change the result of the basic enumeration function so
|
| - // we clone the result.
|
| - auto elms = isolate->factory()->CopyFixedArray(value);
|
| - auto result = isolate->factory()->NewJSArrayWithElements(elms);
|
| + DCHECK(self->map()->EnumLength() == i::kInvalidEnumCacheSentinel ||
|
| + self->map()->EnumLength() == 0 ||
|
| + self->map()->instance_descriptors()->GetEnumCache() != *value);
|
| + auto result = isolate->factory()->NewJSArrayWithElements(value);
|
| RETURN_ESCAPED(Utils::ToLocal(result));
|
| }
|
|
|
|
|