summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/toSpliced/deleteCount-clamped-between-zero-and-remaining-count.js
blob: 7cc84733e2488b532377b4e9048ddac72dac1f1f (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
// 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.toSpliced
description: deleteCount is clamped between zero and len - actualStart
info: |
  22.1.3.25 Array.prototype.toSpliced (start, deleteCount , ...items )

  ...
  10. Else,
    a. Let dc be ? ToIntegerOrInfinity(deleteCount).
    b. Let actualDeleteCount be the result of clamping dc between 0 and len - actualStart.
  ...
features: [change-array-by-copy]
includes: [compareArray.js]
---*/

assert.compareArray(
  [0, 1, 2, 3, 4, 5].toSpliced(2, -1),
  [0, 1, 2, 3, 4, 5]
);

assert.compareArray(
  [0, 1, 2, 3, 4, 5].toSpliced(-4, -1),
  [0, 1, 2, 3, 4, 5]
);

assert.compareArray(
  [0, 1, 2, 3, 4, 5].toSpliced(2, 6),
  [0, 1]
);

assert.compareArray(
  [0, 1, 2, 3, 4, 5].toSpliced(-4, 6),
  [0, 1]
);

reportCompare(0, 0);