| 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); |