summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/bind/instance-length-exceeds-int32.js
blob: 467b94edcfd33f84592e2236f4cb02c984b2a63a (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
// Copyright (C) 2018 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-function.prototype.bind
description: >
  The target function length can exceed 2**31-1.
info: |
  19.2.3.2 Function.prototype.bind ( thisArg, ...args )

  ...
  6. If targetHasLength is true, then
    a. Let targetLen be ? Get(Target, "length").
    b. If Type(targetLen) is not Number, let L be 0.
    c. Else,
      i. Let targetLen be ToInteger(targetLen).
      ii. Let L be the larger of 0 and the result of targetLen minus the number of elements of args.
  ...
  8. Perform ! SetFunctionLength(F, L).
  ...
---*/

function f(){}
Object.defineProperty(f, "length", {value: 2147483648});

assert.sameValue(f.bind().length, 2147483648);

Object.defineProperty(f, "length", {value: Number.MAX_SAFE_INTEGER});
assert.sameValue(f.bind().length, Number.MAX_SAFE_INTEGER);

reportCompare(0, 0);