Rollup merge of #119379 - ShE3py:parse-seq-doc, r=compiler-errors
Update `parse_seq` doc Some doc changes I made while working on an issue.
This commit is contained in:
commit
0b6e8f5324
1 changed files with 28 additions and 10 deletions
|
@ -320,9 +320,15 @@ impl TokenType {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Used by [`Parser::expect_any_with_type`].
|
||||||
#[derive(Copy, Clone, Debug)]
|
#[derive(Copy, Clone, Debug)]
|
||||||
enum TokenExpectType {
|
enum TokenExpectType {
|
||||||
|
/// Unencountered tokens are inserted into [`Parser::expected_tokens`].
|
||||||
|
/// See [`Parser::check`].
|
||||||
Expect,
|
Expect,
|
||||||
|
|
||||||
|
/// Unencountered tokens are not inserted into [`Parser::expected_tokens`].
|
||||||
|
/// See [`Parser::check_noexpect`].
|
||||||
NoExpect,
|
NoExpect,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -758,13 +764,17 @@ impl<'a> Parser<'a> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Checks if the next token is contained within `kets`, and returns `true` if so.
|
||||||
fn expect_any_with_type(&mut self, kets: &[&TokenKind], expect: TokenExpectType) -> bool {
|
fn expect_any_with_type(&mut self, kets: &[&TokenKind], expect: TokenExpectType) -> bool {
|
||||||
kets.iter().any(|k| match expect {
|
kets.iter().any(|k| match expect {
|
||||||
TokenExpectType::Expect => self.check(k),
|
TokenExpectType::Expect => self.check(k),
|
||||||
TokenExpectType::NoExpect => self.token == **k,
|
TokenExpectType::NoExpect => self.check_noexpect(k),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Parses a sequence until the specified delimiters. The function
|
||||||
|
/// `f` must consume tokens until reaching the next separator or
|
||||||
|
/// closing bracket.
|
||||||
fn parse_seq_to_before_tokens<T>(
|
fn parse_seq_to_before_tokens<T>(
|
||||||
&mut self,
|
&mut self,
|
||||||
kets: &[&TokenKind],
|
kets: &[&TokenKind],
|
||||||
|
@ -783,13 +793,15 @@ impl<'a> Parser<'a> {
|
||||||
}
|
}
|
||||||
if let Some(t) = &sep.sep {
|
if let Some(t) = &sep.sep {
|
||||||
if first {
|
if first {
|
||||||
|
// no separator for the first element
|
||||||
first = false;
|
first = false;
|
||||||
} else {
|
} else {
|
||||||
|
// check for separator
|
||||||
match self.expect(t) {
|
match self.expect(t) {
|
||||||
Ok(false) => {
|
Ok(false) /* not recovered */ => {
|
||||||
self.current_closure.take();
|
self.current_closure.take();
|
||||||
}
|
}
|
||||||
Ok(true) => {
|
Ok(true) /* recovered */ => {
|
||||||
self.current_closure.take();
|
self.current_closure.take();
|
||||||
recovered = true;
|
recovered = true;
|
||||||
break;
|
break;
|
||||||
|
@ -957,7 +969,7 @@ impl<'a> Parser<'a> {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Parses a sequence, not including the closing delimiter. The function
|
/// Parses a sequence, not including the delimiters. The function
|
||||||
/// `f` must consume tokens until reaching the next separator or
|
/// `f` must consume tokens until reaching the next separator or
|
||||||
/// closing bracket.
|
/// closing bracket.
|
||||||
fn parse_seq_to_before_end<T>(
|
fn parse_seq_to_before_end<T>(
|
||||||
|
@ -965,11 +977,11 @@ impl<'a> Parser<'a> {
|
||||||
ket: &TokenKind,
|
ket: &TokenKind,
|
||||||
sep: SeqSep,
|
sep: SeqSep,
|
||||||
f: impl FnMut(&mut Parser<'a>) -> PResult<'a, T>,
|
f: impl FnMut(&mut Parser<'a>) -> PResult<'a, T>,
|
||||||
) -> PResult<'a, (ThinVec<T>, bool, bool)> {
|
) -> PResult<'a, (ThinVec<T>, bool /* trailing */, bool /* recovered */)> {
|
||||||
self.parse_seq_to_before_tokens(&[ket], sep, TokenExpectType::Expect, f)
|
self.parse_seq_to_before_tokens(&[ket], sep, TokenExpectType::Expect, f)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Parses a sequence, including the closing delimiter. The function
|
/// Parses a sequence, including only the closing delimiter. The function
|
||||||
/// `f` must consume tokens until reaching the next separator or
|
/// `f` must consume tokens until reaching the next separator or
|
||||||
/// closing bracket.
|
/// closing bracket.
|
||||||
fn parse_seq_to_end<T>(
|
fn parse_seq_to_end<T>(
|
||||||
|
@ -985,7 +997,7 @@ impl<'a> Parser<'a> {
|
||||||
Ok((val, trailing))
|
Ok((val, trailing))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Parses a sequence, including the closing delimiter. The function
|
/// Parses a sequence, including both delimiters. The function
|
||||||
/// `f` must consume tokens until reaching the next separator or
|
/// `f` must consume tokens until reaching the next separator or
|
||||||
/// closing bracket.
|
/// closing bracket.
|
||||||
fn parse_unspanned_seq<T>(
|
fn parse_unspanned_seq<T>(
|
||||||
|
@ -994,16 +1006,19 @@ impl<'a> Parser<'a> {
|
||||||
ket: &TokenKind,
|
ket: &TokenKind,
|
||||||
sep: SeqSep,
|
sep: SeqSep,
|
||||||
f: impl FnMut(&mut Parser<'a>) -> PResult<'a, T>,
|
f: impl FnMut(&mut Parser<'a>) -> PResult<'a, T>,
|
||||||
) -> PResult<'a, (ThinVec<T>, bool)> {
|
) -> PResult<'a, (ThinVec<T>, bool /* trailing */)> {
|
||||||
self.expect(bra)?;
|
self.expect(bra)?;
|
||||||
self.parse_seq_to_end(ket, sep, f)
|
self.parse_seq_to_end(ket, sep, f)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Parses a comma-separated sequence, including both delimiters.
|
||||||
|
/// The function `f` must consume tokens until reaching the next separator or
|
||||||
|
/// closing bracket.
|
||||||
fn parse_delim_comma_seq<T>(
|
fn parse_delim_comma_seq<T>(
|
||||||
&mut self,
|
&mut self,
|
||||||
delim: Delimiter,
|
delim: Delimiter,
|
||||||
f: impl FnMut(&mut Parser<'a>) -> PResult<'a, T>,
|
f: impl FnMut(&mut Parser<'a>) -> PResult<'a, T>,
|
||||||
) -> PResult<'a, (ThinVec<T>, bool)> {
|
) -> PResult<'a, (ThinVec<T>, bool /* trailing */)> {
|
||||||
self.parse_unspanned_seq(
|
self.parse_unspanned_seq(
|
||||||
&token::OpenDelim(delim),
|
&token::OpenDelim(delim),
|
||||||
&token::CloseDelim(delim),
|
&token::CloseDelim(delim),
|
||||||
|
@ -1012,10 +1027,13 @@ impl<'a> Parser<'a> {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Parses a comma-separated sequence delimited by parentheses (e.g. `(x, y)`).
|
||||||
|
/// The function `f` must consume tokens until reaching the next separator or
|
||||||
|
/// closing bracket.
|
||||||
fn parse_paren_comma_seq<T>(
|
fn parse_paren_comma_seq<T>(
|
||||||
&mut self,
|
&mut self,
|
||||||
f: impl FnMut(&mut Parser<'a>) -> PResult<'a, T>,
|
f: impl FnMut(&mut Parser<'a>) -> PResult<'a, T>,
|
||||||
) -> PResult<'a, (ThinVec<T>, bool)> {
|
) -> PResult<'a, (ThinVec<T>, bool /* trailing */)> {
|
||||||
self.parse_delim_comma_seq(Delimiter::Parenthesis, f)
|
self.parse_delim_comma_seq(Delimiter::Parenthesis, f)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue