Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1004)

Unified Diff: src/runtime/runtime-object.cc

Issue 1668853002: [proxies] allow duplicate keys for [[OwnPropertyKeys]] trap. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: enabling test again Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/runtime/runtime-object.cc
diff --git a/src/runtime/runtime-object.cc b/src/runtime/runtime-object.cc
index d5e57562551a8944b11cc613909bd349c03ac9be..3eee48611f4f962d788406029473f2a64d45e8a8 100644
--- a/src/runtime/runtime-object.cc
+++ b/src/runtime/runtime-object.cc
@@ -723,8 +723,8 @@ RUNTIME_FUNCTION(Runtime_GetOwnPropertyKeys) {
Handle<FixedArray> keys;
ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
- isolate, keys, JSReceiver::GetKeys(object, JSReceiver::OWN_ONLY, filter,
- CONVERT_TO_STRING));
+ isolate, keys, JSReceiver::GetKeys(object, KeyCollectionType::OWN_ONLY,
+ filter, CONVERT_TO_STRING));
return *isolate->factory()->NewJSArrayWithElements(keys);
}

Powered by Google App Engine
This is Rietveld 408576698