mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
incorporate debug API feedback
This commit is contained in:
@@ -33,7 +33,8 @@ export class MainThreadDebugService extends MainThreadDebugServiceShape {
|
||||
}));
|
||||
this._toDispose.push(debugService.onDidCustomEvent(event => {
|
||||
if (event.body && event.body.sessionId) {
|
||||
this._proxy.$acceptDebugSessionCustomEvent(event.body.sessionId, event);
|
||||
const process = this.debugService.findProcessByUUID(event.body.sessionId); // TODO
|
||||
this._proxy.$acceptDebugSessionCustomEvent(event.body.sessionId, process.configuration.type, process.configuration.name, event);
|
||||
}
|
||||
}));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user