Bug 182219

Summary: Web Inspector: Replace Object.shallowMerge with ES2018 spread operator
Product: WebKit Reporter: Nikita Vasilyev <nvasilyev>
Component: Web InspectorAssignee: Devin Rousso <hi>
Status: RESOLVED FIXED    
Severity: Normal CC: bburg, commit-queue, hi, inspector-bugzilla-changes, joepeck, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: All   
OS: All   
Attachments:
Description Flags
Patch none

Nikita Vasilyev
Reported 2018-01-27 19:53:46 PST
Object.shallowMerge defined in Utilities.js is no longer needed with ES2018 spread operator. Object.shallowMerge(a, b) can be replaced with: {...a, ...b}
Attachments
Patch (7.88 KB, patch)
2018-01-27 22:13 PST, Devin Rousso
no flags
Devin Rousso
Comment 1 2018-01-27 22:13:38 PST
Created attachment 332488 [details] Patch My only hesitation to this is that we might get collisions between keys (such as if we chain an options variable between functions), but I think that will be very rare
Blaze Burg
Comment 2 2018-01-30 09:30:52 PST
Comment on attachment 332488 [details] Patch r=me
Joseph Pecoraro
Comment 3 2018-01-30 10:34:26 PST
Comment on attachment 332488 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=332488&action=review > Source/WebInspectorUI/UserInterface/Base/DOMUtilities.js:68 > - return WI.linkifyNodeReferenceElement(node, link, Object.shallowMerge(options, {displayName})); > + return WI.linkifyNodeReferenceElement(node, link, {...options, displayName}); I find this a little harder to read / understand, but I suppose its fine.
WebKit Commit Bot
Comment 4 2018-01-30 16:39:24 PST
Comment on attachment 332488 [details] Patch Clearing flags on attachment: 332488 Committed r227864: <https://trac.webkit.org/changeset/227864>
WebKit Commit Bot
Comment 5 2018-01-30 16:39:25 PST
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 6 2018-01-30 16:40:18 PST
Note You need to log in before you can comment on or make changes to this bug.