@@ -106,7 +106,7 @@ protected async Task HandleConfigurationDoneRequest(
106
106
RequestContext < object > requestContext )
107
107
{
108
108
// Ensure that only the second message between launch and
109
- // configurationDone - actually launches the script.
109
+ // configurationDone requests, actually launches the script.
110
110
lock ( syncLock )
111
111
{
112
112
if ( ! this . isLaunchRequestComplete )
@@ -116,8 +116,8 @@ protected async Task HandleConfigurationDoneRequest(
116
116
}
117
117
118
118
// The order of debug protocol messages apparently isn't as guaranteed as we might like.
119
- // Need to be able to handle the case where we get configurationDone after launch request
120
- // and vice-versa .
119
+ // Need to be able to handle the case where we get the configurationDone request after the
120
+ // launch request .
121
121
if ( this . isLaunchRequestComplete )
122
122
{
123
123
this . LaunchScript ( requestContext ) ;
@@ -162,13 +162,13 @@ protected async Task HandleLaunchRequest(
162
162
// We may not actually launch the script in response to this
163
163
// request unless it comes after the configurationDone request.
164
164
// If the launch request comes first, then stash the launch
165
- // params so that the subsequent configurationDone request can
166
- // launch the script.
165
+ // params so that the subsequent configurationDone request handler
166
+ // can launch the script.
167
167
this . scriptPathToLaunch = launchParams . Program ;
168
168
this . arguments = arguments ;
169
169
170
170
// Ensure that only the second message between launch and
171
- // configurationDone - actually launches the script.
171
+ // configurationDone requests, actually launches the script.
172
172
lock ( syncLock )
173
173
{
174
174
if ( ! this . isConfigurationDoneRequestComplete )
@@ -178,8 +178,8 @@ protected async Task HandleLaunchRequest(
178
178
}
179
179
180
180
// The order of debug protocol messages apparently isn't as guaranteed as we might like.
181
- // Need to be able to handle the case where we get configurationDone after launch request
182
- // and vice-versa .
181
+ // Need to be able to handle the case where we get the launch request after the
182
+ // configurationDone request .
183
183
if ( this . isConfigurationDoneRequestComplete )
184
184
{
185
185
this . LaunchScript ( requestContext ) ;
0 commit comments