mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
rename
This commit is contained in:
parent
f47f58ffe5
commit
dd64a155e9
@ -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);
|
||||
}
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user