diff options
Diffstat (limited to 'crates/ra_db/src')
-rw-r--r-- | crates/ra_db/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/ra_db/src/lib.rs b/crates/ra_db/src/lib.rs index f25be24fe..795d7d2b6 100644 --- a/crates/ra_db/src/lib.rs +++ b/crates/ra_db/src/lib.rs | |||
@@ -5,7 +5,6 @@ pub mod fixture; | |||
5 | 5 | ||
6 | use std::{panic, sync::Arc}; | 6 | use std::{panic, sync::Arc}; |
7 | 7 | ||
8 | use ra_prof::profile; | ||
9 | use ra_syntax::{ast, Parse, SourceFile, TextRange, TextSize}; | 8 | use ra_syntax::{ast, Parse, SourceFile, TextRange, TextSize}; |
10 | use rustc_hash::FxHashSet; | 9 | use rustc_hash::FxHashSet; |
11 | 10 | ||
@@ -113,7 +112,7 @@ pub trait SourceDatabase: CheckCanceled + FileLoader + std::fmt::Debug { | |||
113 | } | 112 | } |
114 | 113 | ||
115 | fn parse_query(db: &dyn SourceDatabase, file_id: FileId) -> Parse<ast::SourceFile> { | 114 | fn parse_query(db: &dyn SourceDatabase, file_id: FileId) -> Parse<ast::SourceFile> { |
116 | let _p = profile("parse_query").detail(|| format!("{:?}", file_id)); | 115 | let _p = profile::span("parse_query").detail(|| format!("{:?}", file_id)); |
117 | let text = db.file_text(file_id); | 116 | let text = db.file_text(file_id); |
118 | SourceFile::parse(&*text) | 117 | SourceFile::parse(&*text) |
119 | } | 118 | } |