Unnamed repository; edit this file 'description' to name the repository.
Merge #10095
10095: internal: Augment panic context when resolving path r=jonas-schievink a=jonas-schievink Should help with debugging https://github.com/rust-analyzer/rust-analyzer/issues/10084 and similar issues. Might have a perf impact since the string is created on every function call. Co-authored-by: Jonas Schievink <[email protected]>
bors[bot] 2021-08-31
parent 4786a22 · parent b1a4784 · commit aa1cdc0
-rw-r--r--crates/hir_def/src/nameres/path_resolution.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/crates/hir_def/src/nameres/path_resolution.rs b/crates/hir_def/src/nameres/path_resolution.rs
index 3beab9dcc3..667d31e6fa 100644
--- a/crates/hir_def/src/nameres/path_resolution.rs
+++ b/crates/hir_def/src/nameres/path_resolution.rs
@@ -178,6 +178,11 @@ impl DefMap {
path: &ModPath,
shadow: BuiltinShadowMode,
) -> ResolvePathResult {
+ let _cx = stdx::panic_context::enter(format!(
+ "DefMap {:?} {:?} path {}",
+ self.krate, self.block, path
+ ));
+
let mut segments = path.segments().iter().enumerate();
let mut curr_per_ns: PerNs = match path.kind {
PathKind::DollarCrate(krate) => {