buggins / dlangide

D language IDE based on DlangUI
Boost Software License 1.0
447 stars 55 forks source link

Debugger view should show parameters as well as locals #403

Open andy-hanson opened 5 years ago

andy-hanson commented 5 years ago

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.