Quirin F. Schroll

Results 33 issues of Quirin F. Schroll

Using `IfCondition` in the grammar is misleading. It can be used for `if`, but also for `while` and `switch`. On the other hand, `Condition`, which refers to conditional compilation constructs,...

Because `GRAMMAR_INFORMATIVE` starts with `GRAMMAR`, there are stray ones included in [the grammar spec](https://dlang.org/spec/grammar.html).

Linkage is not a control-flow statement (such as `if` or `while`) and as with `assert`, `pragma` and many others, no space should be used between the keyword and the opening...

Add `@gc` as a new function attribute that acts as the inverse of the `@nogc` attribute.

Merge this when [Issue 24655](https://issues.dlang.org/show_bug.cgi?id=24655) is fixed.

In particular, replace “must be declared” by “is typically declared,” as many variants are possible.

Currently, it is allowed that a base class is a qualified type. ```d class C : const(Object) { } auto obj = new class const(Object) { }; ``` The qualifier...