MCPcopy Create free account
hub / github.com/RtlZeroMemory/Rezi / notifyRecordHandlers

Function notifyRecordHandlers

packages/core/src/debug/debugController.ts:383–391  ·  view source on GitHub ↗
(record: DebugRecord)

Source from the content-addressed store, hash-verified

381 const recordHandlers: Set<DebugRecordHandler> = new Set();
382
383 function notifyRecordHandlers(record: DebugRecord): void {
384 for (const handler of recordHandlers) {
385 try {
386 handler(record);
387 } catch {
388 // Ignore handler errors
389 }
390 }
391 }
392
393 async function resolveTerminalCaps(
394 override: TerminalCaps | null | undefined,

Callers 1

processRecordsFunction · 0.85

Calls 1

handlerFunction · 0.85

Tested by

no test coverage detected