Title: [169162] trunk
Revision
169162
Author
grao...@webkit.org
Date
2014-05-21 09:14:55 -0700 (Wed, 21 May 2014)

Log Message

Array.prototype.find and findIndex should skip holes
https://bugs.webkit.org/show_bug.cgi?id=132658

Reviewed by Geoffrey Garen.

Source/_javascript_Core:
Skip holes in the array when iterating such that callback isn't called.

* builtins/Array.prototype.js:
(find):
(findIndex):

LayoutTests:
* js/array-find-expected.txt:
* js/array-findIndex-expected.txt:
* js/script-tests/array-find.js:
* js/script-tests/array-findIndex.js:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (169161 => 169162)


--- trunk/LayoutTests/ChangeLog	2014-05-21 16:06:55 UTC (rev 169161)
+++ trunk/LayoutTests/ChangeLog	2014-05-21 16:14:55 UTC (rev 169162)
@@ -1,3 +1,15 @@
+2014-05-21  Antoine Quint  <grao...@webkit.org>
+
+        Array.prototype.find and findIndex should skip holes
+        https://bugs.webkit.org/show_bug.cgi?id=132658
+
+        Reviewed by Geoffrey Garen.
+
+        * js/array-find-expected.txt:
+        * js/array-findIndex-expected.txt:
+        * js/script-tests/array-find.js:
+        * js/script-tests/array-findIndex.js:
+
 2014-05-21  Radu Stavila  <stav...@adobe.com>
 
         REGRESSION (r168046): Invalid layout in WebCore::RenderBox::containingBlockLogicalWidthForPositioned

Modified: trunk/LayoutTests/js/array-find-expected.txt (169161 => 169162)


--- trunk/LayoutTests/js/array-find-expected.txt	2014-05-21 16:06:55 UTC (rev 169161)
+++ trunk/LayoutTests/js/array-find-expected.txt	2014-05-21 16:14:55 UTC (rev 169162)
@@ -40,6 +40,12 @@
 PASS [].find({}) threw exception TypeError: Array.prototype.find callback must be a function.
 PASS [].find(null) threw exception TypeError: Array.prototype.find callback must be a function.
 PASS [].find(undefined) threw exception TypeError: Array.prototype.find callback must be a function.
+find callback called with index 10
+find callback called with index 20
+find callback called with index 30
+find callback called with index 40
+find callback called with index 50
+PASS numberOfCallbacksInFindInArrayWithHoles() is 5
 PASS successfullyParsed is true
 
 TEST COMPLETE

Modified: trunk/LayoutTests/js/array-findIndex-expected.txt (169161 => 169162)


--- trunk/LayoutTests/js/array-findIndex-expected.txt	2014-05-21 16:06:55 UTC (rev 169161)
+++ trunk/LayoutTests/js/array-findIndex-expected.txt	2014-05-21 16:14:55 UTC (rev 169162)
@@ -13,12 +13,13 @@
 PASS [undefined, 0, null, ''].findIndex(passFalse) is -1
 PASS [undefined, 0, null, false].findIndex(passEmptyString) is -1
 PASS [undefined, null, false, ''].findIndex(passZero) is -1
-PASS (new Array(20)).findIndex(passUndefined) is 0
-PASS arrayWithHoles.findIndex(passUndefined) is 0
+PASS (new Array(20)).findIndex(passUndefined) is -1
+PASS arrayWithHoles.findIndex(passUndefined) is -1
 PASS arrayWithHoles.findIndex(passZero) is 10
 PASS arrayWithHoles.findIndex(passNull) is 20
 PASS arrayWithHoles.findIndex(passFalse) is 30
 PASS arrayWithHoles.findIndex(passEmptyString) is 40
+PASS arrayWithHoles.findIndex(passUndefined) is 50
 PASS toObject([undefined, 0, null, false, '']).findIndex(passUndefined) is 0
 PASS toObject([undefined, 0, null, false, '']).findIndex(passZero) is 1
 PASS toObject([undefined, 0, null, false, '']).findIndex(passNull) is 2
