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

Method initializeRequest

src/test/debug_client_ms.ts:168–179  ·  view source on GitHub ↗
(args?: DebugProtocol.InitializeRequestArguments)

Source from the content-addressed store, hash-verified

166 // ---- protocol requests -------------------------------------------------------------------------------------------------
167
168 public initializeRequest(args?: DebugProtocol.InitializeRequestArguments): Promise<DebugProtocol.InitializeResponse> {
169 if (!args) {
170 args = {
171 adapterID: this._debugType,
172 linesStartAt1: true,
173 columnsStartAt1: true,
174 pathFormat: 'path',
175 supportsRunInTerminalRequest: true,
176 };
177 }
178 return this.send('initialize', args);
179 }
180
181 public configurationDoneRequest(args?: DebugProtocol.ConfigurationDoneArguments): Promise<DebugProtocol.ConfigurationDoneResponse> {
182 return this.send('configurationDone', args);

Callers 2

launchMethod · 0.95
launchMethod · 0.45

Calls 1

sendMethod · 0.45

Tested by

no test coverage detected