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.
It should be safe to remove unnecessarily nested blocks when there's no statements in between: {{{ <stmts> }}} => { <stmts> }.
{{{ <stmts> }}} => { <stmts> }
Input:
fn f() { {{{{{ g() }}}}}; }
Expected output:
fn f() { g(); }
Actual output:
fn f() { { { { { { g() } } } } }; }