1
Fork 0

Improves parser diagnostics, fixes #93867

This commit is contained in:
threadexception 2022-05-01 19:05:35 +02:00
parent d201c812d4
commit 21fdd549f6
22 changed files with 135 additions and 33 deletions

View file

@ -29,6 +29,7 @@ use std::ops::{Deref, DerefMut};
use std::mem::take; use std::mem::take;
use crate::parser;
use tracing::{debug, trace}; use tracing::{debug, trace};
const TURBOFISH_SUGGESTION_STR: &str = const TURBOFISH_SUGGESTION_STR: &str =
@ -400,6 +401,35 @@ impl<'a> Parser<'a> {
.map(|x| TokenType::Token(x.clone())) .map(|x| TokenType::Token(x.clone()))
.chain(inedible.iter().map(|x| TokenType::Token(x.clone()))) .chain(inedible.iter().map(|x| TokenType::Token(x.clone())))
.chain(self.expected_tokens.iter().cloned()) .chain(self.expected_tokens.iter().cloned())
.filter_map(|token| {
// filter out suggestions which suggest the same token which was found and deemed incorrect
fn is_ident_eq_keyword(found: &TokenKind, expected: &TokenType) -> bool {
if let TokenKind::Ident(current_sym, _) = found {
if let TokenType::Keyword(suggested_sym) = expected {
return current_sym == suggested_sym;
}
}
false
}
if token != parser::TokenType::Token(self.token.kind.clone()) {
let eq = is_ident_eq_keyword(&self.token.kind, &token);
// if the suggestion is a keyword and the found token is an ident,
// the content of which are equal to the suggestion's content,
// we can remove that suggestion (see the return None statement below)
// if this isn't the case however, and the suggestion is a token the
// content of which is the same as the found token's, we remove it as well
if !eq {
if let TokenType::Token(kind) = &token {
if kind == &self.token.kind {
return None;
}
}
return Some(token);
}
}
return None;
})
.collect::<Vec<_>>(); .collect::<Vec<_>>();
expected.sort_by_cached_key(|x| x.to_string()); expected.sort_by_cached_key(|x| x.to_string());
expected.dedup(); expected.dedup();

View file

@ -977,12 +977,26 @@ impl<'a> Parser<'a> {
fn parse_dot_or_call_expr_with_(&mut self, mut e: P<Expr>, lo: Span) -> PResult<'a, P<Expr>> { fn parse_dot_or_call_expr_with_(&mut self, mut e: P<Expr>, lo: Span) -> PResult<'a, P<Expr>> {
loop { loop {
if self.eat(&token::Question) { let has_question = if self.prev_token.kind == TokenKind::Ident(kw::Return, false) {
// we are using noexpect here because we don't expect a `?` directly after a `return`
// which could be suggested otherwise
self.eat_noexpect(&token::Question)
} else {
self.eat(&token::Question)
};
if has_question {
// `expr?` // `expr?`
e = self.mk_expr(lo.to(self.prev_token.span), ExprKind::Try(e), AttrVec::new()); e = self.mk_expr(lo.to(self.prev_token.span), ExprKind::Try(e), AttrVec::new());
continue; continue;
} }
if self.eat(&token::Dot) { let has_dot = if self.prev_token.kind == TokenKind::Ident(kw::Return, false) {
// we are using noexpect here because we don't expect a `.` directly after a `return`
// which could be suggested otherwise
self.eat_noexpect(&token::Dot)
} else {
self.eat(&token::Dot)
};
if has_dot {
// expr.f // expr.f
e = self.parse_dot_suffix_expr(lo, e)?; e = self.parse_dot_suffix_expr(lo, e)?;
continue; continue;
@ -1536,9 +1550,13 @@ impl<'a> Parser<'a> {
self.parse_for_expr(label, lo, attrs) self.parse_for_expr(label, lo, attrs)
} else if self.eat_keyword(kw::Loop) { } else if self.eat_keyword(kw::Loop) {
self.parse_loop_expr(label, lo, attrs) self.parse_loop_expr(label, lo, attrs)
} else if self.check(&token::OpenDelim(Delimiter::Brace)) || self.token.is_whole_block() { } else if self.check_noexpect(&token::OpenDelim(Delimiter::Brace))
|| self.token.is_whole_block()
{
self.parse_block_expr(label, lo, BlockCheckMode::Default, attrs) self.parse_block_expr(label, lo, BlockCheckMode::Default, attrs)
} else if !ate_colon && (self.check(&TokenKind::Comma) || self.check(&TokenKind::Gt)) { } else if !ate_colon
&& (self.check_noexpect(&TokenKind::Comma) || self.check_noexpect(&TokenKind::Gt))
{
// We're probably inside of a `Path<'a>` that needs a turbofish // We're probably inside of a `Path<'a>` that needs a turbofish
let msg = "expected `while`, `for`, `loop` or `{` after a label"; let msg = "expected `while`, `for`, `loop` or `{` after a label";
self.struct_span_err(self.token.span, msg).span_label(self.token.span, msg).emit(); self.struct_span_err(self.token.span, msg).span_label(self.token.span, msg).emit();

View file

@ -548,6 +548,22 @@ impl<'a> Parser<'a> {
is_present is_present
} }
fn check_noexpect(&self, tok: &TokenKind) -> bool {
self.token == *tok
}
/// Consumes a token 'tok' if it exists. Returns whether the given token was present.
///
/// the main purpose of this function is to reduce the cluttering of the suggestions list
/// which using the normal eat method could introduce in some cases.
pub fn eat_noexpect(&mut self, tok: &TokenKind) -> bool {
let is_present = self.check_noexpect(tok);
if is_present {
self.bump()
}
is_present
}
/// Consumes a token 'tok' if it exists. Returns whether the given token was present. /// Consumes a token 'tok' if it exists. Returns whether the given token was present.
pub fn eat(&mut self, tok: &TokenKind) -> bool { pub fn eat(&mut self, tok: &TokenKind) -> bool {
let is_present = self.check(tok); let is_present = self.check(tok);

View file

@ -2,7 +2,7 @@ use super::ty::{AllowPlus, RecoverQPath, RecoverReturnSign};
use super::{Parser, Restrictions, TokenType}; use super::{Parser, Restrictions, TokenType};
use crate::maybe_whole; use crate::maybe_whole;
use rustc_ast::ptr::P; use rustc_ast::ptr::P;
use rustc_ast::token::{self, Delimiter, Token}; use rustc_ast::token::{self, Delimiter, Token, TokenKind};
use rustc_ast::{ use rustc_ast::{
self as ast, AngleBracketedArg, AngleBracketedArgs, AnonConst, AssocConstraint, self as ast, AngleBracketedArg, AngleBracketedArgs, AnonConst, AssocConstraint,
AssocConstraintKind, BlockCheckMode, GenericArg, GenericArgs, Generics, ParenthesizedArgs, AssocConstraintKind, BlockCheckMode, GenericArg, GenericArgs, Generics, ParenthesizedArgs,
@ -96,7 +96,7 @@ impl<'a> Parser<'a> {
/// ^ help: use double colon /// ^ help: use double colon
/// ``` /// ```
fn recover_colon_before_qpath_proj(&mut self) -> bool { fn recover_colon_before_qpath_proj(&mut self) -> bool {
if self.token.kind != token::Colon if !self.check_noexpect(&TokenKind::Colon)
|| self.look_ahead(1, |t| !t.is_ident() || t.is_reserved_ident()) || self.look_ahead(1, |t| !t.is_ident() || t.is_reserved_ident())
{ {
return false; return false;
@ -478,7 +478,7 @@ impl<'a> Parser<'a> {
while let Some(arg) = self.parse_angle_arg(ty_generics)? { while let Some(arg) = self.parse_angle_arg(ty_generics)? {
args.push(arg); args.push(arg);
if !self.eat(&token::Comma) { if !self.eat(&token::Comma) {
if self.token.kind == token::Semi if self.check_noexpect(&TokenKind::Semi)
&& self.look_ahead(1, |t| t.is_ident() || t.is_lifetime()) && self.look_ahead(1, |t| t.is_ident() || t.is_lifetime())
{ {
// Add `>` to the list of expected tokens. // Add `>` to the list of expected tokens.
@ -517,7 +517,11 @@ impl<'a> Parser<'a> {
let arg = self.parse_generic_arg(ty_generics)?; let arg = self.parse_generic_arg(ty_generics)?;
match arg { match arg {
Some(arg) => { Some(arg) => {
if self.check(&token::Colon) | self.check(&token::Eq) { // we are using noexpect here because we first want to find out if either `=` or `:`
// is present and then use that info to push the other token onto the tokens list
let separated =
self.check_noexpect(&token::Colon) || self.check_noexpect(&token::Eq);
if separated && (self.check(&token::Colon) | self.check(&token::Eq)) {
let arg_span = arg.span(); let arg_span = arg.span();
let (binder, ident, gen_args) = match self.get_ident_from_generic_arg(&arg) { let (binder, ident, gen_args) = match self.get_ident_from_generic_arg(&arg) {
Ok(ident_gen_args) => ident_gen_args, Ok(ident_gen_args) => ident_gen_args,
@ -553,6 +557,14 @@ impl<'a> Parser<'a> {
AssocConstraint { id: ast::DUMMY_NODE_ID, ident, gen_args, kind, span }; AssocConstraint { id: ast::DUMMY_NODE_ID, ident, gen_args, kind, span };
Ok(Some(AngleBracketedArg::Constraint(constraint))) Ok(Some(AngleBracketedArg::Constraint(constraint)))
} else { } else {
// we only want to suggest `:` and `=` in contexts where the previous token
// is an ident and the current token or the next token is an ident
if self.prev_token.is_ident()
&& (self.token.is_ident() || self.look_ahead(1, |token| token.is_ident()))
{
self.check(&token::Colon);
self.check(&token::Eq);
}
Ok(Some(AngleBracketedArg::Arg(arg))) Ok(Some(AngleBracketedArg::Arg(arg)))
} }
} }

View file

@ -262,7 +262,10 @@ impl<'a> Parser<'a> {
if let Ok(snip) = self.span_to_snippet(pat.span) { if let Ok(snip) = self.span_to_snippet(pat.span) {
err.span_label(pat.span, format!("while parsing the type for `{}`", snip)); err.span_label(pat.span, format!("while parsing the type for `{}`", snip));
} }
let err = if self.check(&token::Eq) { // we use noexpect here because we don't actually expect Eq to be here
// but we are still checking for it in order to be able to handle it if
// it is there
let err = if self.check_noexpect(&token::Eq) {
err.emit(); err.emit();
None None
} else { } else {

View file

@ -16,5 +16,5 @@ pub fn main() {
return break as (); return break as ();
} }
return enum; //~ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found keyword `enum` return enum; //~ ERROR expected one of `;`, `}`, or an operator, found keyword `enum`
} }

View file

@ -1,8 +1,8 @@
error: expected one of `.`, `;`, `?`, `}`, or an operator, found keyword `enum` error: expected one of `;`, `}`, or an operator, found keyword `enum`
--> $DIR/can-begin-expr-check.rs:19:12 --> $DIR/can-begin-expr-check.rs:19:12
| |
LL | return enum; LL | return enum;
| ^^^^ expected one of `.`, `;`, `?`, `}`, or an operator | ^^^^ expected one of `;`, `}`, or an operator
error: aborting due to previous error error: aborting due to previous error

View file

@ -2,8 +2,8 @@ fn main() {}
extern "C" { //~ NOTE while parsing this item list starting here extern "C" { //~ NOTE while parsing this item list starting here
pub pub fn foo(); pub pub fn foo();
//~^ ERROR expected one of `(`, `async`, `const`, `default`, `extern`, `fn`, `pub`, `unsafe`, or `use`, found keyword `pub` //~^ ERROR expected one of `(`, `async`, `const`, `default`, `extern`, `fn`, `unsafe`, or `use`, found keyword `pub`
//~| NOTE expected one of 9 possible tokens //~| NOTE expected one of 8 possible tokens
//~| HELP there is already a visibility modifier, remove one //~| HELP there is already a visibility modifier, remove one
//~| NOTE explicit visibility first seen here //~| NOTE explicit visibility first seen here
} //~ NOTE the item list ends here } //~ NOTE the item list ends here

View file

@ -1,4 +1,4 @@
error: expected one of `(`, `async`, `const`, `default`, `extern`, `fn`, `pub`, `unsafe`, or `use`, found keyword `pub` error: expected one of `(`, `async`, `const`, `default`, `extern`, `fn`, `unsafe`, or `use`, found keyword `pub`
--> $DIR/duplicate-visibility.rs:4:9 --> $DIR/duplicate-visibility.rs:4:9
| |
LL | extern "C" { LL | extern "C" {
@ -6,7 +6,7 @@ LL | extern "C" {
LL | pub pub fn foo(); LL | pub pub fn foo();
| ^^^ | ^^^
| | | |
| expected one of 9 possible tokens | expected one of 8 possible tokens
| help: there is already a visibility modifier, remove one | help: there is already a visibility modifier, remove one
... ...
LL | } LL | }

View file

@ -9,7 +9,7 @@ type Type_1_<'a, T> = &'a T;
//type Type_1<'a T> = &'a T; // error: expected `,` or `>` after lifetime name, found `T` //type Type_1<'a T> = &'a T; // error: expected `,` or `>` after lifetime name, found `T`
type Type_2 = Type_1_<'static ()>; //~ error: expected one of `,`, `:`, `=`, or `>`, found `(` type Type_2 = Type_1_<'static ()>; //~ error: expected one of `,` or `>`, found `(`
//type Type_3<T> = Box<T,,>; // error: expected type, found `,` //type Type_3<T> = Box<T,,>; // error: expected type, found `,`

View file

@ -1,8 +1,8 @@
error: expected one of `,`, `:`, `=`, or `>`, found `(` error: expected one of `,` or `>`, found `(`
--> $DIR/issue-20616-2.rs:12:31 --> $DIR/issue-20616-2.rs:12:31
| |
LL | type Type_2 = Type_1_<'static ()>; LL | type Type_2 = Type_1_<'static ()>;
| ^ expected one of `,`, `:`, `=`, or `>` | ^ expected one of `,` or `>`
| |
help: you might have meant to end the type parameters here help: you might have meant to end the type parameters here
| |

View file

@ -5,7 +5,7 @@ struct Foo;
impl Foo { impl Foo {
pub fn foo(_: i32, self: Box<Self) {} pub fn foo(_: i32, self: Box<Self) {}
//~^ ERROR expected one of `!`, `(`, `+`, `,`, `::`, `:`, `<`, `=`, or `>`, found `)` //~^ ERROR expected one of `!`, `(`, `+`, `,`, `::`, `<`, or `>`, found `)`
} }
fn main() {} fn main() {}

View file

@ -1,8 +1,8 @@
error: expected one of `!`, `(`, `+`, `,`, `::`, `:`, `<`, `=`, or `>`, found `)` error: expected one of `!`, `(`, `+`, `,`, `::`, `<`, or `>`, found `)`
--> $DIR/issue-62660.rs:7:38 --> $DIR/issue-62660.rs:7:38
| |
LL | pub fn foo(_: i32, self: Box<Self) {} LL | pub fn foo(_: i32, self: Box<Self) {}
| ^ expected one of 9 possible tokens | ^ expected one of 7 possible tokens
| |
help: you might have meant to end the type parameters here help: you might have meant to end the type parameters here
| |

View file

@ -6,4 +6,4 @@ fn main() {
//~| ERROR expected one of `!`, `.`, `::`, `;`, `?`, `else`, `{`, or an operator, found `,` //~| ERROR expected one of `!`, `.`, `::`, `;`, `?`, `else`, `{`, or an operator, found `,`
//~| ERROR expected one of `!`, `.`, `::`, `;`, `?`, `else`, `{`, or an operator, found `,` //~| ERROR expected one of `!`, `.`, `::`, `;`, `?`, `else`, `{`, or an operator, found `,`
} }
//~^ ERROR expected one of `,`, `:`, `=`, or `>`, found `}` //~^ ERROR expected one of `,` or `>`, found `}`

View file

@ -21,11 +21,11 @@ error: expected one of `!`, `.`, `::`, `;`, `?`, `else`, `{`, or an operator, fo
LL | let outer_local:e_outer<&str, { let inner_local:e_inner<&str, } LL | let outer_local:e_outer<&str, { let inner_local:e_inner<&str, }
| ^ expected one of 8 possible tokens | ^ expected one of 8 possible tokens
error: expected one of `,`, `:`, `=`, or `>`, found `}` error: expected one of `,` or `>`, found `}`
--> $DIR/issue-84117.rs:8:1 --> $DIR/issue-84117.rs:8:1
| |
LL | let outer_local:e_outer<&str, { let inner_local:e_inner<&str, } LL | let outer_local:e_outer<&str, { let inner_local:e_inner<&str, }
| ----------- while parsing the type for `outer_local` - expected one of `,`, `:`, `=`, or `>` | ----------- while parsing the type for `outer_local` - expected one of `,` or `>`
... ...
LL | } LL | }
| ^ unexpected token | ^ unexpected token

View file

@ -4,11 +4,11 @@ error: expected `while`, `for`, `loop` or `{` after a label
LL | f<'a,> LL | f<'a,>
| ^ expected `while`, `for`, `loop` or `{` after a label | ^ expected `while`, `for`, `loop` or `{` after a label
error: expected one of `.`, `:`, `;`, `?`, `for`, `loop`, `while`, `{`, `}`, or an operator, found `,` error: expected one of `.`, `:`, `;`, `?`, `for`, `loop`, `while`, `}`, or an operator, found `,`
--> $DIR/issue-93282.rs:2:9 --> $DIR/issue-93282.rs:2:9
| |
LL | f<'a,> LL | f<'a,>
| ^ expected one of 10 possible tokens | ^ expected one of 9 possible tokens
| |
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
| |

View file

@ -0,0 +1,10 @@
pub struct Entry<'a, K, V> {
k: &'a mut K,
v: V,
}
pub fn entry<'a, K, V>() -> Entry<'a K, V> {
// ^ missing comma
//~^^ expected one of `,` or `>`, found `K`
unimplemented!()
}

View file

@ -0,0 +1,13 @@
error: expected one of `,` or `>`, found `K`
--> $DIR/issue-93867.rs:6:38
|
LL | pub fn entry<'a, K, V>() -> Entry<'a K, V> {
| ^ expected one of `,` or `>`
|
help: you might have meant to end the type parameters here
|
LL | pub fn entry<'a, K, V>() -> Entry<'a> K, V> {
| +
error: aborting due to previous error

View file

@ -5,6 +5,6 @@ struct Foo<'a, 'b> {
} }
fn foo<'a, 'b>(_x: &mut Foo<'a, 'b>) {} fn foo<'a, 'b>(_x: &mut Foo<'a, 'b>) {}
//~^ ERROR expected one of `,`, `:`, `=`, or `>`, found `;` //~^ ERROR expected one of `,` or `>`, found `;`
fn main() {} fn main() {}

View file

@ -5,6 +5,6 @@ struct Foo<'a, 'b> {
} }
fn foo<'a, 'b>(_x: &mut Foo<'a; 'b>) {} fn foo<'a, 'b>(_x: &mut Foo<'a; 'b>) {}
//~^ ERROR expected one of `,`, `:`, `=`, or `>`, found `;` //~^ ERROR expected one of `,` or `>`, found `;`
fn main() {} fn main() {}

View file

@ -1,8 +1,8 @@
error: expected one of `,`, `:`, `=`, or `>`, found `;` error: expected one of `,` or `>`, found `;`
--> $DIR/lifetime-semicolon.rs:7:31 --> $DIR/lifetime-semicolon.rs:7:31
| |
LL | fn foo<'a, 'b>(_x: &mut Foo<'a; 'b>) {} LL | fn foo<'a, 'b>(_x: &mut Foo<'a; 'b>) {}
| ^ expected one of `,`, `:`, `=`, or `>` | ^ expected one of `,` or `>`
| |
help: use a comma to separate type parameters help: use a comma to separate type parameters
| |

View file

@ -59,11 +59,11 @@ error: expected `while`, `for`, `loop` or `{` after a label
LL | let _ = f<'_, i8>(); LL | let _ = f<'_, i8>();
| ^ expected `while`, `for`, `loop` or `{` after a label | ^ expected `while`, `for`, `loop` or `{` after a label
error: expected one of `.`, `:`, `;`, `?`, `else`, `for`, `loop`, `while`, `{`, or an operator, found `,` error: expected one of `.`, `:`, `;`, `?`, `else`, `for`, `loop`, `while`, or an operator, found `,`
--> $DIR/require-parens-for-chained-comparison.rs:22:17 --> $DIR/require-parens-for-chained-comparison.rs:22:17
| |
LL | let _ = f<'_, i8>(); LL | let _ = f<'_, i8>();
| ^ expected one of 10 possible tokens | ^ expected one of 9 possible tokens
| |
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
| |