aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/status.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_ide_api/src/status.rs')
-rw-r--r--crates/ra_ide_api/src/status.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide_api/src/status.rs b/crates/ra_ide_api/src/status.rs
index 1bcba0b8b..ce27f5ae2 100644
--- a/crates/ra_ide_api/src/status.rs
+++ b/crates/ra_ide_api/src/status.rs
@@ -87,7 +87,7 @@ impl FromIterator<TableEntry<FileId, Parse>> for SyntaxTreeStats {
87 let mut res = SyntaxTreeStats::default(); 87 let mut res = SyntaxTreeStats::default();
88 for entry in iter { 88 for entry in iter {
89 res.total += 1; 89 res.total += 1;
90 if let Some(tree) = entry.value.as_ref().map(|it| &it.tree) { 90 if let Some(tree) = entry.value.as_ref().map(|it| it.tree()) {
91 res.retained += 1; 91 res.retained += 1;
92 res.retained_size += tree.syntax().memory_size_of_subtree(); 92 res.retained_size += tree.syntax().memory_size_of_subtree();
93 } 93 }