| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| info: Function's scope chain is started when it is declared |
| Function is declared in the hierarchical object scope and then an |
| var __obj = {a:2,__obj:{a:3}}; |
| var __func = function(){return a;}; |
| ////////////////////////////////////////////////////////////////////////////// |
| $ERROR('#1: result === 3. Actual: result ==='+result); |
| ////////////////////////////////////////////////////////////////////////////// |