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 | * For each VariableDeclaration or VariableDeclarationNoIn in the |
michael@0 | 6 | * code, create a property of the variable object whose name is the Identifier |
michael@0 | 7 | * in the VariableDeclaration or VariableDeclarationNoIn, whose value is |
michael@0 | 8 | * undefined and whose attributes are determined by the type of code |
michael@0 | 9 | * |
michael@0 | 10 | * @path ch10/10.2/10.2.1/S10.2.1_A5.1_T1.js |
michael@0 | 11 | * @description Checking variable existence only |
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 typeof x; |
michael@0 | 19 | } |
michael@0 | 20 | |
michael@0 | 21 | if(!(f1() === "undefined")){ |
michael@0 | 22 | $PRINT('#1: f1() === "undefined"'); |
michael@0 | 23 | } |
michael@0 | 24 | |
michael@0 | 25 | //CHECK#2 |
michael@0 | 26 | function f2(){ |
michael@0 | 27 | var x; |
michael@0 | 28 | |
michael@0 | 29 | return x; |
michael@0 | 30 | } |
michael@0 | 31 | |
michael@0 | 32 | if(!(f2() === undefined)){ |
michael@0 | 33 | $PRINT('#1: f2() === undefined'); |
michael@0 | 34 | } |
michael@0 | 35 |