go-delve / delve

Delve is a debugger for the Go programming language.
MIT License
22.37k stars 2.13k forks source link

proc: initial support for expressions with range-over-func #3750

Closed aarzilli closed 1 week ago

aarzilli commented 2 weeks ago

Supports viewing local variables and evaluating expressions correctly when range-over-func is used.

The same limitations that the previous commit on this line had still apply (no inlining, wrong way to identify the range parent in some cases).

Updates #3733