diff options
author | Jonas Schievink <[email protected]> | 2020-12-04 19:26:28 +0000 |
---|---|---|
committer | Jonas Schievink <[email protected]> | 2020-12-04 19:26:28 +0000 |
commit | b9d947cc6f6f93e138781da8a7be123436166fd5 (patch) | |
tree | 0e16a8e3a0a4e3be09569038ade2c43035309caf /crates/ide_db | |
parent | 571f247fbc48de8fcdda278242efb27c118193b2 (diff) |
Add slightly more profiling details
Diffstat (limited to 'crates/ide_db')
-rw-r--r-- | crates/ide_db/src/defs.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide_db/src/defs.rs b/crates/ide_db/src/defs.rs index 201a3d6fa..5d2cd30d1 100644 --- a/crates/ide_db/src/defs.rs +++ b/crates/ide_db/src/defs.rs | |||
@@ -258,7 +258,7 @@ impl NameRefClass { | |||
258 | sema: &Semantics<RootDatabase>, | 258 | sema: &Semantics<RootDatabase>, |
259 | name_ref: &ast::NameRef, | 259 | name_ref: &ast::NameRef, |
260 | ) -> Option<NameRefClass> { | 260 | ) -> Option<NameRefClass> { |
261 | let _p = profile::span("classify_name_ref"); | 261 | let _p = profile::span("classify_name_ref").detail(|| name_ref.to_string()); |
262 | 262 | ||
263 | let parent = name_ref.syntax().parent()?; | 263 | let parent = name_ref.syntax().parent()?; |
264 | 264 | ||