@@ -24,7 +24,6 @@ use rustc_data_structures::captures::Captures;
24
24
use rustc_data_structures:: fx:: { FxHashMap , FxHashSet } ;
25
25
use rustc_errors:: { struct_span_err, Applicability , DiagnosticBuilder , ErrorGuaranteed , StashKey } ;
26
26
use rustc_hir as hir;
27
- use rustc_hir:: def:: CtorKind ;
28
27
use rustc_hir:: def_id:: { DefId , LocalDefId , LOCAL_CRATE } ;
29
28
use rustc_hir:: intravisit:: { self , Visitor } ;
30
29
use rustc_hir:: weak_lang_items:: WEAK_LANG_ITEMS ;
@@ -794,7 +793,7 @@ fn convert_enum_variant_types(tcx: TyCtxt<'_>, def_id: DefId) {
794
793
795
794
// Convert the ctor, if any. This also registers the variant as
796
795
// an item.
797
- if let Some ( ctor_def_id) = variant. ctor_def_id {
796
+ if let Some ( ctor_def_id) = variant. ctor_def_id ( ) {
798
797
convert_variant_ctor ( tcx, ctor_def_id. expect_local ( ) ) ;
799
798
}
800
799
}
@@ -803,7 +802,6 @@ fn convert_enum_variant_types(tcx: TyCtxt<'_>, def_id: DefId) {
803
802
fn convert_variant (
804
803
tcx : TyCtxt < ' _ > ,
805
804
variant_did : Option < LocalDefId > ,
806
- ctor_did : Option < LocalDefId > ,
807
805
ident : Ident ,
808
806
discr : ty:: VariantDiscr ,
809
807
def : & hir:: VariantData < ' _ > ,
@@ -840,10 +838,9 @@ fn convert_variant(
840
838
ty:: VariantDef :: new (
841
839
ident. name ,
842
840
variant_did. map ( LocalDefId :: to_def_id) ,
843
- ctor_did . map ( LocalDefId :: to_def_id) ,
841
+ def . ctor ( ) . map ( | ( kind , _ , def_id ) | ( kind , def_id . to_def_id ( ) ) ) ,
844
842
discr,
845
843
fields,
846
- CtorKind :: from_hir ( def) ,
847
844
adt_kind,
848
845
parent_did. to_def_id ( ) ,
849
846
recovered,
@@ -882,7 +879,6 @@ fn adt_def<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId) -> ty::AdtDef<'tcx> {
882
879
convert_variant (
883
880
tcx,
884
881
Some ( v. def_id ) ,
885
- v. data . ctor_def_id ( ) ,
886
882
v. ident ,
887
883
discr,
888
884
& v. data ,
@@ -894,35 +890,23 @@ fn adt_def<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId) -> ty::AdtDef<'tcx> {
894
890
895
891
( AdtKind :: Enum , variants)
896
892
}
897
- ItemKind :: Struct ( ref def, _) => {
898
- let variants = std:: iter:: once ( convert_variant (
899
- tcx,
900
- None ,
901
- def. ctor_def_id ( ) ,
902
- item. ident ,
903
- ty:: VariantDiscr :: Relative ( 0 ) ,
904
- def,
905
- AdtKind :: Struct ,
906
- def_id,
907
- ) )
908
- . collect ( ) ;
909
-
910
- ( AdtKind :: Struct , variants)
911
- }
912
- ItemKind :: Union ( ref def, _) => {
893
+ ItemKind :: Struct ( ref def, _) | ItemKind :: Union ( ref def, _) => {
894
+ let adt_kind = match item. kind {
895
+ ItemKind :: Struct ( ..) => AdtKind :: Struct ,
896
+ _ => AdtKind :: Union ,
897
+ } ;
913
898
let variants = std:: iter:: once ( convert_variant (
914
899
tcx,
915
900
None ,
916
- def. ctor_def_id ( ) ,
917
901
item. ident ,
918
902
ty:: VariantDiscr :: Relative ( 0 ) ,
919
903
def,
920
- AdtKind :: Union ,
904
+ adt_kind ,
921
905
def_id,
922
906
) )
923
907
. collect ( ) ;
924
908
925
- ( AdtKind :: Union , variants)
909
+ ( adt_kind , variants)
926
910
}
927
911
_ => bug ! ( ) ,
928
912
} ;
@@ -1171,7 +1155,7 @@ fn fn_sig(tcx: TyCtxt<'_>, def_id: DefId) -> ty::PolyFnSig<'_> {
1171
1155
compute_sig_of_foreign_fn_decl ( tcx, def_id. to_def_id ( ) , fn_decl, abi)
1172
1156
}
1173
1157
1174
- Ctor ( data) | Variant ( hir:: Variant { data, .. } ) if data. ctor_hir_id ( ) . is_some ( ) => {
1158
+ Ctor ( data) | Variant ( hir:: Variant { data, .. } ) if data. ctor ( ) . is_some ( ) => {
1175
1159
let ty = tcx. type_of ( tcx. hir ( ) . get_parent_item ( hir_id) ) ;
1176
1160
let inputs = data. fields ( ) . iter ( ) . map ( |f| tcx. type_of ( f. def_id ) ) ;
1177
1161
ty:: Binder :: dummy ( tcx. mk_fn_sig (
0 commit comments