@@ -611,8 +611,6 @@ trait rbml_writer_helpers<'tcx> {
611
611
fn emit_region ( & mut self , ecx : & e:: EncodeContext , r : ty:: Region ) ;
612
612
fn emit_ty < ' a > ( & mut self , ecx : & e:: EncodeContext < ' a , ' tcx > , ty : Ty < ' tcx > ) ;
613
613
fn emit_tys < ' a > ( & mut self , ecx : & e:: EncodeContext < ' a , ' tcx > , tys : & [ Ty < ' tcx > ] ) ;
614
- fn emit_type_param_def < ' a > ( & mut self , ecx : & e:: EncodeContext < ' a , ' tcx > ,
615
- type_param_def : & ty:: TypeParameterDef < ' tcx > ) ;
616
614
fn emit_predicate < ' a > ( & mut self , ecx : & e:: EncodeContext < ' a , ' tcx > ,
617
615
predicate : & ty:: Predicate < ' tcx > ) ;
618
616
fn emit_trait_ref < ' a > ( & mut self , ecx : & e:: EncodeContext < ' a , ' tcx > ,
@@ -657,15 +655,6 @@ impl<'a, 'tcx> rbml_writer_helpers<'tcx> for Encoder<'a> {
657
655
self . emit_opaque ( |this| Ok ( e:: write_trait_ref ( ecx, this, trait_ref) ) ) ;
658
656
}
659
657
660
- fn emit_type_param_def < ' b > ( & mut self , ecx : & e:: EncodeContext < ' b , ' tcx > ,
661
- type_param_def : & ty:: TypeParameterDef < ' tcx > ) {
662
- self . emit_opaque ( |this| {
663
- Ok ( tyencode:: enc_type_param_def ( this,
664
- & ecx. ty_str_ctxt ( ) ,
665
- type_param_def) )
666
- } ) ;
667
- }
668
-
669
658
fn emit_predicate < ' b > ( & mut self , ecx : & e:: EncodeContext < ' b , ' tcx > ,
670
659
predicate : & ty:: Predicate < ' tcx > ) {
671
660
self . emit_opaque ( |this| {
@@ -894,13 +883,6 @@ fn encode_side_tables_for_id(ecx: &e::EncodeContext,
894
883
}
895
884
}
896
885
897
- if let Some ( type_param_def) = tcx. ty_param_defs . borrow ( ) . get ( & id) {
898
- rbml_w. tag ( c:: tag_table_param_defs, |rbml_w| {
899
- rbml_w. id ( id) ;
900
- rbml_w. emit_type_param_def ( ecx, type_param_def)
901
- } )
902
- }
903
-
904
886
let method_call = ty:: MethodCall :: expr ( id) ;
905
887
if let Some ( method) = tcx. tables . borrow ( ) . method_map . get ( & method_call) {
906
888
rbml_w. tag ( c:: tag_table_method_map, |rbml_w| {
@@ -985,8 +967,6 @@ trait rbml_decoder_decoder_helpers<'tcx> {
985
967
-> ty:: TraitRef < ' tcx > ;
986
968
fn read_poly_trait_ref < ' a , ' b > ( & mut self , dcx : & DecodeContext < ' a , ' b , ' tcx > )
987
969
-> ty:: PolyTraitRef < ' tcx > ;
988
- fn read_type_param_def < ' a , ' b > ( & mut self , dcx : & DecodeContext < ' a , ' b , ' tcx > )
989
- -> ty:: TypeParameterDef < ' tcx > ;
990
970
fn read_predicate < ' a , ' b > ( & mut self , dcx : & DecodeContext < ' a , ' b , ' tcx > )
991
971
-> ty:: Predicate < ' tcx > ;
992
972
fn read_existential_bounds < ' a , ' b > ( & mut self , dcx : & DecodeContext < ' a , ' b , ' tcx > )
@@ -1105,11 +1085,6 @@ impl<'a, 'tcx> rbml_decoder_decoder_helpers<'tcx> for reader::Decoder<'a> {
1105
1085
ty:: Binder ( self . read_ty_encoded ( dcx, |decoder| decoder. parse_trait_ref ( ) ) )
1106
1086
}
1107
1087
1108
- fn read_type_param_def < ' b , ' c > ( & mut self , dcx : & DecodeContext < ' b , ' c , ' tcx > )
1109
- -> ty:: TypeParameterDef < ' tcx > {
1110
- self . read_ty_encoded ( dcx, |decoder| decoder. parse_type_param_def ( ) )
1111
- }
1112
-
1113
1088
fn read_predicate < ' b , ' c > ( & mut self , dcx : & DecodeContext < ' b , ' c , ' tcx > )
1114
1089
-> ty:: Predicate < ' tcx >
1115
1090
{
@@ -1351,10 +1326,6 @@ fn decode_side_tables(dcx: &DecodeContext,
1351
1326
let ub = val_dsr. read_upvar_capture ( dcx) ;
1352
1327
dcx. tcx . tables . borrow_mut ( ) . upvar_capture_map . insert ( upvar_id, ub) ;
1353
1328
}
1354
- c:: tag_table_param_defs => {
1355
- let bounds = val_dsr. read_type_param_def ( dcx) ;
1356
- dcx. tcx . ty_param_defs . borrow_mut ( ) . insert ( id, bounds) ;
1357
- }
1358
1329
c:: tag_table_method_map => {
1359
1330
let ( autoderef, method) = val_dsr. read_method_callee ( dcx) ;
1360
1331
let method_call = ty:: MethodCall {
0 commit comments