We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd6683c commit 9fd075fCopy full SHA for 9fd075f
src/librustc/metadata/encoder.rs
@@ -1196,6 +1196,7 @@ fn encode_info_for_item(ecx: &EncodeContext,
1196
&Required(ref tm) => {
1197
encode_attributes(ebml_w, tm.attrs.as_slice());
1198
encode_method_sort(ebml_w, 'r');
1199
+ encode_method_argument_names(ebml_w, &*tm.decl);
1200
}
1201
1202
&Provided(m) => {
@@ -1210,6 +1211,7 @@ fn encode_info_for_item(ecx: &EncodeContext,
1210
1211
encode_method_sort(ebml_w, 'p');
1212
encode_inlined_item(ecx, ebml_w,
1213
IIMethodRef(def_id, true, m));
1214
+ encode_method_argument_names(ebml_w, &*m.decl);
1215
1216
1217
0 commit comments