mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
Mark types as nullable where we explicitly assign something to undefined
This commit is contained in:
@@ -360,7 +360,7 @@ export class ExtHostDebugService implements ExtHostDebugServiceShape {
|
||||
|
||||
return this.getAdapterDescriptor(this._providerByType.get(config.type), sessionDto, folderUri, config).then(adapter => {
|
||||
|
||||
let da: AbstractDebugAdapter = undefined;
|
||||
let da: AbstractDebugAdapter | undefined = undefined;
|
||||
|
||||
switch (adapter.type) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user