test262/test/suite/ch15/15.3/15.3.4/15.3.4.3/S15.3.4.3_A1_T1.js
2011-10-03 13:04:52 -07:00

35 lines
974 B
JavaScript

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* The apply method performs a function call using the [[Call]] property of the object. If the object does not have a [[Call]] property, a TypeError exception is thrown
*
* @path ch15/15.3/15.3.4/15.3.4.3/S15.3.4.3_A1_T1.js
* @description Calling "apply" method of the object that does not have a [[Call]] property.
* Prototype of the object is Function()
*/
var proto=Function();
function FACTORY(){};
FACTORY.prototype=proto;
var obj = new FACTORY;
//CHECK#1
if (typeof obj.apply !== "function") {
$ERROR('#1: apply method accessed');
}
//CHECK#2
try {
obj.apply();
$FAIL('#2: If the object does not have a [[Call]] property, a TypeError exception is thrown');
} catch (e) {
if (!(e instanceof TypeError)) {
$ERROR('#2.1: If the object does not have a [[Call]] property, a TypeError exception is thrown');
}
}