Alessandro Arzilli
Alessandro Arzilli
Dictionaries is how generics are implemented currently. It doesn't solve the problem. Even if you could instantiate dictionaries at runtime, each parametric method would have to be instantiated for every...
You still need to do codegen to instantiate a dictionary: `func (s *S) Equals[T any](a, b T) { return a == b }` needs an equality function for whatever type...
Yes, both the command line client and [gdlv](https://github.com/aarzilli/gdlv) work with this. I haven't checked GoLand in a year and I don't remember if they fixed it. What this is doing...
> update the backend to add advanced search features this isn't a bad idea, in general.
Yes, it's always SIGKILL. Note that the feature requested here is to make the "stop" button send a SIGINT (or SIGTERM, or whatever catchable signal) and then resume the target...
Interesting, it does sound like the terminate request should not terminate the debuggee. Seeing that I think the dap server should be changed to respond to a terminate request by...
> I initially wished the new console attribute helped to automate this setup, but I am not sure if the headless delve server also detaches itself from the console when...
I think ignoring them would lead users into thinking they are accomplishing something by setting GOOS/GOARCH. I think we should do what the user asks and fail, so that the...
All of this is also true for `go run`: ``` $ GOARCH=arm64 go run hello.go fork/exec /dev/shm/go-build2434359517/b001/exe/test: exec format error ```
> is that when you see a failure, you know exactly what to inspect for issues - your command-line. When it happens in vscode, the problem is buried deep in...