MCPcopy Create free account
hub / github.com/Dart-Code/Dart-Code / dataBreakpointInfoRequest

Method dataBreakpointInfoRequest

src/test/debug_client_ms.ts:219–223  ·  view source on GitHub ↗
(args: DebugProtocol.DataBreakpointInfoArguments)

Source from the content-addressed store, hash-verified

217 }
218
219 public dataBreakpointInfoRequest(args: DebugProtocol.DataBreakpointInfoArguments): Promise<DebugProtocol.DataBreakpointInfoResponse> {
220 // After upgrading to TS 5.5, the return type doesn't appear to be picked up correctly from the overload so we need this
221 // cast 🤷‍♂️
222 return this.send('dataBreakpointInfo', args) as Promise<DebugProtocol.DataBreakpointInfoResponse>;
223 }
224
225 public setDataBreakpointsRequest(args: DebugProtocol.SetDataBreakpointsArguments): Promise<DebugProtocol.SetDataBreakpointsResponse> {
226 return this.send('setDataBreakpoints', args);

Callers

nothing calls this directly

Calls 1

sendMethod · 0.45

Tested by

no test coverage detected