| // Copyright 2017 the V8 project authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| function f(a, i, v) { a[i] = v; } |
| f("make it generic", 0, 0); |
| Object.defineProperty(a, "length", {value: 3, writable: false}); |
| print(JSON.stringify(Object.getOwnPropertyDescriptor(a, "length"))); |
| assertEquals(3, a.length); |
| assertFalse(Object.getOwnPropertyDescriptor(a, "length").writable); |
| assertEquals(3, a.length); |
| assertEquals(3, b.length); |
| assertEquals(3, b.length); |