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

Function test

deps/v8/test/debugger/debug/debug-liveedit-recursion.js:9–18  ·  view source on GitHub ↗
(i)

Source from the content-addressed store, hash-verified

7Debug = debug.Debug;
8
9function test(i) {
10 if (i == 3) {
11 return (function* gen() { yield test(i - 1); })().next().value;
12 } else if (i > 1) {
13 return test(i - 1);
14 } else {
15 debugger;
16 return 5;
17 }
18}
19
20let patch = null, exception = null;
21

Callers 1

Calls 1

nextMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…