()
| 455 | // Block scopes shadowing |
| 456 | BeginTest("Block scopes shadowing 1"); |
| 457 | function shadowing_1() { |
| 458 | let i = 0; |
| 459 | { |
| 460 | let i = 5; |
| 461 | debugger; |
| 462 | } |
| 463 | assertEquals(0, i); |
| 464 | } |
| 465 | |
| 466 | listener_delegate = function (exec_state) { |
| 467 | assertEqualsUnlessOptimized(5, exec_state.frame(0).evaluate("i").value()); |
no test coverage detected