Do not consume semicolon twice while parsing local statement
This commit is contained in:
@@ -4700,7 +4700,7 @@ impl<'a> Parser<'a> {
|
|||||||
if macro_legacy_warnings && self.token != token::Semi {
|
if macro_legacy_warnings && self.token != token::Semi {
|
||||||
self.warn_missing_semicolon();
|
self.warn_missing_semicolon();
|
||||||
} else {
|
} else {
|
||||||
self.expect_one_of(&[token::Semi], &[])?;
|
self.expect_one_of(&[], &[token::Semi])?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
|
|||||||
Reference in New Issue
Block a user