mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 18:19:12 +01:00
rename proposed IDebugAdapterTracker to DebugAdapterTracker; fixes #59420
This commit is contained in:
@@ -70,7 +70,7 @@ export class ExtHostDebugService implements ExtHostDebugServiceShape {
|
||||
|
||||
private _aexCommands: Map<string, string>;
|
||||
private _debugAdapters: Map<number, IDebugAdapter>;
|
||||
private _debugAdaptersTrackers: Map<number, vscode.IDebugAdapterTracker>;
|
||||
private _debugAdaptersTrackers: Map<number, vscode.DebugAdapterTracker>;
|
||||
|
||||
private _variableResolver: IConfigurationResolverService;
|
||||
|
||||
@@ -601,7 +601,7 @@ export class ExtHostDebugService implements ExtHostDebugServiceShape {
|
||||
return false;
|
||||
}
|
||||
|
||||
private getDebugAdapterTrackers(sessionDto: IDebugSessionDto, folderUri: UriComponents | undefined, config: vscode.DebugConfiguration): Promise<vscode.IDebugAdapterTracker> {
|
||||
private getDebugAdapterTrackers(sessionDto: IDebugSessionDto, folderUri: UriComponents | undefined, config: vscode.DebugConfiguration): Promise<vscode.DebugAdapterTracker> {
|
||||
|
||||
const session = this.getSession(sessionDto);
|
||||
const folder = this.getFolder(folderUri);
|
||||
@@ -810,9 +810,9 @@ interface IDapTransport {
|
||||
stop(): void;
|
||||
}
|
||||
|
||||
class MultiTracker implements vscode.IDebugAdapterTracker {
|
||||
class MultiTracker implements vscode.DebugAdapterTracker {
|
||||
|
||||
constructor(private trackers: vscode.IDebugAdapterTracker[]) {
|
||||
constructor(private trackers: vscode.DebugAdapterTracker[]) {
|
||||
}
|
||||
|
||||
startDebugAdapter(): void {
|
||||
|
||||
Reference in New Issue
Block a user