summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/apply/this-not-callable.js
blob: f0b6b63382b64b6b9b9dc259aa9dd87e76019656 (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
// Copyright 2009 the Sputnik authors. 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
info: |
  Function.prototype.apply ( thisArg, argArray )

  1. Let func be the this value.
  2. If IsCallable(func) is false, throw a TypeError exception.
---*/

assert.throws(TypeError, function() {
  Function.prototype.apply.call(undefined, {}, []);
});

assert.throws(TypeError, function() {
  Function.prototype.apply.call(null, {}, []);
});

assert.throws(TypeError, function() {
  Function.prototype.apply.call({}, {}, []);
});

assert.throws(TypeError, function() {
  Function.prototype.apply.call(/re/, {}, []);
});

reportCompare(0, 0);