Skip to content

Commit c4c1d0a

Browse files
committed
---
yaml --- r: 23260 b: refs/heads/master c: 6319c8f h: refs/heads/master v: v3
1 parent e00b382 commit c4c1d0a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 3038968f2895df915ca397864e96338edaa32e4b
2+
refs/heads/master: 6319c8fbc4840e02ee325c6c10bd487ef06518fb
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be

trunk/src/libsyntax/parse/parser.rs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,16 @@ import ast::{_mod, add, alt_check, alt_exhaustive, arg, arm, attribute,
4040
lit_str, lit_uint, local, m_const, m_imm, m_mutbl, mac_, mac_aq,
4141
mac_ellipsis, mac_invoc, mac_invoc_tt, mac_var, matcher,
4242
match_nonterminal, match_seq, match_tok, method, mode, mt, mul,
43-
mutability, named_field, neg, noreturn, not, pat, pat_box, pat_enum,
44-
pat_ident, pat_lit, pat_range, pat_rec, pat_struct, pat_tup,
45-
pat_uniq, pat_wild, path, private, proto, proto_bare,
43+
mutability, named_field, neg, noreturn, not, pat, pat_box,
44+
pat_enum, pat_ident, pat_lit, pat_range, pat_rec, pat_struct,
45+
pat_tup, pat_uniq, pat_wild, path, private, proto, proto_bare,
4646
proto_block, proto_box, proto_uniq, provided, public, pure_fn,
4747
purity, re_anon, re_named, region, rem, required, ret_style,
4848
return_val, self_ty, shl, shr, stmt, stmt_decl, stmt_expr,
4949
stmt_semi, struct_def, struct_field, struct_variant_kind,
50-
subtract, sty_box,
51-
sty_by_ref, sty_region, sty_static, sty_uniq, sty_value,
52-
token_tree, trait_method, trait_ref, tt_delim, tt_seq, tt_tok,
53-
tt_nonterminal, ty, ty_, ty_bot, ty_box, ty_field, ty_fn,
50+
subtract, sty_box, sty_by_ref, sty_region, sty_static, sty_uniq,
51+
sty_value, token_tree, trait_method, trait_ref, tt_delim, tt_seq,
52+
tt_tok, tt_nonterminal, ty, ty_, ty_bot, ty_box, ty_field, ty_fn,
5453
ty_infer, ty_mac, ty_method, ty_nil, ty_param, ty_param_bound,
5554
ty_path, ty_ptr, ty_rec, ty_rptr, ty_tup, ty_u32, ty_uniq,
5655
ty_vec, ty_fixed_length, tuple_variant_kind, unchecked_blk, uniq,

trunk/src/rustc/metadata/encoder.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,8 @@ fn encode_info_for_class(ecx: @encode_ctxt, ebml_w: ebml::writer,
550550
named_field(nm, mt, vis) => {
551551
let id = field.node.id;
552552
vec::push(*index, {val: id, pos: ebml_w.writer.tell()});
553-
vec::push(*global_index, {val: id, pos: ebml_w.writer.tell()});
553+
vec::push(*global_index, {val: id,
554+
pos: ebml_w.writer.tell()});
554555
ebml_w.start_tag(tag_items_data_item);
555556
debug!{"encode_info_for_class: doing %s %d", *nm, id};
556557
encode_visibility(ebml_w, vis);

trunk/src/rustc/middle/typeck/check/method.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ class lookup {
411411
// subtypability. Collect the matches.
412412
let matches;
413413
match mode {
414-
subtyping_mode =>
414+
subtyping_mode =>
415415
matches = self.fcx.can_mk_subty(self.self_ty, impl_ty),
416416
assignability_mode =>
417417
matches = self.fcx.can_mk_assignty(self.self_expr,

0 commit comments

Comments
 (0)