File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -345,10 +345,7 @@ fn collect_items(
345345 let ast_id_map = db. ast_id_map ( tree_id. file_id ( ) ) ;
346346 let root = db. parse_or_expand ( tree_id. file_id ( ) ) . unwrap ( ) ;
347347 let call = ast_id_map. get ( call. ast_id ) . to_node ( & root) ;
348- let _cx = stdx:: panic_context:: enter ( format ! (
349- "collect_items MacroCall: {}\n expander={:#?}" ,
350- call, expander
351- ) ) ;
348+ let _cx = stdx:: panic_context:: enter ( format ! ( "collect_items MacroCall: {}" , call) ) ;
352349 let res = expander. enter_expand ( db, call) ;
353350
354351 if let Ok ( res) = res {
Original file line number Diff line number Diff line change @@ -1450,10 +1450,8 @@ pub(crate) fn impl_self_ty_recover(
14501450pub ( crate ) fn impl_trait_query ( db : & dyn HirDatabase , impl_id : ImplId ) -> Option < Binders < TraitRef > > {
14511451 let impl_data = db. impl_data ( impl_id) ;
14521452 let resolver = impl_id. resolver ( db. upcast ( ) ) ;
1453- let _cx = stdx:: panic_context:: enter ( format ! (
1454- "impl_trait_query({:?} -> {:?}) resolver={:#?}" ,
1455- impl_id, impl_data, resolver
1456- ) ) ;
1453+ let _cx =
1454+ stdx:: panic_context:: enter ( format ! ( "impl_trait_query({:?} -> {:?})" , impl_id, impl_data) ) ;
14571455 let ctx =
14581456 TyLoweringContext :: new ( db, & resolver) . with_type_param_mode ( TypeParamLoweringMode :: Variable ) ;
14591457 let ( self_ty, binders) = db. impl_self_ty ( impl_id) . into_value_and_skipped_binders ( ) ;
You can’t perform that action at this time.
0 commit comments