dfmt
dfmt copied to clipboard
Reformatting of anonymous closure is messy.
It would be nice if dfmt maintained the indentation for the following bit of code.
runTask(() {
tasks.each!((task) {
task.join();
});
exitEventLoop();
});
-->
runTask(() { tasks.each!((task) { task.join(); }); exitEventLoop(); });
(still broken with #471)