summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/with/this-value-boolean.js
blob: 453817c2a55704feff6c42191e3eeb57e6dfa9eb (plain)
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
41
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-array.prototype.with
description: >
  Array.prototype.with casts primitive receivers to objects
info: |
  Array.prototype.with ( index, value )

  1. Let O be ? ToObject(this value).
  2. Let len be ? LengthOfArrayLike(O).
  ...
features: [change-array-by-copy]
includes: [compareArray.js]
---*/

Boolean.prototype.length = 2;
Boolean.prototype[0] = 0;
Boolean.prototype[1] = 1;

assert.compareArray(Array.prototype.with.call(true, 0, 2), [2, 1]);
assert.compareArray(Array.prototype.with.call(false, 0, 2), [2, 1]);

/* Add length and indexed properties to `Boolean.prototype` */
Boolean.prototype.length = 3;
delete Boolean.prototype[0];
delete Boolean.prototype[1];
assert.compareArray(Array.prototype.with.call(true, 0, 2), [2, undefined, undefined]);
assert.compareArray(Array.prototype.with.call(false, 0, 2), [2, undefined, undefined]);
delete Boolean.prototype.length;
Boolean.prototype[0] = "monkeys";
Boolean.prototype[2] = "bogus";
assert.throws(RangeError,
              () => compareArray(Array.prototype.with.call(true, 0, 2)),
              "Array.prototype.with on object with undefined length");
assert.throws(RangeError,
              () => compareArray(Array.prototype.with.call(false, 0, 2)),
              "Array.prototype.with on object with undefined length");

reportCompare(0, 0);