summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/apply/this-not-callable-realm.js
blob: 506f5f25972a5cebeda1e32fc8ab3878a2329315 (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
// 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 this value is not callable
  (honoring the Realm of the current execution context)
info: |
  Function.prototype.apply ( thisArg, argArray )

  1. Let func be the this value.
  2. If IsCallable(func) is false, throw a TypeError exception.
features: [cross-realm]
---*/

var other = $262.createRealm().global;
var otherApply = other.Function.prototype.apply;

assert.throws(other.TypeError, function() {
  otherApply.call(undefined, {}, []);
});

assert.throws(other.TypeError, function() {
  otherApply.call(null, {}, []);
});

assert.throws(other.TypeError, function() {
  otherApply.call({}, {}, []);
});

assert.throws(other.TypeError, function() {
  otherApply.call(/re/, {}, []);
});

reportCompare(0, 0);