MCPcopy Create free account
hub / github.com/nodejs/node / closure_6

Function closure_6

deps/v8/test/debugger/debug/debug-scopes.js:616–629  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

614// through the debugger information.
615BeginTest("Closure 6");
616function closure_6(a, b) {
617 function f(a, b) {
618 var x = 3;
619 var y = 4;
620 return function() {
621 var x = 3;
622 var y = 4;
623 debugger;
624 some_global = a;
625 return f;
626 };
627 }
628 return f(a, b);
629}
630
631listener_delegate = function(exec_state) {
632 CheckScopeChain([debug.ScopeType.Local,

Callers 1

debug-scopes.jsFile · 0.70

Calls 1

fFunction · 0.70

Tested by

no test coverage detected