We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
syntax::ast::Expr_::ExprClosure
Currently closures of the form |a| a * a are very hard to pretty-print since a * a is wrapped in an ast::Block, even though there are no curly braces.
|a| a * a
a * a
ast::Block
Match arms contain general sub-expressions, as well.
Is there any technical reason why they are treated differently?