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

Function formatPendingProbeLocations

lib/internal/debugger/inspect_probe.js:133–139  ·  view source on GitHub ↗
(probes, pending)

Source from the content-addressed store, hash-verified

131}
132
133function formatPendingProbeLocations(probes, pending) {
134 const seen = new SafeSet();
135 for (const probeIndex of pending) {
136 seen.add(formatTargetText(probes[probeIndex].target));
137 }
138 return ArrayPrototypeJoin(ArrayFrom(seen), ', ');
139}
140
141// Trim inspector-side noise lines from stderr for reporting child errors.
142function trimProbeChildStderr(stderr) {

Callers 4

buildProbeTextReportFunction · 0.85
startTimeoutMethod · 0.85

Calls 2

formatTargetTextFunction · 0.85
addMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…