Cancel unemitted diagnostics during error recovery
This commit is contained in:
parent
69656fa4cb
commit
f05dfe07f6
1 changed files with 9 additions and 8 deletions
|
@ -7410,13 +7410,12 @@ impl<'a> Parser<'a> {
|
|||
} else if self.look_ahead(1, |t| *t == token::OpenDelim(token::Paren)) {
|
||||
let ident = self.parse_ident().unwrap();
|
||||
self.bump(); // `(`
|
||||
let kw_name = match self.parse_self_arg_with_attrs() {
|
||||
Ok(Some(_)) => "method",
|
||||
Ok(None) => "function",
|
||||
Err(mut err) => {
|
||||
err.cancel();
|
||||
"function"
|
||||
}
|
||||
let kw_name = if let Ok(Some(_)) = self.parse_self_arg_with_attrs()
|
||||
.map_err(|mut e| e.cancel())
|
||||
{
|
||||
"method"
|
||||
} else {
|
||||
"function"
|
||||
};
|
||||
self.consume_block(token::Paren);
|
||||
let (kw, kw_name, ambiguous) = if self.check(&token::RArrow) {
|
||||
|
@ -7464,7 +7463,9 @@ impl<'a> Parser<'a> {
|
|||
self.eat_to_tokens(&[&token::Gt]);
|
||||
self.bump(); // `>`
|
||||
let (kw, kw_name, ambiguous) = if self.eat(&token::OpenDelim(token::Paren)) {
|
||||
if let Ok(Some(_)) = self.parse_self_arg_with_attrs() {
|
||||
if let Ok(Some(_)) = self.parse_self_arg_with_attrs()
|
||||
.map_err(|mut e| e.cancel())
|
||||
{
|
||||
("fn", "method", false)
|
||||
} else {
|
||||
("fn", "function", false)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue