()
| 473 | // Block scopes shadowing |
| 474 | BeginTest("Block scopes shadowing 2"); |
| 475 | function shadowing_2() { |
| 476 | let i = 0; |
| 477 | { |
| 478 | let j = 5; |
| 479 | debugger; |
| 480 | } |
| 481 | } |
| 482 | |
| 483 | listener_delegate = function (exec_state) { |
| 484 | assertEqualsUnlessOptimized(0, exec_state.frame(0).evaluate("i").value()); |