mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-02 06:28:20 +03:00
review comments
This commit is contained in:
@@ -6902,7 +6902,9 @@ fn consume_block(&mut self, delim: token::DelimToken) {
|
||||
}
|
||||
}
|
||||
|
||||
fn parse_record_struct_body(&mut self) -> PResult<'a, (Vec<StructField>, bool)> {
|
||||
fn parse_record_struct_body(
|
||||
&mut self,
|
||||
) -> PResult<'a, (Vec<StructField>, /* recovered */ bool)> {
|
||||
let mut fields = Vec::new();
|
||||
let mut recovered = false;
|
||||
if self.eat(&token::OpenDelim(token::Brace)) {
|
||||
|
||||
Reference in New Issue
Block a user