Quirin F. Schroll
Quirin F. Schroll
> Does this fix an issue? I filed one now. I hope it’s okay that I just put it in the most recent commit message.
The CircleCI fails due to the (I guess usual) `Error: template instance `core.stdc.config._Complex!double` cannot resolve forward reference`. I don’t know why [Main / FreeBSD 13.2 x64, DMD (bootstrap) (pull_request)](https://github.com/dlang/dmd/actions/runs/13374556775/job/37350753357?pr=16882) fails.
> > Error: The action 'Run in VM' has timed out after 14 minutes. > > Timeout I realized a merge was needed anyways. Generally speaking, if a timeout is...
> `Condition` and `Conditional` are easy to mix up. I don’t know how you’d mix those up. A condition is something that you evaluate to a boolean to test it....
> I think it's not worth bikeshedding Okay, the let’s not do it! 😁 > This PR changes them for marginally better clarity at best, so unless the names are...
> Makes sense as it is an attribute (though I'm used to seeing a space for it). I think all attributes with a parameter don't use a space, except align...
I just checked [the prospect Grammar page](https://dtest.dlang.io/artifact/website-8fff91ddb2a6198ba8c65314c5ddc5283261a8df-ddfdd7aa1698db0e4dc66a210cfd8e4c/web/spec/grammar.html) and it looks good.
@ntrel or @thewilsonator, one of you might take a quick look at this. Thanks in advance 😄
@thewilsonator, there is [a little D program](https://github.com/dlang/dlang.org/blob/master/ddoc/source/preprocessor.d#L293) that collects all blocks starting with `$(GRAMMAR` and adds them to the _D Grammar_ page. The issue is that `$(GRAMMAR_INFORMATIVE` starts with `$(GRAMMAR`...
> Surely you can do > > ```diff > - enum grammarKey = "$(GRAMMAR"; > + enum grammarKey = "$(GRAMMAR"; > ``` > > then. Is this a joke that...