| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 assertFalse(array.hasOwnProperty(3)); | 187 assertFalse(array.hasOwnProperty(3)); |
| 188 | 188 |
| 189 assertEquals(array[7], array_proto[7]); | 189 assertEquals(array[7], array_proto[7]); |
| 190 assertFalse(array.hasOwnProperty(7)); | 190 assertFalse(array.hasOwnProperty(7)); |
| 191 })(); | 191 })(); |
| 192 | 192 |
| 193 // Check the behaviour when approaching maximal values for length. | 193 // Check the behaviour when approaching maximal values for length. |
| 194 (function() { | 194 (function() { |
| 195 for (var i = 0; i < 7; i++) { | 195 for (var i = 0; i < 7; i++) { |
| 196 try { | 196 try { |
| 197 new Array(Math.pow(2, 32) - 3).unshift(1, 2, 3, 4, 5); | 197 var a1 = []; |
| 198 a1[Math.pow(2, 32) - 3 - 1] = 0; |
| 199 a1.unshift(1, 2, 3, 4, 5); |
| 198 throw 'Should have thrown RangeError'; | 200 throw 'Should have thrown RangeError'; |
| 199 } catch (e) { | 201 } catch (e) { |
| 200 assertTrue(e instanceof RangeError); | 202 assertTrue(e instanceof RangeError); |
| 201 } | 203 } |
| 202 | 204 |
| 203 // Check smi boundary | 205 // Check smi boundary |
| 204 var bigNum = (1 << 30) - 3; | 206 var bigNum = (1 << 30) - 3; |
| 205 assertEquals(bigNum + 7, new Array(bigNum).unshift(1, 2, 3, 4, 5, 6, 7)); | 207 var a2 = []; |
| 208 a2[bigNum - 1] = 0; |
| 209 assertEquals(bigNum + 7, a2.unshift(1, 2, 3, 4, 5, 6, 7)); |
| 206 } | 210 } |
| 207 })(); | 211 })(); |
| 208 | 212 |
| 209 (function() { | 213 (function() { |
| 210 for (var i = 0; i < 7; i++) { | 214 for (var i = 0; i < 7; i++) { |
| 211 var a = [6, 7, 8, 9]; | 215 var a = [6, 7, 8, 9]; |
| 212 a.unshift(1, 2, 3, 4, 5); | 216 a.unshift(1, 2, 3, 4, 5); |
| 213 assertEquals([1, 2, 3, 4, 5, 6, 7, 8, 9], a); | 217 assertEquals([1, 2, 3, 4, 5, 6, 7, 8, 9], a); |
| 214 } | 218 } |
| 215 })(); | 219 })(); |
| 216 | 220 |
| 217 // Check that non-enumerable elements are treated appropriately | 221 // Check that non-enumerable elements are treated appropriately |
| 218 (function() { | 222 (function() { |
| 219 var array = [2, 3]; | 223 var array = [2, 3]; |
| 220 Object.defineProperty(array, '1', {enumerable: false}); | 224 Object.defineProperty(array, '1', {enumerable: false}); |
| 221 array.unshift(1) | 225 array.unshift(1) |
| 222 assertEquals([1, 2, 3], array); | 226 assertEquals([1, 2, 3], array); |
| 223 | 227 |
| 224 array = [2]; | 228 array = [2]; |
| 225 array.length = 2; | 229 array.length = 2; |
| 226 array.__proto__[1] = 3; | 230 array.__proto__[1] = 3; |
| 227 Object.defineProperty(array.__proto__, '1', {enumerable: false}); | 231 Object.defineProperty(array.__proto__, '1', {enumerable: false}); |
| 228 array.unshift(1); | 232 array.unshift(1); |
| 229 assertEquals([1, 2, 3], array); | 233 assertEquals([1, 2, 3], array); |
| 230 })(); | 234 })(); |
| OLD | NEW |