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

Function step2

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

Source from the content-addressed store, hash-verified

614 }
615
616 async function step2(signal: AbortSignal): Promise<PromptResult<string>> {
617 callLog.push('step2')
618 if (signal.aborted) return promptAborted('step2 aborted')
619 return promptSuccess('step2 result')
620 }
621
622 async function step3(signal: AbortSignal): Promise<PromptResult<string>> {
623 callLog.push('step3')

Callers 1

runSequentialStepsFunction · 0.85

Calls 2

promptAbortedFunction · 0.90
promptSuccessFunction · 0.90

Tested by

no test coverage detected