Closed airportyh closed 1 year ago
What did the DAP client do in response to the startDebugging
request?
It just acknowledges it. Is that enough? Or is there a shell command I should run or something else I need to do?
Please refer to the docs here: https://microsoft.github.io/debug-adapter-protocol/specification#Reverse_Requests_StartDebugging
The nested session should come in as a new connection to the same server process.
Ah I see, I need to make another launch request... let me see how that works out.
Describe the bug Following up on this issue: I am trying to use
dapDebugServer.ts
as the entry point for a DAP server. I am testing it with a hand-made client, written in Go. I'll try to explain the scenario by just sending a log of the protocol messages, but if required I could produce the source code.Log File
After the above exchange, plus my client program having ran the program specified by the runInTerminal request, I am expecting a thread started event followed by a stop event due to the breakpoint being hit, but that never happened. Is there a more correct order for me to administer the events?