Make easy adoptions of async configuation resolver service (#120326)

* Make easy adoptions of async configuation resolver service
Part of #108804

* Also adopt in exthostDebug

* Add another terminal adoption
This commit is contained in:
Alex Ross
2021-04-06 11:25:56 +02:00
committed by GitHub
parent 82c180bf34
commit 0215117ec6
5 changed files with 12 additions and 10 deletions

View File

@@ -384,7 +384,7 @@ export abstract class ExtHostDebugServiceBase implements IExtHostDebugService, E
}
};
}
return this._variableResolver.resolveAny(ws, config);
return this._variableResolver.resolveAnyAsync(ws, config);
}
protected createDebugAdapter(adapter: IAdapterDescriptor, session: ExtHostDebugSession): AbstractDebugAdapter | undefined {