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

Function WrapInRestartProof

deps/v8/test/debugger/debug/debug-liveedit-check-stack.js:109–118  ·  view source on GitHub ↗
(f)

Source from the content-addressed store, hash-verified

107}
108
109function WrapInRestartProof(f) {
110 var already_called = false;
111 return function() {
112 if (already_called) {
113 return;
114 }
115 already_called = true;
116 f();
117 }
118}
119
120function WrapInConstructor(f) {
121 return function() {

Callers

nothing calls this directly

Calls 1

fFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…