Fix roll-blocking issue
Follow-up to c968607e12
to make
LayoutTests happy.
Tbr: verwaest@chromium.org
Change-Id: I02758faa8ed1f06f1faf615047a40ec115887a4a
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1928856
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Commit-Queue: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/master@{#65092}
This commit is contained in:
parent
9ef4e8f18c
commit
dbfb14bf52
@ -178,8 +178,8 @@ bool DebugPropertyIterator::should_move_to_next_stage() const {
|
||||
namespace {
|
||||
base::Flags<debug::NativeAccessorType, int> GetNativeAccessorDescriptorInternal(
|
||||
Handle<JSReceiver> object, Handle<Name> name) {
|
||||
uint32_t index;
|
||||
if (name->AsArrayIndex(&index)) return debug::NativeAccessorType::None;
|
||||
size_t index;
|
||||
if (name->AsIntegerIndex(&index)) return debug::NativeAccessorType::None;
|
||||
LookupIterator it =
|
||||
LookupIterator(object->GetIsolate(), object, name, LookupIterator::OWN);
|
||||
if (!it.IsFound()) return debug::NativeAccessorType::None;
|
||||
|
Loading…
Reference in New Issue
Block a user