We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 545cdf9 commit b1a4784Copy full SHA for b1a4784
crates/hir_def/src/nameres/path_resolution.rs
@@ -178,6 +178,11 @@ impl DefMap {
178
path: &ModPath,
179
shadow: BuiltinShadowMode,
180
) -> ResolvePathResult {
181
+ let _cx = stdx::panic_context::enter(format!(
182
+ "DefMap {:?} {:?} path {}",
183
+ self.krate, self.block, path
184
+ ));
185
+
186
let mut segments = path.segments().iter().enumerate();
187
let mut curr_per_ns: PerNs = match path.kind {
188
PathKind::DollarCrate(krate) => {
0 commit comments