MCPcopy Index your code
hub / github.com/nodejs/node / shadowing_1

Function shadowing_1

deps/v8/test/debugger/debug/es6/debug-blockscopes.js:457–464  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers 1

Calls 1

assertEqualsFunction · 0.50

Tested by

no test coverage detected