Commit dbfb14bf authored by Jakob Kummerow's avatar Jakob Kummerow Committed by Commit Bot

Fix roll-blocking issue

Follow-up to c968607e to make
LayoutTests happy.

Tbr: verwaest@chromium.org
Change-Id: I02758faa8ed1f06f1faf615047a40ec115887a4a
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1928856Reviewed-by: 's avatarJakob Kummerow <jkummerow@chromium.org>
Commit-Queue: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/master@{#65092}
parent 9ef4e8f1
...@@ -178,8 +178,8 @@ bool DebugPropertyIterator::should_move_to_next_stage() const { ...@@ -178,8 +178,8 @@ bool DebugPropertyIterator::should_move_to_next_stage() const {
namespace { namespace {
base::Flags<debug::NativeAccessorType, int> GetNativeAccessorDescriptorInternal( base::Flags<debug::NativeAccessorType, int> GetNativeAccessorDescriptorInternal(
Handle<JSReceiver> object, Handle<Name> name) { Handle<JSReceiver> object, Handle<Name> name) {
uint32_t index; size_t index;
if (name->AsArrayIndex(&index)) return debug::NativeAccessorType::None; if (name->AsIntegerIndex(&index)) return debug::NativeAccessorType::None;
LookupIterator it = LookupIterator it =
LookupIterator(object->GetIsolate(), object, name, LookupIterator::OWN); LookupIterator(object->GetIsolate(), object, name, LookupIterator::OWN);
if (!it.IsFound()) return debug::NativeAccessorType::None; if (!it.IsFound()) return debug::NativeAccessorType::None;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment