summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/pop/clamps-to-integer-limit.js
blob: 4f0b10b147fbbfd530cc8f4199bd70d0c778ee47 (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
// Copyright (C) 2017 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-array.prototype.pop
description: >
  Length values exceeding 2^53-1 are clamped to 2^53-1.
info: |
  1. ...
  2. Let len be ? ToLength(? Get(O, "length")).
  ...
  4. Else len > 0,
  a. Let newLen be len-1.
  ...
  e. Perform ? Set(O, "length", newLen, true).
  ...
features: [exponentiation]
---*/

var arrayLike = {};

arrayLike.length = 2 ** 53 - 1;
Array.prototype.pop.call(arrayLike);
assert.sameValue(arrayLike.length, 2 ** 53 - 2, "Length is 2**53 - 1");

arrayLike.length = 2 ** 53;
Array.prototype.pop.call(arrayLike);
assert.sameValue(arrayLike.length, 2 ** 53 - 2, "Length is 2**53");

arrayLike.length = 2 ** 53 + 2;
Array.prototype.pop.call(arrayLike);
assert.sameValue(arrayLike.length, 2 ** 53 - 2, "Length is 2**53 + 2");

arrayLike.length = Infinity;
Array.prototype.pop.call(arrayLike);
assert.sameValue(arrayLike.length, 2 ** 53 - 2, "Length is Infinity");

reportCompare(0, 0);