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

@@ -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);