Andrej Petrović
Andrej Petrović
First off, I'm not really sure where to report this. I suspect this is actually a bug in LDC, but I'm a long way from figuring out what the root...
D-Scanner seems to inconsistently report undocumented parameters of public functions. Sometimes it correctly reports that it's missing from `Params:`, sometimes it says it's missing even when it's there, and sometimes...
```d void main() { struct S { int i; } S s; __traits(getMember, s, "x") = 88; } ``` D-Scanner reports: ``` ./source/app.d(5:7)[warn]: Variable s is never modified and could...
Originally posted this [on the DCD repo](https://github.com/dlang-community/DCD/issues/627) but posting it here instead, as suggested. --- Example dub.sdl: ``` name "dcd-unittest-bug" configuration "application" { targetType "executable" } configuration "unittest" { dependency...
Not completely sure where to submit this, but I saw that the serve-d process was using over 2 GiB of memory so I think it's the culprit. The past two...
I've set up DKit and while it mostly functions properly, I frequently get the following error:  I'm not sure under what circumstances it gets triggered. It only pops up...
I believe this closes #273. I adjusted the defaultValRender function in reltab to use JSON.stringify() for objects. This lets Tad show the object's fields instead of just showing `[Object object]`....