Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
michael@0 | 1 | // Copyright 2009 the Sputnik authors. All rights reserved. |
michael@0 | 2 | // This code is governed by the BSD license found in the LICENSE file. |
michael@0 | 3 | |
michael@0 | 4 | /** |
michael@0 | 5 | * Function declaration in function code - If the variable object |
michael@0 | 6 | * already has a property with the name of Function Identifier, replace its |
michael@0 | 7 | * value and attributes. Semantically, this step must follow the creation of |
michael@0 | 8 | * FormalParameterList properties |
michael@0 | 9 | * |
michael@0 | 10 | * @path ch10/10.2/10.2.1/S10.2.1_A4_T1.js |
michael@0 | 11 | * @description Checking existence of a function with passed parameter |
michael@0 | 12 | * @noStrict |
michael@0 | 13 | */ |
michael@0 | 14 | |
michael@0 | 15 | //CHECK#1 |
michael@0 | 16 | function f1(x){ |
michael@0 | 17 | return x; |
michael@0 | 18 | |
michael@0 | 19 | function x(){ |
michael@0 | 20 | return 7; |
michael@0 | 21 | } |
michael@0 | 22 | } |
michael@0 | 23 | if(!(f1().constructor.prototype === Function.prototype)){ |
michael@0 | 24 | $ERROR('#1: f1() returns function'); |
michael@0 | 25 | } |
michael@0 | 26 | |
michael@0 | 27 | //CHECK#2 |
michael@0 | 28 | function f2(x){ |
michael@0 | 29 | return typeof x; |
michael@0 | 30 | |
michael@0 | 31 | function x(){ |
michael@0 | 32 | return 7; |
michael@0 | 33 | } |
michael@0 | 34 | } |
michael@0 | 35 | if(!(f2() === "function")){ |
michael@0 | 36 | $ERROR('#2: f2() === "function"'); |
michael@0 | 37 | } |
michael@0 | 38 | |
michael@0 | 39 | //CHECK#3 |
michael@0 | 40 | function f3() { |
michael@0 | 41 | return typeof arguments; |
michael@0 | 42 | function arguments() { |
michael@0 | 43 | return 7; |
michael@0 | 44 | } |
michael@0 | 45 | } |
michael@0 | 46 | if (!(f3() === "function")){ |
michael@0 | 47 | $ERROR('#3: f3() === "function"'); |
michael@0 | 48 | } |
michael@0 | 49 |