summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/apply/S15.3.4.3_A6_T2.js
blob: ddeca4bbb1226999e1380a1d97b0bce0739ee7d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: |
    if argArray is neither an array nor an arguments object (see 10.1.8), a
    TypeError exception is thrown
es5id: 15.3.4.3_A6_T2
description: argArray is (null,1)
---*/

//CHECK#1
try {
  Function().apply(null,1);
  $ERROR('#1: if argArray is neither an array nor an arguments object (see 10.1.8), a TypeError exception is thrown');
} catch (e) {
  if (!(e instanceof TypeError)) {
  	$ERROR('#1.1: if argArray is neither an array nor an arguments object (see 10.1.8), a TypeError exception is thrown');
  }
}