ui-fulldeps: make them pass again?

This commit is contained in:
Mazdak Farrokhzad 2019-10-16 13:23:46 +02:00
parent be40bbd2fb
commit 1a26fdf9b2
8 changed files with 13 additions and 9 deletions

View file

@ -26,7 +26,7 @@ pub(super) struct ModulePathSuccess {
impl<'a> Parser<'a> {
/// Parses a source module as a crate. This is the main entry point for the parser.
crate fn parse_crate_mod(&mut self) -> PResult<'a, Crate> {
pub fn parse_crate_mod(&mut self) -> PResult<'a, Crate> {
let lo = self.token.span;
let krate = Ok(ast::Crate {
attrs: self.parse_inner_attributes()?,