@@ -705,6 +705,7 @@ pub impl Parser {
705
705
@Ty { id : self . get_id ( ) , node : t, span : sp}
706
706
}
707
707
708
+ // parse the type following a @ or a ~
708
709
fn parse_box_or_uniq_pointee (
709
710
& self ,
710
711
sigil : ast:: Sigil ,
@@ -988,12 +989,8 @@ pub impl Parser {
988
989
.. copy * path }
989
990
}
990
991
992
+ /// parses 0 or 1 lifetime
991
993
fn parse_opt_lifetime ( & self ) -> Option < @ast:: Lifetime > {
992
- /*!
993
- *
994
- * Parses 0 or 1 lifetime.
995
- */
996
-
997
994
match * self . token {
998
995
token:: LIFETIME ( * ) => {
999
996
Some ( @self . parse_lifetime ( ) )
@@ -1022,12 +1019,9 @@ pub impl Parser {
1022
1019
}
1023
1020
}
1024
1021
1022
+ /// Parses a single lifetime
1023
+ // matches lifetime = ( LIFETIME ) | ( IDENT / )
1025
1024
fn parse_lifetime ( & self ) -> ast:: Lifetime {
1026
- /*!
1027
- *
1028
- * Parses a single lifetime.
1029
- */
1030
-
1031
1025
match * self . token {
1032
1026
token:: LIFETIME ( i) => {
1033
1027
let span = copy self . span ;
@@ -1147,6 +1141,9 @@ pub impl Parser {
1147
1141
}
1148
1142
}
1149
1143
1144
+ // at the bottom (top?) of the precedence hierarchy,
1145
+ // parse things like parenthesized exprs,
1146
+ // macros, return, etc.
1150
1147
fn parse_bottom_expr( & self ) -> @expr {
1151
1148
maybe_whole_expr!( self ) ;
1152
1149
@@ -1350,6 +1347,7 @@ pub impl Parser {
1350
1347
return self . mk_expr ( blk. span . lo , blk. span . hi , expr_block ( blk) ) ;
1351
1348
}
1352
1349
1350
+ // parse a.b or a(13) or just a
1353
1351
fn parse_dot_or_call_expr ( & self ) -> @expr {
1354
1352
let b = self . parse_bottom_expr ( ) ;
1355
1353
self . parse_dot_or_call_expr_with ( b)
@@ -1618,7 +1616,7 @@ pub impl Parser {
1618
1616
return spanned ( lo, self . span . hi , m) ;
1619
1617
}
1620
1618
1621
-
1619
+ // parse a prefix-operator expr
1622
1620
fn parse_prefix_expr ( & self ) -> @expr {
1623
1621
let lo = self . span . lo ;
1624
1622
let mut hi;
@@ -2552,11 +2550,14 @@ pub impl Parser {
2552
2550
}
2553
2551
2554
2552
fn parse_block ( & self ) -> blk {
2553
+ // disallow inner attrs:
2555
2554
let ( attrs, blk) = self . parse_inner_attrs_and_block ( false ) ;
2556
2555
assert ! ( vec:: is_empty( attrs) ) ;
2557
2556
return blk;
2558
2557
}
2559
2558
2559
+ // I claim the existence of the 'parse_attrs' flag strongly
2560
+ // suggests a name-change or refactoring for this function.
2560
2561
fn parse_inner_attrs_and_block( & self , parse_attrs : bool )
2561
2562
-> ( ~[ attribute ] , blk ) {
2562
2563
@@ -2597,6 +2598,7 @@ pub impl Parser {
2597
2598
self . parse_block_tail_ ( lo, s, ~[ ] )
2598
2599
}
2599
2600
2601
+ // parse the rest of a block expression or function body
2600
2602
fn parse_block_tail_ ( & self , lo : BytePos , s : blk_check_mode ,
2601
2603
+first_item_attrs : ~[ attribute ] ) -> blk {
2602
2604
let mut stmts = ~[ ] ;
@@ -2793,6 +2795,10 @@ pub impl Parser {
2793
2795
ast:: TyParam { ident : ident, id : self . get_id ( ) , bounds : bounds }
2794
2796
}
2795
2797
2798
+ // parse a set of optional generic type parameter declarations
2799
+ // matches generics = ( ) | ( < > ) | ( < typaramseq ( , )? > ) | ( < lifetimes ( , )? > )
2800
+ // | ( < lifetimes , typaramseq ( , )? > )
2801
+ // where typaramseq = ( typaram ) | ( typaram , typaramseq )
2796
2802
fn parse_generics ( & self ) -> ast:: Generics {
2797
2803
if self . eat ( & token:: LT ) {
2798
2804
let lifetimes = self . parse_lifetimes ( ) ;
@@ -2805,6 +2811,7 @@ pub impl Parser {
2805
2811
}
2806
2812
}
2807
2813
2814
+ // parse a generic use site
2808
2815
fn parse_generic_values (
2809
2816
& self ) -> ( OptVec < ast:: Lifetime > , ~[ @Ty ] )
2810
2817
{
@@ -3095,6 +3102,7 @@ pub impl Parser {
3095
3102
}
3096
3103
}
3097
3104
3105
+ // parse trait Foo { ... }
3098
3106
fn parse_item_trait ( & self ) -> item_info {
3099
3107
let ident = self . parse_ident ( ) ;
3100
3108
self . parse_region_param ( ) ;
@@ -3173,13 +3181,15 @@ pub impl Parser {
3173
3181
( ident, item_impl ( generics, opt_trait, ty, meths) , None )
3174
3182
}
3175
3183
3184
+ // parse a::B<~str,int>
3176
3185
fn parse_trait_ref ( & self ) -> @trait_ref {
3177
3186
@ast:: trait_ref {
3178
3187
path : self . parse_path_with_tps ( false ) ,
3179
3188
ref_id : self . get_id ( ) ,
3180
3189
}
3181
3190
}
3182
3191
3192
+ // parse B + C<~str,int> + D
3183
3193
fn parse_trait_ref_list ( & self , ket : & token:: Token ) -> ~[ @trait_ref ] {
3184
3194
self . parse_seq_to_before_end (
3185
3195
ket,
@@ -3188,6 +3198,7 @@ pub impl Parser {
3188
3198
)
3189
3199
}
3190
3200
3201
+ // parse struct Foo { ... }
3191
3202
fn parse_item_struct ( & self ) -> item_info {
3192
3203
let class_name = self . parse_ident ( ) ;
3193
3204
self . parse_region_param ( ) ;
@@ -3437,6 +3448,7 @@ pub impl Parser {
3437
3448
( id, item_const ( ty, e) , None )
3438
3449
}
3439
3450
3451
+ // parse a mod { ...} item
3440
3452
fn parse_item_mod ( & self , outer_attrs : ~[ ast:: attribute ] ) -> item_info {
3441
3453
let id_span = * self . span ;
3442
3454
let id = self . parse_ident ( ) ;
@@ -3693,7 +3705,7 @@ pub impl Parser {
3693
3705
}
3694
3706
} ;
3695
3707
3696
- // extern mod { ... }
3708
+ // extern mod foo { ... } or extern { ... }
3697
3709
if items_allowed && self . eat ( & token:: LBRACE ) {
3698
3710
let abis = opt_abis. get_or_default ( AbiSet :: C ( ) ) ;
3699
3711
@@ -3728,6 +3740,7 @@ pub impl Parser {
3728
3740
( lo, id)
3729
3741
}
3730
3742
3743
+ // parse type Foo = Bar;
3731
3744
fn parse_item_type ( & self ) -> item_info {
3732
3745
let ( _, ident) = self . parse_type_decl ( ) ;
3733
3746
self . parse_region_param ( ) ;
@@ -3738,6 +3751,7 @@ pub impl Parser {
3738
3751
( ident, item_ty ( ty, tps) , None )
3739
3752
}
3740
3753
3754
+ // parse obsolete region parameter
3741
3755
fn parse_region_param( & self ) {
3742
3756
if self . eat ( & token:: BINOP ( token:: SLASH ) ) {
3743
3757
self . obsolete ( * self . last_span , ObsoleteLifetimeNotation ) ;
@@ -3855,6 +3869,7 @@ pub impl Parser {
3855
3869
let generics = self . parse_generics ( ) ;
3856
3870
// Newtype syntax
3857
3871
if * self . token == token:: EQ {
3872
+ // enum x = ty;
3858
3873
self . bump ( ) ;
3859
3874
let ty = self . parse_ty ( false ) ;
3860
3875
self . expect ( & token:: SEMI ) ;
@@ -3879,6 +3894,7 @@ pub impl Parser {
3879
3894
None
3880
3895
) ;
3881
3896
}
3897
+ // enum X { ... }
3882
3898
self . expect ( & token:: LBRACE ) ;
3883
3899
3884
3900
let enum_definition = self . parse_enum_def ( & generics) ;
@@ -3982,7 +3998,7 @@ pub impl Parser {
3982
3998
( self . is_keyword ( & ~"const ") ||
3983
3999
( self . is_keyword ( & ~"static ") &&
3984
4000
!self . token_is_keyword ( & ~"fn ", & self . look_ahead ( 1 ) ) ) ) {
3985
- // CONST ITEM
4001
+ // CONST / STATIC ITEM
3986
4002
if self . is_keyword ( & ~"const ") {
3987
4003
self . obsolete ( * self . span , ObsoleteConstItem ) ;
3988
4004
}
@@ -3998,10 +4014,9 @@ pub impl Parser {
3998
4014
let item = self . parse_item_foreign_const ( visibility, attrs) ;
3999
4015
return iovi_foreign_item ( item) ;
4000
4016
}
4001
- if items_allowed &&
4002
- // FUNCTION ITEM (not sure about lookahead condition...)
4003
- self . is_keyword ( & ~"fn ") &&
4017
+ if items_allowed && self . is_keyword ( & ~"fn ") &&
4004
4018
!self . fn_expr_lookahead ( self . look_ahead ( 1 u) ) {
4019
+ // FUNCTION ITEM
4005
4020
self . bump ( ) ;
4006
4021
let ( ident, item_, extra_attrs) =
4007
4022
self . parse_item_fn ( impure_fn, AbiSet :: Rust ( ) ) ;
@@ -4010,7 +4025,7 @@ pub impl Parser {
4010
4025
maybe_append ( attrs, extra_attrs) ) ) ;
4011
4026
}
4012
4027
if items_allowed && self . eat_keyword ( & ~"pure") {
4013
- // PURE FUNCTION ITEM
4028
+ // PURE FUNCTION ITEM (obsolete)
4014
4029
self . obsolete ( * self . last_span , ObsoletePurity ) ;
4015
4030
self . expect_keyword ( & ~"fn ") ;
4016
4031
let ( ident, item_, extra_attrs) =
@@ -4188,6 +4203,12 @@ pub impl Parser {
4188
4203
return view_item_use ( self . parse_view_paths ( ) ) ;
4189
4204
}
4190
4205
4206
+
4207
+ // matches view_path : MOD? IDENT EQ non_global_path
4208
+ // | MOD? non_global_path MOD_SEP LBRACE RBRACE
4209
+ // | MOD? non_global_path MOD_SEP LBRACE ident_seq RBRACE
4210
+ // | MOD? non_global_path MOD_SEP STAR
4211
+ // | MOD? non_global_path
4191
4212
fn parse_view_path ( & self ) -> @view_path {
4192
4213
let lo = self . span . lo ;
4193
4214
@@ -4277,6 +4298,7 @@ pub impl Parser {
4277
4298
view_path_simple ( last, path, namespace, self . get_id ( ) ) ) ;
4278
4299
}
4279
4300
4301
+ // matches view_paths = view_path | view_path , view_paths
4280
4302
fn parse_view_paths ( & self ) -> ~[ @view_path ] {
4281
4303
let mut vp = ~[ self . parse_view_path ( ) ] ;
4282
4304
while * self . token == token:: COMMA {
@@ -4326,6 +4348,9 @@ pub impl Parser {
4326
4348
4327
4349
// Parses a sequence of items. Stops when it finds program
4328
4350
// text that can't be parsed as an item
4351
+ // - mod_items uses VIEW_ITEMS_AND_ITEMS_ALLOWED
4352
+ // - block_tail_ uses IMPORTS_AND_ITEMS_ALLOWED
4353
+ // - foreign_mod_items uses FOREIGN_ITEMS_ALLOWED
4329
4354
fn parse_items_and_view_items ( & self , +first_item_attrs: ~[ attribute] ,
4330
4355
mode: view_item_parse_mode,
4331
4356
macros_allowed: bool )
5 commit comments
bors commentedon Apr 10, 2013
saw approval from jbclements
at jbclements@9deb2f2
bors commentedon Apr 10, 2013
merging jbclements/rust/miscellaneous-cleanup = 9deb2f2 into auto
bors commentedon Apr 10, 2013
jbclements/rust/miscellaneous-cleanup = 9deb2f2 merged ok, testing candidate = 2c64983
bors commentedon Apr 10, 2013
all tests pass:
http://buildbot.rust-lang.org/builders/auto-linux/builds/803
http://buildbot.rust-lang.org/builders/auto-win/builds/799
http://buildbot.rust-lang.org/builders/auto-mac/builds/810
bors commentedon Apr 10, 2013
fast-forwarding incoming to auto = 2c64983