1
Fork 0

show a message when we are showing limited slice of query stack

This commit is contained in:
hosseind75 2020-09-19 21:29:57 +04:30 committed by hosseind88
parent 2bfdd644dc
commit b6e9f08fbf
5 changed files with 7 additions and 0 deletions

View file

@ -127,6 +127,9 @@ impl<'tcx> TyCtxt<'tcx> {
pub fn try_print_query_stack(handler: &Handler, num_frames: Option<usize>) {
eprintln!("query stack during panic:");
if num_frames != None {
eprintln!("we're just showing a limited slice of the query stack");
}
// Be careful reyling on global state here: this code is called from
// a panic hook, which means that the global `Handler` may be in a weird
// state if it was responsible for triggering the panic.