MCPcopy Index your code
hub / github.com/QLHazyCoder/FlowPilot / notifyStepComplete

Function notifyStepComplete

background.js:4441–4445  ·  view source on GitHub ↗
(step, payload)

Source from the content-addressed store, hash-verified

4439}
4440
4441function notifyStepComplete(step, payload) {
4442 const waiter = stepWaiters.get(step);
4443 console.log(LOG_PREFIX, `[notifyStepComplete] step ${step}, hasWaiter=${Boolean(waiter)}`);
4444 if (waiter) waiter.resolve(payload);
4445}
4446
4447function notifyStepError(step, error) {
4448 const waiter = stepWaiters.get(step);

Callers 2

handleMessageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected