Jan Jurzitza
Jan Jurzitza
oh yeah I was wanting to do it but didn't actually get around to it when I assigned myself. I think the problem can be debugged by checking how the...
I would really like to support OpenXR too, but my headset is only SteamVR compatible and SteamVR currently only supports OpenXR through Vulkan, not through OpenGL. I could try to...
if it would just automatically infer it that you want the instance of it in opAssign and properties returning void it would be far nicer, but sadly it's not doing...
```d int fn() { return 5; } int i; if (cast(bool)(i = fn())) {} // works ```
the D-Scanner check seems to be correct. There is no public example for the Int128 struct in the generated ddoc page using `dmd -D`  Moving the...
dfmt never changes the source code tokens or does refactorings, it only manipulates whitespace. This has been the case for a long time, maybe even since start of the project,...
hm the gdmd test seems a little weird, it installs the latest dmd and then uses gdc. An issue here could be that the std.experimental.allocator library is old and potentially...
you should set the paths to `['/Users/pavel/.local/share/ldc2/import']` because now it searches e.g. std/stdio inside `/Users/pavel/.local/share/ldc2/import/std/std/stdio`
@helikopterodaktyl use reactions pls so it's sortable in the issue search: https://github.com/dlang-community/D-Scanner/issues?q=sort%3Areactions+is%3Aopen
important: it should catch ```d class AppGenerator { private IfFileSystem fileSystem; this(IfFileSystem fielSystem) { this.fileSystem = fileSystem; } } ```