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

Function step1

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

Source from the content-addressed store, hash-verified

608 const callLog: string[] = []
609
610 async function step1(signal: AbortSignal): Promise<PromptResult<string>> {
611 callLog.push('step1')
612 if (signal.aborted) return promptAborted('step1 aborted')
613 return promptSuccess('step1 result')
614 }
615
616 async function step2(signal: AbortSignal): Promise<PromptResult<string>> {
617 callLog.push('step2')

Callers 1

runSequentialStepsFunction · 0.85

Calls 2

promptAbortedFunction · 0.90
promptSuccessFunction · 0.90

Tested by

no test coverage detected