MCPcopy Index your code
hub / github.com/github/copilot-sdk / write

Method write

nodejs/src/client.ts:458–466  ·  view source on GitHub ↗
(msg: Message)

Source from the content-addressed store, hash-verified

456 public suppressWriteErrors = false;
457
458 public override async write(msg: Message): Promise<void> {
459 try {
460 await super.write(msg);
461 } catch (error) {
462 if (!this.suppressWriteErrors) {
463 throw error;
464 }
465 }
466 }
467}
468
469export class CopilotClient {

Callers 4

startFakeUpstreamFunction · 0.45
logDebugTimingMethod · 0.45
logDebugMethod · 0.45
startCLIServerMethod · 0.45

Calls

no outgoing calls

Tested by 1

startFakeUpstreamFunction · 0.36