Re-reexport some items that were recently made crate-private.

This commit is contained in:
Tim Kuehn 2018-06-22 16:23:25 -07:00
parent cbc4c8380f
commit 0c33e0ae13
2 changed files with 2 additions and 2 deletions

View file

@ -5402,7 +5402,7 @@ impl<'a> Parser<'a> {
}
/// Parse an impl item.
crate fn parse_impl_item(&mut self, at_end: &mut bool) -> PResult<'a, ImplItem> {
pub fn parse_impl_item(&mut self, at_end: &mut bool) -> PResult<'a, ImplItem> {
maybe_whole!(self, NtImplItem, |x| x);
let attrs = self.parse_outer_attributes()?;
let (mut item, tokens) = self.collect_tokens(|this| {