We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3401153 commit 98515adCopy full SHA for 98515ad
src/PowerShellEditorServices.Protocol/Server/DebugAdapter.cs
@@ -76,8 +76,9 @@ protected Task LaunchScript(RequestContext<object> requestContext)
76
// If this is a run without debugging session, disable all breakpoints.
77
if (this.noDebug)
78
{
79
- Task diableBreakpoints = this.editorSession.DebugService.DisableAllBreakpoints();
80
- Task.WhenAll(diableBreakpoints);
+ Task disableBreakpointsTask =
+ this.editorSession.DebugService.DisableAllBreakpoints();
81
+ Task.WhenAll(disableBreakpointsTask);
82
}
83
84
return editorSession.PowerShellContext
0 commit comments