rustc: Encode argument names for traits

This ensures that rustdoc can properly document inlined traits across crates.

Closes #14670
This commit is contained in:
Alex Crichton 2014-06-05 10:07:19 -07:00
parent bd6683c729
commit 9fd075f5af
1 changed files with 2 additions and 0 deletions

View File

@ -1196,6 +1196,7 @@ fn encode_info_for_item(ecx: &EncodeContext,
&Required(ref tm) => {
encode_attributes(ebml_w, tm.attrs.as_slice());
encode_method_sort(ebml_w, 'r');
encode_method_argument_names(ebml_w, &*tm.decl);
}
&Provided(m) => {
@ -1210,6 +1211,7 @@ fn encode_info_for_item(ecx: &EncodeContext,
encode_method_sort(ebml_w, 'p');
encode_inlined_item(ecx, ebml_w,
IIMethodRef(def_id, true, m));
encode_method_argument_names(ebml_w, &*m.decl);
}
}