Skip to content

Commit

Permalink
initial implementation of or-pattern parsing
Browse files Browse the repository at this point in the history
Initial implementation of parsing or-patterns e.g., `Some(Foo | Bar)`.
This is a partial implementation of RFC 2535.
  • Loading branch information
dlrobertson committed Aug 17, 2019
1 parent 1713ac4 commit 1870537
Show file tree
Hide file tree
Showing 22 changed files with 142 additions and 60 deletions.
36 changes: 36 additions & 0 deletions src/doc/unstable-book/src/language-features/or-patterns.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# `or_patterns`

The tracking issue for this feature is: [#54883]

[#54883]: https://github.com/rust-lang/rust/issues/54883

------------------------

The `or_pattern` language feature allows `|` to be arbitrarily nested within
a pattern, for example, `Some(A(0) | B(1 | 2))` becomes a valid pattern.

## Examples

```rust,ignore
#![feature(or_patterns)]
pub enum Foo {
Bar,
Baz,
Quux,
}
pub fn example(maybe_foo: Option<Foo>) {
match maybe_foo {
Some(Foo::Bar | Foo::Baz) => {
println!("The value contained `Bar` or `Baz`");
}
Some(_) => {
println!("The value did not contain `Bar` or `Baz`");
}
None => {
println!("The value was `None`");
}
}
}
```
3 changes: 2 additions & 1 deletion src/librustc/hir/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,8 @@ pub enum PatKind {
TupleStruct(QPath, HirVec<P<Pat>>, Option<usize>),

/// An or-pattern `A | B | C`.
Or(Vec<P<Pat>>),
/// Invariant: `pats.len() >= 2`.
Or(HirVec<P<Pat>>),

/// A path pattern for an unit struct/variant or a (maybe-associated) constant.
Path(QPath),
Expand Down
5 changes: 2 additions & 3 deletions src/librustc/hir/print.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use syntax::source_map::{SourceMap, Spanned};
use syntax::parse::ParseSess;
use syntax::print::pp::{self, Breaks};
use syntax::print::pp::Breaks::{Consistent, Inconsistent};
use syntax::print::pprust::{self, Comments, PrintState, SeparatorSpacing};
use syntax::print::pprust::{self, Comments, PrintState};
use syntax::symbol::kw;
use syntax::util::parser::{self, AssocOp, Fixity};
use syntax_pos::{self, BytePos, FileName};
Expand Down Expand Up @@ -1688,8 +1688,7 @@ impl<'a> State<'a> {
self.s.word("}");
}
PatKind::Or(ref pats) => {
let spacing = SeparatorSpacing::Both;
self.strsep("|", spacing, Inconsistent, &pats[..], |s, p| s.print_pat(&p))?;
self.strsep("|", true, Inconsistent, &pats[..], |s, p| s.print_pat(&p));
}
PatKind::Tuple(ref elts, ddpos) => {
self.popen();
Expand Down
3 changes: 1 addition & 2 deletions src/librustc_mir/build/matches/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -658,9 +658,8 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
}
}
PatternKind::Or { ref pats } => {
// FIXME(#47184): extract or handle `pattern_user_ty` somehow
for pat in pats {
self.visit_bindings(&pat, &pattern_user_ty.clone(), f);
self.visit_bindings(&pat, pattern_user_ty.clone(), f);
}
}
}
Expand Down
3 changes: 3 additions & 0 deletions src/librustc_mir/hair/pattern/_match.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@
/// D((r_1, p_(i,2), .., p_(i,n)))
/// D((r_2, p_(i,2), .., p_(i,n)))
///
/// Note that the OR-patterns are not always used directly in Rust, but are used to derive
/// the exhaustive integer matching rules, so they're written here for posterity.
///
/// The algorithm for computing `U`
/// -------------------------------
/// The algorithm is inductive (on the number of columns: i.e., components of tuple patterns).
Expand Down
3 changes: 2 additions & 1 deletion src/librustc_mir/hair/pattern/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ pub enum PatternKind<'tcx> {
suffix: Vec<Pattern<'tcx>>,
},

