| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Flags: --noharmony-species | |
| 6 | |
| 7 // First test case | 5 // First test case |
| 8 | 6 |
| 9 function FirstBuffer () {} | 7 function FirstBuffer () {} |
| 10 FirstBuffer.prototype.__proto__ = Uint8Array.prototype | 8 FirstBuffer.prototype.__proto__ = Uint8Array.prototype |
| 11 FirstBuffer.__proto__ = Uint8Array | 9 FirstBuffer.__proto__ = Uint8Array |
| 12 | 10 |
| 13 var buf = new Uint8Array(10) | 11 var buf = new Uint8Array(10) |
| 14 buf.__proto__ = FirstBuffer.prototype | 12 buf.__proto__ = FirstBuffer.prototype |
| 15 | 13 |
| 16 var buf2 = buf.subarray(2) | 14 var buf2 = buf.subarray(2) |
| 17 assertEquals(8, buf2.length); | 15 assertEquals(8, buf2.length); |
| 18 | 16 |
| 19 // Second test case | 17 // Second test case |
| 20 | 18 |
| 21 function SecondBuffer (arg) { | 19 function SecondBuffer (arg) { |
| 22 var arr = new Uint8Array(arg) | 20 var arr = new Uint8Array(arg) |
| 23 arr.__proto__ = SecondBuffer.prototype | 21 arr.__proto__ = SecondBuffer.prototype |
| 24 return arr | 22 return arr |
| 25 } | 23 } |
| 26 SecondBuffer.prototype.__proto__ = Uint8Array.prototype | 24 SecondBuffer.prototype.__proto__ = Uint8Array.prototype |
| 27 SecondBuffer.__proto__ = Uint8Array | 25 SecondBuffer.__proto__ = Uint8Array |
| 28 | 26 |
| 29 var buf3 = new SecondBuffer(10) | 27 var buf3 = new SecondBuffer(10) |
| 30 | 28 |
| 31 var buf4 = buf3.subarray(2) | 29 var buf4 = buf3.subarray(2) |
| 32 | 30 |
| 33 assertEquals(8, buf4.length); | 31 assertEquals(8, buf4.length); |
| OLD | NEW |