File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1022,7 +1022,7 @@ impl<'a> Parser<'a> {
1022
1022
/// Parse a sequence, including the closing delimiter. The function
1023
1023
/// f must consume tokens until reaching the next separator or
1024
1024
/// closing bracket.
1025
- crate fn parse_seq_to_end < T , F > ( & mut self ,
1025
+ pub fn parse_seq_to_end < T , F > ( & mut self ,
1026
1026
ket : & token:: Token ,
1027
1027
sep : SeqSep ,
1028
1028
f : F )
@@ -1886,7 +1886,7 @@ impl<'a> Parser<'a> {
1886
1886
/// `a::b::C::<D>` (with disambiguator)
1887
1887
/// `Fn(Args)` (without disambiguator)
1888
1888
/// `Fn::(Args)` (with disambiguator)
1889
- crate fn parse_path ( & mut self , style : PathStyle ) -> PResult < ' a , ast:: Path > {
1889
+ pub fn parse_path ( & mut self , style : PathStyle ) -> PResult < ' a , ast:: Path > {
1890
1890
self . parse_path_common ( style, true )
1891
1891
}
1892
1892
You can’t perform that action at this time.
0 commit comments