Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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_T2.js |
michael@0 | 11 | * @description Checking existence of a function with declared variable |
michael@0 | 12 | */ |
michael@0 | 13 | |
michael@0 | 14 | //CHECK#1 |
michael@0 | 15 | function f1(){ |
michael@0 | 16 | var x; |
michael@0 | 17 | |
michael@0 | 18 | return x; |
michael@0 | 19 | |
michael@0 | 20 | function x(){ |
michael@0 | 21 | return 7; |
michael@0 | 22 | } |
michael@0 | 23 | } |
michael@0 | 24 | if(!(f1().constructor.prototype === Function.prototype)){ |
michael@0 | 25 | $PRINT('#1: f1() returns function'); |
michael@0 | 26 | } |
michael@0 | 27 | |
michael@0 | 28 | //CHECK#2 |
michael@0 | 29 | function f2(){ |
michael@0 | 30 | var x; |
michael@0 | 31 | |
michael@0 | 32 | return typeof x; |
michael@0 | 33 | |
michael@0 | 34 | function x(){ |
michael@0 | 35 | return 7; |
michael@0 | 36 | } |
michael@0 | 37 | } |
michael@0 | 38 | if(!(f2() === "function")){ |
michael@0 | 39 | $PRINT('#2: f2() === "function"'); |
michael@0 | 40 | } |
michael@0 | 41 |