review comments
This commit is contained in:
parent
6007e6f649
commit
757eb67992
3 changed files with 5 additions and 3 deletions
|
|
@ -6902,7 +6902,9 @@ impl<'a> Parser<'a> {
|
|||
}
|
||||
}
|
||||
|
||||
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)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue