Title: [218674] trunk/Source/_javascript_Core
Revision
218674
Author
[email protected]
Date
2017-06-21 19:22:12 -0700 (Wed, 21 Jun 2017)

Log Message

ArrayPrototype.map builtin declares a var it does not use
https://bugs.webkit.org/show_bug.cgi?id=173685

Reviewed by Keith Miller.

* builtins/ArrayPrototype.js:
(map):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (218673 => 218674)


--- trunk/Source/_javascript_Core/ChangeLog	2017-06-22 01:54:45 UTC (rev 218673)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-06-22 02:22:12 UTC (rev 218674)
@@ -1,5 +1,15 @@
 2017-06-21  Saam Barati  <[email protected]>
 
+        ArrayPrototype.map builtin declares a var it does not use
+        https://bugs.webkit.org/show_bug.cgi?id=173685
+
+        Reviewed by Keith Miller.
+
+        * builtins/ArrayPrototype.js:
+        (map):
+
+2017-06-21  Saam Barati  <[email protected]>
+
         eval virtual call is incorrect in the baseline JIT
         https://bugs.webkit.org/show_bug.cgi?id=173587
         <rdar://problem/32867897>

Modified: trunk/Source/_javascript_Core/builtins/ArrayPrototype.js (218673 => 218674)


--- trunk/Source/_javascript_Core/builtins/ArrayPrototype.js	2017-06-22 01:54:45 UTC (rev 218673)
+++ trunk/Source/_javascript_Core/builtins/ArrayPrototype.js	2017-06-22 02:22:12 UTC (rev 218674)
@@ -268,7 +268,6 @@
     else
         result = new constructor(length);
 
-    var nextIndex = 0;
     for (var i = 0; i < length; i++) {
         if (!(i in array))
             continue;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to