| OLD | NEW |
| 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 23 matching lines...) Expand all Loading... |
| 34 var LARGE = 40000000; | 34 var LARGE = 40000000; |
| 35 var VERYLARGE = 4000000000; | 35 var VERYLARGE = 4000000000; |
| 36 | 36 |
| 37 // 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, |
| 38 // smjs will appear to hang on this file. | 38 // smjs will appear to hang on this file. |
| 39 //var LARGE = 40000; | 39 //var LARGE = 40000; |
| 40 //var VERYLARGE = 40000; | 40 //var VERYLARGE = 40000; |
| 41 | 41 |
| 42 var fourhundredth = LARGE/400; | 42 var fourhundredth = LARGE/400; |
| 43 | 43 |
| 44 function PseudoArray() { | 44 function PseudoArray() { } |
| 45 }; | |
| 46 | 45 |
| 47 for (var use_real_arrays = 0; use_real_arrays <= 1; use_real_arrays++) { | 46 for (var use_real_arrays = 0; use_real_arrays <= 1; use_real_arrays++) { |
| 48 var poses = [0, 140, 20000, VERYLARGE]; | 47 var poses = [0, 140, 20000, VERYLARGE]; |
| 49 var the_prototype; | 48 var the_prototype; |
| 50 var new_function; | 49 var new_function; |
| 51 var push_function; | 50 var push_function; |
| 52 var concat_function; | 51 var concat_function; |
| 53 var slice_function; | 52 var slice_function; |
| 54 var splice_function; | 53 var splice_function; |
| 55 var splice_function_2; | 54 var splice_function_2; |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 // Test http://b/issue?id=1202711 | 304 // Test http://b/issue?id=1202711 |
| 306 arr = [0]; | 305 arr = [0]; |
| 307 arr.length = 2; | 306 arr.length = 2; |
| 308 Array.prototype[1] = 1; | 307 Array.prototype[1] = 1; |
| 309 assertEquals(1, arr.pop()); | 308 assertEquals(1, arr.pop()); |
| 310 assertEquals(0, arr.pop()); | 309 assertEquals(0, arr.pop()); |
| 311 Array.prototype[1] = undefined; | 310 Array.prototype[1] = undefined; |
| 312 | 311 |
| 313 // Test http://code.google.com/p/chromium/issues/detail?id=21860 | 312 // Test http://code.google.com/p/chromium/issues/detail?id=21860 |
| 314 Array.prototype.push.apply([], [1].splice(0, -(-1 % 5))); | 313 Array.prototype.push.apply([], [1].splice(0, -(-1 % 5))); |
| OLD | NEW |