@@ -3587,7 +3587,7 @@ impl<'a> Parser<'a> {
3587
3587
}
3588
3588
3589
3589
fn parse_pat_range_end ( & mut self ) -> PResult < ' a , P < Expr > > {
3590
- if self . is_path_start ( ) {
3590
+ if self . token . is_path_start ( ) {
3591
3591
let lo = self . span . lo ;
3592
3592
let ( qself, path) = if self . eat_lt ( ) {
3593
3593
// Parse a qualified path
@@ -3605,12 +3605,6 @@ impl<'a> Parser<'a> {
3605
3605
}
3606
3606
}
3607
3607
3608
- fn is_path_start ( & self ) -> bool {
3609
- ( self . token == token:: Lt || self . token == token:: ModSep
3610
- || self . token . is_ident ( ) || self . token . is_path ( ) )
3611
- && !self . token . is_keyword ( keywords:: True ) && !self . token . is_keyword ( keywords:: False )
3612
- }
3613
-
3614
3608
/// Parse a pattern.
3615
3609
pub fn parse_pat ( & mut self ) -> PResult < ' a , P < Pat > > {
3616
3610
maybe_whole ! ( self , NtPat ) ;
@@ -3661,7 +3655,7 @@ impl<'a> Parser<'a> {
3661
3655
// Parse box pat
3662
3656
let subpat = self . parse_pat ( ) ?;
3663
3657
pat = PatKind :: Box ( subpat) ;
3664
- } else if self . is_path_start ( ) {
3658
+ } else if self . token . is_path_start ( ) {
3665
3659
// Parse pattern starting with a path
3666
3660
if self . token . is_plain_ident ( ) && self . look_ahead ( 1 , |t| * t != token:: DotDotDot &&
3667
3661
* t != token:: OpenDelim ( token:: Brace ) &&
@@ -4930,7 +4924,7 @@ impl<'a> Parser<'a> {
4930
4924
4931
4925
let mut attrs = self . parse_outer_attributes ( ) ?;
4932
4926
let lo = self . span . lo ;
4933
- let vis = self . parse_visibility ( true ) ?;
4927
+ let vis = self . parse_visibility ( ) ?;
4934
4928
let defaultness = self . parse_defaultness ( ) ?;
4935
4929
let ( name, node) = if self . eat_keyword ( keywords:: Type ) {
4936
4930
let name = self . parse_ident ( ) ?;
@@ -5242,7 +5236,7 @@ impl<'a> Parser<'a> {
5242
5236
|p| {
5243
5237
let attrs = p. parse_outer_attributes ( ) ?;
5244
5238
let lo = p. span . lo ;
5245
- let vis = p. parse_visibility ( false ) ?;
5239
+ let vis = p. parse_visibility ( ) ?;
5246
5240
let ty = p. parse_ty_sum ( ) ?;
5247
5241
Ok ( StructField {
5248
5242
span : mk_sp ( lo, p. span . hi ) ,
@@ -5283,24 +5277,28 @@ impl<'a> Parser<'a> {
5283
5277
/// Parse an element of a struct definition
5284
5278
fn parse_struct_decl_field ( & mut self ) -> PResult < ' a , StructField > {
5285
5279
let attrs = self . parse_outer_attributes ( ) ?;
5286
- let vis = self . parse_visibility ( true ) ?;
5280
+ let vis = self . parse_visibility ( ) ?;
5287
5281
self . parse_single_struct_field ( vis, attrs)
5288
5282
}
5289
5283
5290
- fn parse_visibility ( & mut self , allow_restricted : bool ) -> PResult < ' a , Visibility > {
5284
+ fn parse_visibility ( & mut self ) -> PResult < ' a , Visibility > {
5291
5285
if !self . eat_keyword ( keywords:: Pub ) {
5292
5286
Ok ( Visibility :: Inherited )
5293
- } else if !allow_restricted || !self . eat ( & token:: OpenDelim ( token:: Paren ) ) {
5287
+ } else if !self . check ( & token:: OpenDelim ( token:: Paren ) ) ||
5288
+ !self . look_ahead ( 1 , |t| t. is_path_start ( ) ) {
5294
5289
Ok ( Visibility :: Public )
5295
- } else if self . eat_keyword ( keywords:: Crate ) {
5296
- let span = self . last_span ;
5297
- self . expect ( & token:: CloseDelim ( token:: Paren ) ) ?;
5298
- Ok ( Visibility :: Crate ( span) )
5299
5290
} else {
5300
- let path = self . with_res ( Restrictions :: ALLOW_MODULE_PATHS ,
5301
- |this| this. parse_path ( NoTypesAllowed ) ) ?;
5302
- self . expect ( & token:: CloseDelim ( token:: Paren ) ) ?;
5303
- Ok ( Visibility :: Restricted { path : P ( path) , id : ast:: DUMMY_NODE_ID } )
5291
+ self . bump ( ) ;
5292
+ if self . eat_keyword ( keywords:: Crate ) {
5293
+ let span = self . last_span ;
5294
+ self . expect ( & token:: CloseDelim ( token:: Paren ) ) ?;
5295
+ Ok ( Visibility :: Crate ( span) )
5296
+ } else {
5297
+ let path = self . with_res ( Restrictions :: ALLOW_MODULE_PATHS ,
5298
+ |this| this. parse_path ( NoTypesAllowed ) ) ?;
5299
+ self . expect ( & token:: CloseDelim ( token:: Paren ) ) ?;
5300
+ Ok ( Visibility :: Restricted { path : P ( path) , id : ast:: DUMMY_NODE_ID } )
5301
+ }
5304
5302
}
5305
5303
}
5306
5304
@@ -5763,7 +5761,7 @@ impl<'a> Parser<'a> {
5763
5761
5764
5762
let lo = self . span . lo ;
5765
5763
5766
- let visibility = self . parse_visibility ( true ) ?;
5764
+ let visibility = self . parse_visibility ( ) ?;
5767
5765
5768
5766
if self . eat_keyword ( keywords:: Use ) {
5769
5767
// USE ITEM
@@ -6013,7 +6011,7 @@ impl<'a> Parser<'a> {
6013
6011
fn parse_foreign_item ( & mut self ) -> PResult < ' a , Option < ForeignItem > > {
6014
6012
let attrs = self . parse_outer_attributes ( ) ?;
6015
6013
let lo = self . span . lo ;
6016
- let visibility = self . parse_visibility ( true ) ?;
6014
+ let visibility = self . parse_visibility ( ) ?;
6017
6015
6018
6016
if self . check_keyword ( keywords:: Static ) {
6019
6017
// FOREIGN STATIC ITEM
0 commit comments