Jump to conversation
Unresolved conversations (5)
@Geod24 Geod24 Jul 28, 2019
```suggestion error("found `%s` when expecting `%s` following `mixin`", token.toChars(), Token.toChars(TOK.leftParentheses)); ```
src/dmd/parse.d
@Geod24 Geod24 Jul 28, 2019
Would have been better if this refactoring was in another PR
src/dmd/parse.d
@Geod24 Geod24 Jul 28, 2019
Unrelated
src/dmd/dtemplate.d
@andralex andralex Jul 27, 2019
superfluous parens
Outdated
src/dmd/parse.d
@andralex andralex Jul 27, 2019
I'm confused as to why this idiom was used here. It's just a more complicated way of saying... this: ```d override Type syntaxCopy() { Expressions* a = null; if (exps) { a = new Expressions(exps.dim); foreach (i, e; *exps) { (*a)[i] = e ? e.syntaxCopy() : null; } } return new TypeMixin(a); } ```
src/dmd/astbase.d
WalterBright
Resolved conversations (0)