<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[201630] trunk/Source/WebInspectorUI</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/201630">201630</a></dd>
<dt>Author</dt> <dd>commit-queue@webkit.org</dd>
<dt>Date</dt> <dd>2016-06-02 18:18:59 -0700 (Thu, 02 Jun 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>Web Inspector: Modernize Array.prototype.every/some callsites to arrow functions
https://bugs.webkit.org/show_bug.cgi?id=158330

Patch by Joseph Pecoraro &lt;pecoraro@apple.com&gt; on 2016-06-02
Reviewed by Brian Burg.

* UserInterface/Controllers/DOMTreeManager.js:
(WebInspector.DOMTreeManager.prototype._updateContentFlowFromPayload):
* UserInterface/Models/ProfileNode.js:
(WebInspector.ProfileNode):
* UserInterface/Models/ScopeChainNode.js:
(WebInspector.ScopeChainNode):
* UserInterface/Models/StackTrace.js:
(WebInspector.StackTrace):
* UserInterface/Models/StructureDescription.js:
(WebInspector.StructureDescription):
* UserInterface/Models/TypeDescription.js:
(WebInspector.TypeDescription):
* UserInterface/Protocol/InspectorBackend.js:
(InspectorBackend.Command.prototype.supports):
* UserInterface/Views/ContentViewContainer.js:
(WebInspector.ContentViewContainer.prototype.showContentView):
* UserInterface/Views/NavigationSidebarPanel.js:
(WebInspector.NavigationSidebarPanel.prototype._checkElementsForPendingViewStateCookie.treeElementMatchesCookie):
(WebInspector.NavigationSidebarPanel.prototype._checkElementsForPendingViewStateCookie):
* UserInterface/Views/ScopeBar.js:
(WebInspector.ScopeBar.prototype.get selectedItems):
(WebInspector.ScopeBar.prototype.hasNonDefaultItemSelected):
* UserInterface/Views/TabContentView.js:
(WebInspector.TabContentView):
(WebInspector.TabContentView.console.assert): Deleted.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebInspectorUIChangeLog">trunk/Source/WebInspectorUI/ChangeLog</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceControllersDOMTreeManagerjs">trunk/Source/WebInspectorUI/UserInterface/Controllers/DOMTreeManager.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceModelsProfileNodejs">trunk/Source/WebInspectorUI/UserInterface/Models/ProfileNode.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceModelsScopeChainNodejs">trunk/Source/WebInspectorUI/UserInterface/Models/ScopeChainNode.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceModelsStackTracejs">trunk/Source/WebInspectorUI/UserInterface/Models/StackTrace.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceModelsStructureDescriptionjs">trunk/Source/WebInspectorUI/UserInterface/Models/StructureDescription.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceModelsTypeDescriptionjs">trunk/Source/WebInspectorUI/UserInterface/Models/TypeDescription.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceProtocolInspectorBackendjs">trunk/Source/WebInspectorUI/UserInterface/Protocol/InspectorBackend.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsContentViewContainerjs">trunk/Source/WebInspectorUI/UserInterface/Views/ContentViewContainer.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsNavigationSidebarPaneljs">trunk/Source/WebInspectorUI/UserInterface/Views/NavigationSidebarPanel.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsScopeBarjs">trunk/Source/WebInspectorUI/UserInterface/Views/ScopeBar.js</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceViewsTabContentViewjs">trunk/Source/WebInspectorUI/UserInterface/Views/TabContentView.js</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebInspectorUIChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/ChangeLog (201629 => 201630)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/ChangeLog        2016-06-03 00:39:58 UTC (rev 201629)
+++ trunk/Source/WebInspectorUI/ChangeLog        2016-06-03 01:18:59 UTC (rev 201630)
</span><span class="lines">@@ -1,5 +1,38 @@
</span><span class="cx"> 2016-06-02  Joseph Pecoraro  &lt;pecoraro@apple.com&gt;
</span><span class="cx"> 
</span><ins>+        Web Inspector: Modernize Array.prototype.every/some callsites to arrow functions
+        https://bugs.webkit.org/show_bug.cgi?id=158330
+
+        Reviewed by Brian Burg.
+
+        * UserInterface/Controllers/DOMTreeManager.js:
+        (WebInspector.DOMTreeManager.prototype._updateContentFlowFromPayload):
+        * UserInterface/Models/ProfileNode.js:
+        (WebInspector.ProfileNode):
+        * UserInterface/Models/ScopeChainNode.js:
+        (WebInspector.ScopeChainNode):
+        * UserInterface/Models/StackTrace.js:
+        (WebInspector.StackTrace):
+        * UserInterface/Models/StructureDescription.js:
+        (WebInspector.StructureDescription):
+        * UserInterface/Models/TypeDescription.js:
+        (WebInspector.TypeDescription):
+        * UserInterface/Protocol/InspectorBackend.js:
+        (InspectorBackend.Command.prototype.supports):
+        * UserInterface/Views/ContentViewContainer.js:
+        (WebInspector.ContentViewContainer.prototype.showContentView):
+        * UserInterface/Views/NavigationSidebarPanel.js:
+        (WebInspector.NavigationSidebarPanel.prototype._checkElementsForPendingViewStateCookie.treeElementMatchesCookie):
+        (WebInspector.NavigationSidebarPanel.prototype._checkElementsForPendingViewStateCookie):
+        * UserInterface/Views/ScopeBar.js:
+        (WebInspector.ScopeBar.prototype.get selectedItems):
+        (WebInspector.ScopeBar.prototype.hasNonDefaultItemSelected):
+        * UserInterface/Views/TabContentView.js:
+        (WebInspector.TabContentView):
+        (WebInspector.TabContentView.console.assert): Deleted.
+
+2016-06-02  Joseph Pecoraro  &lt;pecoraro@apple.com&gt;
+
</ins><span class="cx">         Web Inspector: Modernize some function expressions that bind(this) to arrow functions
</span><span class="cx">         https://bugs.webkit.org/show_bug.cgi?id=158315
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceControllersDOMTreeManagerjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Controllers/DOMTreeManager.js (201629 => 201630)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Controllers/DOMTreeManager.js        2016-06-03 00:39:58 UTC (rev 201629)
+++ trunk/Source/WebInspectorUI/UserInterface/Controllers/DOMTreeManager.js        2016-06-03 01:18:59 UTC (rev 201630)
</span><span class="lines">@@ -493,7 +493,7 @@
</span><span class="cx">     _updateContentFlowFromPayload(contentFlow, flowPayload)
</span><span class="cx">     {
</span><span class="cx">         console.assert(contentFlow.contentNodes.length === flowPayload.content.length);
</span><del>-        console.assert(contentFlow.contentNodes.every(function(node, i) { return node.id === flowPayload.content[i]; }));
</del><ins>+        console.assert(contentFlow.contentNodes.every((node, i) =&gt; node.id === flowPayload.content[i]));
</ins><span class="cx"> 
</span><span class="cx">         // FIXME: Collect the regions from the payload.
</span><span class="cx">         contentFlow.overset = flowPayload.overset;
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceModelsProfileNodejs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Models/ProfileNode.js (201629 => 201630)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Models/ProfileNode.js        2016-06-03 00:39:58 UTC (rev 201629)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/ProfileNode.js        2016-06-03 01:18:59 UTC (rev 201630)
</span><span class="lines">@@ -34,9 +34,9 @@
</span><span class="cx">         console.assert(id);
</span><span class="cx">         console.assert(!calls || calls instanceof Array);
</span><span class="cx">         console.assert(!calls || calls.length &gt;= 1);
</span><del>-        console.assert(!calls || calls.every(function(call) { return call instanceof WebInspector.ProfileNodeCall; }));
</del><ins>+        console.assert(!calls || calls.every((call) =&gt; call instanceof WebInspector.ProfileNodeCall));
</ins><span class="cx">         console.assert(childNodes instanceof Array);
</span><del>-        console.assert(childNodes.every(function(node) { return node instanceof WebInspector.ProfileNode; }));
</del><ins>+        console.assert(childNodes.every((node) =&gt; node instanceof WebInspector.ProfileNode));
</ins><span class="cx"> 
</span><span class="cx">         this._id = id;
</span><span class="cx">         this._type = type || WebInspector.ProfileNode.Type.Function;
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceModelsScopeChainNodejs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Models/ScopeChainNode.js (201629 => 201630)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Models/ScopeChainNode.js        2016-06-03 00:39:58 UTC (rev 201629)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/ScopeChainNode.js        2016-06-03 01:18:59 UTC (rev 201630)
</span><span class="lines">@@ -30,7 +30,7 @@
</span><span class="cx">         super();
</span><span class="cx"> 
</span><span class="cx">         console.assert(typeof type === &quot;string&quot;);
</span><del>-        console.assert(objects.every(function(x) { return x instanceof WebInspector.RemoteObject; }));
</del><ins>+        console.assert(objects.every((x) =&gt; x instanceof WebInspector.RemoteObject));
</ins><span class="cx"> 
</span><span class="cx">         if (type in WebInspector.ScopeChainNode.Type)
</span><span class="cx">             type = WebInspector.ScopeChainNode.Type[type];
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceModelsStackTracejs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Models/StackTrace.js (201629 => 201630)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Models/StackTrace.js        2016-06-03 00:39:58 UTC (rev 201629)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/StackTrace.js        2016-06-03 01:18:59 UTC (rev 201630)
</span><span class="lines">@@ -29,7 +29,7 @@
</span><span class="cx">     {
</span><span class="cx">         super();
</span><span class="cx"> 
</span><del>-        console.assert(callFrames &amp;&amp; callFrames.every(function(callFrame) { return callFrame instanceof WebInspector.CallFrame; }));
</del><ins>+        console.assert(callFrames &amp;&amp; callFrames.every((callFrame) =&gt; callFrame instanceof WebInspector.CallFrame));
</ins><span class="cx"> 
</span><span class="cx">         this._callFrames = callFrames;
</span><span class="cx">     }
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceModelsStructureDescriptionjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Models/StructureDescription.js (201629 => 201630)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Models/StructureDescription.js        2016-06-03 00:39:58 UTC (rev 201629)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/StructureDescription.js        2016-06-03 01:18:59 UTC (rev 201630)
</span><span class="lines">@@ -29,8 +29,8 @@
</span><span class="cx">     {
</span><span class="cx">         super();
</span><span class="cx"> 
</span><del>-        console.assert(!fields || fields.every(function(x) { return typeof x === &quot;string&quot;; }));
-        console.assert(!optionalFields || optionalFields.every(function(x) { return typeof x === &quot;string&quot;; }));
</del><ins>+        console.assert(!fields || fields.every((x) =&gt; typeof x === &quot;string&quot;));
+        console.assert(!optionalFields || optionalFields.every((x) =&gt; typeof x === &quot;string&quot;));
</ins><span class="cx">         console.assert(!constructorName || typeof constructorName === &quot;string&quot;);
</span><span class="cx">         console.assert(!prototypeStructure || prototypeStructure instanceof WebInspector.StructureDescription);
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceModelsTypeDescriptionjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Models/TypeDescription.js (201629 => 201630)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Models/TypeDescription.js        2016-06-03 00:39:58 UTC (rev 201629)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/TypeDescription.js        2016-06-03 01:18:59 UTC (rev 201630)
</span><span class="lines">@@ -31,7 +31,7 @@
</span><span class="cx"> 
</span><span class="cx">         console.assert(!leastCommonAncestor || typeof leastCommonAncestor === &quot;string&quot;);
</span><span class="cx">         console.assert(!typeSet || typeSet instanceof WebInspector.TypeSet);
</span><del>-        console.assert(!structures || structures.every(function(x) { return x instanceof WebInspector.StructureDescription; }));
</del><ins>+        console.assert(!structures || structures.every((x) =&gt; x instanceof WebInspector.StructureDescription));
</ins><span class="cx"> 
</span><span class="cx">         this._leastCommonAncestor = leastCommonAncestor || null;
</span><span class="cx">         this._typeSet = typeSet || null;
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceProtocolInspectorBackendjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Protocol/InspectorBackend.js (201629 => 201630)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Protocol/InspectorBackend.js        2016-06-03 00:39:58 UTC (rev 201629)
+++ trunk/Source/WebInspectorUI/UserInterface/Protocol/InspectorBackend.js        2016-06-03 01:18:59 UTC (rev 201630)
</span><span class="lines">@@ -526,9 +526,7 @@
</span><span class="cx">         'use strict';
</span><span class="cx"> 
</span><span class="cx">         var instance = this._instance;
</span><del>-        return instance.callSignature.some(function(parameter) {
-            return parameter[&quot;name&quot;] === parameterName;
-        });
</del><ins>+        return instance.callSignature.some((parameter) =&gt; parameter[&quot;name&quot;] === parameterName);
</ins><span class="cx">     },
</span><span class="cx"> 
</span><span class="cx">     // Private
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsContentViewContainerjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ContentViewContainer.js (201629 => 201630)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ContentViewContainer.js        2016-06-03 00:39:58 UTC (rev 201629)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ContentViewContainer.js        2016-06-03 01:18:59 UTC (rev 201630)
</span><span class="lines">@@ -127,10 +127,7 @@
</span><span class="cx">         // Disassociate with the removed content views.
</span><span class="cx">         for (let i = 0; i &lt; removedEntries.length; ++i) {
</span><span class="cx">             // Skip disassociation if this content view is still in the back/forward list.
</span><del>-            let shouldDissociateContentView = !this._backForwardList.some(function(existingEntry) {
-                return existingEntry.contentView === removedEntries[i].contentView;
-            });
-
</del><ins>+            let shouldDissociateContentView = !this._backForwardList.some((existingEntry) =&gt; existingEntry.contentView === removedEntries[i].contentView);
</ins><span class="cx">             if (shouldDissociateContentView)
</span><span class="cx">                 this._disassociateFromContentView(removedEntries[i].contentView, removedEntries[i].tombstone);
</span><span class="cx">         }
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsNavigationSidebarPaneljs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/NavigationSidebarPanel.js (201629 => 201630)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/NavigationSidebarPanel.js        2016-06-03 00:39:58 UTC (rev 201629)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/NavigationSidebarPanel.js        2016-06-03 01:18:59 UTC (rev 201630)
</span><span class="lines">@@ -758,18 +758,17 @@
</span><span class="cx">                 representedObject.saveIdentityToCookie(candidateObjectCookie);
</span><span class="cx"> 
</span><span class="cx">             var candidateCookieKeys = Object.keys(candidateObjectCookie);
</span><del>-            return candidateCookieKeys.length &amp;&amp; candidateCookieKeys.every(function valuesMatchForKey(key) {
-                return candidateObjectCookie[key] === cookie[key];
-            });
</del><ins>+            return candidateCookieKeys.length &amp;&amp; candidateCookieKeys.every((key) =&gt; candidateObjectCookie[key] === cookie[key]);
</ins><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         var matchedElement = null;
</span><del>-        treeElements.some(function(element) {
</del><ins>+        treeElements.some((element) =&gt; {
</ins><span class="cx">             if (treeElementMatchesCookie.call(this, element)) {
</span><span class="cx">                 matchedElement = element;
</span><span class="cx">                 return true;
</span><span class="cx">             }
</span><del>-        }, this);
</del><ins>+            return false;
+        });
</ins><span class="cx"> 
</span><span class="cx">         if (matchedElement) {
</span><span class="cx">             let didShowContentView = this.showDefaultContentViewForTreeElement(matchedElement);
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsScopeBarjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ScopeBar.js (201629 => 201630)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/ScopeBar.js        2016-06-03 00:39:58 UTC (rev 201629)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ScopeBar.js        2016-06-03 01:18:59 UTC (rev 201630)
</span><span class="lines">@@ -81,16 +81,12 @@
</span><span class="cx"> 
</span><span class="cx">     get selectedItems()
</span><span class="cx">     {
</span><del>-        return this._items.filter(function(item) {
-            return item.selected;
-        });
</del><ins>+        return this._items.filter((item) =&gt; item.selected);
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     hasNonDefaultItemSelected()
</span><span class="cx">     {
</span><del>-        return this._items.some(function(item) {
-            return item.selected &amp;&amp; item !== this._defaultItem;
-        }, this);
</del><ins>+        return this._items.some((item) =&gt; item.selected &amp;&amp; item !== this._defaultItem);
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     // Private
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceViewsTabContentViewjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TabContentView.js (201629 => 201630)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Views/TabContentView.js        2016-06-03 00:39:58 UTC (rev 201629)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TabContentView.js        2016-06-03 01:18:59 UTC (rev 201630)
</span><span class="lines">@@ -28,10 +28,10 @@
</span><span class="cx">     constructor(identifier, styleClassNames, tabBarItem, navigationSidebarPanel, detailsSidebarPanels)
</span><span class="cx">     {
</span><span class="cx">         console.assert(typeof identifier === &quot;string&quot;);
</span><del>-        console.assert(typeof styleClassNames === &quot;string&quot; || styleClassNames.every(function(className) { return typeof className === &quot;string&quot;; }));
</del><ins>+        console.assert(typeof styleClassNames === &quot;string&quot; || styleClassNames.every((className) =&gt; typeof className === &quot;string&quot;));
</ins><span class="cx">         console.assert(tabBarItem instanceof WebInspector.TabBarItem);
</span><span class="cx">         console.assert(!navigationSidebarPanel || navigationSidebarPanel instanceof WebInspector.NavigationSidebarPanel);
</span><del>-        console.assert(!detailsSidebarPanels || detailsSidebarPanels.every(function(detailsSidebarPanel) { return detailsSidebarPanel instanceof WebInspector.DetailsSidebarPanel; }));
</del><ins>+        console.assert(!detailsSidebarPanels || detailsSidebarPanels.every((detailsSidebarPanel) =&gt; detailsSidebarPanel instanceof WebInspector.DetailsSidebarPanel));
</ins><span class="cx"> 
</span><span class="cx">         super(null);
</span><span class="cx"> 
</span></span></pre>
</div>
</div>

</body>
</html>