Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 // Copyright 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /**
5 * Function's scope chain is started when it is declared
6 *
7 * @path ch13/13.2/S13.2.2_A19_T1.js
8 * @description Function is declared in the global scope
9 */
11 var a = 1;
13 var __func= function(){return a;};
15 var __obj = {a:2};
17 with (__obj)
18 {
19 result = __func();
20 }
22 //////////////////////////////////////////////////////////////////////////////
23 //CHECK#1
24 if (result !== 1) {
25 $ERROR('#1: result === 1. Actual: result ==='+result);
26 }
27 //
28 //////////////////////////////////////////////////////////////////////////////