@@ -29,7 +30,7 @@
 PASS toObject([undefined, 0, null, '']).findIndex(passFalse) is -1
 PASS toObject([undefined, 0, null, false]).findIndex(passEmptyString) is -1
 PASS toObject([undefined, null, false, '']).findIndex(passZero) is -1
-PASS toObject(new Array(20)).findIndex(passUndefined) is 0
+PASS toObject(new Array(20)).findIndex(passUndefined) is -1
 PASS [0,1,2,3,4,5,6,7,8,9].findIndex(findItemAddedDuringSearch) is -1
 PASS [0,1,2,3,4,5,6,7,8,9].findIndex(findItemRemovedDuringSearch) is -1
 PASS Array.prototype.findIndex.call(undefined, function() {}) threw exception TypeError: Array.prototype.findIndex requires that |this| not be undefined.
@@ -40,6 +41,12 @@
 PASS [].findIndex({}) threw exception TypeError: Array.prototype.findIndex callback must be a function.
 PASS [].findIndex(null) threw exception TypeError: Array.prototype.findIndex callback must be a function.
 PASS [].findIndex(undefined) threw exception TypeError: Array.prototype.findIndex callback must be a function.
+find callback called with index 10
+find callback called with index 20
+find callback called with index 30
+find callback called with index 40
+find callback called with index 50
+PASS numberOfCallbacksInFindIndexInArrayWithHoles() is 5
 PASS successfullyParsed is true
 
 TEST COMPLETE

Modified: trunk/LayoutTests/js/script-tests/array-find.js (169161 => 169162)


--- trunk/LayoutTests/js/script-tests/array-find.js	2014-05-21 16:06:55 UTC (rev 169161)
+++ trunk/LayoutTests/js/script-tests/array-find.js	2014-05-21 16:14:55 UTC (rev 169162)
@@ -44,6 +44,15 @@
 arrayWithHoles[20] = null;
 arrayWithHoles[30] = false;
 arrayWithHoles[40] = "";
+arrayWithHoles[50] = undefined;
+function numberOfCallbacksInFindInArrayWithHoles() {
+    var count = 0;
+    arrayWithHoles.find(function(element, index, array) {
+        debug("find callback called with index " + index);
+        count++;
+    });
+    return count;
+}
 
 shouldBe("[undefined, 0, null, false, ''].find(passUndefined)", "undefined");
 shouldBe("[undefined, 0, null, false, ''].find(passZero)", "0");
@@ -90,3 +99,6 @@
 shouldThrow("[].find({})", "'TypeError: Array.prototype.find callback must be a function'");
 shouldThrow("[].find(null)", "'TypeError: Array.prototype.find callback must be a function'");
 shouldThrow("[].find(undefined)", "'TypeError: Array.prototype.find callback must be a function'");
+
+// Callbacks in the expected order and skipping holes.
+shouldBe("numberOfCallbacksInFindInArrayWithHoles()", "5");

Modified: trunk/LayoutTests/js/script-tests/array-findIndex.js (169161 => 169162)


--- trunk/LayoutTests/js/script-tests/array-findIndex.js	2014-05-21 16:06:55 UTC (rev 169161)
+++ trunk/LayoutTests/js/script-tests/array-findIndex.js	2014-05-21 16:14:55 UTC (rev 169162)
@@ -44,6 +44,14 @@
 arrayWithHoles[20] = null;
 arrayWithHoles[30] = false;
 arrayWithHoles[40] = "";
+function numberOfCallbacksInFindIndexInArrayWithHoles() {
+    var count = 0;
+    arrayWithHoles.find(function(element, index, array) {
+        debug("find callback called with index " + index);
+        count++;
+    });
+    return count;
+}
 
 shouldBe("[undefined, 0, null, false, ''].findIndex(passUndefined)", "0");
 shouldBe("[undefined, 0, null, false, ''].findIndex(passZero)", "1");
@@ -55,14 +63,16 @@
 shouldBe("[undefined, 0, null, ''].findIndex(passFalse)", "-1");
 shouldBe("[undefined, 0, null, false].findIndex(passEmptyString)", "-1");
 shouldBe("[undefined, null, false, ''].findIndex(passZero)", "-1");
