Jonas Meeuws

Results 6 issues of Jonas Meeuws

Because I'm using an external build system (esp-idf), my dub project is a *subdirectory* in the workspace. Serve-d finds it just fine (with `d.scanAllFolders`) and uses it as a dub...

Setting the dub arch type in a workspace, either through the "Switch Arch Type" command or the "d.dubArchType" setting, has no effect. In an example project with: `dub.sdl`: ```sdl name...

Mistakingly I wrote `out(expr)` instead of `out(; expr)` on a ctor. In this specific case it segfaults the compiler: ```d abstract class C1 {} class C2 : C1 { bool...

Severity:ICE

The following fails: `a.d`: ```d module a; struct A; struct A { int member; } ``` `b.d`: ```d import a;typeof(A. ``` ```sh dcd-server -I. & dcd-client b.d -c18 | grep...

This adds `.c`, `.h` and `.i` files (see https://dlang.org/spec/importc.html) as 'alternative' (lower priority) importable files. `$DMD` or `dmd` is called on the source file with `-H` to produce a `.di`...

Some options like `clangd.arguments` don't have the correct scope set. For example, when using this setting in `.vscode/settings.json` in a workspace, vscode shows the following error: Looking at the clangd...

bug