Rename convert_class_item to convert_field.
This commit is contained in:
@@ -278,7 +278,7 @@ fn check_methods_against_trait(ccx: @crate_ctxt,
|
||||
} // |if_m|
|
||||
} // fn
|
||||
|
||||
fn convert_class_item(ccx: @crate_ctxt,
|
||||
fn convert_field(ccx: @crate_ctxt,
|
||||
rp: bool,
|
||||
bounds: @~[ty::param_bounds],
|
||||
v: ast_util::ivar) {
|
||||
@@ -391,7 +391,7 @@ fn convert(ccx: @crate_ctxt, it: @ast::item) {
|
||||
// Write the type of each of the members
|
||||
let (fields, methods) = split_class_items(members);
|
||||
for fields.each |f| {
|
||||
convert_class_item(ccx, rp, tpt.bounds, f);
|
||||
convert_field(ccx, rp, tpt.bounds, f);
|
||||
}
|
||||
let {bounds, substs} = mk_substs(ccx, tps, rp);
|
||||
let selfty = ty::mk_class(tcx, local_def(it.id), substs);
|
||||
|
||||
Reference in New Issue
Block a user