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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 "length after .push(16, 17, 18, 19, 20, 21)"); | 59 "length after .push(16, 17, 18, 19, 20, 21)"); |
60 assertEquals([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21], a, | 60 assertEquals([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21], a, |
61 "after .push(16, 17, 18, 19, 20, 21)"); | 61 "after .push(16, 17, 18, 19, 20, 21)"); |
62 | 62 |
63 assertEquals(28, a.push(22, 23, 24, 25, 26, 27, 28), | 63 assertEquals(28, a.push(22, 23, 24, 25, 26, 27, 28), |
64 "length hafter .push(22, 23, 24, 25, 26, 27, 28)"); | 64 "length hafter .push(22, 23, 24, 25, 26, 27, 28)"); |
65 assertEquals([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, 27, 28], a, | 65 assertEquals([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, 27, 28], a, |
66 "after .push(22, 23, 24, 25, 26, 27, 28)"); | 66 "after .push(22, 23, 24, 25, 26, 27, 28)"); |
67 } | 67 } |
68 })(); | 68 })(); |
| 69 |
| 70 // Excerises various pushes to the array at the end of new space. |
| 71 (function() { |
| 72 var a = undefined; |
| 73 for (var i = 0; i < 7; i++) { |
| 74 a = []; |
| 75 assertEquals(1, a.push(1)); |
| 76 assertEquals(2, a.push(2)); |
| 77 assertEquals(3, a.push(3)); |
| 78 assertEquals(4, a.push(4)); |
| 79 assertEquals(5, a.push(5)); |
| 80 assertEquals(6, a.push(6)); |
| 81 assertEquals(7, a.push(7)); |
| 82 assertEquals(8, a.push(8)); |
| 83 assertEquals(9, a.push(9)); |
| 84 assertEquals(10, a.push(10)); |
| 85 assertEquals(11, a.push(11)); |
| 86 assertEquals(12, a.push(12)); |
| 87 assertEquals(13, a.push(13)); |
| 88 assertEquals(14, a.push(14)); |
| 89 assertEquals(15, a.push(15)); |
| 90 assertEquals(16, a.push(16)); |
| 91 assertEquals(17, a.push(17)); |
| 92 assertEquals(18, a.push(18)); |
| 93 assertEquals(19, a.push(19)); |
| 94 assertEquals(20, a.push(20)); |
| 95 assertEquals(21, a.push(21)); |
| 96 assertEquals(22, a.push(22)); |
| 97 assertEquals(23, a.push(23)); |
| 98 assertEquals(24, a.push(24)); |
| 99 assertEquals(25, a.push(25)); |
| 100 assertEquals(26, a.push(26)); |
| 101 assertEquals(27, a.push(27)); |
| 102 assertEquals(28, a.push(28)); |
| 103 assertEquals(29, a.push(29)); |
| 104 } |
| 105 })(); |
OLD | NEW |