mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
DebugSession refactoring
This commit is contained in:
@@ -220,7 +220,7 @@ export class MainThreadDebugService implements MainThreadDebugServiceShape, IDeb
|
||||
public $customDebugAdapterRequest(sessionId: DebugSessionUUID, request: string, args: any): Thenable<any> {
|
||||
const session = this.debugService.getSession(sessionId);
|
||||
if (session) {
|
||||
return session.raw.custom(request, args).then(response => {
|
||||
return session.customRequest(request, args).then(response => {
|
||||
if (response && response.success) {
|
||||
return response.body;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user