diff options
author | Aleksey Kladov <[email protected]> | 2021-05-14 18:23:29 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2021-05-14 18:23:29 +0100 |
commit | ee1c23c78cf86e7f7e484c6bfb3c98b08d9c50ab (patch) | |
tree | 3a255ace6a67e05881c6c9c7fba937c108210c08 /crates | |
parent | 6c0f20d79f8e5da57bd907aa1c3324fb92344b9a (diff) |
minor: more useful bench
Diffstat (limited to 'crates')
-rw-r--r-- | crates/rust-analyzer/src/integrated_benchmarks.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/rust-analyzer/src/integrated_benchmarks.rs b/crates/rust-analyzer/src/integrated_benchmarks.rs index 56de9681c..ba2790acb 100644 --- a/crates/rust-analyzer/src/integrated_benchmarks.rs +++ b/crates/rust-analyzer/src/integrated_benchmarks.rs | |||
@@ -123,7 +123,7 @@ fn integrated_completion_benchmark() { | |||
123 | }; | 123 | }; |
124 | 124 | ||
125 | { | 125 | { |
126 | let _it = stdx::timeit("unqualified path completion"); | 126 | let _p = profile::span("unqualified path completion"); |
127 | let _span = profile::cpu_span(); | 127 | let _span = profile::cpu_span(); |
128 | let analysis = host.analysis(); | 128 | let analysis = host.analysis(); |
129 | let config = CompletionConfig { | 129 | let config = CompletionConfig { |
@@ -156,7 +156,7 @@ fn integrated_completion_benchmark() { | |||
156 | }; | 156 | }; |
157 | 157 | ||
158 | { | 158 | { |
159 | let _it = stdx::timeit("dot completion"); | 159 | let _p = profile::span("dot completion"); |
160 | let _span = profile::cpu_span(); | 160 | let _span = profile::cpu_span(); |
161 | let analysis = host.analysis(); | 161 | let analysis = host.analysis(); |
162 | let config = CompletionConfig { | 162 | let config = CompletionConfig { |