Title: [260362] trunk/JSTests
Revision
260362
Author
[email protected]
Date
2020-04-20 05:10:03 -0700 (Mon, 20 Apr 2020)

Log Message

Unreviewed, revert accidental test changes.

* microbenchmarks/for-of-iterate-array-entries.js:
(foo):

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (260361 => 260362)


--- trunk/JSTests/ChangeLog	2020-04-20 12:01:56 UTC (rev 260361)
+++ trunk/JSTests/ChangeLog	2020-04-20 12:10:03 UTC (rev 260362)
@@ -1,3 +1,10 @@
+2020-04-20  Keith Miller  <[email protected]>
+
+        Unreviewed, revert accidental test changes.
+
+        * microbenchmarks/for-of-iterate-array-entries.js:
+        (foo):
+
 2020-04-20  Paulo Matos  <[email protected]>
 
         [32-bits] stress/for-of-array-different-globals.js is failing

Modified: trunk/JSTests/microbenchmarks/for-of-iterate-array-entries.js (260361 => 260362)


--- trunk/JSTests/microbenchmarks/for-of-iterate-array-entries.js	2020-04-20 12:01:56 UTC (rev 260361)
+++ trunk/JSTests/microbenchmarks/for-of-iterate-array-entries.js	2020-04-20 12:10:03 UTC (rev 260362)
@@ -3,12 +3,10 @@
     var array = [];
     for (var i = 0; i < 25000; i++)
         array.push(i);
-
+    
     var result = 0;
-    for (var [key, value] of array.entries()) {
-        print(key + " " + $vm.indexingMode(array));
+    for (var [key, value] of array.entries())
         result += key + value + array[key];
-    }
     
     return result;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to