File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/librustc_metadata/rmeta Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -822,7 +822,7 @@ impl EncodeContext<'tcx> {
822822 } else {
823823 bug!( )
824824 } ;
825- EntryKind :: AssocFn ( self . lazy( MethodData {
825+ EntryKind :: AssocFn ( self . lazy( AssocFnData {
826826 fn_data,
827827 container,
828828 has_self: trait_item. method_has_self_argument,
@@ -903,7 +903,7 @@ impl EncodeContext<'tcx> {
903903 } else {
904904 bug!( )
905905 } ;
906- EntryKind :: AssocFn ( self . lazy( MethodData {
906+ EntryKind :: AssocFn ( self . lazy( AssocFnData {
907907 fn_data,
908908 container,
909909 has_self: impl_item. method_has_self_argument,
Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ enum EntryKind {
305305 Generator ( hir:: GeneratorKind ) ,
306306 Trait ( Lazy < TraitData > ) ,
307307 Impl ( Lazy < ImplData > ) ,
308- AssocFn ( Lazy < MethodData > ) ,
308+ AssocFn ( Lazy < AssocFnData > ) ,
309309 AssocType ( AssocContainer ) ,
310310 AssocOpaqueTy ( AssocContainer ) ,
311311 AssocConst ( AssocContainer , mir:: ConstQualifs , Lazy < RenderedConst > ) ,
@@ -392,7 +392,7 @@ impl AssocContainer {
392392}
393393
394394#[ derive( RustcEncodable , RustcDecodable ) ]
395- struct MethodData {
395+ struct AssocFnData {
396396 fn_data : FnData ,
397397 container : AssocContainer ,
398398 has_self : bool ,
You can’t perform that action at this time.
0 commit comments