summaryrefslogtreecommitdiff
path: root/deps/v8/src/runtime/runtime-forin.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/runtime/runtime-forin.cc')
-rw-r--r--deps/v8/src/runtime/runtime-forin.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/runtime/runtime-forin.cc b/deps/v8/src/runtime/runtime-forin.cc
index 08e68ee996..b3cb9d2fd3 100644
--- a/deps/v8/src/runtime/runtime-forin.cc
+++ b/deps/v8/src/runtime/runtime-forin.cc
@@ -52,7 +52,7 @@ MaybeHandle<Object> HasEnumerableProperty(Isolate* isolate,
Handle<Object> key) {
bool success = false;
Maybe<PropertyAttributes> result = Just(ABSENT);
- LookupIterator::Key lookup_key(isolate, key, &success);
+ PropertyKey lookup_key(isolate, key, &success);
if (!success) return isolate->factory()->undefined_value();
LookupIterator it(isolate, receiver, lookup_key);
for (; it.IsFound(); it.Next()) {