Revision: 21231
Author: [email protected]
Date: Fri May 9 16:11:50 2014 UTC
Log: Fix typos in unit test for Array.prototype.fill()
BUG=
LOG=y
[email protected]
Review URL: https://codereview.chromium.org/277953002
http://code.google.com/p/v8/source/detail?r=21231
Modified:
/branches/bleeding_edge/test/mjsunit/harmony/array-fill.js
=======================================
--- /branches/bleeding_edge/test/mjsunit/harmony/array-fill.js Wed Apr 30
08:28:29 2014 UTC
+++ /branches/bleeding_edge/test/mjsunit/harmony/array-fill.js Fri May 9
16:11:50 2014 UTC
@@ -4,7 +4,7 @@
// Flags: --harmony-arrays
-assertEquals(1, Array.prototype.find.length);
+assertEquals(1, Array.prototype.fill.length);
assertArrayEquals([].fill(8), []);
assertArrayEquals([0, 0, 0, 0, 0].fill(), [undefined, undefined,
undefined, undefined, undefined]);
@@ -22,7 +22,7 @@
assertArrayEquals([0, 0, 0, 0, 0].fill(8, undefined, 4), [8, 8, 8, 8, 0]);
assertArrayEquals([ , , , , 0].fill(8, 1, 3), [, 8, 8, , 0]);
-// If the range if empty, the array is not actually modified and
+// If the range is empty, the array is not actually modified and
// should not throw, even when applied to a frozen object.
assertArrayEquals(Object.freeze([1, 2, 3]).fill(0, 0, 0), [1, 2, 3]);
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.