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 6f67a37 commit dfefea0Copy full SHA for dfefea0
src/debugAdapter/goDebug.ts
@@ -872,13 +872,15 @@ export class GoDebugSession extends LoggingDebugSession {
872
if (this.stopOnEntry) {
873
this.sendEvent(new StoppedEvent('entry', 1));
874
log('StoppedEvent("entry")');
875
- this.sendResponse(response);
876
} else {
877
this.debugState = await this.delve.getDebugState();
878
if (!this.debugState.Running) {
879
- this.continueRequest(<DebugProtocol.ContinueResponse>response);
+ log('Changing DebugState from Halted to Running');
+ this.continue();
880
}
881
882
+ this.sendResponse(response);
883
+ log('ConfigurationDoneResponse', response);
884
885
886
/**
0 commit comments