Skip to content

Commit

Permalink
Make parse_ident public
Browse files Browse the repository at this point in the history
  • Loading branch information
topecongiro committed Jun 11, 2018
1 parent 13f8d07 commit ed74b0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libsyntax/parse/parser.rs
Expand Up @@ -760,7 +760,7 @@ impl<'a> Parser<'a> {
err
}

fn parse_ident(&mut self) -> PResult<'a, ast::Ident> {
pub fn parse_ident(&mut self) -> PResult<'a, ast::Ident> {
self.parse_ident_common(true)
}

Expand Down

0 comments on commit ed74b0b

Please sign in to comment.