@@ -113,7 +113,7 @@ pub struct Lifetime {
113113#[auto_encode] 
114114#[auto_decode] 
115115#[deriving(Eq)] 
116- pub struct path  { 
116+ pub struct Path  { 
117117    span: span, 
118118    global: bool, 
119119    idents: ~[ident], 
@@ -300,10 +300,10 @@ pub enum pat_ {
300300    // which it is. The resolver determines this, and 
301301    // records this pattern's node_id in an auxiliary 
302302    // set (of " pat_idents that refer to nullary enums") 
303-     pat_ident(binding_mode, @path , Option<@pat>), 
304-     pat_enum(@path , Option<~[@pat]>), /* " none" means a * pattern where 
303+     pat_ident(binding_mode, @Path , Option<@pat>), 
304+     pat_enum(@Path , Option<~[@pat]>), /* " none" means a * pattern where 
305305                                       * we don't bind the fields to names */ 
306-     pat_struct(@path , ~[field_pat], bool), 
306+     pat_struct(@Path , ~[field_pat], bool), 
307307    pat_tup(~[@pat]), 
308308    pat_box(@pat), 
309309    pat_uniq(@pat), 
@@ -566,7 +566,7 @@ pub enum expr_ {
566566    expr_assign_op(binop, @expr, @expr), 
567567    expr_field(@expr, ident, ~[@Ty]), 
568568    expr_index(@expr, @expr), 
569-     expr_path(@path ), 
569+     expr_path(@Path ), 
570570    expr_addr_of(mutability, @expr), 
571571    expr_break(Option<ident>), 
572572    expr_again(Option<ident>), 
@@ -578,7 +578,7 @@ pub enum expr_ {
578578    expr_mac(mac), 
579579
580580    // A struct literal expression. 
581-     expr_struct(@path , ~[field], Option<@expr>), 
581+     expr_struct(@Path , ~[field], Option<@expr>), 
582582
583583    // A vector literal constructed from one repeated element. 
584584    expr_repeat(@expr /* element */, @expr /* count */, mutability), 
@@ -696,7 +696,7 @@ pub type mac = spanned<mac_>;
696696#[auto_decode] 
697697#[deriving(Eq)] 
698698pub enum mac_ { 
699-     mac_invoc_tt(@path ,~[token_tree]),   // new macro-invocation 
699+     mac_invoc_tt(@Path ,~[token_tree]),   // new macro-invocation 
700700} 
701701
702702pub type lit = spanned<lit_>; 
@@ -893,7 +893,7 @@ pub enum ty_ {
893893    ty_closure(@TyClosure), 
894894    ty_bare_fn(@TyBareFn), 
895895    ty_tup(~[@Ty]), 
896-     ty_path(@path , node_id), 
896+     ty_path(@Path , node_id), 
897897    ty_mac(mac), 
898898    // ty_infer means the type should be inferred instead of it having been 
899899    // specified. This should only appear at the " top level" of a type and not 
@@ -1117,13 +1117,13 @@ pub enum view_path_ {
11171117    // or just 
11181118    // 
11191119    // foo::bar::baz  (with 'baz =' implicitly on the left) 
1120-     view_path_simple(ident, @path , namespace, node_id), 
1120+     view_path_simple(ident, @Path , namespace, node_id), 
11211121
11221122    // foo::bar::* 
1123-     view_path_glob(@path , node_id), 
1123+     view_path_glob(@Path , node_id), 
11241124
11251125    // foo::bar::{a,b,c} 
1126-     view_path_list(@path , ~[path_list_ident], node_id) 
1126+     view_path_list(@Path , ~[path_list_ident], node_id) 
11271127} 
11281128
11291129#[auto_encode] 
@@ -1176,7 +1176,7 @@ pub struct attribute_ {
11761176#[ auto_decode] 
11771177#[ deriving( Eq ) ] 
11781178pub  struct  trait_ref { 
1179-     path:  @path , 
1179+     path:  @Path , 
11801180    ref_id:  node_id, 
11811181} 
11821182
0 commit comments