summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/unshift/throws-if-integer-limit-exceeded.js
blob: a6e0acc306ce63465601c2ce06601dfed6f04b2a (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
// 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.unshift
description: >
  A TypeError is thrown if the new length exceeds 2^53-1.
info: |
  1. ...
  2. Let len be ? ToLength(? Get(O, "length")).
  3. Let argCount be the number of actual arguments.
  4. If argCount > 0, then
    a. If len+argCount > 2^53-1, throw a TypeError exception.
    b. ...
---*/

var arrayLike = {};

arrayLike.length = 2**53 - 1;
assert.throws(TypeError, function() {
  Array.prototype.unshift.call(arrayLike, null);
}, "Length is 2**53 - 1");

arrayLike.length = 2**53;
assert.throws(TypeError, function() {
  Array.prototype.unshift.call(arrayLike, null);
}, "Length is 2**53");

arrayLike.length = 2**53 + 2;
assert.throws(TypeError, function() {
  Array.prototype.unshift.call(arrayLike, null);
}, "Length is 2**53 + 2");

arrayLike.length = Infinity;
assert.throws(TypeError, function() {
  Array.prototype.unshift.call(arrayLike, null);
}, "Length is Infinity");