summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/apply/get-length-abrupt.js
blob: b559cb0504f713f62abe11878095f3e6370cab96 (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
// Copyright 2019 Aleksey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-function.prototype.apply
description: >
  Return abrupt completion from Get(obj, "length")
info: |
  Function.prototype.apply ( thisArg, argArray )

  [...]
  4. Let argList be ? CreateListFromArrayLike(argArray).

  CreateListFromArrayLike ( obj [ , elementTypes ] )

  [...]
  3. Let len be ? ToLength(? Get(obj, "length")).
---*/

var arrayLike = {
  get length() {
    throw new Test262Error();
  },
};

assert.throws(Test262Error, function() {
  (function() {}).apply(null, arrayLike);
});

reportCompare(0, 0);