-shouldBe("(new Array(20)).findIndex(passUndefined)", "0");
+shouldBe("(new Array(20)).findIndex(passUndefined)", "-1");
 
 // Array with holes.
-shouldBe("arrayWithHoles.findIndex(passUndefined)", "0");
+shouldBe("arrayWithHoles.findIndex(passUndefined)", "-1");
 shouldBe("arrayWithHoles.findIndex(passZero)", "10");
 shouldBe("arrayWithHoles.findIndex(passNull)", "20");
 shouldBe("arrayWithHoles.findIndex(passFalse)", "30");
 shouldBe("arrayWithHoles.findIndex(passEmptyString)", "40");
+arrayWithHoles[50] = undefined;
+shouldBe("arrayWithHoles.findIndex(passUndefined)", "50");
 
 // Generic Object
 shouldBe("toObject([undefined, 0, null, false, '']).findIndex(passUndefined)", "0");
@@ -75,7 +85,7 @@
 shouldBe("toObject([undefined, 0, null, '']).findIndex(passFalse)", "-1");
 shouldBe("toObject([undefined, 0, null, false]).findIndex(passEmptyString)", "-1");
 shouldBe("toObject([undefined, null, false, '']).findIndex(passZero)", "-1");
-shouldBe("toObject(new Array(20)).findIndex(passUndefined)", "0");
+shouldBe("toObject(new Array(20)).findIndex(passUndefined)", "-1");
 
 // Modification during search
 shouldBe("[0,1,2,3,4,5,6,7,8,9].findIndex(findItemAddedDuringSearch)", "-1");
@@ -90,3 +100,6 @@
 shouldThrow("[].findIndex({})", "'TypeError: Array.prototype.findIndex callback must be a function'");
 shouldThrow("[].findIndex(null)", "'TypeError: Array.prototype.findIndex callback must be a function'");
 shouldThrow("[].findIndex(undefined)", "'TypeError: Array.prototype.findIndex callback must be a function'");
+
+// Callbacks in the expected order and skipping holes.
+shouldBe("numberOfCallbacksInFindIndexInArrayWithHoles()", "5");

Modified: trunk/Source/_javascript_Core/ChangeLog (169161 => 169162)


--- trunk/Source/_javascript_Core/ChangeLog	2014-05-21 16:06:55 UTC (rev 169161)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-05-21 16:14:55 UTC (rev 169162)
@@ -1,3 +1,16 @@
+2014-05-21  Antoine Quint  <grao...@webkit.org>
+
+        Array.prototype.find and findIndex should skip holes
+        https://bugs.webkit.org/show_bug.cgi?id=132658
+
+        Reviewed by Geoffrey Garen.
+
+        Skip holes in the array when iterating such that callback isn't called.
+
+        * builtins/Array.prototype.js:
+        (find):
+        (findIndex):
+
 2014-05-21  Eva Balazsfalvi  <evab.u-sze...@partner.samsung.com>
 
         REGRESSION(r169092 and r169102): Skip failing JSC tests on ARM64 properly

Modified: trunk/Source/_javascript_Core/builtins/Array.prototype.js (169161 => 169162)


--- trunk/Source/_javascript_Core/builtins/Array.prototype.js	2014-05-21 16:06:55 UTC (rev 169161)
+++ trunk/Source/_javascript_Core/builtins/Array.prototype.js	2014-05-21 16:14:55 UTC (rev 169162)
@@ -205,6 +205,8 @@
     
     var thisArg = arguments.length > 1 ? arguments[1] : undefined;
     for (var i = 0; i < length; i++) {
+        if (!(i in array))
+            continue;
         if (callback.@call(thisArg, array[i], i, array))
             return array[i];
     }
@@ -227,6 +229,8 @@
     
     var thisArg = arguments.length > 1 ? arguments[1] : undefined;
     for (var i = 0; i < length; i++) {
+        if (!(i in array))
+            continue;
         if (callback.@call(thisArg, array[i], i, array))
             return i;
     }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to