This commit is contained in:
Aleksey Kladov 2018-08-24 00:16:29 +03:00
parent f47f58ffe5
commit dd64a155e9
3 changed files with 4 additions and 4 deletions

View file

@ -63,7 +63,7 @@ pub(super) enum MaybeItem {
pub(super) fn maybe_item(p: &mut Parser, flavor: ItemFlavor) -> MaybeItem {
attributes::outer_attributes(p);
visibility(p);
opt_visibility(p);
if let Some(kind) = items_without_modifiers(p) {
return MaybeItem::Item(kind);
}

View file

@ -91,7 +91,7 @@ fn named_fields(p: &mut Parser) {
// pub uri: Uri,
// }
attributes::outer_attributes(p);
visibility(p);
opt_visibility(p);
if p.at(IDENT) {
name(p);
p.expect(COLON);
@ -110,7 +110,7 @@ fn pos_fields(p: &mut Parser) {
}
while !p.at(R_PAREN) && !p.at(EOF) {
let pos_field = p.start();
visibility(p);
opt_visibility(p);
types::type_(p);
pos_field.complete(p, POS_FIELD);

View file

@ -54,7 +54,7 @@ impl BlockLike {
fn is_block(self) -> bool { self == BlockLike::Block }
}
fn visibility(p: &mut Parser) {
fn opt_visibility(p: &mut Parser) {
match p.current() {
PUB_KW => {
let m = p.start();