diff options
Diffstat (limited to 'crates/ra_db/src')
-rw-r--r-- | crates/ra_db/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_db/src/lib.rs b/crates/ra_db/src/lib.rs index 2664dc69a..6e17f33f0 100644 --- a/crates/ra_db/src/lib.rs +++ b/crates/ra_db/src/lib.rs | |||
@@ -71,7 +71,7 @@ pub trait SourceDatabase: salsa::Database + CheckCanceled { | |||
71 | #[salsa::input] | 71 | #[salsa::input] |
72 | fn file_text(&self, file_id: FileId) -> Arc<String>; | 72 | fn file_text(&self, file_id: FileId) -> Arc<String>; |
73 | // Parses the file into the syntax tree. | 73 | // Parses the file into the syntax tree. |
74 | fn source_file(&self, file_id: FileId) -> TreeArc<SourceFile>; | 74 | fn parse(&self, file_id: FileId) -> TreeArc<SourceFile>; |
75 | /// Path to a file, relative to the root of its source root. | 75 | /// Path to a file, relative to the root of its source root. |
76 | #[salsa::input] | 76 | #[salsa::input] |
77 | fn file_relative_path(&self, file_id: FileId) -> RelativePathBuf; | 77 | fn file_relative_path(&self, file_id: FileId) -> RelativePathBuf; |
@@ -98,7 +98,7 @@ fn source_root_crates(db: &impl SourceDatabase, id: SourceRootId) -> Arc<Vec<Cra | |||
98 | Arc::new(res) | 98 | Arc::new(res) |
99 | } | 99 | } |
100 | 100 | ||
101 | fn source_file(db: &impl SourceDatabase, file_id: FileId) -> TreeArc<SourceFile> { | 101 | fn parse(db: &impl SourceDatabase, file_id: FileId) -> TreeArc<SourceFile> { |
102 | let text = db.file_text(file_id); | 102 | let text = db.file_text(file_id); |
103 | SourceFile::parse(&*text) | 103 | SourceFile::parse(&*text) |
104 | } | 104 | } |