1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
use crate::ast::utils;
use crate::ast::{CloseBrace, Comma, Expr, If, Match, OpenBrace, Pat, Rocket};
use crate::error::{ParseError, Result};
use crate::parser::Parser;
use crate::traits::Parse;
use runestick::unit::Span;
#[derive(Debug, Clone)]
pub struct ExprMatchBranch {
pub pat: Pat,
pub condition: Option<(If, Box<Expr>)>,
pub rocket: Rocket,
pub body: Box<Expr>,
}
impl ExprMatchBranch {
pub fn span(&self) -> Span {
self.pat.span().join(self.body.span())
}
pub fn produces_nothing(&self) -> bool {
self.body.produces_nothing()
}
}
impl Parse for ExprMatchBranch {
fn parse(parser: &mut Parser) -> Result<Self, ParseError> {
let pat = parser.parse()?;
let condition = if parser.peek::<If>()? {
Some((parser.parse()?, Box::new(parser.parse()?)))
} else {
None
};
Ok(Self {
pat,
condition,
rocket: parser.parse()?,
body: Box::new(parser.parse()?),
})
}
}
#[derive(Debug, Clone)]
pub struct ExprMatch {
pub match_: Match,
pub expr: Box<Expr>,
pub open: OpenBrace,
pub branches: Vec<(ExprMatchBranch, Option<Comma>)>,
pub close: CloseBrace,
}
impl ExprMatch {
pub fn span(&self) -> Span {
self.match_.span().join(self.close.span())
}
}
impl Parse for ExprMatch {
fn parse(parser: &mut Parser) -> Result<Self, ParseError> {
let match_ = parser.parse()?;
let expr = Box::new(Expr::parse_without_eager_brace(parser)?);
let open = parser.parse()?;
let mut branches = Vec::new();
while !parser.peek::<CloseBrace>()? {
let branch = parser.parse::<ExprMatchBranch>()?;
let comma = if parser.peek::<Comma>()? {
Some(parser.parse()?)
} else {
None
};
let is_end = utils::is_block_end(&*branch.body, comma.as_ref());
branches.push((branch, comma));
if is_end {
break;
}
}
let close = parser.parse()?;
Ok(ExprMatch {
match_,
expr,
open,
branches,
close,
})
}
}