File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -151,10 +151,10 @@ export class DebugSessionFeature extends LanguageClientConsumer
151
151
}
152
152
153
153
// Wire up a handler to capture the dotnet session and stop it before PowerShell, otherwise it will emit an error that its process unexpectedly stopped.
154
- let dotnetAttachStartHandler : Disposable [ ] = [ ]
154
+ const dotnetAttachStartHandler : Disposable [ ] = [ ] ;
155
155
vscode . debug . onDidStartDebugSession ( ( dotnetAttachSession ) => {
156
156
this . logger . write ( `Debugger session detected: ${ dotnetAttachSession . name } (${ dotnetAttachSession . id } )` ) ;
157
- let dotnetAttachStopHandler : Disposable [ ] = [ ] ;
157
+ const dotnetAttachStopHandler : Disposable [ ] = [ ] ;
158
158
if ( dotnetAttachSession . configuration . name == dotnetDebuggerConfig . name ) {
159
159
vscode . debug . onDidTerminateDebugSession ( async ( terminatedDebugSession ) => {
160
160
this . logger . write ( `Debugger session stopped: ${ terminatedDebugSession . name } (${ terminatedDebugSession . id } )` ) ;
You can’t perform that action at this time.
0 commit comments