(a, b)
| 614 | // through the debugger information. |
| 615 | BeginTest("Closure 6"); |
| 616 | function closure_6(a, b) { |
| 617 | function f(a, b) { |
| 618 | var x = 3; |
| 619 | var y = 4; |
| 620 | return function() { |
| 621 | var x = 3; |
| 622 | var y = 4; |
| 623 | debugger; |
| 624 | some_global = a; |
| 625 | return f; |
| 626 | }; |
| 627 | } |
| 628 | return f(a, b); |
| 629 | } |
| 630 | |
| 631 | listener_delegate = function(exec_state) { |
| 632 | CheckScopeChain([debug.ScopeType.Local, |