File tree 2 files changed +4
-4
lines changed
src/librustc_metadata/rmeta
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -822,7 +822,7 @@ impl EncodeContext<'tcx> {
822
822
} else {
823
823
bug!( )
824
824
} ;
825
- EntryKind :: AssocFn ( self . lazy( MethodData {
825
+ EntryKind :: AssocFn ( self . lazy( AssocFnData {
826
826
fn_data,
827
827
container,
828
828
has_self: trait_item. method_has_self_argument,
@@ -903,7 +903,7 @@ impl EncodeContext<'tcx> {
903
903
} else {
904
904
bug!( )
905
905
} ;
906
- EntryKind :: AssocFn ( self . lazy( MethodData {
906
+ EntryKind :: AssocFn ( self . lazy( AssocFnData {
907
907
fn_data,
908
908
container,
909
909
has_self: impl_item. method_has_self_argument,
Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ enum EntryKind {
305
305
Generator ( hir:: GeneratorKind ) ,
306
306
Trait ( Lazy < TraitData > ) ,
307
307
Impl ( Lazy < ImplData > ) ,
308
- AssocFn ( Lazy < MethodData > ) ,
308
+ AssocFn ( Lazy < AssocFnData > ) ,
309
309
AssocType ( AssocContainer ) ,
310
310
AssocOpaqueTy ( AssocContainer ) ,
311
311
AssocConst ( AssocContainer , mir:: ConstQualifs , Lazy < RenderedConst > ) ,
@@ -392,7 +392,7 @@ impl AssocContainer {
392
392
}
393
393
394
394
#[ derive( RustcEncodable , RustcDecodable ) ]
395
- struct MethodData {
395
+ struct AssocFnData {
396
396
fn_data : FnData ,
397
397
container : AssocContainer ,
398
398
has_self : bool ,
You can’t perform that action at this time.
0 commit comments