check if counts should be a thing

This commit is contained in:
Milo 2021-06-28 17:50:24 +01:00
parent 5282617127
commit 2e60908fde

View File

@ -12,6 +12,7 @@ use ide_db::{
use itertools::Itertools;
use profile::{memory_usage, Bytes};
use rustc_hash::FxHashMap;
use std::env;
use stdx::format_to;
use syntax::{ast, Parse, SyntaxNode};
@ -40,6 +41,7 @@ pub(crate) fn status(db: &RootDatabase, file_id: Option<FileId>) -> String {
format_to!(buf, "{}\n", syntax_tree_stats(db));
format_to!(buf, "{} (Macros)\n", macro_syntax_tree_stats(db));
format_to!(buf, "{} in total\n", memory_usage());
if env::var("RA_COUNT").is_ok() {
format_to!(
buf,
"\nCounts:\n{}",
@ -49,6 +51,7 @@ pub(crate) fn status(db: &RootDatabase, file_id: Option<FileId>) -> String {
count.to_string()
}
);
}
if let Some(file_id) = file_id {
format_to!(buf, "\nFile info:\n");