MCPcopy Index your code
hub / github.com/CodebuffAI/codebuff / step3

Function step3

common/src/util/__tests__/error-abort.test.ts:622–626  ·  view source on GitHub ↗
(signal: AbortSignal)

Source from the content-addressed store, hash-verified

620 }
621
622 async function step3(signal: AbortSignal): Promise<PromptResult<string>> {
623 callLog.push('step3')
624 if (signal.aborted) return promptAborted('step3 aborted')
625 return promptSuccess('step3 result')
626 }
627
628 async function runSequentialSteps(signal: AbortSignal): Promise<PromptResult<string[]>> {
629 const results: string[] = []

Callers 1

runSequentialStepsFunction · 0.85

Calls 2

promptAbortedFunction · 0.90
promptSuccessFunction · 0.90

Tested by

no test coverage detected