Skip to content

Commit

Permalink
Remove support for multiple traits in a single impl
Browse files Browse the repository at this point in the history
There was half-working support for them, but they were never fully
implemented or even approved. Remove them altogether.

Closes rust-lang#3410
  • Loading branch information
catamorphism committed Sep 8, 2012
1 parent 62ab9d7 commit f5093df
Show file tree
Hide file tree
Showing 9 changed files with 44 additions and 35 deletions.
2 changes: 1 addition & 1 deletion src/libsyntax/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1267,7 +1267,7 @@ enum item_ {
item_class(@struct_def, ~[ty_param]),
item_trait(~[ty_param], ~[@trait_ref], ~[trait_method]),
item_impl(~[ty_param],
~[@trait_ref], /* traits this impl implements */
Option<@trait_ref>, /* (optional) trait this impl implements */
@ty, /* self */
~[@method]),
item_mac(mac),
Expand Down
8 changes: 4 additions & 4 deletions src/libsyntax/parse/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2571,11 +2571,11 @@ struct parser {


// Parse traits, if necessary.
let traits = if self.token == token::COLON {
let opt_trait = if self.token == token::COLON {
self.bump();
self.parse_trait_ref_list(token::LBRACE)
Some(self.parse_trait_ref())
} else {
~[]
None
};

let mut meths = ~[];
Expand All @@ -2584,7 +2584,7 @@ struct parser {
let vis = self.parse_visibility();
vec::push(meths, self.parse_method(vis));
}
(ident, item_impl(tps, traits, ty, meths), None)
(ident, item_impl(tps, opt_trait, ty, meths), None)
}

// Instantiates ident <i> with references to <typarams> as arguments.
Expand Down
13 changes: 7 additions & 6 deletions src/libsyntax/print/pprust.rs
Original file line number Diff line number Diff line change
Expand Up @@ -499,20 +499,21 @@ fn print_item(s: ps, &&item: @ast::item) {
print_struct(s, struct_def, tps, item.ident, item.span);
}

ast::item_impl(tps, traits, ty, methods) => {
ast::item_impl(tps, opt_trait, ty, methods) => {
head(s, ~"impl");
if tps.is_not_empty() {
print_type_params(s, tps);
space(s.s);
}
print_type(s, ty);

if vec::len(traits) != 0u {
word_space(s, ~":");
do commasep(s, inconsistent, traits) |s, p| {
print_path(s, p.path, false);
match opt_trait {
Some(t) => {
word_space(s, ~":");
print_path(s, t.path, false);
}
}
None => ()
};
space(s.s);

bopen(s);
Expand Down
7 changes: 2 additions & 5 deletions src/rustc/metadata/encoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ fn encode_info_for_item(ecx: @encode_ctxt, ebml_w: ebml::Writer, item: @item,
else { None }, tps);
}
}
item_impl(tps, traits, _, methods) => {
item_impl(tps, opt_trait, _, methods) => {
add_to_index();
ebml_w.start_tag(tag_items_data_item);
encode_def_id(ebml_w, local_def(item.id));
Expand All @@ -714,10 +714,7 @@ fn encode_info_for_item(ecx: @encode_ctxt, ebml_w: ebml::Writer, item: @item,
ebml_w.writer.write(str::to_bytes(def_to_str(local_def(m.id))));
ebml_w.end_tag();
}
if traits.len() > 1 {
fail ~"multiple traits!!";
}
for traits.each |associated_trait| {
do opt_trait.iter() |associated_trait| {
encode_trait_ref(ebml_w, ecx, associated_trait)
}
encode_path(ecx, ebml_w, path, ast_map::path_name(item.ident));
Expand Down
14 changes: 7 additions & 7 deletions src/rustc/middle/resolve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3532,7 +3532,7 @@ struct Resolver {
fn resolve_implementation(id: node_id,
span: span,
type_parameters: ~[ty_param],
trait_references: ~[@trait_ref],
opt_trait_reference: Option<@trait_ref>,
self_type: @ty,
methods: ~[@method],
visitor: ResolveVisitor) {
Expand All @@ -3549,10 +3549,10 @@ struct Resolver {

// Resolve the trait reference, if necessary.
let original_trait_refs = self.current_trait_refs;
if trait_references.len() >= 1 {
let mut new_trait_refs = @DVec();
for trait_references.each |trait_reference| {
match self.resolve_path(
match opt_trait_reference {
Some(trait_reference) => {
let new_trait_refs = @DVec();
match self.resolve_path(
trait_reference.path, TypeNS, true, visitor) {
None => {
self.session.span_err(span,
Expand All @@ -3566,11 +3566,11 @@ struct Resolver {
(*new_trait_refs).push(def_id_of_def(def));
}
}
}

// Record the current set of trait references.
self.current_trait_refs = Some(new_trait_refs);
}
None => ()
}

// Resolve the self type.
self.resolve_type(self_type, visitor);
Expand Down
8 changes: 4 additions & 4 deletions src/rustc/middle/ty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3121,13 +3121,13 @@ fn impl_traits(cx: ctxt, id: ast::def_id) -> ~[t] {
debug!("(impl_traits) searching for trait impl %?", id);
match cx.items.find(id.node) {
Some(ast_map::node_item(@{
node: ast::item_impl(_, trait_refs, _, _),
node: ast::item_impl(_, opt_trait, _, _),
_},
_)) => {

do vec::map(trait_refs) |trait_ref| {
node_id_to_type(cx, trait_ref.ref_id)
}
do option::map_default(opt_trait, ~[]) |trait_ref| {
~[node_id_to_type(cx, trait_ref.ref_id)]
}
}
Some(ast_map::node_item(@{node: ast::item_class(sd,_),
_},_)) => {
Expand Down
13 changes: 8 additions & 5 deletions src/rustc/middle/typeck/coherence.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,8 @@ struct CoherenceChecker {
self.crate_context.tcx.sess.str_of(item.ident));

match item.node {
item_impl(_, associated_traits, _, _) => {
self.check_implementation(item, associated_traits);
item_impl(_, opt_trait, _, _) => {
self.check_implementation(item, opt_trait.to_vec());
}
item_class(struct_def, _) => {
self.check_implementation(item, struct_def.traits);
Expand Down Expand Up @@ -432,7 +432,7 @@ struct CoherenceChecker {
// Then visit the module items.
visit_mod(module_, item.span, item.id, (), visitor);
}
item_impl(_, associated_traits, _, _) => {
item_impl(_, opt_trait, _, _) => {
match self.base_type_def_ids.find(
local_def(item.id)) {

Expand All @@ -453,7 +453,8 @@ struct CoherenceChecker {
// if the traits are defined in the same
// crate.

if associated_traits.len() == 0 {
match opt_trait {
None => {
// There is no trait to implement, so
// this is an error.

Expand All @@ -470,8 +471,10 @@ struct CoherenceChecker {
or new type \
instead");
}
_ => ()
}

for associated_traits.each |trait_ref| {
do opt_trait.iter() |trait_ref| {
// This is OK if and only if the
// trait was defined in this
// crate.
Expand Down
6 changes: 3 additions & 3 deletions src/rustdoc/tystr_pass.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,10 +243,10 @@ fn fold_impl(
let (trait_types, self_ty) = do astsrv::exec(srv) |ctxt| {
match ctxt.ast_map.get(doc.id()) {
ast_map::node_item(@{
node: ast::item_impl(_, trait_types, self_ty, _), _
node: ast::item_impl(_, opt_trait_type, self_ty, _), _
}, _) => {
let trait_types = vec::map(trait_types, |p| {
pprust::path_to_str(p.path, extract::interner())
let trait_types = opt_trait_type.map_default(~[], |p| {
~[pprust::path_to_str(p.path, extract::interner())]
});
(trait_types, Some(pprust::ty_to_str(self_ty,
extract::interner())))
Expand Down
8 changes: 8 additions & 0 deletions src/test/compile-fail/multitrait.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
struct S {
y: int;
}

impl S: Cmp, ToStr { //~ ERROR: expected `{` but found `,`
fn eq(&&other: S) { false }
fn to_str() -> ~str { ~"hi" }
}

0 comments on commit f5093df

Please sign in to comment.