RESOLVED FIXED Bug 158350
Proxy.ownKeys should no longer throw an exception when duplicate keys are returned and the target is non-extensible
https://bugs.webkit.org/show_bug.cgi?id=158350
Summary Proxy.ownKeys should no longer throw an exception when duplicate keys are ret...
Saam Barati
Reported 2016-06-03 11:13:02 PDT
Attachments
Patch (8.87 KB, patch)
2016-06-03 14:29 PDT, Saam Barati
msaboff: review+
Patch for landing (9.88 KB, patch)
2016-06-03 15:17 PDT, Saam Barati
no flags
Radar WebKit Bug Importer
Comment 1 2016-06-03 11:16:28 PDT
Saam Barati
Comment 2 2016-06-03 14:29:26 PDT
Mark Lam
Comment 3 2016-06-03 14:40:54 PDT
Comment on attachment 280467 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=280467&action=review > Source/JavaScriptCore/runtime/ProxyObject.cpp:938 > + bool isContainedIn = false; > + return isContainedIn; Your definition of "isContainedIn" here differs from the one below. Did you mean "isNotContainedIn" instead?
Michael Saboff
Comment 4 2016-06-03 14:41:03 PDT
Comment on attachment 280467 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=280467&action=review r=me > Source/JavaScriptCore/runtime/ProxyObject.cpp:934 > auto removeIfContainedInUncheckedResultKeys = [&] (UniquedStringImpl* impl) -> bool { This lambda's name should probably change to something without "removeIf". > Source/JavaScriptCore/runtime/ProxyObject.cpp:938 > + bool isContainedIn = false; > + return isContainedIn; Change this to "return false". > Source/JavaScriptCore/runtime/ProxyObject.cpp:943 > + bool isContainedIn = true; > return isContainedIn; Change this to "return true".
Saam Barati
Comment 5 2016-06-03 15:13:58 PDT
Comment on attachment 280467 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=280467&action=review >> Source/JavaScriptCore/runtime/ProxyObject.cpp:934 >> auto removeIfContainedInUncheckedResultKeys = [&] (UniquedStringImpl* impl) -> bool { > > This lambda's name should probably change to something without "removeIf". I think this would be more confusing. The function conditionally removes a key from the HashSet and the name of this lambda indicates that. >>> Source/JavaScriptCore/runtime/ProxyObject.cpp:938 >>> + return isContainedIn; >> >> Your definition of "isContainedIn" here differs from the one below. Did you mean "isNotContainedIn" instead? > > Change this to "return false". I'm going with an enum.
Saam Barati
Comment 6 2016-06-03 15:17:26 PDT
Created attachment 280471 [details] Patch for landing
WebKit Commit Bot
Comment 7 2016-06-03 17:33:06 PDT
Comment on attachment 280471 [details] Patch for landing Clearing flags on attachment: 280471 Committed r201672: <http://trac.webkit.org/changeset/201672>
WebKit Commit Bot
Comment 8 2016-06-03 17:33:10 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.