|
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 |
|
6 |
|
7 /** |
|
8 File Name: 12.2-1.js |
|
9 ECMA Section: The variable statement |
|
10 Description: |
|
11 |
|
12 If the variable statement occurs inside a FunctionDeclaration, the |
|
13 variables are defined with function-local scope in that function, as |
|
14 described in section 10.1.3. Otherwise, they are defined with global |
|
15 scope, that is, they are created as members of the global object, as |
|
16 described in section 0. Variables are created when the execution scope |
|
17 is entered. A Block does not define a new execution scope. Only Program and |
|
18 FunctionDeclaration produce a new scope. Variables are initialized to the |
|
19 undefined value when created. A variable with an Initializer is assigned |
|
20 the value of its AssignmentExpression when the VariableStatement is executed, |
|
21 not when the variable is created. |
|
22 |
|
23 Author: christine@netscape.com |
|
24 Date: 12 november 1997 |
|
25 */ |
|
26 |
|
27 var SECTION = "12.2-1"; |
|
28 var VERSION = "ECMA_1"; |
|
29 startTest(); |
|
30 var TITLE = "The variable statement"; |
|
31 |
|
32 writeHeaderToLog( SECTION +" "+ TITLE); |
|
33 |
|
34 new TestCase( "SECTION", |
|
35 "var x = 3; function f() { var a = x; var x = 23; return a; }; f()", |
|
36 void 0, |
|
37 eval("var x = 3; function f() { var a = x; var x = 23; return a; }; f()") ); |
|
38 |
|
39 test(); |
|
40 |