Jonas Meeuws
Jonas Meeuws
I believe that error is caused by trying to build newer versions of the openssl bindings. Specifically this commit: [8718928](https://github.com/D-Programming-Deimos/openssl/commit/871892851a04caf09a675576e10f13d56af76902).
The shorten button throws `Failed to lookup host 'is.gd'.`. The export gist button throws `Failed to lookup host 'api.github.com'.`. The import gist button just returns 500 and an 'Internal Server...
With this code: ```d class A { int field1; mixin("int field2;"); } class B(T) { T field1; static if (!is(T == int)) { T field2; } } A a =...
On closer inspection, `-vcg-ast` seems to do everything that would be needed, even mixin evaluation: https://run.dlang.io/is/tzjaUS ```d struct SomeStructTemplate(T, V) { T t; V v; } void someFunctionTemplate(T)(){} mixin template...
Starting off, code completion and other features use the [dparse](https://github.com/dlang-community/libdparse) library very heavily (imported from 20+ modules). That library can't parse c files. As I believe the D compiler frontend...
It seems that a project in the workspace root is assumed to exist by `onDidSaveDubRecipe` and possibly in more places.
> Leave druntime and phobos unimplemented/not supported for now; I'll contribute that implementation in the future, but I'll run bare-metal for now. The compiler just needs to have the target...
See https://github.com/Pure-D/serve-d/issues/328.
Module auto-complete in serve-d doesn't seem to work yet. Any idea where that would be implemented?
Yes, that doesn't show ImportC modules yet.