mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 13:28:38 +02:00
26 lines
898 B
JavaScript
26 lines
898 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* The Function prototype object does not have a valueOf property of its own. however, it inherits the valueOf property from the Object prototype Object
|
|
*
|
|
* @path ch15/15.3/15.3.4/S15.3.4_A4.js
|
|
* @description Checking valueOf property at Function.prototype
|
|
*/
|
|
|
|
//CHECK#1
|
|
if (Function.prototype.hasOwnProperty("valueOf") !== false) {
|
|
$ERROR('#1: The Function prototype object does not have a valueOf property of its own');
|
|
}
|
|
|
|
//CHECK#2
|
|
if (typeof Function.prototype.valueOf === "undefined") {
|
|
$ERROR('#2: however, it inherits the valueOf property from the Object prototype Object');
|
|
}
|
|
|
|
//CHECK#3
|
|
if (Function.prototype.valueOf !== Object.prototype.valueOf) {
|
|
$ERROR('#3: however, it inherits the valueOf property from the Object prototype Object');
|
|
}
|
|
|