Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | |
|
Jakob Kummerow
2016/02/02 15:31:45
2015 is so last year
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 var o = {__proto__:new Int32Array(100)}; | |
| 6 Object.prototype[1.3] = 10; | |
| 7 assertEquals(10, o[1.3]); | |
| 8 | |
| 9 var o = new Int32Array(100); | |
| 10 var o2 = new Int32Array(200); | |
| 11 o.__proto__ = o2; | |
| 12 assertEquals(undefined, Reflect.get(o, 1.3, o2)); | |
| OLD | NEW |