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
29
30
31
32
33
34
35
36
37
38
39
40
|
// Copyright (c) 2020 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array-exotic-objects-defineownproperty-p-desc
description: >
Redefining "length" to `configurable: true` throws a TypeError exception
info: |
ArraySetLength ( A, Desc )
ValidateAndApplyPropertyDescriptor ( O, P, extensible, Desc, current )
---*/
let a = [1];
assert.throws(TypeError, () => {
Object.defineProperty(a, "length", {
configurable: true
});
});
assert.throws(TypeError, () => {
Object.defineProperty(a, "length", {
value: 1,
configurable: true
});
});
assert.throws(TypeError, () => {
Object.defineProperty(a, "length", {
value: 2,
configurable: true
});
});
assert.throws(TypeError, () => {
Object.defineProperty(a, "length", {
value: 3,
configurable: true
});
});
reportCompare(0, 0);
|