diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2012-04-25 17:18:06 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2012-04-25 17:19:36 -0700 |
| commit | 753b683939f41039ffefe98959faca8dc718c726 (patch) | |
| tree | 9f2e7c71e21bd9ad53a78fec0b7b78e40af934e2 /src/rustc | |
| parent | 90c1b4645f8972101d22f392c55f2188d9770ef7 (diff) | |
| download | rust-753b683939f41039ffefe98959faca8dc718c726.tar.gz rust-753b683939f41039ffefe98959faca8dc718c726.zip | |
More slice use in vec, io, str, ebml, metadata encoder and decoder.
Diffstat (limited to 'src/rustc')
| -rw-r--r-- | src/rustc/metadata/encoder.rs | 6 | ||||
| -rw-r--r-- | src/rustc/metadata/tyencode.rs | 52 |
2 files changed, 29 insertions, 29 deletions
diff --git a/src/rustc/metadata/encoder.rs b/src/rustc/metadata/encoder.rs index 8968be31ce7..ae3bc4e0a2c 100644 --- a/src/rustc/metadata/encoder.rs +++ b/src/rustc/metadata/encoder.rs @@ -62,7 +62,7 @@ fn encode_named_def_id(ebml_w: ebml::writer, name: str, id: def_id) { fn encode_mutability(ebml_w: ebml::writer, mt: class_mutability) { ebml_w.wr_tag(tag_class_mut) {|| ebml_w.writer.write([alt mt { class_immutable { 'i' } - class_mutable { 'm' } } as u8]); + class_mutable { 'm' } } as u8]/&); } } @@ -230,7 +230,7 @@ fn encode_reexport_paths(ebml_w: ebml::writer, // Item info table encoding fn encode_family(ebml_w: ebml::writer, c: char) { ebml_w.start_tag(tag_items_data_item_family); - ebml_w.writer.write([c as u8]); + ebml_w.writer.write([c as u8]/&); ebml_w.end_tag(); } @@ -1016,7 +1016,7 @@ fn encode_metadata(cx: @crate_ctxt, crate: @crate) -> [u8] { // Pad this, since something (LLVM, presumably) is cutting off the // remaining % 4 bytes. - buf_w.write([0u8, 0u8, 0u8, 0u8]); + buf_w.write([0u8, 0u8, 0u8, 0u8]/&); io::mem_buffer_buf(buf) } diff --git a/src/rustc/metadata/tyencode.rs b/src/rustc/metadata/tyencode.rs index ae7f47e2f31..763e710b07a 100644 --- a/src/rustc/metadata/tyencode.rs +++ b/src/rustc/metadata/tyencode.rs @@ -190,45 +190,45 @@ fn enc_sty(w: io::writer, cx: @ctxt, st: ty::sty) { alt t { ty_i { w.write_char('i'); } ty_char { w.write_char('c'); } - ty_i8 { w.write_str("MB"); } - ty_i16 { w.write_str("MW"); } - ty_i32 { w.write_str("ML"); } - ty_i64 { w.write_str("MD"); } + ty_i8 { w.write_str("MB"/&); } + ty_i16 { w.write_str("MW"/&); } + ty_i32 { w.write_str("ML"/&); } + ty_i64 { w.write_str("MD"/&); } } } ty::ty_uint(t) { alt t { ty_u { w.write_char('u'); } - ty_u8 { w.write_str("Mb"); } - ty_u16 { w.write_str("Mw"); } - ty_u32 { w.write_str("Ml"); } - ty_u64 { w.write_str("Md"); } + ty_u8 { w.write_str("Mb"/&); } + ty_u16 { w.write_str("Mw"/&); } + ty_u32 { w.write_str("Ml"/&); } + ty_u64 { w.write_str("Md"/&); } } } ty::ty_float(t) { alt t { ty_f { w.write_char('l'); } - ty_f32 { w.write_str("Mf"); } - ty_f64 { w.write_str("MF"); } + ty_f32 { w.write_str("Mf"/&); } + ty_f64 { w.write_str("MF"/&); } } } ty::ty_str { w.write_char('S'); } ty::ty_enum(def, substs) { - w.write_str("t["); + w.write_str("t["/&); w.write_str(cx.ds(def)); w.write_char('|'); enc_substs(w, cx, substs); w.write_char(']'); } ty::ty_iface(def, tys) { - w.write_str("x["); + w.write_str("x["/&); w.write_str(cx.ds(def)); w.write_char('|'); for tys.each {|t| enc_ty(w, cx, t); } w.write_char(']'); } ty::ty_tup(ts) { - w.write_str("T["); + w.write_str("T["/&); for ts.each {|t| enc_ty(w, cx, t); } w.write_char(']'); } @@ -251,7 +251,7 @@ fn enc_sty(w: io::writer, cx: @ctxt, st: ty::sty) { } ty::ty_vec(mt) { w.write_char('I'); enc_mt(w, cx, mt); } ty::ty_rec(fields) { - w.write_str("R["); + w.write_str("R["/&); for fields.each {|field| w.write_str(field.ident); w.write_char('='); @@ -264,7 +264,7 @@ fn enc_sty(w: io::writer, cx: @ctxt, st: ty::sty) { enc_ty_fn(w, cx, f); } ty::ty_res(def, ty, substs) { - w.write_str("r["); + w.write_str("r["/&); w.write_str(cx.ds(def)); w.write_char('|'); enc_ty(w, cx, ty); @@ -282,16 +282,16 @@ fn enc_sty(w: io::writer, cx: @ctxt, st: ty::sty) { w.write_str(uint::str(id)); } ty::ty_self(tps) { - w.write_str("s["); + w.write_str("s["/&); for tps.each {|t| enc_ty(w, cx, t); } w.write_char(']'); } ty::ty_type { w.write_char('Y'); } - ty::ty_opaque_closure_ptr(ty::ck_block) { w.write_str("C&"); } - ty::ty_opaque_closure_ptr(ty::ck_box) { w.write_str("C@"); } - ty::ty_opaque_closure_ptr(ty::ck_uniq) { w.write_str("C~"); } + ty::ty_opaque_closure_ptr(ty::ck_block) { w.write_str("C&"/&); } + ty::ty_opaque_closure_ptr(ty::ck_box) { w.write_str("C@"/&); } + ty::ty_opaque_closure_ptr(ty::ck_uniq) { w.write_str("C~"/&); } ty::ty_constr(ty, cs) { - w.write_str("A["); + w.write_str("A["/&); enc_ty(w, cx, ty); for cs.each {|tc| enc_ty_constr(w, cx, tc); } w.write_char(']'); @@ -299,12 +299,12 @@ fn enc_sty(w: io::writer, cx: @ctxt, st: ty::sty) { ty::ty_opaque_box { w.write_char('B'); } ty::ty_class(def, substs) { #debug("~~~~ %s", "a["); - w.write_str("a["); + w.write_str("a["/&); let s = cx.ds(def); #debug("~~~~ %s", s); w.write_str(s); #debug("~~~~ %s", "|"); - w.write_str("|"); + w.write_char('|'); enc_substs(w, cx, substs); #debug("~~~~ %s", "]"); w.write_char(']'); @@ -313,11 +313,11 @@ fn enc_sty(w: io::writer, cx: @ctxt, st: ty::sty) { } fn enc_proto(w: io::writer, proto: proto) { alt proto { - proto_uniq { w.write_str("f~"); } - proto_box { w.write_str("f@"); } + proto_uniq { w.write_str("f~"/&); } + proto_box { w.write_str("f@"/&); } proto_block { w.write_str("f&"); } - proto_any { w.write_str("f*"); } - proto_bare { w.write_str("fn"); } + proto_any { w.write_str("f*"/&); } + proto_bare { w.write_str("fn"/&); } } } |
