MCPcopy Index your code
hub / github.com/codeaashu/claude-code / markToolUseAsComplete

Function markToolUseAsComplete

src/services/tools/toolOrchestration.ts:179–188  ·  view source on GitHub ↗
(
  toolUseContext: ToolUseContext,
  toolUseID: string,
)

Source from the content-addressed store, hash-verified

177}
178
179function markToolUseAsComplete(
180 toolUseContext: ToolUseContext,
181 toolUseID: string,
182) {
183 toolUseContext.setInProgressToolUseIDs(prev => {
184 const next = new Set(prev)
185 next.delete(toolUseID)
186 return next
187 })
188}
189

Callers 2

runToolsSeriallyFunction · 0.70
runToolsConcurrentlyFunction · 0.70

Calls 1

deleteMethod · 0.65

Tested by

no test coverage detected