summaryrefslogtreecommitdiff
path: root/test/language/expressions/call/S11.2.3_A4_T5.js
blob: 4f022dc007a2c7967df0b2ff40750a3b8f2bc12d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: >
    If MemberExpression does not implement the internal [[Call]] method,
    throw TypeError
es5id: 11.2.3_A4_T5
description: Checking Math object case
---*/

//CHECK#1
try {
  Math();
  $ERROR('#1.1: Math() throw TypeError. Actual: ' + (Math()));	
}
catch (e) {
  if ((e instanceof TypeError) !== true) {
    $ERROR('#1.2: Math() throw TypeError. Actual: ' + (e));	
  }
}