Skip to content

Commit

Permalink
Improve some expected/found error messages from parser
Browse files Browse the repository at this point in the history
  • Loading branch information
petrochenkov committed Jan 24, 2017
1 parent a8f5047 commit 375cb2e
Show file tree
Hide file tree
Showing 10 changed files with 61 additions and 21 deletions.
61 changes: 49 additions & 12 deletions src/libsyntax/parse/parser.rs
Expand Up @@ -192,14 +192,22 @@ pub enum TokenType {
Token(token::Token),
Keyword(keywords::Keyword),
Operator,
Lifetime,
Ident,
Path,
Type,
}

impl TokenType {
fn to_string(&self) -> String {
match *self {
TokenType::Token(ref t) => format!("`{}`", Parser::token_to_string(t)),
TokenType::Operator => "an operator".to_string(),
TokenType::Keyword(kw) => format!("`{}`", kw.name()),
TokenType::Operator => "an operator".to_string(),
TokenType::Lifetime => "lifetime".to_string(),
TokenType::Ident => "identifier".to_string(),
TokenType::Path => "path".to_string(),
TokenType::Type => "type".to_string(),
}
}
}
Expand Down Expand Up @@ -552,6 +560,33 @@ impl<'a> Parser<'a> {
}
}

fn check_ident(&mut self) -> bool {
if self.token.is_ident() {
true
} else {
self.expected_tokens.push(TokenType::Ident);
false
}
}

fn check_path(&mut self) -> bool {
if self.token.is_path_start() {
true
} else {
self.expected_tokens.push(TokenType::Path);
false
}
}

fn check_type(&mut self) -> bool {
if self.token.can_begin_type() {
true
} else {
self.expected_tokens.push(TokenType::Type);
false
}
}

/// Expect and consume an `&`. If `&&` is seen, replace it with a single
/// `&` and continue. If an `&` is not seen, signal an error.
fn expect_and(&mut self) -> PResult<'a, ()> {
Expand Down Expand Up @@ -1802,7 +1837,10 @@ impl<'a> Parser<'a> {
name: ident.name
})
}
_ => None
_ => {
self.expected_tokens.push(TokenType::Lifetime);
None
}
}
}

Expand Down Expand Up @@ -3953,7 +3991,7 @@ impl<'a> Parser<'a> {
"`?` may only modify trait bounds, not lifetime bounds");
}
bounds.push(RegionTyParamBound(lifetime));
} else if self.token.is_keyword(keywords::For) || self.token.is_path_start() {
} else {if self.check_keyword(keywords::For) || self.check_path() {
let poly_trait_ref = self.parse_poly_trait_ref()?;
let modifier = if question.is_some() {
TraitBoundModifier::Maybe
Expand All @@ -3963,7 +4001,7 @@ impl<'a> Parser<'a> {
bounds.push(TraitTyParamBound(poly_trait_ref, modifier));
} else {
break
}
}}

// Trailing plus is not allowed for now and we have to detect it.
let is_bound_start = |token: &token::Token| {
Expand Down Expand Up @@ -4047,7 +4085,7 @@ impl<'a> Parser<'a> {
self.span_err(self.prev_span,
"lifetime parameters must be declared prior to type parameters");
}
} else if self.token.is_ident() {
} else {if self.check_ident() {
// Parse type parameter.
ty_params.push(self.parse_ty_param(attrs)?);
seen_ty_param = true;
Expand All @@ -4059,7 +4097,7 @@ impl<'a> Parser<'a> {
&format!("trailing attribute after {} parameters", param_kind));
}
break
}
}}

if !self.eat(&token::Comma) {
break
Expand Down Expand Up @@ -4105,15 +4143,14 @@ impl<'a> Parser<'a> {
let mut seen_type = false;
let mut seen_binding = false;
loop {
let eq_is_next = self.look_ahead(1, |t| t == &token::Eq); // borrowck workaround
if let Some(lifetime) = self.eat_lifetime() {
// Parse lifetime argument.
lifetimes.push(lifetime);
if seen_type || seen_binding {
self.span_err(self.prev_span,
"lifetime parameters must be declared prior to type parameters");
}
} else if self.token.is_ident() && eq_is_next {
} else {if self.check_ident() && self.look_ahead(1, |t| t == &token::Eq) {
// Parse associated type binding.
let lo = self.span.lo;
let ident = self.parse_ident()?;
Expand All @@ -4126,7 +4163,7 @@ impl<'a> Parser<'a> {
span: mk_sp(lo, self.prev_span.hi),
});
seen_binding = true;
} else if self.token.can_begin_type() {
} else if self.check_type() {
// Parse type argument.
types.push(self.parse_ty()?);
if seen_binding {
Expand All @@ -4136,7 +4173,7 @@ impl<'a> Parser<'a> {
seen_type = true;
} else {
break
}
}}

if !self.eat(&token::Comma) {
break
Expand Down Expand Up @@ -4192,7 +4229,7 @@ impl<'a> Parser<'a> {
bounds: bounds,
}
));
} else if self.token.can_begin_type() {
} else {if self.check_type() {
// Parse optional `for<'a, 'b>`.
// This `for` is parsed greedily and applies to the whole predicate,
// the bounded type can have its own `for` applying only to it.
Expand Down Expand Up @@ -4230,7 +4267,7 @@ impl<'a> Parser<'a> {
}
} else {
break
}
}}

if !self.eat(&token::Comma) {
break
Expand Down
2 changes: 1 addition & 1 deletion src/test/compile-fail/issue-20616-3.rs
Expand Up @@ -22,7 +22,7 @@ type Type_1_<'a, T> = &'a T;
//type Type_2 = Type_1_<'static ()>; // error: expected `,` or `>` after lifetime name, found `(`


type Type_3<T> = Box<T,,>; //~ error: expected `>`, found `,`
type Type_3<T> = Box<T,,>; //~ error: expected one of `>`, identifier, lifetime, or type, found `,`


//type Type_4<T> = Type_1_<'static,, T>; // error: expected type, found `,`
Expand Down
3 changes: 2 additions & 1 deletion src/test/compile-fail/issue-20616-4.rs
Expand Up @@ -25,7 +25,8 @@ type Type_1_<'a, T> = &'a T;
//type Type_3<T> = Box<T,,>; // error: expected type, found `,`


type Type_4<T> = Type_1_<'static,, T>; //~ error: expected `>`, found `,`
type Type_4<T> = Type_1_<'static,, T>;
//~^ error: expected one of `>`, identifier, lifetime, or type, found `,`


type Type_5_<'a> = Type_1_<'a, ()>;
Expand Down
3 changes: 2 additions & 1 deletion src/test/compile-fail/issue-20616-5.rs
Expand Up @@ -31,7 +31,8 @@ type Type_1_<'a, T> = &'a T;
type Type_5_<'a> = Type_1_<'a, ()>;


type Type_5<'a> = Type_1_<'a, (),,>; //~ error: expected `>`, found `,`
type Type_5<'a> = Type_1_<'a, (),,>;
//~^ error: expected one of `>`, identifier, lifetime, or type, found `,`


//type Type_6 = Type_5_<'a,,>; // error: expected type, found `,`
Expand Down
3 changes: 2 additions & 1 deletion src/test/compile-fail/issue-20616-6.rs
Expand Up @@ -34,7 +34,8 @@ type Type_5_<'a> = Type_1_<'a, ()>;
//type Type_5<'a> = Type_1_<'a, (),,>; // error: expected type, found `,`


type Type_6 = Type_5_<'a,,>; //~ error: expected `>`, found `,`
type Type_6 = Type_5_<'a,,>;
//~^ error: expected one of `>`, identifier, lifetime, or type, found `,`


//type Type_7 = Box<(),,>; // error: expected type, found `,`
Expand Down
2 changes: 1 addition & 1 deletion src/test/compile-fail/issue-20616-7.rs
Expand Up @@ -37,7 +37,7 @@ type Type_5_<'a> = Type_1_<'a, ()>;
//type Type_6 = Type_5_<'a,,>; // error: expected type, found `,`


type Type_7 = Box<(),,>; //~ error: expected `>`, found `,`
type Type_7 = Box<(),,>; //~ error: expected one of `>`, identifier, lifetime, or type, found `,`


//type Type_8<'a,,> = &'a (); // error: expected ident, found `,`
Expand Down
2 changes: 1 addition & 1 deletion src/test/compile-fail/issue-20616-8.rs
Expand Up @@ -40,7 +40,7 @@ type Type_5_<'a> = Type_1_<'a, ()>;
//type Type_7 = Box<(),,>; // error: expected type, found `,`


type Type_8<'a,,> = &'a (); //~ error: expected `>`, found `,`
type Type_8<'a,,> = &'a (); //~ error: expected one of `>`, identifier, or lifetime, found `,`


//type Type_9<T,,> = Box<T>; // error: expected identifier, found `,`
2 changes: 1 addition & 1 deletion src/test/compile-fail/issue-20616-9.rs
Expand Up @@ -43,4 +43,4 @@ type Type_5_<'a> = Type_1_<'a, ()>;
//type Type_8<'a,,> = &'a (); // error: expected identifier, found `,`


type Type_9<T,,> = Box<T>; //~ error: expected `>`, found `,`
type Type_9<T,,> = Box<T>; //~ error: expected one of `>`, identifier, or lifetime, found `,`
2 changes: 1 addition & 1 deletion src/test/parse-fail/bounds-lifetime-3.rs
Expand Up @@ -10,6 +10,6 @@

// compile-flags: -Z parse-only

type A = for<,> fn(); //~ ERROR expected `>`, found `,`
type A = for<,> fn(); //~ ERROR expected one of `>`, identifier, or lifetime, found `,`

fn main() {}
2 changes: 1 addition & 1 deletion src/test/parse-fail/bounds-lifetime-where-2.rs
Expand Up @@ -10,6 +10,6 @@

// compile-flags: -Z parse-only

type A where , = u8; //~ ERROR expected `=`, found `,`
type A where , = u8; //~ ERROR expected one of `=`, lifetime, or type, found `,`

fn main() {}

0 comments on commit 375cb2e

Please sign in to comment.