diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-03-23 09:54:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 09:54:22 -0400 |
commit | 53dac7451bbdd527aa91e01653b678547624fc39 (patch) | |
tree | c43dbc34fd4ada4249064aab2086ab64b276a460 /cli/bench/lsp.rs | |
parent | 5edcd9dd355483df6b9a8c34ca94f3f54d672b9e (diff) |
chore: remove all `pub(crate)`s from the cli crate (#14083)
Diffstat (limited to 'cli/bench/lsp.rs')
-rw-r--r-- | cli/bench/lsp.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/bench/lsp.rs b/cli/bench/lsp.rs index 2cd89cd13..a7f712d0b 100644 --- a/cli/bench/lsp.rs +++ b/cli/bench/lsp.rs @@ -333,9 +333,7 @@ fn bench_startup_shutdown(deno_exe: &Path) -> Result<Duration, AnyError> { } /// Generate benchmarks for the LSP server. -pub(crate) fn benchmarks( - deno_exe: &Path, -) -> Result<HashMap<String, u64>, AnyError> { +pub fn benchmarks(deno_exe: &Path) -> Result<HashMap<String, u64>, AnyError> { println!("-> Start benchmarking lsp"); let mut exec_times = HashMap::new(); |