()
| 702 | |
| 703 | BeginTest("Closure 9"); |
| 704 | function closure_9() { |
| 705 | eval("var y = 1;"); |
| 706 | eval("var z = 1;"); |
| 707 | (function inner(x) { |
| 708 | y++; |
| 709 | z++; |
| 710 | debugger; |
| 711 | })(2); |
| 712 | } |
| 713 | |
| 714 | listener_delegate = function(exec_state) { |
| 715 | CheckScopeChain([debug.ScopeType.Local, |
no test coverage detected