summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/apply/argarray-not-object-realm.js
blob: 9706b9c3151ed15a6038aa01e17684fb2a87ed2f (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
40
// 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: >
  Throws a TypeError exception if argArray is not an object
  (honoring the Realm of the current execution context)
info: |
  Function.prototype.apply ( thisArg, argArray )

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

  CreateListFromArrayLike ( obj [ , elementTypes ] )

  [...]
  2. If Type(obj) is not Object, throw a TypeError exception.
features: [cross-realm]
---*/

var other = $262.createRealm().global;
var fn = new other.Function();

assert.throws(other.TypeError, function() {
  fn.apply(null, false);
});

assert.throws(other.TypeError, function() {
  fn.apply(null, 1234.5678);
});

assert.throws(other.TypeError, function() {
  fn.apply(null, '');
});

assert.throws(other.TypeError, function() {
  fn.apply(null, Symbol('desc'));
});

reportCompare(0, 0);