()
| 886 | |
| 887 | BeginTest("Closure inside With 1"); |
| 888 | function closure_in_with_1() { |
| 889 | with({x:1}) { |
| 890 | (function inner(x) { |
| 891 | debugger; |
| 892 | })(2); |
| 893 | } |
| 894 | } |
| 895 | |
| 896 | listener_delegate = function(exec_state) { |
| 897 | CheckScopeChain([debug.ScopeType.Local, |