diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-07-12 17:42:06 +0100 |
---|---|---|
committer | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-07-12 17:42:06 +0100 |
commit | 8bb81d7418dbc4c295d31d261441b67dba4c0f76 (patch) | |
tree | af552549d828905294f4f3c109cdc339c12020ad /crates/ra_ide_api/src/status.rs | |
parent | 2e466bb365813620de15afd5e04736a92fffdca9 (diff) | |
parent | deab4caa7b1ba81c1b7e6561bc270bbde6467f13 (diff) |
Merge #1524
1524: make Parse fields private r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_ide_api/src/status.rs')
-rw-r--r-- | crates/ra_ide_api/src/status.rs | 2 |
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 | } |