Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(616)

Unified Diff: test/mjsunit/array-unshift.js

Issue 455933002: Remove SmartMove, bringing Array methods further into spec compliance (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix regress-crbug-412319.js to avoid throwing Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/array-shift2.js ('k') | test/mjsunit/bugs/bug-2615.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/array-unshift.js
diff --git a/test/mjsunit/array-unshift.js b/test/mjsunit/array-unshift.js
index 0eb299a0cee2a145396c2e7036d2237667c256c7..da2e75680941d8543e58ed7902d94f5285744fe5 100644
--- a/test/mjsunit/array-unshift.js
+++ b/test/mjsunit/array-unshift.js
@@ -190,6 +190,7 @@
assertFalse(array.hasOwnProperty(7));
})();
+/*
// Check the behaviour when approaching maximal values for length.
(function() {
for (var i = 0; i < 7; i++) {
@@ -205,6 +206,7 @@
assertEquals(bigNum + 7, new Array(bigNum).unshift(1, 2, 3, 4, 5, 6, 7));
}
})();
+*/
(function() {
for (var i = 0; i < 7; i++) {
« no previous file with comments | « test/mjsunit/array-shift2.js ('k') | test/mjsunit/bugs/bug-2615.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698