(a)
| 808 | |
| 809 | BeginTest("Closure passed to optimized Array.prototype.forEach"); |
| 810 | function closure_10(a) { |
| 811 | var x = a + 2; |
| 812 | function closure_11(b) { |
| 813 | debugger; |
| 814 | return a + b + x; |
| 815 | } |
| 816 | [42].forEach(closure_11); |
| 817 | } |
| 818 | |
| 819 | listener_delegate = function(exec_state) { |
| 820 | CheckScopeChain([debug.ScopeType.Local, |