Remove needless indent arguments

We're always indenting by INDENT_UNIT anyway
This commit is contained in:
Mark Rousskov 2019-07-09 09:30:08 -04:00
parent daf1b29f29
commit 63fdf1a527
3 changed files with 16 additions and 28 deletions

View file

@ -4591,7 +4591,7 @@ impl<'a> Parser<'a> {
s.ibox(INDENT_UNIT);
s.bopen();
s.print_stmt(&stmt);
s.bclose_maybe_open(stmt.span, INDENT_UNIT, false)
s.bclose_maybe_open(stmt.span, false)
});
e.span_suggestion(
stmt_span,