mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-13 00:17:15 +00:00
Don't interpret type path as part of visibility.
This commit is contained in:
parent
8b3c851dd3
commit
0a9ff04270
3 changed files with 61 additions and 1 deletions
|
@ -184,7 +184,11 @@ fn opt_visibility(p: &mut Parser) -> bool {
|
|||
// pub(self) struct S;
|
||||
// pub(self) struct S;
|
||||
// pub(self) struct S;
|
||||
T![crate] | T![self] | T![super] => {
|
||||
|
||||
// test pub_parens_typepath
|
||||
// struct B(pub (super::A));
|
||||
// struct B(pub (crate::A,));
|
||||
T![crate] | T![self] | T![super] if p.nth(2) != T![:] => {
|
||||
p.bump_any();
|
||||
p.bump_any();
|
||||
p.expect(T![')']);
|
||||
|
|
|
@ -0,0 +1,54 @@
|
|||
SOURCE_FILE@0..53
|
||||
STRUCT@0..25
|
||||
STRUCT_KW@0..6 "struct"
|
||||
WHITESPACE@6..7 " "
|
||||
NAME@7..8
|
||||
IDENT@7..8 "B"
|
||||
TUPLE_FIELD_LIST@8..24
|
||||
L_PAREN@8..9 "("
|
||||
TUPLE_FIELD@9..23
|
||||
VISIBILITY@9..12
|
||||
PUB_KW@9..12 "pub"
|
||||
WHITESPACE@12..13 " "
|
||||
PAREN_TYPE@13..23
|
||||
L_PAREN@13..14 "("
|
||||
PATH_TYPE@14..22
|
||||
PATH@14..22
|
||||
PATH@14..19
|
||||
PATH_SEGMENT@14..19
|
||||
SUPER_KW@14..19 "super"
|
||||
COLON2@19..21 "::"
|
||||
PATH_SEGMENT@21..22
|
||||
NAME_REF@21..22
|
||||
IDENT@21..22 "A"
|
||||
R_PAREN@22..23 ")"
|
||||
R_PAREN@23..24 ")"
|
||||
SEMICOLON@24..25 ";"
|
||||
WHITESPACE@25..26 "\n"
|
||||
STRUCT@26..52
|
||||
STRUCT_KW@26..32 "struct"
|
||||
WHITESPACE@32..33 " "
|
||||
NAME@33..34
|
||||
IDENT@33..34 "B"
|
||||
TUPLE_FIELD_LIST@34..51
|
||||
L_PAREN@34..35 "("
|
||||
TUPLE_FIELD@35..50
|
||||
VISIBILITY@35..38
|
||||
PUB_KW@35..38 "pub"
|
||||
WHITESPACE@38..39 " "
|
||||
TUPLE_TYPE@39..50
|
||||
L_PAREN@39..40 "("
|
||||
PATH_TYPE@40..48
|
||||
PATH@40..48
|
||||
PATH@40..45
|
||||
PATH_SEGMENT@40..45
|
||||
CRATE_KW@40..45 "crate"
|
||||
COLON2@45..47 "::"
|
||||
PATH_SEGMENT@47..48
|
||||
NAME_REF@47..48
|
||||
IDENT@47..48 "A"
|
||||
COMMA@48..49 ","
|
||||
R_PAREN@49..50 ")"
|
||||
R_PAREN@50..51 ")"
|
||||
SEMICOLON@51..52 ";"
|
||||
WHITESPACE@52..53 "\n"
|
|
@ -0,0 +1,2 @@
|
|||
struct B(pub (super::A));
|
||||
struct B(pub (crate::A,));
|
Loading…
Reference in a new issue