mirror of
https://github.com/tc39/test262.git
synced 2025-08-29 05:48:28 +02:00
33 lines
972 B
JavaScript
33 lines
972 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_T2.js
|
|
* @description Calling "apply" method of the object that does not have a [[Call]] property.
|
|
* Prototype of the object is Function.prototype
|
|
*/
|
|
|
|
function FACTORY(){};
|
|
|
|
FACTORY.prototype=Function.prototype;
|
|
|
|
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');
|
|
}
|
|
}
|
|
|