Rainer Schuetze

Results 234 comments of Rainer Schuetze

see https://github.com/dlang/visuald/releases/tag/v1.4.0-rc2

> Are you coming to DConf? I'll be there this year, I'd really love to see you there. I won't make it to DConf this time. I'm a bit out...

> I did wonder; given a template function without an instantiation like this, how does the frontend even perform semantic to determine what these local symbols are? This is the...

Visual D could try to instantiate the template with some arbitrary types, but they might not fit at all or fail constraints or `static if` checks. Maybe this is good...

The dmdserver only looks at modules currently being edited (and files imported by them). Template instances are gathered from any file it analyzed, but as soon as you edit the...

Indeed not an easy problem. You can use "Step into specific" to get immediately to the loop body lambda (if you know which of the mangled symbols is the right...

I used to know CodeView pretty well, but not the newer extensions added in recent years. I think it should be possible to pass arbitrary information from the compiler to...

There is no debug information for enumerators, so there is no debug information to display the value from. With older versions of VS, the data tooltip is intercepted to replace...

> So debuginfo for enums is possible? Is there a reason we don't copy that? It is possible to emit "constant" symbol records. Not sure if it is easy to...