/// or-pattern
/// An or-pattern, e.g. `p | q`.
/// Invariant: `pats.len() >= 2`.
Or {
pats: Vec<Pattern<'tcx>>,
},
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_typeck/check/_match.rs
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
PatKind::Or(ref pats) => {
let expected_ty = self.structurally_resolved_type(pat.span, expected);
for pat in pats {
self.check_pat_walk(pat, expected, def_bm, false);
self.check_pat_walk(pat, expected, def_bm, discrim_span);
}
expected_ty
}
Expand Down
1 change: 1 addition & 0 deletions src/libsyntax/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,7 @@ pub enum PatKind {
TupleStruct(Path, Vec<P<Pat>>),

/// An or-pattern `A | B | C`.
/// Invariant: `pats.len() >= 2`.
Or(Vec<P<Pat>>),

/// A possibly qualified path pattern.
Expand Down
5 changes: 5 additions & 0 deletions src/libsyntax/feature_gate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,9 @@ declare_features! (
// Allows `impl Trait` to be used inside type aliases (RFC 2515).
(active, type_alias_impl_trait, "1.38.0", Some(63063), None),

// Allows the use of or-patterns, e.g. `0 | 1`.
(active, or_patterns, "1.38.0", Some(54883), None),

// -------------------------------------------------------------------------
// feature-group-end: actual feature gates
// -------------------------------------------------------------------------
Expand All @@ -571,6 +574,7 @@ pub const INCOMPLETE_FEATURES: &[Symbol] = &[
sym::impl_trait_in_bindings,
sym::generic_associated_types,
sym::const_generics,
sym::or_patterns,
sym::let_chains,
];

Expand Down Expand Up @@ -2443,6 +2447,7 @@ pub fn check_crate(krate: &ast::Crate,
gate_all!(let_chains_spans, let_chains, "`let` expressions in this position are experimental");
gate_all!(async_closure_spans, async_closure, "async closures are unstable");
gate_all!(yield_spans, generators, "yield syntax is experimental");
gate_all!(or_pattern_spans, or_patterns, "or-patterns syntax is experimental");

let visitor = &mut PostExpansionVisitor {
context: &ctx,
Expand Down
3 changes: 3 additions & 0 deletions src/libsyntax/parse/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ pub struct ParseSess {
// Places where `yield e?` exprs were used and should be feature gated.
pub yield_spans: Lock<Vec<Span>>,
pub injected_crate_name: Once<Symbol>,
// Places where or-patterns e.g. `Some(Foo | Bar)` were used and should be feature gated.
pub or_pattern_spans: Lock<Vec<Span>>,
}

impl ParseSess {
Expand Down Expand Up @@ -96,6 +98,7 @@ impl ParseSess {
async_closure_spans: Lock::new(Vec::new()),
yield_spans: Lock::new(Vec::new()),
injected_crate_name: Once::new(),
or_pattern_spans: Lock::new(Vec::new()),
}
}

Expand Down
41 changes: 37 additions & 4 deletions src/libsyntax/parse/parser/pat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ use errors::{Applicability, DiagnosticBuilder};

impl<'a> Parser<'a> {
/// Parses a pattern.
pub fn parse_pat(&mut self, expected: Option<&'static str>) -> PResult<'a, P<Pat>> {
pub fn parse_pat(
&mut self,
expected: Option<&'static str>
) -> PResult<'a, P<Pat>> {
self.parse_pat_with_range_pat(true, expected)
}

Expand Down Expand Up @@ -97,6 +100,34 @@ impl<'a> Parser<'a> {
Ok(())
}

/// Parses a pattern, that may be a or-pattern (e.g. `Some(Foo | Bar)`).
fn parse_pat_with_or(&mut self, expected: Option<&'static str>) -> PResult<'a, P<Pat>> {
// Parse the first pattern.
let first_pat = self.parse_pat(expected)?;

// If the next token is not a `|`, this is not an or-pattern and
// we should exit here.
if !self.check(&token::BinOp(token::Or)) {
return Ok(first_pat)
}

let lo = first_pat.span;

let mut pats = vec![first_pat];

while self.eat(&token::BinOp(token::Or)) {
pats.push(self.parse_pat_with_range_pat(
true, expected
)?);
}

let or_pattern_span = lo.to(self.prev_span);

self.sess.or_pattern_spans.borrow_mut().push(or_pattern_span);

Ok(self.mk_pat(or_pattern_span, PatKind::Or(pats)))
}

/// Parses a pattern, with a setting whether modern range patterns (e.g., `a..=b`, `a..b` are
/// allowed).
fn parse_pat_with_range_pat(
Expand Down Expand Up @@ -240,7 +271,9 @@ impl<'a> Parser<'a> {

/// Parse a tuple or parenthesis pattern.
fn parse_pat_tuple_or_parens(&mut self) -> PResult<'a, PatKind> {
let (fields, trailing_comma) = self.parse_paren_comma_seq(|p| p.parse_pat(None))?;
let (fields, trailing_comma) = self.parse_paren_comma_seq(|p| {
p.parse_pat_with_or(None)
})?;

// Here, `(pat,)` is a tuple pattern.
// For backward compatibility, `(..)` is a tuple pattern as well.
Expand Down Expand Up @@ -483,7 +516,7 @@ impl<'a> Parser<'a> {
err.span_label(self.token.span, msg);
return Err(err);
}
let (fields, _) = self.parse_paren_comma_seq(|p| p.parse_pat(None))?;
let (fields, _) = self.parse_paren_comma_seq(|p| p.parse_pat_with_or(None))?;
Ok(PatKind::TupleStruct(path, fields))
}

Expand Down Expand Up @@ -627,7 +660,7 @@ impl<'a> Parser<'a> {
// Parsing a pattern of the form "fieldname: pat"
let fieldname = self.parse_field_name()?;
self.bump();
let pat = self.parse_pat(None)?;
let pat = self.parse_pat_with_or(None)?;
hi = pat.span;
(pat, fieldname, false)
} else {
Expand Down
47 changes: 12 additions & 35 deletions src/libsyntax/print/pprust.rs
Original file line number Diff line number Diff line change
Expand Up @@ -431,46 +431,33 @@ impl std::ops::DerefMut for State<'_> {
}
}

pub enum SeparatorSpacing {
After,
Both,
}

pub trait PrintState<'a>: std::ops::Deref<Target=pp::Printer> + std::ops::DerefMut {
fn comments(&mut self) -> &mut Option<Comments<'a>>;
fn print_ident(&mut self, ident: ast::Ident);
fn print_generic_args(&mut self, args: &ast::GenericArgs, colons_before_params: bool);

fn strsep<T, F>(
&mut self,
sep: &'static str,
spacing: SeparatorSpacing,
b: Breaks,
elts: &[T],
mut op: F
) -> io::Result<()>
fn strsep<T, F>(&mut self, sep: &'static str, space_before: bool,
b: Breaks, elts: &[T], mut op: F)
where F: FnMut(&mut Self, &T),
{
self.rbox(0, b);
let mut first = true;
for elt in elts {
if first {
first = false;
} else {
if let SeparatorSpacing::Both = spacing {
self.writer().space();
if let Some((first, rest)) = elts.split_first() {
op(self, first);
for elt in rest {
if space_before {
self.space();
}
self.word_space(sep);
op(self, elt);
}
op(self, elt);
}
self.end();
}

fn commasep<T, F>(&mut self, b: Breaks, elts: &[T], mut op: F)
fn commasep<T, F>(&mut self, b: Breaks, elts: &[T], op: F)
where F: FnMut(&mut Self, &T),
{
self.strsep(",", SeparatorSpacing::After, b, elts, op)
self.strsep(",", false, b, elts, op)
}

fn maybe_print_comment(&mut self, pos: BytePos) {
Expand Down Expand Up @@ -2379,8 +2366,7 @@ impl<'a> State<'a> {
self.pclose();
}
PatKind::Or(ref pats) => {
let spacing = SeparatorSpacing::Both;
self.strsep("|", spacing, Inconsistent, &pats[..], |s, p| s.print_pat(p))?;
self.strsep("|", true, Inconsistent, &pats[..], |s, p| s.print_pat(p));
}
PatKind::Path(None, ref path) => {
self.print_path(path, true, 0);
Expand Down Expand Up @@ -2458,16 +2444,7 @@ impl<'a> State<'a> {
}

fn print_pats(&mut self, pats: &[P<ast::Pat>]) {
let mut first = true;
for p in pats {
if first {
first = false;
} else {
self.s.space();
self.word_space("|");
}
self.print_pat(p);
}
self.strsep("|", true, Inconsistent, pats, |s, p| s.print_pat(p));
}

fn print_arm(&mut self, arm: &ast::Arm) {
Expand Down
2 changes: 1 addition & 1 deletion src/libsyntax/visit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ pub fn walk_pat<'a, V: Visitor<'a>>(visitor: &mut V, pattern: &'a Pat) {
visitor.visit_expr(upper_bound);
}
PatKind::Wild | PatKind::Rest => {},
PatKind::Tuple(ref elems) => {
PatKind::Tuple(ref elems)
| PatKind::Slice(ref elems)
| PatKind::Or(ref elems) => {
walk_list!(visitor, visit_pat, elems);
Expand Down
1 change: 1 addition & 0 deletions src/libsyntax_pos/symbol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,7 @@ symbols! {
option_env,
opt_out_copy,
or,
or_patterns,
Ord,
Ordering,
Output,
Expand Down
9 changes: 9 additions & 0 deletions src/test/ui/feature-gate/feature-gate-or_patterns.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#![crate_type="lib"]

pub fn example(x: Option<usize>) {
match x {
Some(0 | 1 | 2) => {}
//~^ ERROR: or-patterns syntax is experimental
_ => {}
}
}
12 changes: 12 additions & 0 deletions src/test/ui/feature-gate/feature-gate-or_patterns.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
error[E0658]: or-patterns syntax is experimental
--> $DIR/feature-gate-or_patterns.rs:5:14
|
LL | Some(0 | 1 | 2) => {}
| ^^^^^^^^^
|
= note: for more information, see https://github.com/rust-lang/rust/issues/54883
= help: add `#![feature(or_patterns)]` to the crate attributes to enable

error: aborting due to previous error

For more information about this error, try `rustc --explain E0658`.
5 changes: 3 additions & 2 deletions src/test/ui/parser/pat-lt-bracket-6.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ fn main() {
struct Test(&'static u8, [u8; 0]);
let x = Test(&0, []);

let Test(&desc[..]) = x; //~ ERROR: expected one of `)`, `,`, or `@`, found `[`
//~^ ERROR subslice patterns are unstable
let Test(&desc[..]) = x;
//~^ ERROR: expected one of `)`, `,`, `@`, or `|`, found `[`
//~^^ ERROR subslice patterns are unstable
}

const RECOVERY_WITNESS: () = 0; //~ ERROR mismatched types
6 changes: 3 additions & 3 deletions src/test/ui/parser/pat-lt-bracket-6.stderr
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
error: expected one of `)`, `,`, or `@`, found `[`
error: expected one of `)`, `,`, `@`, or `|`, found `[`
--> $DIR/pat-lt-bracket-6.rs:5:19
|
LL | let Test(&desc[..]) = x;
| ^ expected one of `)`, `,`, or `@` here
| ^ expected one of `)`, `,`, `@`, or `|` here

error[E0658]: subslice patterns are unstable
--> $DIR/pat-lt-bracket-6.rs:5:20
Expand All @@ -14,7 +14,7 @@ LL | let Test(&desc[..]) = x;
= help: add `#![feature(slice_patterns)]` to the crate attributes to enable

error[E0308]: mismatched types
--> $DIR/pat-lt-bracket-6.rs:9:30
--> $DIR/pat-lt-bracket-6.rs:10:30
|
LL | const RECOVERY_WITNESS: () = 0;
| ^ expected (), found integer
Expand Down
3 changes: 2 additions & 1 deletion src/test/ui/parser/pat-lt-bracket-7.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ fn main() {
struct Thing(u8, [u8; 0]);
let foo = core::iter::empty();

for Thing(x[]) in foo {} //~ ERROR: expected one of `)`, `,`, or `@`, found `[`
for Thing(x[]) in foo {}
//~^ ERROR: expected one of `)`, `,`, `@`, or `|`, found `[`
}

const RECOVERY_WITNESS: () = 0; //~ ERROR mismatched types
Loading

0 comments on commit 1870537

Please sign in to comment.