dlangide
dlangide copied to clipboard
Debugger view should show parameters as well as locals
I have code like:
int f(int x) {
int y = x + 1;
return y * 2;
}
When debugging, I see y as a variable but not x.
The "locals" and "autos" views are identical as far as I can tell.