[Webkit-unassigned] [Bug 167963] [ESnext] Implement Object Spread
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Mar 14 22:09:05 PDT 2017
https://bugs.webkit.org/show_bug.cgi?id=167963
Yusuke Suzuki <utatane.tea at gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #304453|review? |review+
Flags| |
--- Comment #6 from Yusuke Suzuki <utatane.tea at gmail.com> ---
Comment on attachment 304453
--> https://bugs.webkit.org/attachment.cgi?id=304453
Proposed Patch for Landing
View in context: https://bugs.webkit.org/attachment.cgi?id=304453&action=review
r=me with comments.
> Source/JavaScriptCore/builtins/GlobalOperations.js:89
> + if (source === @undefined || source == null)
`source == null` includes `source === @undefined`. So drop `source === @undefined` part.
> Source/JavaScriptCore/bytecode/CodeBlock.cpp:878
> + const HashSet<RefPtr<UniquedStringImpl>>& set = entry.first;
If HashSet does not include any nullptr, we should use Ref<>.
In this case, I think we shoud use Ref<> instead of RefPtr<>.
> Source/JavaScriptCore/bytecode/CodeBlock.cpp:879
> for (auto setEntry : set) {
It becomes `auto& `
> Source/JavaScriptCore/bytecode/CodeBlock.cpp:880
> + JSString* jsString = jsOwnedString(&vm, setEntry.get());
And it becomes `setEntry.ptr().
> Source/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp:1925
> for (ConstantIndentifierSetEntry entry : m_codeBlock->constantIdentifierSets()) {
This always copies HashSet. Let's use `const auto& entry` instead.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20170315/210a4391/attachment.html>
More information about the webkit-unassigned
mailing list