2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2014-07-22 01:09:02 +02:00
|
|
|
Function declaration in function code - If the variable object
|
|
|
|
already has a property with the name of Function Identifier, replace its
|
|
|
|
value and attributes. Semantically, this step must follow the creation of
|
|
|
|
FormalParameterList properties
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 10.2.1_A4_T1
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Checking existence of a function with passed parameter
|
|
|
|
flags: [noStrict]
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
//CHECK#1
|
|
|
|
function f1(x){
|
|
|
|
return x;
|
2011-09-14 07:37:44 +02:00
|
|
|
|
2011-09-07 08:35:18 +02:00
|
|
|
function x(){
|
|
|
|
return 7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!(f1().constructor.prototype === Function.prototype)){
|
2021-07-28 22:47:49 +02:00
|
|
|
throw new Test262Error('#1: f1() returns function');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#2
|
|
|
|
function f2(x){
|
|
|
|
return typeof x;
|
2011-09-14 07:37:44 +02:00
|
|
|
|
2011-09-07 08:35:18 +02:00
|
|
|
function x(){
|
|
|
|
return 7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!(f2() === "function")){
|
2021-07-28 22:47:49 +02:00
|
|
|
throw new Test262Error('#2: f2() === "function"');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#3
|
|
|
|
function f3() {
|
|
|
|
return typeof arguments;
|
|
|
|
function arguments() {
|
|
|
|
return 7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!(f3() === "function")){
|
2021-07-28 22:47:49 +02:00
|
|
|
throw new Test262Error('#3: f3() === "function"');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|