rename to verbose-internals
This commit is contained in:
parent
558ac1cfb7
commit
b5d8361909
65 changed files with 91 additions and 80 deletions
|
@ -315,8 +315,11 @@ pub(crate) fn create_query_frame<
|
|||
ty::print::with_forced_impl_filename_line!(do_describe(tcx, key))
|
||||
)
|
||||
);
|
||||
let description =
|
||||
if tcx.sess.verbose() { format!("{description} [{name:?}]") } else { description };
|
||||
let description = if tcx.sess.verbose_internals() {
|
||||
format!("{description} [{name:?}]")
|
||||
} else {
|
||||
description
|
||||
};
|
||||
let span = if kind == dep_graph::dep_kinds::def_span || with_no_queries() {
|
||||
// The `def_span` query is used to calculate `default_span`,
|
||||
// so exit to avoid infinite recursion.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue