Only eat semicolons for statements that need them

When parsing a statement (e.g. inside a function body),
we now consider `struct Foo {};` and `$stmt;` to each consist
of two statements: `struct Foo {}` and `;`, and `$stmt` and `;`.

As a result, an attribute macro invoke as
`fn foo() { #[attr] struct Bar{}; }` will see `struct Bar{}` as its
input. Additionally, the 'unused semicolon' lint now fires in more
places.
This commit is contained in:
Aaron Hill 2020-11-25 16:52:24 -05:00
parent de88bf148b
commit 758834d3e2
No known key found for this signature in database
GPG key ID: B4087E510E98B164
2 changed files with 2 additions and 8 deletions

View file

@ -473,8 +473,7 @@ impl<'a> Parser<'a> {
// so capture it
add_semi_token(local.tokens.as_mut());
}
StmtKind::Empty => eat_semi = false,
_ => {}
StmtKind::Empty | StmtKind::Item(_) | StmtKind::Semi(_) => eat_semi = false,
}
if eat_semi && self.eat(&token::Semi) {