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

Side by Side Diff: test/mjsunit/array-functions-prototype-misc.js

Issue 656683003: Revert "Remove SmartMove, bringing Array methods further into spec compliance" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/array.js ('k') | test/mjsunit/array-natives-elements.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 13 matching lines...) Expand all
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 /** 28 /**
29 * @fileoverview Test splice, shift, unshift, slice and join on small 29 * @fileoverview Test splice, shift, unshift, slice and join on small
30 * and large arrays. Some of these methods are specified such that they 30 * and large arrays. Some of these methods are specified such that they
31 * should work on other objects too, so we test that too. 31 * should work on other objects too, so we test that too.
32 */ 32 */
33 33
34 /*
35
36 var LARGE = 4000000; 34 var LARGE = 4000000;
37 var VERYLARGE = 4000000000; 35 var VERYLARGE = 4000000000;
38 36
39 // Nicer for firefox 1.5. Unless you uncomment the following two lines, 37 // Nicer for firefox 1.5. Unless you uncomment the following two lines,
40 // smjs will appear to hang on this file. 38 // smjs will appear to hang on this file.
41 //var LARGE = 40000; 39 //var LARGE = 40000;
42 //var VERYLARGE = 40000; 40 //var VERYLARGE = 40000;
43 41
44 var fourhundredth = LARGE/400; 42 var fourhundredth = LARGE/400;
45 43
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 // Test http://b/issue?id=1202711 305 // Test http://b/issue?id=1202711
308 arr = [0]; 306 arr = [0];
309 arr.length = 2; 307 arr.length = 2;
310 Array.prototype[1] = 1; 308 Array.prototype[1] = 1;
311 assertEquals(1, arr.pop()); 309 assertEquals(1, arr.pop());
312 assertEquals(0, arr.pop()); 310 assertEquals(0, arr.pop());
313 Array.prototype[1] = undefined; 311 Array.prototype[1] = undefined;
314 312
315 // Test http://code.google.com/p/chromium/issues/detail?id=21860 313 // Test http://code.google.com/p/chromium/issues/detail?id=21860
316 Array.prototype.push.apply([], [1].splice(0, -(-1 % 5))); 314 Array.prototype.push.apply([], [1].splice(0, -(-1 % 5)));
317
318 */
OLDNEW
« no previous file with comments | « src/array.js ('k') | test/mjsunit/array-natives-elements.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698