Qingwei Li
Qingwei Li
见https://github.com/barry-ran/QtScrcpy/issues/1044
I don't found this commit in the master branch. Is this pull request accepted and merged somewhere? Or is there any problem with this new feature? I'm in great need...
**The following idea is naive. I underestimate the complexity of adding support to `--init` flag.** --- **How about enabling `--init` flag for `dlv dap`?** I think DAP is hard to...
To solve the problem as https://github.com/go-delve/delve/pull/4078#discussion_r2293981698 mentioned, I think we have to unverify breakpoints of the switched-from process and make breakpoints of the switched-into process verified. https://github.com/go-delve/delve/blob/49d65b3f40c2a037e36da5b4ce7283f3ee9112ee/pkg/proc/target_exec.go#L202-L203 To achieve that,...
I've updated the comment with explanations of the video and the problem. Sorry for the unclear and hope the current version of comments clearly conveys my thoughts. @aarzilli
For the newly spawned target, it seems too early in `addTarget` to send back `EventBreakpointMaterialized` events because `t.BinInfo().eventsFn` has not been set yet. I try to use `grp.Selected.BinInfo().eventsFn` to send...
After trying to add `suspended` in the RPC data in legacy delve adapter as follows in delve and goDebug.ts, I found that [CreateBreakpoint](https://github.com/go-delve/delve/blob/7e7806f9a300416e9ed147a569c361a1abd70f19/service/debugger/debugger.go#L802) will return some unwanted breakpoint. ```go type...
The cause of unwanted breakpoint: (legacy debug adapter) 
> Just FYI, I don't think the legacy adapter is being actively developed. Thanks. I also see the caller of `CreateBreakpoint` at [service/dap/server.go#L1525](https://github.com/go-delve/delve/blob/fd67d45529c6345c150ac98f4bd49e3fa8ce05cb/service/dap/server.go#L1525), i.e. the DAP service of delve. Since...
> Do you know what happens if the breakpoint can't be set? If not suspended, delve will return a `SetBreakpointsResponse` whose body contains `breakpoints []dap.Breakpoint`([Breakpoint](https://microsoft.github.io/debug-adapter-protocol/specification#Types_Breakpoint)) like the following: ``` []go-dap.Breakpoint...