You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from https://forum.dlang.org/thread/rolkovawfyldzeidxgtz@forum.dlang.org:
Debug variables are showing when not in scope. Is it possible to remove them? They also show before they are actually defined in the source code.
int x = 0; < BP here, y and z are shown in the locals.
int y = 3;
{
int z = 4;
}
// z is when when here.
One ends up with a huge list of variables of all the locals when they don't even "exist". I'm using the Mago debugger.
The text was updated successfully, but these errors were encountered:
On Windows, scope information is emitted only for variables with names that are declared more than once. This restriction reduces debug information, but might not be worth the trouble.
Rainer Schuetze (@rainers) reported this on 2018-11-03T08:04:31Z
Transferred from https://issues.dlang.org/show_bug.cgi?id=19349
Description
from https://forum.dlang.org/thread/rolkovawfyldzeidxgtz@forum.dlang.org: Debug variables are showing when not in scope. Is it possible to remove them? They also show before they are actually defined in the source code. int x = 0; < BP here, y and z are shown in the locals. int y = 3; { int z = 4; } // z is when when here. One ends up with a huge list of variables of all the locals when they don't even "exist". I'm using the Mago debugger.The text was updated successfully, but these errors were encountered: