Skip to content

Commit

Permalink
syntax: Relax path grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
petrochenkov committed Aug 10, 2017
1 parent 13d94d5 commit 7d21f21
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 32 deletions.
15 changes: 2 additions & 13 deletions src/libsyntax/parse/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ pub enum PathStyle {
Expr,
/// In other contexts, notably in types, no ambiguity exists and paths can be written
/// without the disambiguator, e.g. `x<y>` - unambiguously a path.
/// Paths with disambiguators are rejected for now, but may be allowed in the future.
/// Paths with disambiguators are still accepted, `x::<Y>` - unambiguously a path too.
Type,
/// A path with generic arguments disallowed, e.g. `foo::bar::Baz`, used in imports,
/// visibilities or attributes.
Expand Down Expand Up @@ -1835,18 +1835,7 @@ impl<'a> Parser<'a> {
&& self.look_ahead(1, |t| is_args_start(t)) {
// Generic arguments are found - `<`, `(`, `::<` or `::(`.
let lo = self.span;
if self.eat(&token::ModSep) {
// These errors are not strictly necessary and may be removed in the future.
if style == PathStyle::Type {
let mut err = self.diagnostic().struct_span_err(self.prev_span,
"unnecessary path disambiguator");
err.span_label(self.prev_span, "try removing `::`");
err.emit();
} else if self.token == token::OpenDelim(token::Paren) {
self.diagnostic().span_err(self.prev_span,
"`::` is not supported before parenthesized generic arguments")
}
}
self.eat(&token::ModSep);

let parameters = if self.eat_lt() {
// `<'a, T, A = U>`
Expand Down
8 changes: 2 additions & 6 deletions src/test/compile-fail/issue-32995.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,11 @@ fn main() {
//~^ ERROR parenthesized parameters may only be used with a trait
//~| WARN previously accepted

macro_rules! pathexpr {
($p:path) => { $p }
}

let p = pathexpr!(::std::str()::from_utf8)(b"foo").unwrap();
let p = ::std::str::()::from_utf8(b"foo").unwrap();
//~^ ERROR parenthesized parameters may only be used with a trait
//~| WARN previously accepted

let p = pathexpr!(::std::str::from_utf8())(b"foo").unwrap();
let p = ::std::str::from_utf8::()(b"foo").unwrap();
//~^ ERROR parenthesized parameters may only be used with a trait
//~| WARN previously accepted

Expand Down
15 changes: 9 additions & 6 deletions src/test/compile-fail/issue-36116.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,19 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// Unnecessary path disambiguator is ok

#![feature(rustc_attrs)]
#![allow(unused)]

struct Foo<T> {
_a: T,
}

fn main() {
fn f() {
let f = Some(Foo { _a: 42 }).map(|a| a as Foo::<i32>);
//~^ ERROR unnecessary path disambiguator
//~| NOTE try removing `::`

let g: Foo::<i32> = Foo { _a: 42 };
//~^ ERROR unnecessary path disambiguator
//~| NOTE try removing `::`
}

#[rustc_error]
fn main() {} //~ ERROR compilation successful
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// compile-flags: -Z parse-only

// Test that parentheses form doesn't work in expression paths.
// Test that parentheses form parses in expression paths.

struct Bar<A,R> {
f: A, r: R
Expand All @@ -21,10 +19,10 @@ impl<A,B> Bar<A,B> {
}

fn bar() {
let b = Box::Bar::<isize,usize>::new(); // OK
let b = Bar::<isize, usize>::new(); // OK

let b = Box::Bar::()::new();
//~^ ERROR `::` is not supported before parenthesized generic arguments
let b = Bar::(isize, usize)::new(); // OK too (for the parser)
//~^ ERROR parenthesized parameters may only be used with a trait
}

fn main() { }
fn main() {}
2 changes: 2 additions & 0 deletions src/test/parse-fail/type-parameters-in-field-exprs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,6 @@ fn main() {
//~^ ERROR field expressions may not have generic arguments
f.x::<>;
//~^ ERROR field expressions may not have generic arguments
f.x::();
//~^ ERROR field expressions may not have generic arguments
}

0 comments on commit 7d21f21

Please sign in to comment.