Brian Schott
Brian Schott
https://github.com/dlang/DIPs/blob/master/DIPs/accepted/DIP1030.md The DIP mentions changing the definition of the `ArgumentList` rule, but that would cause problems in places such as case statements, mixins, index expression, and several others. I'll need...
The following ExpressionStatement containing a function literal gets parsed as a block statement. ``` d import std.stdio; void main() { { writeln("test"); }; } ``` Note: DMD gets this wrong...
Modify the command line option handling to require invocation in this format: **dfix** _command_ [options] _files_ For example: ``` dfix upgrade file.d ``` ``` dfix rename "std.typetuple.TypeTuple" "std.meta.List" ```